diff --git a/src/api/basic/basicMaterial.js b/src/api/basic/basicMaterial.js index b696515b..318122e5 100644 --- a/src/api/basic/basicMaterial.js +++ b/src/api/basic/basicMaterial.js @@ -23,7 +23,13 @@ export const getListMaterial = (current, size, params) => { } }) } - +export const $_getListMaterial = (params) => { + return request({ + url: '/api/logpm-basic/material//findPidList', + method: 'get', + params, + }) +} export const getDetail = (id) => { return request({ url: '/api/logpm-basic/material/detail', diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js index 443026d3..02cebe8d 100644 --- a/src/api/distribution/distributionDeliveryList.js +++ b/src/api/distribution/distributionDeliveryList.js @@ -346,4 +346,18 @@ export const $_cancelDelivery = data => { method: 'post', data: data, }); +}; + + +/** + * 零担签收 + * @param data + * @returns {AxiosPromise} + */ +export const $_deliveryZeroPackage = data => { + return request({ + url: '/api/logpm-distribution/deliveryList/deliveryZeroPackage', + method: 'post', + data: data, + }); }; \ No newline at end of file diff --git a/src/api/reportforms/index.js b/src/api/reportforms/index.js index fd5a546d..c5ca481c 100644 --- a/src/api/reportforms/index.js +++ b/src/api/reportforms/index.js @@ -55,4 +55,87 @@ export const $_getdetails = (params) => { params, responseType: 'blob', }) - } \ No newline at end of file + } + + // 自提明细报表 +export const $_getSelfpickup = (params) => { + return request({ + url: '/api/logpm-report/reportBillLoading/details', + method: 'get', + params, + }); +}; + +// 自提明细报表报表导出 +export const $_exportSelfpickup = (params) => { + return request({ + url: '/api/logpm-report/reportBillLoading/exportDetails', + method: 'get', + params, + responseType: 'blob', + }) +} +// 库存品出库明细报表 +export const $_getreport = (params) => { + return request({ + url: '/api/logpm-report/stock-out-detail/report', + method: 'get', + params, + }); +}; + +// 导出库存出库明细 +export const $_exportOutStocks = (params) => { + return request({ + url: '/api/logpm-report/stock/exportOutStocks', + method: 'get', + params, + responseType: 'blob', + }) +} + + +// 库存品入库明细报表 +export const $_getinStocks = (params) => { + return request({ + url: '/api/logpm-report/stock/inStocks', + method: 'get', + params, + }); +}; +// 库存品入库明细报表导出 +export const $_exportInStocks = (params) => { + return request({ + url: '/api/logpm-report/stock/exportInStocks', + method: 'get', + params, + responseType: 'blob', + }) +} + +// 库存品明细报表 +export const $_getInventory = (params) => { + return request({ + url: '/api/logpm-report/stock/details', + method: 'get', + params, + }); +}; + +// 导出库存品明细报表 +export const $_exportInventory = (params) => { + return request({ + url: '/api/logpm-report/stock/exportDetails', + method: 'get', + params, + responseType: 'blob', + }) +} +// 获取仓库 +export const $_getMyWarehouseList = data => { + return request({ + url: '/api/logpm-basicdata/warehouse/getMyWarehouseList', + method: 'get', + data, + }); +}; \ No newline at end of file diff --git a/src/components/ImgList/ImgList.vue b/src/components/ImgList/ImgList.vue new file mode 100644 index 00000000..315cf3b9 --- /dev/null +++ b/src/components/ImgList/ImgList.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 07fb7a3e..99c18be6 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -58,6 +58,7 @@

检测到到您的打印设备尚未安装驱动或打印服务!请按照以下提示进行操作:

-
+
+
+

安装Web打印服务

+

第一步:请您下载并安装Web打印服务CLodop。点击下载

+
+

打印机驱动下载

@@ -113,11 +118,7 @@ export function getLodop(oOBJECT, oEMBED) {
2020.4
-
-
-

安装Web打印服务

-

第一步:请您下载并安装Web打印服务CLodop。点击下载

-
+
`; // var strCLodopInstallB = "
(若此前已安装过,可点这里直接再次启动)"; var strCLodopInstallB = "
注意事项:"; diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue index 0fac26ef..a35c46e3 100644 --- a/src/views/basicdata/brand/basicClient.vue +++ b/src/views/basicdata/brand/basicClient.vue @@ -554,6 +554,17 @@ export default { sortable: true, head: false, }, + { + prop: 'phone', + label: '联系电话', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, { prop: 'typeServiceName', label: '配送类型', diff --git a/src/views/basicdata/driverArtery/basicdataDriverArtery.vue b/src/views/basicdata/driverArtery/basicdataDriverArtery.vue index 669e5f21..11a7e5a9 100644 --- a/src/views/basicdata/driverArtery/basicdataDriverArtery.vue +++ b/src/views/basicdata/driverArtery/basicdataDriverArtery.vue @@ -328,6 +328,7 @@ export default { labelWidth: '150', width: '200px', align: 'center', + multiple:true, span: 11, // dicData: [], dicUrl: '/api/logpm-basicdata/vehicle/dictionary?vehicleNub={{key}}', diff --git a/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue b/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue index 957ddb22..0ed71d89 100644 --- a/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue +++ b/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue @@ -85,11 +85,15 @@ - + - + - + - + + v-model="Addform.department" + :data="AssessmentDepartment" + check-strictly + :render-after-expand="false" + style="width: 240px" + @node-click="BelongsearcheNodeClick" + clearable + @change="Belongingdepartment" + /> - + + + - + + + - + + + - + + + - + + + @@ -145,7 +192,14 @@ - + + + @@ -157,11 +211,25 @@ - + + + - + + + @@ -173,13 +241,55 @@ - + - + + + + + + + + Preview Image + + +
+ + + + +
+
+ + + + +
@@ -610,24 +641,29 @@ - - - -
+ +
+ + + + + + + @@ -866,6 +902,7 @@ import { getReservationPackageList, deliveryInventorySign, printBatch, + $_deliveryZeroPackage, } from '@/api/distribution/distributionDeliveryList'; import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList'; @@ -2306,6 +2343,11 @@ export default { //状态列表 stateData: [], // 表单配置 + zeroPg:{ + currentPage: 1, + pageSize: 30, + total: 40, + }, option: { expand: false, index: true, @@ -3961,8 +4003,11 @@ export default { console.log(res, '零担数据'); const data = res.data.data; this.LessThantruckloadListData = data.records; + this.zeroPg.total = data.total; + }) + .catch(() => { + }) - .catch(() => {}) .finally(() => { this.loading = false; //关闭加载 }); @@ -4383,35 +4428,68 @@ export default { message: '请勾选需要批量签收的数据', type: 'warning', }); - return + return; } - this.$confirm('是否进行批量签收?').then(()=>{ - this.loading=true;//开启加载 - if(res.data.code==200){ - this.truckload(this.page); - } - - }).catch(()=>{ - }) + const allSigned = this.LessThantruckloadListData.every( + item => item.signingStatusName == '待签收' || item.signingStatusName == '部分签收' + ); + console.log(allSigned,'allSigned'); + if (!allSigned) { + let temp = {}; + console.log(true); // 如果都已签收,返回true + temp = this.LessThantruckloadListData.find(item => item.signingStatusName == '已签收'); + ElMessage({ + message: `${temp.orderCode}运单号已签收`, + type: 'warning', + }); + return + } + + this.$confirm('是否进行批量签收?') + .then(() => { + this.loading = true; //开启加载 + let data = { + deliveryId: this.deliveryId, + reservationId: this.wid, + zeroPackageIds: this.selectionList.map(item => item.id).join(','), + }; + $_deliveryZeroPackage(data).then(res => { + if (res.data.code == 200) { + ElMessage({ + showClose: true, + message: res.data.msg, + type: 'success', + }) + this.truckload(this.page); + this.selectionList = []; + } + }).catch(()=>{ + + }).finally(()=>{ + this.loading = false; //关闭加载 + }); + }) + .catch(() => {}); }, // 零担批量计划取消 LdBatchcancellation() { + return if (!this.selectionList.length) { ElMessage({ message: '请勾选需要计划取消的数据', type: 'warning', }); - return + return; } - this.$confirm('是否进行批量计划取消?').then(()=>{ - this.loading=true;//开启加载 - if(res.data.code == 200){ - this.truckload(this.page); - } - }).catch(()=>{ - - }) + this.$confirm('是否进行批量计划取消?') + .then(() => { + this.loading = true; //开启加载 + if (res.data.code == 200) { + this.truckload(this.page); + } + }) + .catch(() => {}); }, // 批量签收 Batchsigning() { @@ -5065,6 +5143,7 @@ export default { console.log('库存品包件>>>>>>>', res.data.data); const data = res.data.data; this.reservationInventoryPackageData = data.records; + this.wpage.total = data.total; this.loading = false; //关闭加载 }); }, @@ -5132,10 +5211,30 @@ export default { this.wpage.currentPage = currentPage; this.getWrapdetails(this.wpage); }, + // 包件库存品 + InventorycurrentChange(currentPage){ + this.wpage.currentPage = currentPage; + this.getReservationInventoryPackageListInfo(this.wpage) + }, wsizeChange(pageSize) { this.wpage.pageSize = pageSize; this.getWrapdetails(this.wpage); }, + // 包件库存品 + InventoryChange(pageSize){ + this.wpage.pageSize = pageSize; + this.getReservationInventoryPackageListInfo(this.wpage) + }, + // 零担 + zeroChange(pageSize){ + this.zeroPg.pageSize = pageSize; + this.truckload(this.zeroPg); + }, + // 零担 + zerocurrentChange(currentPage){ + this.zeroPg.currentPag=currentPage; + this.truckload(this.zeroPg); + }, winputsc(index, row) { this.wrapoption.query[row.prop] = index; this.getWrapdetails(this.wpage); diff --git a/src/views/distribution/inventory/distributionStockListMarket.vue b/src/views/distribution/inventory/distributionStockListMarket.vue index 3702c9eb..0009f560 100644 --- a/src/views/distribution/inventory/distributionStockListMarket.vue +++ b/src/views/distribution/inventory/distributionStockListMarket.vue @@ -143,12 +143,12 @@ v-model="formInline.sku" placeholder="请输入sku" clearable - :disabled="Boolean(unpackFormDisable.sku)" + :disabled="FromDis" /> - + --> + + @@ -178,7 +196,7 @@ reserve-keyword remote-show-suffix placeholder="请选择货物单位" - :disabled="Boolean(unpackFormDisable.cargoUnit)" + :disabled="FromDis" > @@ -201,7 +219,7 @@ v-model="formInline.cargoNumber" placeholder="请输入产品编码" clearable - :disabled="Boolean(unpackFormDisable.cargoNumber)" + :disabled="goodsDis || FromDis" /> @@ -209,7 +227,7 @@ v-model="formInline.packageNum" placeholder="请输入包装数量" clearable - :disabled="Boolean(unpackFormDisable.packageNum)" + :disabled="FromDis" /> @@ -314,7 +332,7 @@ import { stockExport, } from '@/api/distribution/distributionStockList'; import { getListParcelDetails } from '@/api/distribution/distributionParcelDetails'; -import { getListMaterial } from '@/api/basic/basicMaterial'; +import { getListMaterial, $_getListMaterial } from '@/api/basic/basicMaterial'; import option from '@/option/distribution/distributionStockList'; import { mapGetters } from 'vuex'; import { exportBlob } from '@/api/common'; @@ -333,6 +351,8 @@ export default { unpackFormDisable: {}, // 拆包名称下拉 选择 optionsName: [], + goodsDis: true, + FromDis: true, columnList: [ { prop: '', @@ -820,24 +840,24 @@ export default { /** * 查询 * */ - async remoteMethodName(query) { - console.log('query', query); - if (query) { - this.loading = true; - //查询物料数据 - let asd = await getListMaterial(this.page.currentPage, this.page.pageSize, { - name: query, - // pid: this.stockList.materialId, - }).then(); - console.log('物料信息', asd.data.data); - if (!!asd.data.data) { - this.optionsName = asd.data.data.records; - } - this.loading = false; - } else { - this.optionsName = []; - } - }, + // async remoteMethodName(query) { + // console.log('query', query); + // if (query) { + // this.loading = true; + // //查询物料数据 + // let asd = await getListMaterial(this.page.currentPage, this.page.pageSize, { + // name: query, + // pid: this.stockList.materialId, + // }).then(); + // console.log('物料信息', asd.data.data); + // if (!!asd.data.data) { + // this.optionsName = asd.data.data.records; + // } + // this.loading = false; + // } else { + // this.optionsName = []; + // } + // }, /** * 物料选择赋值 * */ @@ -1032,6 +1052,35 @@ export default { // this.form.parcels = shi; // } // console.log("提交了"); + if (this.FromDis) { + if (!this.formInline.materialIdName) { + this.$message.warning('请选择货物名称'); + return; + } + } + + + if (!this.formInline.sku) { + this.$message.warning('请输入Sku'); + return; + } + + if (!this.formInline.cargoUnit) { + this.$message.warning('请选择货物单位'); + return; + } + if (!this.formInline.cargoNorms) { + this.$message.warning('请输入规格'); + return; + } + if (!this.formInline.packageNum) { + this.$message.warning('请输入包装数量'); + return; + } + if (!this.formInline.unpackingQuantity) { + this.$message.warning('请输入拆箱数量'); + return; + } if (parseInt(this.formInline.unpackingQuantity) > parseInt(this.getQuery.quantityStock)) { this.$message.warning('拆包数量大于在库数量!!!'); return; @@ -1105,6 +1154,22 @@ export default { }); }, async handleViewDismantle(row) { + let data = { + pid: row.row.materialId, + }; + $_getListMaterial(data).then(res => { + console.log('物料信息', res); + if (res.data.data.length) { + this.optionsName = res.data.data; + console.log('this.optionsName', this.optionsName); + this.goodsDis = false; + this.FromDis = true; + } else { + this.goodsDis = true; + this.FromDis = false; + } + }); + console.log('><<>L:', row.row); this.dismantle = true; this.view = true; diff --git a/src/views/distribution/inventory/distrilbutionBillLading.vue b/src/views/distribution/inventory/distrilbutionBillLading.vue index 2f00ed1a..48b5192e 100644 --- a/src/views/distribution/inventory/distrilbutionBillLading.vue +++ b/src/views/distribution/inventory/distrilbutionBillLading.vue @@ -2906,6 +2906,7 @@ export default { params.genre = 1; params.typeService = 3; params.reservation = '30'; + params.isAll=0; getListOne(page.currentPage, page.pageSize, Object.assign(params, this.queryOrder)).then( res => { const data = res.data.data; diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue index 97b705e9..d56e188e 100644 --- a/src/views/distribution/turndelivery/deliveryDiscuss.vue +++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue @@ -292,6 +292,7 @@ >