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

65 lines
2.0 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"}>
<style media="print">
div{font-size:14pt; }
</style>
<style media="screen">
div{font-size:12px ;}
</style>
<style>
.print_inner_div{width:600px;height:auto;padding:10px 10px 0 10px; margin:5px 20px 0 20px;}
.print_inner_table{width:600px;height:350px;border:1px solid black;}
.print_inner_table tr{border:2px solid black}
.print_inner_table tr th{border:1px solid black;width:70px;padding:2px}
.print_inner_table tr td{border:1px solid black;padding:2px}
.print_inner_table_td{width:60px}
</style>
<{/capture}>
<{foreach from=$data item=item}>
<div style="page-break-after: always; margin:0">
<div class="print_inner_div">
<table class="print_inner_table">
<tr>
<th>品牌</th>
<td colspan="2"><{$item.shop_name}></td>
</tr>
<tr>
<th>送货仓库</th>
<td colspan="2" class="print_inner_table_td"><{$item.branch_name}></td>
</tr>
<tr>
<th>入库单号</th>
<td class="print_inner_table_td"><{$item.storage_no}></td>
<td><{$item.storage_no|barcode}></td>
</tr>
<tr>
<th>箱号</th>
<td class="print_inner_table_td"><{$item.box_no}></td>
<td><{$item.box_no|barcode}></td>
</tr>
<tr>
<th>要求到货时间</th>
<td class="print_inner_table_td"><{$item.arrival_time}></td>
<td><{$item.arrival_time|barcode}></td>
</tr>
<tr>
<th>承运商</th>
<td colspan="2" class="print_inner_table_td"><{$item.carrier_code}></td>
</tr>
<tr>
<th>运单号</th>
<td class="print_inner_table_td"><{$item.delivery_no}></td>
<td><{$item.delivery_no|barcode}></td>
</tr>
</table>
<div style="clear:both"></div>
</div>
</div>
<{/foreach}>