Files
OMS/app/wmsmgr/view/monthaccount.html
2025-12-28 23:13:25 +08:00

60 lines
1.5 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.
-->
<div class="tableform">
<div class="division">
<form method="post" action="index.php?<{$env.server.QUERY_STRING}>" id="terminal">
<input type="hidden" name="wms_id" value="<{$wms_id}>">
<table width="100%" cellspacing="0" cellpadding="0" border="0" >
<tbody>
<tr>
<th>月结号:</th>
<td>
<input type="text" name="monthaccount" value="<{$monthaccount}>">
</td>
</tr>
<tr>
<th>事业部编码:</th>
<td>
<input type="text" name="department_no" value="<{$department_no}>">
</td>
</tr>
<tr>
<th>ISV来源编号</th>
<td>
<input type="text" name="isv_source" value="<{$isv_source}>">
</td>
</tr>
<tr>
<th>货主信息:</th>
<td>
<input type="text" name="owner_user_id" value="<{$owner_user_id}>">
</td>
</tr>
</tbody>
</table>
<div class="table-action">
<{button class="btn-primary" type="submit" id="saveterminal" name="submit" label="保存"}>
</div>
</form>
</div>
</div>
<script>
$('terminal').store('target',{
onRequest:function(){
},
onComplete:function(jsontext){
finderGroup['<{$env.get.finder_id}>'].refresh.delay(400,finderGroup['<{$env.get.finder_id}>']);
}
});
</script>