浏览代码

订单列表添加订付人核验

dq 6 年之前
父节点
当前提交
58f9e34146
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      kmall-admin/src/main/webapp/js/shop/order.js

+ 1 - 1
kmall-admin/src/main/webapp/js/shop/order.js

@@ -134,7 +134,7 @@ $(function () {
                         if (row.orderStatus == 0) {
                             htmlStr += '<button class="btn btn-outline btn-danger" onclick="vm.cancelUpdate(' + row.id + ')"><i class="fa fa-times-circle-o"></i>&nbsp;取消</button>&nbsp;';
                         }
-                        if (row.isPaymentSend == 0 || row.isEleOrderSend == 0  || row.isCustomsSend == 0) {
+                        if (row.isPaymentSend == 0 || row.isEleOrderSend == 0  || row.isCustomsSend == 0 || row.buyerPayCheck != 0) {
                             htmlStr += '<button class="btn btn-outline btn-danger" onclick="vm.refundUpdate(' + row.id + ')"><i class="fa fa-times-circle-o"></i>&nbsp;退款</button>&nbsp;';
                         }
                     }