diff --git a/src/views/basic/BasicEntrutsRece.vue b/src/views/basic/BasicEntrutsRece.vue
index 023835e..7adc99d 100644
--- a/src/views/basic/BasicEntrutsRece.vue
+++ b/src/views/basic/BasicEntrutsRece.vue
@@ -247,7 +247,7 @@ export default {
this.$message.error("请输入接受委托人!");
return;
}
- insertEntrustRece(this.inputQuery)
+ updateEntrustRece(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
diff --git a/src/views/basic/BussinessTypeThird.vue b/src/views/basic/BussinessTypeThird.vue
index d1a87f5..38f6b13 100644
--- a/src/views/basic/BussinessTypeThird.vue
+++ b/src/views/basic/BussinessTypeThird.vue
@@ -29,7 +29,7 @@
查询
新增
@@ -58,7 +58,7 @@
删除
提交
@@ -100,7 +100,7 @@
提交
diff --git a/src/views/basic/basicCompanyProducts.vue b/src/views/basic/basicCompanyProducts.vue
index e67f095..0f19129 100644
--- a/src/views/basic/basicCompanyProducts.vue
+++ b/src/views/basic/basicCompanyProducts.vue
@@ -152,7 +152,7 @@
v-if="isSpCombine"
type="text"
size="small"
- :disabled="scope.row.thirdId==scope.row.nameCode || scope.row.thirdId==null || scope.row.nameCode==null || scope.row.lockStatus===3"
+ :disabled="scope.row.thirdId===scope.row.nameCode || scope.row.thirdId==null || scope.row.nameCode==null || scope.row.lockStatus===3"
@click.native.stop="splitSelectUdi(scope.row)"
>拆分产品
diff --git a/src/views/thrsys/SysUdimsConfig.vue b/src/views/thrsys/SysUdimsConfig.vue
index 6dc3f4f..d4af4b8 100644
--- a/src/views/thrsys/SysUdimsConfig.vue
+++ b/src/views/thrsys/SysUdimsConfig.vue
@@ -196,6 +196,7 @@
移除
{
obj.outChange = false;
- this.checkedBusTypes.push(obj);
+ let isPut = true;
+ for (let i = 0; i < this.checkedBusTypes.length; i++) {
+ if (this.checkedBusTypes[i].action == obj.action) {
+ isPut = false;
+ }
+ }
+ if (isPut)
+ this.checkedBusTypes.push(obj);
});
this.addBusDialogVisible = false;
},
diff --git a/src/views/warehouse/addOrder.vue b/src/views/warehouse/addOrder.vue
index c4ead24..97efb68 100644
--- a/src/views/warehouse/addOrder.vue
+++ b/src/views/warehouse/addOrder.vue
@@ -574,7 +574,6 @@ export default {
});
},
addCode(event) {
- debugger
console.log(this.formData)
console.log(this.storageList)
if (event == null) {
diff --git a/src/views/warehouse/stockOrderEditDistribution.vue b/src/views/warehouse/stockOrderEditDistribution.vue
index 8e5a035..ab7262c 100644
--- a/src/views/warehouse/stockOrderEditDistribution.vue
+++ b/src/views/warehouse/stockOrderEditDistribution.vue
@@ -575,7 +575,6 @@ export default {
this.thisData.stockOrderLists = this.codeArray;
this.thisData.formData = this.formData;
let item = this.getActionItem(this.formData.billType);
- debugger
if (item.mainAction == 'WareHouseOut' && this.formData.noInvOut != true) {
this.invQueryData = {
locStorageCode: this.formData.locStorageCode,