mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
72 lines
2.4 KiB
HTML
72 lines
2.4 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"}>
|
|
<link href="../app/ome/statics/ome.css" rel="stylesheet" type="text/css">
|
|
<{/capture}>
|
|
|
|
<div class="tableform" id="saleinfo">
|
|
<h4>基本信息</h4>
|
|
<div class="division">
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<th>福袋组合编码:</th>
|
|
<td><{$data.combine_bn}></td>
|
|
<th>福袋组合名称:</th>
|
|
<td><{$data.combine_name}></td>
|
|
<th>创建日期:</th>
|
|
<td><{$data.create_time|cdate}></td>
|
|
</tr>
|
|
<tr>
|
|
<th>选中物料个数:</th>
|
|
<td><{$data.selected_number|default:'0'}></td>
|
|
<th>包含件数:</th>
|
|
<td><{$data.include_number|default:'0'}></td>
|
|
<th>最后更新时间:</th>
|
|
<td><{$data.last_modified|cdate}></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<h4>关联基础物料:</h4>
|
|
<div class="goods-spec-cell" id='goods-spec-product'>
|
|
<table cellspacing="0" cellpadding="0" border="0" class="gridlist">
|
|
<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>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$items item=item}>
|
|
<tr>
|
|
<td><{$item.material_bn}></td>
|
|
<td><{$item.material_name}></td>
|
|
<td><{$item.specifications}></td>
|
|
<td><{$item.retail_price}></td>
|
|
<td><{$item.cost}></td>
|
|
<td><{$item.ratio_str}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|