mirror of
https://gitee.com/ShopeX/OMS
synced 2026-05-02 05:05:40 +08:00
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<div class="division">
|
||
<table cellspacing="0" cellpadding="0" border="0" width="100%" class="gridlist">
|
||
<{if $supplier_price}>
|
||
<thead>
|
||
<tr>
|
||
<th>供应商</th>
|
||
<th>当前采购价格</th>
|
||
<th>最高采购价格</th>
|
||
<th>最低采购价格</th>
|
||
<th>历史采购价格</th>
|
||
</tr>
|
||
</thead>
|
||
<{foreach from=$supplier_price item=his}>
|
||
<tbody>
|
||
<tr>
|
||
<td><{$his.name}></td>
|
||
<td><{$his.currPrice}></td>
|
||
<td><{$his.highestprice}></td>
|
||
<td><{$his.lowerestprice}></td>
|
||
<td><input class="btn btn-primary" type="button" onclick="new Dialog('index.php?app=purchase&ctl=admin_supplier&act=history_price&p[0]=<{$his.supplier_id}>&p[1]=<{$goods_id}>',{width:600,title:'历史记录价格'});" value="查看" ></td>
|
||
</tr>
|
||
</tbody>
|
||
<{/foreach}>
|
||
<{else}>
|
||
<thead>
|
||
<tr>
|
||
<th>暂无记录</th>
|
||
</tr>
|
||
</thead>
|
||
<{/if}>
|
||
</table>
|
||
</div>
|
||
|
||
</div> |