diff --git a/src/views/business/stockOrderDelSearch.vue b/src/views/business/stockOrderDelSearch.vue
index cbff2c1..a09baa7 100644
--- a/src/views/business/stockOrderDelSearch.vue
+++ b/src/views/business/stockOrderDelSearch.vue
@@ -584,7 +584,7 @@ export default {
}
},
detailHandleCurrentChange(val) {
- this.query.page = val;
+ this.detailQuery.page = val;
this.getStockOrderDetailList();
},
// 刷新表单
@@ -697,9 +697,7 @@ export default {
.then((response) => {
this.detailLoading = false;
this.detailList = response.data.list || [];
- /*this.detailList.forEach(data => {
- data['edit'] = false;
- });*/
+ this.detailTotal = response.data.total;
})
.catch(() => {
this.detailLoading = false;
diff --git a/src/views/inout/IOAddOrder.vue b/src/views/inout/IOAddOrder.vue
index bcb0ec7..25432bb 100644
--- a/src/views/inout/IOAddOrder.vue
+++ b/src/views/inout/IOAddOrder.vue
@@ -343,6 +343,12 @@
show-overflow-tooltip
>
+
+
@@ -577,6 +579,7 @@ export default {
index: null,
formName: null,
orderId: "",
+ curLocInv: null,
formMap: {
add: "新增",
edit: "编辑",
@@ -1087,6 +1090,7 @@ export default {
importOrder(row) {
this.orderId = row.id;
this.billAction = row.action;
+ this.curLocInv = row.locStorageCode;
this.addDialogVisible = true;
},
invChange() {
diff --git a/src/views/inout/editCode.vue b/src/views/inout/editCode.vue
index 0fcb3ef..999e377 100644
--- a/src/views/inout/editCode.vue
+++ b/src/views/inout/editCode.vue
@@ -83,6 +83,17 @@
:disabled="editData.serialNo!=null && editData.serialNo!='' ">
+
+
+
+ 是否以使用单元数量入库:
+
+
+
+
+
+
+
@@ -129,6 +140,7 @@ export default {
data() {
return {
xlhEnable: false,
+ isUseDyCheck: false
};
},
@@ -162,6 +174,9 @@ export default {
if (response.data.scbssfbhxlh == "否") {
this.xlhEnable = true;
}
+ if (response.data.zxxsbzbhsydysl > 1) {
+ this.isUseDyCheck = true;
+ }
} else {
}
this.loading = false;
diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue
index 335aae3..2ac8b1b 100644
--- a/src/views/inventory/InvProducts.vue
+++ b/src/views/inventory/InvProducts.vue
@@ -242,6 +242,7 @@ export default {
},
onSubmit() {
this.loading = true;
+ this.filterQuery.page = 1;
this.getList();
},
handleSizeChange(val) {
@@ -265,7 +266,6 @@ export default {
},
getList() {
this.loading = true;
- this.filterQuery.page = 1;
this.filterQuery.customerId = store.getters.customerId;
filterProducts(this.filterQuery)
.then((response) => {
diff --git a/src/views/inventory/InvProductsDetail.vue b/src/views/inventory/InvProductsDetail.vue
index 5570140..10f42f4 100644
--- a/src/views/inventory/InvProductsDetail.vue
+++ b/src/views/inventory/InvProductsDetail.vue
@@ -82,7 +82,7 @@
- 查询
@@ -144,6 +144,7 @@
@current-change="handleCurrentChange"
layout="prev, pager, next,total"
:total="total"
+ :current-page="query.page"
>
@@ -219,7 +220,10 @@ export default {
this.query.page = val;
this.getCodeList();
},
-
+ searchCode() {
+ this.query.page = 1;
+ this.getCodeList();
+ },
getCodeList() {
this.loading = true;
this.query.productIdFk = this.idQuery.relIdFk;