瀏覽代碼

fix(warehouseManagement): 盘点计划派单没有执行部门Id不请求执行人接口

liujt 8 月之前
父節點
當前提交
8b737f7237
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/views/warehouseManagement/stocktaking/plan/components/assignDialog.vue

+ 4 - 1
src/views/warehouseManagement/stocktaking/plan/components/assignDialog.vue

@@ -286,7 +286,10 @@
       async _getInformation() {
         getInventoryPlanDetailById(this.planId).then((data) => {
           this.formData = data;
-          this.getUserList({ groupId: data.executeGroupId });
+          if(data.executeGroupId) {
+            this.getUserList({ groupId: data.executeGroupId });
+          }
+          
           this.tableData = data.planDetailVOS;
         });
       }