Files
OMS/app/purchase/view/admin/setting.html
2025-12-28 23:13:25 +08:00

27 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<tr>
<th>是否条码入库控制:</th>
<td>
<input type="radio" name="set[purchase.stock.stockset]" value='true' <{if $setData.purchase_stock_stockset=='true'}>checked='checked'<{/if}>>是 <input type="radio" name="set[purchase.stock.stockset]" value='false' <{if $setData.purchase_stock_stockset=='false'}>checked='checked'<{/if}>> 否
</td>
</tr>
<tr>
<th>"确认"之条码设置:</th>
<td><input type="text" name="set[purchase.stock_confirm]" value="<{$setData.purchase_stock_confirm}>" vtype="required"/></td>
</tr>
<tr>
<th>"取消"之条码设置:</th>
<td><input type="text" name="set[purchase.stock_cancel]" value="<{$setData.purchase_stock_cancel}>" vtype="required"/></td>
</tr>
<tr>
<th>采购方式:</th>
<td><select name="set[purchase.po_type]">
<option value="cash" <{if $setData.purchase_po_type=='cash'}>selected="selected"<{/if}>>现购</option>
<option value="credit" <{if $setData.purchase_po_type=='credit'}>selected="selected"<{/if}>>赊购</option>
</select></td>
</tr>