mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-20 12:05:43 +08:00
67 lines
2.7 KiB
HTML
67 lines
2.7 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"}>
|
|
<{css app="ome" src="ome.css"}>
|
|
<{/capture}>
|
|
|
|
<div class="division">
|
|
<table width="100%" class="gridlist" border="0" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th><{t}>物料编码<{/t}></th>
|
|
<th><{t}>商品名称<{/t}></th>
|
|
<th><{t}>商品金额<{/t}></th>
|
|
<th><{t}>商品规格<{/t}></th>
|
|
<th><{t}>商品属性<{/t}></th>
|
|
<th><{t}>库位<{/t}></th>
|
|
<th><{t}>基本计量单位<{/t}></th>
|
|
<th><{t}>应收数量(基本单位)<{/t}></th>
|
|
<th><{t}>实收数量(基本单位)<{/t}></th>
|
|
<th><{t}>辅助计量单位<{/t}></th>
|
|
<th><{t}>应收数量(辅助单位)<{/t}></th>
|
|
<th><{t}>实收数量(辅助单位)<{/t}></th>
|
|
<th><{t}>批次号<{/t}></th>
|
|
<th><{t}>生成日期<{/t}></th>
|
|
<th><{t}>有效期至<{/t}></th>
|
|
<th><{t}>备注<{/t}></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$order_items item=item}>
|
|
<tr>
|
|
<td><{t}><{$item.goods_bn}><{/t}></td>
|
|
<td> <{t}><{$item.goods_name}><{/t}></td>
|
|
<td><{$item.price}></td>
|
|
<td><{$item.specifications}></td>
|
|
<td><{$item.goods_attr}></td>
|
|
<td><{$item.storage_code}></td>
|
|
<td><{$item.basic_calc_unit}></td>
|
|
<td><{$item.plan_qty|default:'-'}></td>
|
|
<td><{$item.actual_qty}></td>
|
|
<td><{$item.assist_calc_unit}></td>
|
|
<td><{$item.plan_qty_assist|default:'-'}></td>
|
|
<td><{$item.actual_qty_assist}></td>
|
|
<td><{$item.batch_code}></td>
|
|
<td><{$item.product_date}></td>
|
|
<td><{$item.expire_date}></td>
|
|
<td><{$item.item_remark}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
</div>
|