Files
OMS/app/console/view/admin/iostock/instock_detail.html
2026-01-04 19:08:31 +08:00

115 lines
2.8 KiB
HTML

<!--
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<{capture name="header"}>
<link href="../apps/ome/statics/ome.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>
<{if $env.get.act!='allocate_iostock'}>
供应商:<{/if}></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><{if $show_purchase_price}><{$amount|cur}><{else}>-<{/if}></b></font></td>
<th>物料总额:</th>
<td><font color="orange"><b><{if $show_purchase_price}><{$iso.product_cost|cur}><{else}>-<{/if}></b></font></td>
<th >
物流费用:
</th>
<td>
<{$iso.iso_price}>&nbsp;
</td>
<th ><{if $iso.type_id!=4 && $iso.type_id!=40}>来源地:<{/if}></th>
<td ><{$iso.extrabranch_name}></td>
</tr>
</tbody>
<tbody>
<tr>
<th >入库日期:</th>
<td ><{$iso.create_time}></td>
<th >外部入库单号:</th>
<td ><{$iso.out_iso_bn}></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>