Files
OMS/app/o2o/view/admin/system/detail_position.html
2025-12-28 23:13:25 +08:00

30 lines
700 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="division">
<h4>库位信息</h4>
<table cellspacing="0" class="gridlist" cellpadding="0" border="0" width="100%">
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>库位</th>
</tr>
</thead>
<tbody>
<{foreach from=$branchs item=branch}>
<tr>
<td><{$branch.branch_bn}></td>
<td><{$branch.branch_type_text}></td>
<td><{$branch.storage_code}></td>
</tr>
<{/foreach}>
</tbody>
</table>
</div>