|
@@ -32,7 +32,6 @@
|
|
|
</nav>
|
|
|
|
|
|
<!-- 录入订单 -->
|
|
|
-
|
|
|
<div class="page-container">
|
|
|
<div class="text-c" id="form-download">
|
|
|
<form action="${path}/admin/salesOrder/list_order_page" method="post">
|
|
@@ -97,7 +96,7 @@
|
|
|
<thead>
|
|
|
<tr class="text-c">
|
|
|
<th width="16"><input type="checkbox" ></th>
|
|
|
- <th width="60">订单类型</th>
|
|
|
+ <th width="50">订单类型</th>
|
|
|
<th width="60">订单号</th>
|
|
|
<th width="70">交易号</th>
|
|
|
<th width="72">批次号</th>
|
|
@@ -105,8 +104,8 @@
|
|
|
<th width="70">收货人电话</th>
|
|
|
<th width="100">收货地址</th>
|
|
|
<th width="50">是否发货</th>
|
|
|
- <th width="60">物流公司</th>
|
|
|
- <th width="60">物流单号</th>
|
|
|
+ <th width="60">订单状态</th>
|
|
|
+ <th width="60">物流信息</th>
|
|
|
<#--<th width="50">订单金额</th>
|
|
|
<th width="50">支付金额</th>
|
|
|
<th width="50">是否付款</th>-->
|
|
@@ -162,13 +161,26 @@
|
|
|
未发货
|
|
|
<#elseif order.salesShippingStatus == 1>
|
|
|
已发货
|
|
|
- <#elseif order.salesShippingStatus == 1>
|
|
|
+ <#elseif order.salesShippingStatus == 3>
|
|
|
备货中
|
|
|
+ <#elseif order.salesShippingStatus == 4>
|
|
|
+ 收货
|
|
|
<#elseif order.salesShippingStatus == 11>
|
|
|
已通知配货
|
|
|
</#if>
|
|
|
</td>
|
|
|
<td>
|
|
|
+ <#if order.salesStatus == 0>
|
|
|
+ 未确认
|
|
|
+ <#elseif order.salesStatus == 1>
|
|
|
+ 确认
|
|
|
+ <#elseif order.salesStatus == 2>
|
|
|
+ 挂起
|
|
|
+ <#elseif order.salesStatus == 3>
|
|
|
+ 作废
|
|
|
+ </#if>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
<#if order.salesPostFirm??>
|
|
|
<#if order.salesPostFirm == 'sto'>
|
|
|
申通快递
|
|
@@ -206,8 +218,9 @@
|
|
|
德邦物流
|
|
|
</#if>
|
|
|
</#if>
|
|
|
+ <br>
|
|
|
+ ${order.salesPostNum!''}
|
|
|
</td>
|
|
|
- <td>${order.salesPostNum!''}</td>
|
|
|
<#--<td>${order.salesAmount/100!''}</td>
|
|
|
<td>${order.salesPayMoney/100!''}</td>
|
|
|
<td>
|
|
@@ -236,15 +249,17 @@
|
|
|
</tr>
|
|
|
</#list>
|
|
|
<#else>
|
|
|
- <tr><td colspan="13" class="td-manage text-c" >暂时没有客诉信息,请添加!</td></tr>
|
|
|
+ <tr><td colspan="15" class="td-manage text-c" >暂时没有客诉信息,请添加!</td></tr>
|
|
|
</#if>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
|
|
|
- <div style="float: left;margin-top: 20px;">
|
|
|
- <button type="button" class="btn" style="background: #32a3d8;color: #fff;-webkit-transform:translateY(-5%);height: 35px;" id="" onclick="noticeDistribution()">通知配货</button>
|
|
|
- <button type="button" class="btn" style="background: #32a3d8;color: #fff;-webkit-transform:translateY(-5%);height: 35px;" id="" onclick="confirmOrder()">确认订单</button>
|
|
|
- </div>
|
|
|
+ <#if identity != 2>
|
|
|
+ <div style="float: left;margin-top: 20px;">
|
|
|
+ <button type="button" class="btn" style="background: #32a3d8;color: #fff;-webkit-transform:translateY(-5%);height: 35px;" id="" onclick="noticeDistribution()">通知配货</button>
|
|
|
+ <button type="button" class="btn" style="background: #32a3d8;color: #fff;-webkit-transform:translateY(-5%);height: 35px;" id="" onclick="confirmOrder()">确认订单</button>
|
|
|
+ </div>
|
|
|
+ </#if>
|
|
|
|
|
|
</div>
|
|
|
</div>
|