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

42 lines
991 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.
-->
<script>
//关闭POP
$('closeBut').addEvent('click', function(event){
this.getParent('.dialog').retrieve('instance').close();
});
</script>
<div class="tableform">
<div class="division">
<table width="100%" border="0" class="gridlist">
<thead>
<tr>
<th>基础物料名称</th>
<th>基础物料编码</th>
<th>单位</th>
<th>入库数量</th>
</tr>
</thead>
<{foreach from=$detail item=items}>
<tbody>
<tr>
<td><{$items.product_name}></td>
<td><{$items.bn}></td>
<td><{$items.unit}></td>
<td><{$items.nums}></td>
</tr>
</tbody>
<{/foreach}>
</table>
</div>
<table width="100%" border="0">
<thead>
<tr><td align="center">
<{button class="btn btn-primary" type="button" id="closeBut" label="关闭"}>
</td></tr>
</thead>
</table>
</div>