mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
89 lines
2.0 KiB
HTML
89 lines
2.0 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 class="gridlist" style="margin:4px 0;">
|
|
<thead>
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th>采购结算数量</th>
|
|
|
|
<th>采购结算金额(含税)</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody id="dataNode">
|
|
|
|
<tr>
|
|
<th>本期销售</th>
|
|
<th><{$vopbills.cr_cust_quantity}></th>
|
|
|
|
<th><{$vopbills.cr_cust_amount}></th>
|
|
|
|
|
|
</tr>
|
|
<tr>
|
|
<th>本期客退</th>
|
|
<th><{$vopbills.dr_cust_quantity}></th>
|
|
|
|
<th><{$vopbills.dr_cust_amount}></th>
|
|
|
|
|
|
</tr>
|
|
<tr>
|
|
<th>本期其他</th>
|
|
<th><{$vopbills.other_quantity}></th>
|
|
|
|
<th><{$vopbills.other_amount}></th>
|
|
|
|
|
|
</tr>
|
|
<tr>
|
|
<th>活动折扣优惠</th>
|
|
|
|
<th></th>
|
|
<th><{$discounts.dis_amount}></th>
|
|
|
|
|
|
</tr>
|
|
<tr>
|
|
<th>【开票金额合计】</th>
|
|
|
|
<th><{$total_qty}></th>
|
|
<th><{$total_amount}></th>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<th>合计金额</th>
|
|
|
|
<th></th>
|
|
<th><{$summary.sum_total_amount}></th>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|