mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-17 11:05:30 +08:00
76 lines
2.5 KiB
HTML
76 lines
2.5 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"}>
|
|
<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}>
|
|
|