mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-12 00:55:32 +08:00
46 lines
1.6 KiB
HTML
46 lines
1.6 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.
|
|
-->
|
|
|
|
<!--发票展示界面-->
|
|
<div class="division">
|
|
<table cellspacing="0" class="gridlist" cellpadding="0" border="0">
|
|
<thead>
|
|
<tr>
|
|
<th>日期</th>
|
|
<th>费用项</th>
|
|
<th>费用对象</th>
|
|
<th>收入金额</th>
|
|
<th>支出金额</th>
|
|
<th>凭据号</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$data item=item}>
|
|
<tr>
|
|
<td><{$item.trade_time|date_format:"%Y-%m-%d %H:%M:%S"}></td>
|
|
<td><{$item.fee_item}></td>
|
|
<td><{$item.fee_obj}></td>
|
|
<td><{$item.plus|cur}></td>
|
|
<td><{$item.minus|cur}></td>
|
|
<td><{$item.credential_number}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
<tr style="background-color:#74c0f9">
|
|
<td colspan="7"><span>合计金额:<{$money}></span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |