diff --git a/src/views/basic/UdiInfoManage.vue b/src/views/basic/UdiInfoManage.vue index fc3a0a8..d95a5d4 100644 --- a/src/views/basic/UdiInfoManage.vue +++ b/src/views/basic/UdiInfoManage.vue @@ -58,16 +58,16 @@ 查询 - 关联添加 - 添加DI信息 - 添加产品信息 @@ -150,7 +150,7 @@ 关联DI @@ -164,10 +164,10 @@ 编辑 - 删除 @@ -846,6 +846,7 @@ import selectUdi from "./UdiInfoRelevance.vue"; import selectErp from "./UdiInfoselectErpUdi"; import selectLocalUdi from "./UdiInfoSelectLocalUdi"; import selectUdiVersion from "./UdiinfoSelectVersion"; +import {findConfig} from "@/api/thrsys/spsSyncStatus"; export default { data() { @@ -908,6 +909,7 @@ export default { selectLocalVisible: false, //关联UDI isUseDyCheck: false, lockStatusMap: {1: "未提交", 2: "已提交", 3: "已锁定"}, + configParms: {}, }; }, @@ -1325,6 +1327,16 @@ export default { this.cancelDialog(); }); }, + getSyncConfig() { + findConfig() + .then((response) => { + if (response.code == 20000) { + this.configParms = response.data; + } + }) + .catch(() => { + }); + }, selectSysParam() { let query = { @@ -1383,6 +1395,7 @@ export default { this.getList(); this.selectSysParam(); this.getSysFilter(); + this.getSyncConfig(); }, }; diff --git a/src/views/basic/UdiInfoManageSp.vue b/src/views/basic/UdiInfoManageSp.vue index 18bc764..b14d060 100644 --- a/src/views/basic/UdiInfoManageSp.vue +++ b/src/views/basic/UdiInfoManageSp.vue @@ -372,6 +372,7 @@ 是否寄售 - 允许无批次号 - 允许无失效日期 - 允许无生产日期 diff --git a/src/views/thrsys/SysUdimsConfig.vue b/src/views/thrsys/SysUdimsConfig.vue index 2cac119..4bcb186 100644 --- a/src/views/thrsys/SysUdimsConfig.vue +++ b/src/views/thrsys/SysUdimsConfig.vue @@ -367,7 +367,7 @@ export default { .then((response) => { this.busTypes = response.data.list || []; this.total = response.data.total || 0; - this.getConfig(); + // this.getConfig(); }) .catch(() => { }); @@ -411,7 +411,7 @@ export default { ADMIN_ID: store.getters.adminId, ADMIN_TOKEN: store.getters.token, }; - + this.getConfig(); this.getBusType(); }, } diff --git a/src/views/thrsys/SysUdimsData.vue b/src/views/thrsys/SysUdimsData.vue index e396693..f321e83 100644 --- a/src/views/thrsys/SysUdimsData.vue +++ b/src/views/thrsys/SysUdimsData.vue @@ -370,12 +370,10 @@ export default { } , handleChange(response, files, fileList) { - console.log(response); if (response.code != 20000) { this.$message.error(response.message); this.getList(); } else { - // console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]); this.$message.success(response.data); this.getList(); } diff --git a/src/views/thrsys/ThrInvWarehouse.vue b/src/views/thrsys/ThrInvWarehouse.vue index 31bcfab..11f6390 100644 --- a/src/views/thrsys/ThrInvWarehouse.vue +++ b/src/views/thrsys/ThrInvWarehouse.vue @@ -134,6 +134,7 @@ 编辑 删除 { let product = { diff --git a/src/views/warehouse/IOCheckErrOrder.vue b/src/views/warehouse/IOCheckErrOrder.vue index 7c47f02..a0e1783 100644 --- a/src/views/warehouse/IOCheckErrOrder.vue +++ b/src/views/warehouse/IOCheckErrOrder.vue @@ -426,6 +426,7 @@ v-on:closeManuDialog="closeManuDialog" :orderId="orderId" :orderAction="billAction" + :curLocInv="curLocInv" > @@ -597,6 +598,7 @@ export default { index: null, formName: null, orderId: "", + curLocInv: null, formMap: { add: "新增", edit: "编辑", @@ -711,7 +713,6 @@ export default { this.getList(); }, handleSelectionChange(val) { - console.log(val); this.multipleSelection = val; }, @@ -777,7 +778,6 @@ export default { this.filterQuery.customerId = store.getters.customerId; filterOrder(this.filterQuery) .then((response) => { - console.log(response) this.loading = false; this.list = response.data.list || []; this.total = response.data.total || 0; @@ -885,7 +885,6 @@ export default { refresgOrderDetail() { orderDetail(this.detailQuery) .then((response) => { - console.log(response) this.loading = false; this.detailList = response.data || []; }) @@ -928,7 +927,6 @@ export default { this.successOrderExportPDFSettingVisible = true; }, successOrderExportPDF(row) { - console.log(row) let tQuery = { orderId: row.id, customerId: store.getters.customerId @@ -1187,7 +1185,6 @@ export default { }, uploadOrderDialog(value) { - console.log(value.id + "---" + value.orderid); this.uploadQuery = { orderId: value.id, }; @@ -1238,6 +1235,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/warehouse/addHosOrder.vue b/src/views/warehouse/addHosOrder.vue index b26c894..e808033 100644 --- a/src/views/warehouse/addHosOrder.vue +++ b/src/views/warehouse/addHosOrder.vue @@ -345,6 +345,12 @@ show-overflow-tooltip > + + @@ -139,6 +134,7 @@ @current-change="handleCurrentChange" layout="prev, pager, next" :total="total" + :current-page="query.page" > @@ -146,6 +142,7 @@ @@ -190,6 +187,7 @@ @current-change="detailHandleCurrentChange" layout="prev, pager, next" :total="detailTotal" + :current-page="detailTotal.page" > @@ -628,6 +626,8 @@ export default { this.detailList = []; this.haveDistributionVisible = false; this.actDateRange = []; + + this.resetDetailQuery(); }, onSubmit() { if (this.actDateRange !== null) { @@ -638,19 +638,30 @@ export default { this.query.endTime = null; } + this.query.page = 1; this.getList(); if (this.query.status === "202") { this.haveDistributionVisible = true; } else { this.haveDistributionVisible = false; } + + this.resetDetailQuery(); + }, + resetDetailQuery() { + this.detailQuery = { + orderIdFk: "", + page: 1, + limit: 20 + }; + this.detailTotal = 0; }, handleCurrentChange(val) { this.query.page = val; this.getList(); }, detailHandleCurrentChange(val) { - this.query.page = val; + this.detailQuery.page = val; this.getStockOrderDetailList(); }, // 刷新表单 @@ -755,6 +766,7 @@ export default { .then((response) => { this.detailLoading = false; this.detailList = response.data.list || []; + this.detailTotal = response.data.total; }) .catch(() => { this.detailLoading = false; diff --git a/src/views/warehouse/stockOrderNew.vue b/src/views/warehouse/stockOrderNew.vue index c842466..d29c355 100644 --- a/src/views/warehouse/stockOrderNew.vue +++ b/src/views/warehouse/stockOrderNew.vue @@ -591,6 +591,17 @@ export default { this.haveNewDistributionVisible = false; this.actDateRange = []; + + //重置产品列表查询参数 + this.resetDetailQuery(); + }, + resetDetailQuery() { + this.detailTotal = { + orderIdFk: "", + page: 1, + limit: 20 + }; + this.detailTotal = 0; }, onSubmit() { if (this.actDateRange !== null) { @@ -607,13 +618,14 @@ export default { } else { this.haveNewDistributionVisible = false; } + this.resetDetailQuery(); }, handleCurrentChange(val) { this.query.page = val; this.getList(); }, detailHandleCurrentChange(val) { - this.query.page = val; + this.detailQuery.page = val; this.getStockOrderDetailList(); }, // 刷新表单 diff --git a/src/views/warehouse/stockOrderNewDistribution.vue b/src/views/warehouse/stockOrderNewDistribution.vue index 0c0525a..6bbe512 100644 --- a/src/views/warehouse/stockOrderNewDistribution.vue +++ b/src/views/warehouse/stockOrderNewDistribution.vue @@ -63,7 +63,7 @@ - +
@@ -98,7 +98,7 @@ - +
diff --git a/src/views/warehouse/stockOrderWaitCheck.vue b/src/views/warehouse/stockOrderWaitCheck.vue index 667e473..5df5972 100644 --- a/src/views/warehouse/stockOrderWaitCheck.vue +++ b/src/views/warehouse/stockOrderWaitCheck.vue @@ -81,10 +81,6 @@ :data="list" highlight-current-row style="width: 100%;" @row-click="getStockOrderDetailList" ref="multipleTable"> - - @@ -477,6 +473,7 @@ export default { this.query.endTime = null; } + this.query.page = 1; this.getList(); if (this.query.status === "202" || this.query.status === "502") { this.haveDistributionVisible = true; @@ -506,7 +503,7 @@ export default { this.getList(); }, detailHandleCurrentChange(val) { - this.query.page = val; + this.detailQuery.page = val; this.getStockOrderDetailList(); }, // 刷新表单 @@ -610,9 +607,9 @@ export default { this.detailLoading = true; stockOrderDetail(this.detailQuery) .then((response) => { - console.log(response) this.detailLoading = false; this.detailList = response.data.list || []; + this.detailTotal = response.data.total; }) .catch(() => { this.detailLoading = false;