Files
OMS/app/sales/view/aftersale/detail_refunded.html
chenping 61783b7d01 1. 【新增】售后单售后原因类型支持搜索
2. 【新增】手工创建订单折扣可输入正数

3. 【优化】盘点申请单确认

4. 【修复】采购退货单模拟出库失败问题

5. 【新增】订单金额客户实付与结算金额

6. 【优化】仓库发货统计报表物料名称显示

7. 【优化】自有仓储虚拟发货逻辑

8. 【修复】基础物料分类管理问题
2026-04-01 11:59:17 +08:00

113 lines
4.7 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">
<div class="division">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>店铺名:</th>
<td ><{$aftersales.shop_id|default:'-'}></td>
<th>订单号:</th>
<td ><{$aftersales.order_id|default:'-'}></td>
<th >售后申请单号:</th>
<td ><{$aftersales.return_id|default:'-'}></td>
<th >退换货单号:</th>
<td ><{$aftersales.reship_id|default:'-'}></td>
<th >退款申请单号:</th>
<td ><{$aftersales.return_apply_id|default:'-'}></td>
</tr>
<tr>
<th>退款金额:</th>
<td><{$aftersales.refundmoney|cur}></td>
<th >支付类型:</th>
<td ><{$aftersales.pay_type|default:'-'}></td>
<th >收款账号:</th>
<td ><{$aftersales.account|default:'-'}></td>
<th >收款银行:</th>
<td ><{$aftersales.bank|default:'-'}></td>
<th >支付账户:</th>
<td ><{$aftersales.pay_account|default:'-'}></td>
</tr>
<tr>
<th >退款申请金额:</th>
<td ><{$aftersales.refund_apply_money|cur}></td>
<th >退款支付方式:</th>
<td ><{$aftersales.paymethod|default:'-'}></td>
<th >退款申请创建时间:</th>
<td ><{$aftersales.refund_apply_time|cdate:'SDATE_FTIME'}></td>
<th >支付完成时间:</th>
<td ><{$aftersales.refundtime|cdate:'SDATE_FTIME'}></td>
</tr>
</table>
</div>
<{if is_array($items) && ($items) > 0}>
<{if is_array($items.refuse) && count($items.refuse)>0}>
<div class="division">
<h4><{t}>退款明细:<{/t}></h4>
<table width="100%" border="0" cellspacing="0" cellpadding="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>
<th><{t}>销售金额<{/t}></th>
<th><{t}>平台承担<{/t}></th>
<th><{t}>结算金额<{/t}></th>
<th><{t}>客户实付<{/t}></th>
<th><{t}>支付优惠金额<{/t}></th>
<th><{t}>子订单号<{/t}></th>
<th><{t}>仓库<{/t}></th>
<th><{t}>平台商品ID<{/t}></th>
<th><{t}>平台SkuID<{/t}></th>
</tr>
</thead>
<{foreach from=$items.refuse item=aProduct}>
<tbody>
<tr>
<{assign var="total_price" value=$aProduct.price*$aProduct.num}>
<td><{$aProduct.bn}></td>
<td><{$aProduct.product_name}></td>
<td><{$aProduct.price}></td>
<td><{$aProduct.num}></td>
<td><{$aProduct.money|default:$total_price}></td>
<td><{$aProduct.refunded|default:$total_price}></td>
<td><{$aProduct.saleprice|default:'0'}></td>
<td><{$aProduct.platform_amount|cur}></td>
<td><{$aProduct.settlement_amount|cur}></td>
<td><{$aProduct.actually_amount|cur}></td>
<td><{$aProduct.platform_pay_amount|cur}></td>
<td><{$aProduct.oid|default:'-'}></td>
<td><{$aProduct.branch_id}></td>
<td><{$aProduct.shop_goods_id}></td>
<td><{$aProduct.shop_product_id}></td>
</tr>
</tbody>
<{/foreach}>
</table>
</div>
<{/if}>
<{/if}>
</div>