浏览代码

no message

linwenxin 10 月之前
父节点
当前提交
2ac3d87415
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/views/auxiliaryFittings/salesManagement/transaction/index.vue

+ 3 - 1
src/views/auxiliaryFittings/salesManagement/transaction/index.vue

@@ -131,7 +131,9 @@ export default {
         },
         },
         refund: {
         refund: {
           conditions: ({ row, index, column }) => {
           conditions: ({ row, index, column }) => {
-            return row.payValue > row.retValue
+            return (
+              row.orderType == 'S' && row.payType == 'ALLINPAY' && row.payFlag === 'YES' && row.payValue > row.retValue
+            )
           },
           },
           click: ({ row, index, column }) => {
           click: ({ row, index, column }) => {
             this.$prompt('退款金额', '退款', {
             this.$prompt('退款金额', '退款', {