|
@@ -37,6 +37,7 @@
|
|
|
<thead>
|
|
|
<tr class="text-c">
|
|
|
<th width="25"><input type="checkbox" name="" value=""></th>
|
|
|
+ <th width="50">订单类型</th>
|
|
|
<th width="50">订单编号</th>
|
|
|
<th width="50">交易号</th>
|
|
|
<th width="50">收件人姓名</th>
|
|
@@ -62,6 +63,33 @@
|
|
|
</#if>
|
|
|
</td>
|
|
|
|
|
|
+ <td>
|
|
|
+ <#if (o.salesCustomerId)??>
|
|
|
+ <div>售后订单</div>
|
|
|
+ <div>
|
|
|
+ (
|
|
|
+ <#if o.customerIsSolve == 1>
|
|
|
+ 已解决
|
|
|
+ <#elseif o.customerIsSolve == 2>
|
|
|
+ 未解决
|
|
|
+ <#elseif o.customerIsSolve == 3>
|
|
|
+ 换新
|
|
|
+ <#elseif o.customerIsSolve == 4>
|
|
|
+ 维修
|
|
|
+ <#elseif o.customerIsSolve == 5>
|
|
|
+ 补发
|
|
|
+ <#elseif o.customerIsSolve == 6>
|
|
|
+ 退货
|
|
|
+ <#elseif o.customerIsSolve == 7>
|
|
|
+ 无理由退货
|
|
|
+ </#if>
|
|
|
+ )
|
|
|
+ </div>
|
|
|
+ <#else>
|
|
|
+ 正常订单
|
|
|
+ </#if>
|
|
|
+ </td>
|
|
|
+
|
|
|
<td>${(o.salesOrderId)!}</td>
|
|
|
<td>${(o.salesDealCode)!}</td>
|
|
|
<td>${(o.salesAddressName)!}</td>
|