diff --git a/src/views/inout/IOAddOrder.vue b/src/views/inout/IOAddOrder.vue
index 02c4c2a..650f7d2 100644
--- a/src/views/inout/IOAddOrder.vue
+++ b/src/views/inout/IOAddOrder.vue
@@ -310,6 +310,12 @@
show-overflow-tooltip
>
+
+
+
+
+
+ 是否以使用单元数量入库:
+
+
+
+
+
+
+
@@ -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;