Explorar el Código

订单列表添加订付人核验

dq hace 6 años
padre
commit
58f9e34146
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;';
                         }
                     }