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

28 lines
630 B
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">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="gridlist">
<thead>
<tr>
<td>基础物料编码</td>
<td>基础物料名称</td>
<td>残损数量</td>
<td>单价</td>
<td>金额</td>
</tr></thead><tbody>
<{foreach from=$items item=item}>
<tr>
<td><{$item.bn}></td>
<td><{$pname.name}></td>
<td><{$item.nums}></td>
<td><{$item.iostock_price}></td>
<td><{$item.settlement_money}></td>
</tr>
<{/foreach}>
</tbody>
</table>
</div>