diff --git a/src/api/distribution/orderLogs.js b/src/api/distribution/orderLogs.js new file mode 100644 index 00000000..c1a194f3 --- /dev/null +++ b/src/api/distribution/orderLogs.js @@ -0,0 +1,23 @@ +import request from '@/axios'; + +/** + * 初始化获取配载信息 + */ +export const postFindPageList = (data = {}) => { + return request({ + url: '/api/logpm-aftersales/abnormal/findPageList', + method: 'post', + data, + }); +}; + +/** + * 初始化获取配载信息 + */ +export const postDealAbnormal = (data = {}) => { + return request({ + url: '/api/logpm-aftersales/abnormal/dealAbnormal', + method: 'post', + data, + }); +}; diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 99c18be6..bdc97b32 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -407,7 +407,7 @@ onMounted(() => { handleCheckSelect(_checkSelect); }); /** 勾选 */ -function handleCheckSelect(select: []) { +function handleCheckSelect(select: any[]) { console.log('select :>> ', select); if (select.length !== 0) { for (const item of select) { diff --git a/src/option/distribution/orderLogs.js b/src/option/distribution/orderLogs.js new file mode 100644 index 00000000..436bf496 --- /dev/null +++ b/src/option/distribution/orderLogs.js @@ -0,0 +1,192 @@ +/** 自提详情内表格 */ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'typeName', + label: '类型', + type: 3, + values: '', + width: '130', + checkarr: [ + { value: 1, label: '入库' }, + { value: 2, label: '出库' }, + ], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'abnormalTypeName', + label: '异常类型', + type: 3, + values: '', + width: '130', + checkarr: [ + { value: 1, label: '无系统编码' }, + { value: 2, label: '无装车计划' }, + { value: 2, label: '无装车记录' }, + { value: 2, label: '无卸车记录' }, + ], + fixed: false, + sortable: true, + }, + { + prop: 'carTypeName', + label: '车类型', + type: 3, + values: '', + width: '130', + checkarr: [{ value: 1, label: '干线' }], + fixed: false, + sortable: true, + }, + { + prop: 'upWarehouseName', + label: '上报仓库', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'carsNo', + label: '车次号', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'waybillNo', + label: '运单号', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'orderCode', + label: '订单自编号', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'orderPackageCode', + label: '包条码', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + // { + // prop: 'orderPackageCode', + // label: '装车异常', + // type: 2, + // values: '', + // width: '150', + // checkarr: [], + // fixed: true, + // sortable: true, + // head: false, + // }, + // { + // prop: 'orderPackageCode', + // label: '卸车异常', + // type: 2, + // values: '', + // width: '150', + // checkarr: [], + // fixed: true, + // sortable: true, + // head: false, + // }, + { + prop: 'upUserName', + label: '上报人', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'abnormalStatusName', + label: '异常状态', + type: 3, + values: '', + width: '130', + checkarr: [ + { value: 0, label: '待处理' }, + { value: 1, label: '完结' }, + ], + fixed: false, + sortable: true, + }, + { + prop: 'upTime', + label: '上报时间', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'dealTime', + label: '处理时间', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'remark', + label: '备注', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: true, + }, +]; diff --git a/src/router/views/index.js b/src/router/views/index.js index 3a50f872..3a31f9b2 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -348,6 +348,17 @@ export default [ component: () => import(/* webpackChunkName: "views" */ '@/views/distribution/inventory/CreateOrder.vue'), }, + { + path: 'delivery/orderLogs', + name: '订单日志', + meta: { + data: 'data', + }, + component: () => + import( + /* webpackChunkName: "views" */ '@/views/distribution/inventory/delivery/orderLogs.vue' + ), + }, ], }, { @@ -693,7 +704,6 @@ export default [ }, ], }, - { path: '/distribution/reservation/atlas', component: Layout, diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue index 442db85d..9265ed38 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue @@ -912,6 +912,11 @@ export default { break; case '3': console.log('客户信息!!!', this.formCustomer); + for (const key in this.formCustomer) { + const value = this.formCustomer[key]; + if (!value) return this.$message.warning('请完善客户信息再提交'); + } + if (!this.dialogFormCustomerOwn) { this.formCustomer.stockArticleId = this.ids; } diff --git a/src/views/distribution/inventory/delivery/orderLogs.vue b/src/views/distribution/inventory/delivery/orderLogs.vue new file mode 100644 index 00000000..79337d78 --- /dev/null +++ b/src/views/distribution/inventory/delivery/orderLogs.vue @@ -0,0 +1,492 @@ + + + + + diff --git a/src/views/distribution/inventory/distributionStockArticleDetails.vue b/src/views/distribution/inventory/distributionStockArticleDetails.vue index b20c191a..5119c3ca 100644 --- a/src/views/distribution/inventory/distributionStockArticleDetails.vue +++ b/src/views/distribution/inventory/distributionStockArticleDetails.vue @@ -125,6 +125,7 @@ @@ -263,6 +264,7 @@ + @@ -375,6 +377,7 @@ import print from '@/utils/print'; import { ElMessage } from 'element-plus'; import { hanleTextLineFeed } from '@/utils/util'; export default { + name: '/distribution/inventory/distributionStockArticleDetails', data() { return { height: 0, @@ -675,6 +678,7 @@ export default { pageLoading: false, tableLoading: false, }, + pageId: '', }; }, mounted() { @@ -759,8 +763,11 @@ export default { watch: { '$route.query.id': { handler(newVal, oldVal) { - // console.log(newVal, oldVal); + if (this.$route.path !== '/distribution/inventory/distributionStockArticleDetails') return; if (!!this.$route.query.id) { + if (this.pageId === this.$route.query.id) return; + this.page.currentPage = 1; + this.pageId = this.$route.query.id; this.onLoad(this.page); this.onLoadOwn(this.page); } @@ -1341,29 +1348,30 @@ export default { this.dialogVisible = true; }, - handleQRCode(row) { - // this.title = '查看' - // this.view = true; - // this.box = true; - this.materialQRCode = row; - console.log('11213 :>> ', 11213); - - let qr = { - ids: row.id, - }; - this.html = ''; - showOrderPackgeCode(qr).then(async res => { - // this.orderPackageCode = res.data - // console.log(res.data); - console.log('res :>> ', res); - this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); + async handleQRCode(row) { + try { + this.loadingObj.pageLoading = true; + let qr = { + ids: row.id, + }; + this.html = ''; + const res = await showOrderPackgeCode(qr); + const { code, data } = res.data; + if (code !== 200) return; + this.html = this.getHtmls(data.dataList, data.templateHtml); this.dialogVisible = true; await this.$nextTick(); - hanleTextLineFeed('category', 15); + hanleTextLineFeed('category', 14); + hanleTextLineFeed('materialName', 14); + hanleTextLineFeed('qrCode', 18); hanleTextLineFeed('customer', 45); - }); + } catch (err) { + console.log('err :>> ', err); + } finally { + this.loadingObj.pageLoading = false; + } }, handleTrajectory(row) { console.log('>>>>', row); @@ -1419,7 +1427,6 @@ export default { this.view = false; }, selectionChange(list) { - // console.log("添加阿斯顿发生",list); this.selectionList = list; }, selectionClear() { @@ -1501,6 +1508,11 @@ export default { } }, }, + async activated() { + if (this.pageId !== this.$route.query.id) return; + await this.$nextTick(); + this.$refs.tableNode.handleCheckSelect(this.selectionList); + }, }; diff --git a/src/views/distribution/reservation/reservationAddFrom.vue b/src/views/distribution/reservation/reservationAddFrom.vue index f7e66555..fbf807a4 100644 --- a/src/views/distribution/reservation/reservationAddFrom.vue +++ b/src/views/distribution/reservation/reservationAddFrom.vue @@ -372,13 +372,12 @@ @selection="selectionInventoryChange" > @@ -1548,7 +1547,7 @@ export default { { prop: 'reservationNum', label: '预约数量', - type: 10, + type: 1, values: '', width: '150', checkarr: [], @@ -2158,7 +2157,10 @@ export default { const value = _inventoryInfo[i]; // 循环获取符合条件的库存品组成数组 const _index = ids.indexOf(value.id); - if (_index !== -1) _chooseArr.splice(_index, 1, value); + if (_index !== -1) { + value.reservationNum = _chooseArr[_index].reservationNum; + _chooseArr.splice(_index, 1, value); + } } } @@ -2541,13 +2543,13 @@ export default { if (valid) { console.log('submit!'); try { - if (this.renderInventoryData.length) { - const allQuantitiesAreFalsy = this.renderInventoryData.every( + if (this.inventoryData.length) { + const allQuantitiesAreFalsy = this.inventoryData.every( item => item.reservationNum != '0' ); if (!allQuantitiesAreFalsy) { ElMessage({ - message: '请移预约加数量为0的订单', + message: '请移除预约加数量为0的库存品订单', type: 'warning', }); return; diff --git a/src/views/waybill/TemporaryStorageList.vue b/src/views/waybill/TemporaryStorageList.vue index be6d1e47..b9ac67de 100644 --- a/src/views/waybill/TemporaryStorageList.vue +++ b/src/views/waybill/TemporaryStorageList.vue @@ -138,7 +138,7 @@ @size-change="sizeChange" @current-change="currentChange" :current-page="page.pageNum" - :page-sizes="[30, 50, 80, 120]" + :page-sizes="[30, 50, 100, 200, 500, 1000]" :page-size="page.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="page.total"