diff --git a/src/api/waybill/ChangeOrder.js b/src/api/waybill/ChangeOrder.js new file mode 100644 index 00000000..d4e136fc --- /dev/null +++ b/src/api/waybill/ChangeOrder.js @@ -0,0 +1,19 @@ +import request from '@/axios'; + +/** + * 获取暂存单列表数据 + * @param {number} current + * @param {number} size + * @param {*} params + * @returns + */ +export const getopenOrderAdvancePageList = (page, params) => { + return request({ + url: '/api/logpm-trunkline/openOrder/advancePageList', + method: 'get', + params: { + ...params, + ...page, + }, + }); +}; diff --git a/src/api/waybill/TemporaryStorageList.js b/src/api/waybill/TemporaryStorageList.js new file mode 100644 index 00000000..d4e136fc --- /dev/null +++ b/src/api/waybill/TemporaryStorageList.js @@ -0,0 +1,19 @@ +import request from '@/axios'; + +/** + * 获取暂存单列表数据 + * @param {number} current + * @param {number} size + * @param {*} params + * @returns + */ +export const getopenOrderAdvancePageList = (page, params) => { + return request({ + url: '/api/logpm-trunkline/openOrder/advancePageList', + method: 'get', + params: { + ...params, + ...page, + }, + }); +}; diff --git a/src/components/newTablecmt/newTablecmt.vue b/src/components/newTablecmt/newTablecmt.vue index f3a045cb..029887e4 100644 --- a/src/components/newTablecmt/newTablecmt.vue +++ b/src/components/newTablecmt/newTablecmt.vue @@ -643,7 +643,7 @@ defineExpose({}); } .el-date-editor.el-input, .el-date-editor.el-input__wrapper { - height: 23px !important; + // height: 23px !important; } .copys { display: inline-block; diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 6bca90a5..4b058180 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -545,7 +545,7 @@ function copyContent(content: string) { defineExpose({}); - diff --git a/src/views/distribution/inventory/CreateOrder.vue b/src/views/distribution/inventory/CreateOrder.vue new file mode 100644 index 00000000..a5ccb9cf --- /dev/null +++ b/src/views/distribution/inventory/CreateOrder.vue @@ -0,0 +1,746 @@ + + + + + diff --git a/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue b/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue index 877e8454..23ef997d 100644 --- a/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue +++ b/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue @@ -177,6 +177,7 @@ type="primary" @click=" () => { + this.box = false; this.$router.push('/basicdata/vehicle/basicdataVehicle'); } " @@ -211,6 +212,7 @@ v-if="addInfo.isNew" @click=" () => { + this.box = false; this.$router.push('/basicdata/driverArtery/basicdataDriverArtery'); } " diff --git a/src/views/distribution/inventory/distributionStockArticleDetails.vue b/src/views/distribution/inventory/distributionStockArticleDetails.vue index bb93b977..67d52591 100644 --- a/src/views/distribution/inventory/distributionStockArticleDetails.vue +++ b/src/views/distribution/inventory/distributionStockArticleDetails.vue @@ -1262,18 +1262,19 @@ export default { // this.view = true; // this.box = true; this.materialQRCode = row; + console.log('11213 :>> ', 11213); let qr = { ids: row.id, }; showOrderPackgeCode(qr).then(res => { // this.orderPackageCode = res.data - console.log(res.data); + // console.log(res.data); + console.log('res :>> ', res); this.html = ''; this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); + this.dialogVisible = true; }); - - this.dialogVisible = true; }, handleTrajectory(row) { console.log('>>>>', row); diff --git a/src/views/distribution/inventory/distributionStockListDiscuss.vue b/src/views/distribution/inventory/distributionStockListDiscuss.vue index 9d56b882..8c6f482e 100644 --- a/src/views/distribution/inventory/distributionStockListDiscuss.vue +++ b/src/views/distribution/inventory/distributionStockListDiscuss.vue @@ -1091,6 +1091,9 @@ export default { path: '/distribution/inventory/distributionStockListDetails', query: { id: row.row.id, + marketId: row.row.marketId, + materialId: row.row.materialId, + incomingBatch: row.row.incomingBatch, name: row.row.descriptionGoods + ' — 明细', }, }); diff --git a/src/views/distribution/inventory/distributionStockListMarket.vue b/src/views/distribution/inventory/distributionStockListMarket.vue index 30d3c21b..32a88d8b 100644 --- a/src/views/distribution/inventory/distributionStockListMarket.vue +++ b/src/views/distribution/inventory/distributionStockListMarket.vue @@ -1082,6 +1082,9 @@ export default { path: '/distribution/inventory/distributionStockListDetails', query: { id: row.row.id, + marketId: row.row.marketId, + materialId: row.row.materialId, + incomingBatch: row.row.incomingBatch, name: row.row.descriptionGoods + ' — 明细', }, }); diff --git a/src/views/distribution/inventory/distributionStockListSelf.vue b/src/views/distribution/inventory/distributionStockListSelf.vue index 002e1af4..8f7418d3 100644 --- a/src/views/distribution/inventory/distributionStockListSelf.vue +++ b/src/views/distribution/inventory/distributionStockListSelf.vue @@ -1084,6 +1084,9 @@ export default { path: '/distribution/inventory/distributionStockListDetails', query: { id: row.row.id, + marketId: row.row.marketId, + materialId: row.row.materialId, + incomingBatch: row.row.incomingBatch, name: row.row.descriptionGoods + ' — 明细', }, }); diff --git a/src/views/waybill/ChangeOrder.vue b/src/views/waybill/ChangeOrder.vue new file mode 100644 index 00000000..86c2882e --- /dev/null +++ b/src/views/waybill/ChangeOrder.vue @@ -0,0 +1,495 @@ + + + + + diff --git a/src/views/waybill/FreezeOrder.vue b/src/views/waybill/FreezeOrder.vue new file mode 100644 index 00000000..1cec4952 --- /dev/null +++ b/src/views/waybill/FreezeOrder.vue @@ -0,0 +1,721 @@ + + + + + diff --git a/src/views/waybill/TemporaryStorageList.vue b/src/views/waybill/TemporaryStorageList.vue new file mode 100644 index 00000000..3c286591 --- /dev/null +++ b/src/views/waybill/TemporaryStorageList.vue @@ -0,0 +1,730 @@ + + + + + diff --git a/src/views/waybill/WaybillOrderList.vue b/src/views/waybill/WaybillOrderList.vue new file mode 100644 index 00000000..7e7a8bff --- /dev/null +++ b/src/views/waybill/WaybillOrderList.vue @@ -0,0 +1,553 @@ + + + + + diff --git a/src/views/waybill/orderPackageList.vue b/src/views/waybill/orderPackageList.vue new file mode 100644 index 00000000..38b9bd9b --- /dev/null +++ b/src/views/waybill/orderPackageList.vue @@ -0,0 +1,664 @@ + + + + +