accountOrderCheckingRefund.html 7.9 KB
<style type="text/css">
    #refund ul li { list-style-type:none; }
</style>
<div class="pageheader notab">
    <h1 class="pagetitle">对账管理</h1>
    <span class="pagedesc">对账单退单列表</span>
</div>
<paging>
    <div id="contentwrapper" class="contentwrapper">
        <!--contenttitle-->
        <div class="contenttitle2">
            <h3>退单列表</h3>
        </div>
        <!-- 查询条件 -->
        <div class="overviewhead">
            <div class="line">
                <label for="refundCode" class="label">退款号:</label>
                <div class="input">
                    <input type="text" id="refundCode" ng-model="refundOrderQuery.refundCode" name="refundCode"/>
                </div>
                <label  for="orderCode"  class="label">订单号:</label>
                <div class="input">
                    <input type="text" id="orderCode" ng-model="refundOrderQuery.orderCode" name="orderCode"/>
                </div>
                <label for="refundType" class="label">申请类型: </label>
                <div class="input">
                    <select type="text" id="refundType" ng-model="refundOrderQuery.refundType" name="refundType" style="padding: 8px 8px;">
                        <option value='0'>所有</option>
                        <option value='1'>仅退款</option>
                        <option value='2'>退款/退货</option>
                        <option value='3'>退款</option>
                        <option value='4'>换货</option>
                    </select>
                </div>
                <label for="refundStatus" class="label">状态类型: </label>
                <div class="input">
                    <select type="text" id="refundStatus" ng-model="refundOrderQuery.refundStatus" name="refundStatus" style="padding: 8px 8px;">
                        <option value='-1'>所有</option>
                        <option value='0'>待客户处理</option>
                        <option value='1'>待卖家处理</option>
                        <option value='2'>待寄回商品</option>
                        <option value='3'>待卖家收货</option>
                        <option value='4'>确认收货</option>
                        <option value='5'>待卖家审核货物</option>
                        <option value='6'>退款中</option>
                        <option value='7'>换货/退款成功</option>
                        <option value='8'>待处理(不同意退货)</option>
                        <option value='9'>待处理(不同意换货)</option>
                        <option value='10'>待处理(拒绝换货)</option>
                        <option value='11'>同意换货</option>
                        <option value='100'>已关闭</option>
                        <option value='101'>已撤销</option>
                        <option value='-128'>未知类型</option>
                    </select>
                </div>
            </div>
            <div class="line">
                <label class="label">申请时间</label>
                <div class="input">
                    <input type="text" id="receiveStartDate" date-format placeholder="开始日期" class="laydate-icon" onClick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})" style="width: 150px;" ng-model="refundOrderQuery.startCreateDt"/>
                    --<input type="text" id="receiveEndDate" date-format placeholder="结束日期" class="laydate-icon" onClick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})" style="width: 150px;"  ng-model="refundOrderQuery.endCreateDt"/>
                </div>
                <a class="btn btn2 btn_blue btn_search radius50" href="javascript:void(0)" ng-click="searchOrder()"><span>搜索</span></a>
                <a class="btn btn2 btn_cloud" href="javascript:void(0)" ng-click="exportOrderRefundExcel()" style="margin-left: 40px;"><span>导出退款单EXCEL</span></a>
            </div>
        </div>
        <br>

        <table cellpadding="0" cellspacing="0" border="0" class="stdtable"
               id="dyntable3">
            <thead>
            <tr>
                <th class="head0">退款号</th>
                <th class="head0">订单号</th>
                <th class="head0">订单来源</th>
                <th class="head0">【申请单类型】</th>
                <th class="head0">退款类型</th>
                <th class="head0">退款原因</th>
                <th class="head0">退款金额</th>
                <th class="head0">订单金额</th>
                <th class="head0">退还V币</th>
                <th class="head0">买家信息</th>
                <th class="head0">退货人信息</th>
                <th class="head0">退货地址</th>
                <th class="head0">货运公司名称</th>
                <th class="head0">货运单号</th>
                <th class="head0">更新时间</th>
                <th class="head0" style="width: 70px;">明细</th>
            </tr>
            </thead>
            <tbody>
            <tr id="refund" class="gradeX" ng-repeat="refundOrder in refundOrders" >
                <td>{{ refundOrder.refundCode }} </td>
                <td> {{ refundOrder.orderCode }}</td>
                <td ng-if="refundOrder.orderFrom ==null">未知状态 </td>
                <td ng-if="refundOrder.orderFrom ==0">积分兑换 </td>
                <td ng-if="refundOrder.orderFrom ==1">支付产品 </td>
                <td ng-if="refundOrder.refundType ==1">【申请售后】 </td>
                <td ng-if="refundOrder.refundType ==2">【申请售后】 </td>
                <td ng-if="refundOrder.refundType ==3">【申请退款】</td>
                <td ng-if="refundOrder.refundType ==4">【申请售后】 </td>
                <td ng-if="refundOrder.refundType ==1">仅退款 </td>
                <td ng-if="refundOrder.refundType ==2">退款/退货 </td>
                <td ng-if="refundOrder.refundType ==3">退款 </td>
                <td ng-if="refundOrder.refundType ==4">换货 </td>
                <td>{{ refundOrder.refundReason }} </td>
                <td>{{ refundOrder.refundMoney }} </td>
                <td>{{ refundOrder.orderMoney }} </td>
                <td>{{ refundOrder.deductionProductVb }}V币 </td>
                <td>
                    <ul>
                        <li>{{ refundOrder.buyerUsername }} </li>
                        <li>{{ refundOrder.buyerPhone }} </li>
                    </ul>
                </td>
                <td>
                    <ul>
                        <li>{{ refundOrder.refundSellerName }} </li>
                        <li>{{ refundOrder.refundSellerPhone }} </li>
                    </ul>
                </td>
                <td>{{ refundOrder.refundSellerAddress }} </td>
                <td>{{ refundOrder.refundGoodsDeliverName }} </td>
                <td>{{ refundOrder.refundGoodsWaybill }} </td>
                <td>{{ refundOrder.refundStatusLastUpdateDt}} </td>
                <td><a href="#accountOrderCheckingRefundDetail/{{refundOrder.refundId}}/{{refundOrder.orderCode}}"  target="_blank">明细</a></td>
            </tr>
            </tbody>
        </table>
    </div>
    <div class="angular_pager" style="margin-left: 20px;">
        <ul class="pagination" num-pages="numPages" current-page="currentPage" on-select-page="selectPage(page)">
            <li ng-class="{disabled: noPrevious()}"> <a ng-click="selectPrevious()">&laquo;</a>
            </li>
            <li ng-repeat="page in pages" ng-class="{active: isActive(page)}"> <a ng-click="selectPage(page)">{{page}}</a>
            </li>
            <li ng-class="{disabled: noNext()}"> <a ng-click="selectNext()">&raquo;</a>
            </li>
            <li><span style="position: relative;top: 5px;margin-left: 10px;font-size: 14px;">共:<b style="color: red;">{{numPages}}</b>页,当前第<b style="color: red;">{{currentPage}}</b>页;总记录数:<b style="color: red;">{{totalRecord}}</b></span></li>
        </ul>
    </div>
</paging>