Files
OMS/app/ome/view/admin/reship/refuse.html
2026-01-04 19:08:31 +08:00

133 lines
4.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="tableform">
<h4>拒收退货单详情</h4>
<div class="division">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th><{t}>退货单号:<{/t}></th>
<td><{$detail.reship_bn}></td>
<th><{t}>订单号:<{/t}></th>
<td><{$detail.order_bn}></td>
<th><{t}>配送方式:<{/t}></th>
<td><{$detail.delivery|default:'-'}></td>
<th><{t}>操作员:<{/t}></th>
<td><{$detail.op_name}></td>
</tr>
<tr>
<th><{t}>物流费用:<{/t}></th>
<td><{$detail.money}></td>
<th><{t}>是否保价:<{/t}></th>
<td><{if $detail.is_protect}>是<{else}>否<{/if}></td>
<th><{t}>物流公司:<{/t}></th>
<td><{$detail.logi_name}></td>
<th><{t}>物流单号:<{/t}></th>
<td><{$detail.logi_no}></td>
</tr>
<tr>
<th><{t}>收货人:<{/t}></th>
<td><{$detail.ship_name|ciphertext:'delivery','ship_name',$detail.shop_type}></td>
<th><{t}>收货地区:<{/t}></th>
<td><{$detail.ship_area}></td>
<th><{t}>收货地址:<{/t}></th>
<td><{$detail.ship_addr|ciphertext:'delivery','ship_addr',$detail.shop_type}></td>
<th><{t}>收货邮编:<{/t}></th>
<td><{$detail.ship_zip}></td>
</tr>
<tr>
<th><{t}>电话:<{/t}></th>
<td><{$detail.ship_tel|default:'-'|ciphertext:'delivery','ship_tel',$detail.shop_type}></td>
<th><{t}>手机:<{/t}></th>
<td><{$detail.ship_mobile|default:'-'|ciphertext:'delivery','ship_mobile',$detail.shop_type}></td>
<th><{t}>收货人Email:<{/t}></th>
<td><{$detail.ship_email}></td>
<th><{t}>生成时间:<{/t}></th>
<td><{$detail.t_begin|cdate:'SDATE_FTIME'}></td>
</tr>
<tr>
<th><{t}>审核状态:<{/t}></th>
<td><{$detail.is_check}></td>
<th><{t}>退回物流单号:<{/t}></th>
<td><{$detail.return_logi_no}></td>
<th><{t}>退回物流公司名称:<{/t}></th>
<td>
<{$detail.return_logi_name}>
</td>
<th><{t}>退换货状态:<{/t}></th>
<td><{if $detail.return_type == 'refuse'}><{t}>拒收退货<{/t}><{else}>-<{/if}></td>
</tr>
</table>
<!-- <div class="span-5"><label><{t}>收货时间:<{/t}></label><{$detail.t_end|cdate:'SDATE_STIME'}></div>-->
</div>
<div class="division">
<table cellspacing="0" cellpadding="0" border="0" >
<tr>
<td><strong><{t}>退货备注:<{/t}></strong><{$detail.memo}></td>
</tr>
</table>
</div>
<{if count($items) > 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>
</tr>
</thead>
<{foreach from=$items.return item=aProduct}>
<tbody>
<tr>
<td><{$aProduct.bn}></td>
<td><{if $aProduct.item_type == 'gift'}><{t}>礼品<{/t}><{else}><{t}>商品<{/t}><{/if}></td>
<td><{$aProduct.product_name}></td>
<td><{$aProduct.num}></td>
<td><{$aProduct.normal_num}></td>
<td><{$aProduct.defective_num}></td>
<td><{if $aProduct.store_position}><{$aProduct.store_position}><{else}>-<{/if}></td>
</tr>
</tbody>
<{/foreach}>
</table></div>
<{/if}>
</div>