Files
OMS/app/console/view/admin/supplier/balance.html
2025-12-28 23:13:25 +08:00

46 lines
1.1 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.
-->
<script>
//关闭POP
$('close_state').addEvent('click', function(event){
this.getParent('.dialog').retrieve('instance').close();
});
</script>
<div class="tableform">
<h4>预付款</h4>
<div id="accordion">
<table class="gridlist" cellspacing="0" cellpadding="0">
<{if !$balance}>
<tr>
<td colspan="2">
<p class="notice">暂无记录</p>
</td>
</tr>
<{else}>
<thead>
<tr>
<th>采购单编号</th>
<th>采购日期</th>
<th>预付款</th>
</tr>
</thead>
<tbody>
<{foreach from=$balance item=item key=key}>
<tr class="toggler atStart" >
<td><{$item.po_bn}></td>
<td><b><{$item.purchase_time|date_format:"%Y-%m-%d"}></b></td>
<td><b><{$item.deposit_balance|cur}></b></td>
</tr>
<{/foreach}>
</tbody>
<{/if}>
</table>
</div>
</div>