Files
OMS/app/wms/view/admin/iostock/instock_detail.html
2025-12-28 23:13:25 +08:00

101 lines
2.1 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.
-->
<{capture name="header"}>
<link href="../app/wms/statics/wms.css" rel="stylesheet" type="text/css">
<{/capture}>
<form name="form1" id="memo_form" action="index.php?<{$env.server.QUERY_STRING}>" method="post">
<div class="tableform">
<h4>入库单详情</h4>
<div class="division">
<table border="0" cellspacing="0" cellpadding="0" class="gridlist">
<tbody>
<tr>
<th>入库单编号:</th>
<td ><{$iso.iso_bn}></td>
<th>供应商:</th>
<td ><{$iso.supplier_name}></td>
<th >经办人:</th>
<td ><{$iso.operator}></td>
<th >仓库:</th>
<td ><{$iso.branch_name}></td>
</tr>
</tbody>
<tbody>
<tr>
<th >金额总计:
</th>
<td ><font color="orange"><b><{$amount|cur}></b></font></td>
<th>物料总额:</th>
<td><font color="orange"><b><{$iso.product_cost|cur}></b></font></td>
<th >
物流费用:
</th>
<td>
<{$iso.iso_price}>&nbsp;
</td>
<th >&nbsp;</th>
<td >&nbsp;</td>
</tr>
</tbody>
<tbody>
<tr>
<th >入库日期:</th>
<td ><{$iso.create_time}></td>
<th >&nbsp;</th>
<td >&nbsp;</td>
<th >&nbsp;</th>
<td >&nbsp;</td>
<th >&nbsp;</th>
<td >&nbsp;</td>
</tr>
</tbody>
<tbody>
<tr>
<th >入库总数</th>
<td ><{$iso.total_num}></td>
<th ></th>
<td ></td>
<th >&nbsp;</th>
<td >&nbsp;</td>
<th >&nbsp;</th>
<td >&nbsp;</td>
</tr>
<{if $iso.memo}>
<tr>
<th >备 注</th>
<td colspan=20 style="text-align:left">
<{$iso.memo}>
</td>
</tr>
<{/if}>
</tbody>
</table>
</div>
<div class="division">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th >追加备注:</th>
<td><textarea id="memo" maxth="255" rows="4" cols="60" name="memo" vtype="required"></textarea></td>
</tr>
</tbody>
</table>
<div class="table-action">
<{button type="submit" id="append_memo" label="追加备注" class="btn btn-primary" }>
<input type="hidden" name="iso_id" value="<{$iso.iso_id}>" />
</div>
</div>
</div>
</div>
</form>