Pārlūkot izejas kodu

fix(beEntrusted): 更新未收货判断逻辑,增加状态4的条件

xieyong 2 dienas atpakaļ
vecāks
revīzija
564caaea80
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/views/beEntrusted/index.vue

+ 1 - 1
src/views/beEntrusted/index.vue

@@ -584,7 +584,7 @@
         }
 
         const unreceived = this.selection.find(
-          (item) => item.approvalStatus == 2 && (item.sendStatus != 2 && item.sendStatus != 8)
+          (item) => item.approvalStatus == 2 && (item.sendStatus != 2 && item.sendStatus != 8 && item.sendStatus != 4)
         );
         if (unreceived) {
           return this.$message.warning(`请先收货再${actionText}`);