diff --git a/src/api/distribution/distrilbutionBillLading.js b/src/api/distribution/distrilbutionBillLading.js index fb9b5ef0..669983b0 100644 --- a/src/api/distribution/distrilbutionBillLading.js +++ b/src/api/distribution/distrilbutionBillLading.js @@ -11,6 +11,39 @@ export const getList = (current, size, params) => { } }) } +export const getOrderDetail = (current, size, params) => { //订单 + return request({ + url: '/api/logpm-distribution/distrilbutionBillStock/billOrderDetail', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} +export const getPackDetail = (current, size, params) => { //包件 + return request({ + url: '/api/logpm-distribution/distrilbutionBillStock/billOrderPack', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} +export const getInventoryDetail = (current, size, params) => { //库存品 + return request({ + url: '/api/logpm-distribution/distributionDeliveryDetails/billOrderInventory', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} export const getListOwn = (current, size, params) => { return request({ @@ -24,6 +57,16 @@ export const getListOwn = (current, size, params) => { }) } +export const getListOwnNUm = (params) => { + return request({ + url: '/api/logpm-distribution/distrilbutionBillLading/listNum', + method: 'get', + params: { + ...params, + } + }) +} + export const getDetail = (id) => { return request({ url: '/api/logpm-distribution/distrilbutionBillLading/detail', @@ -34,6 +77,25 @@ export const getDetail = (id) => { }) } +export const getViewDetailOwn = (id) => { + return request({ + url: '/api/logpm-distribution/distrilbutionBillLading/viewDetailOwn', + method: 'get', + params: { + id + } + }) +} +export const getBillLadingDetail = (ids) => { //签收 + return request({ + url: '/api/logpm-distribution/distrilbutionBillLading/updateOwn', + method: 'post', + params: { + ids, + } + }) +} + export const remove = (ids) => { return request({ url: '/api/logpm-distribution/distrilbutionBillLading/remove', diff --git a/src/router/views/index.js b/src/router/views/index.js index d86b4f92..12ff84ac 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -762,6 +762,25 @@ export default [ }, ], }, + { + path: '/distribution/inventory/distrilbutionBillLadingView', + component: Layout, + redirect: '/inventory/distrilbutionBillLadingView', + children: [ + { + path: '/distribution/inventory/distrilbutionBillLadingView', + name: '查看提货详情', + meta: { + i18n: 'dict', + }, + props: route => ({ + name: route.query.name, + id: route.query.id + }), + component: () => import('@/views/distribution/inventory/distrilbutionBillLadingView.vue'), + }, + ], + }, { path: '/reservation/order_listFrom', component: Layout, diff --git a/src/views/distribution/inventory/distrilbutionBillLading.vue b/src/views/distribution/inventory/distrilbutionBillLading.vue index 72429dc9..088356e4 100644 --- a/src/views/distribution/inventory/distrilbutionBillLading.vue +++ b/src/views/distribution/inventory/distrilbutionBillLading.vue @@ -1366,21 +1366,32 @@ export default { console.log(file); }, textbox(e,index) { - // console.log("e,index",e,index); - this.costList[index+1] = e; - //计算合计费用 - let n = 0; - this.costList.forEach( i =>{ - n += parseInt(i); - }) - this.form.totalCost = n; + let a = this.costListName.findIndex(i => i== index+1); + console.log("aaaa",a); + if(!!a){ + + // console.log("e,index",e,index); + this.costList[index+1] = e; + //计算合计费用 + let n = 0; + this.costList.forEach( i =>{ + + n = n + (!!i ? parseInt(i) : 0); + }) + this.form.totalCost = n; + } + }, handleCheckedCitiesChange(value) { console.log(">>>>>>>",value ); + if(value.length < 1){ this.costList = []; this.costListName = []; } + // console.log("字典",this.clientType); + // console.log("选择的",this.costListName); + // console.log("价格",this.costList); this.clientType.forEach(i =>{ if(value.includes(i.dictKey)){ console.log(i); @@ -1389,7 +1400,14 @@ export default { } }); - + let n = 0; + value.forEach(s =>{ + let a = this.costList[s]; + if(!!a){ + n = n + parseInt(a) ; + } + }); + this.form.totalCost = n; }, init () { this.height = this.setPx(document.body.clientHeight - 160); @@ -1495,7 +1513,7 @@ export default { let fei = new Map(); await this.bianLier(this.costListName,this.clientType,this.costList,fei); this.form.fei = Object.fromEntries(fei); - this.form.stockArticleId = !this.$route.query.id ? null : this.$route.query.id+','; //订单ID + this.form.stockArticleId = !this.$route.query.id ? null : this.$route.query.id; //订单ID this.form.stockDTOList = this.data; let o = []; if(this.fileListClerk.length > 0){ diff --git a/src/views/distribution/inventory/distrilbutionBillLadingList.vue b/src/views/distribution/inventory/distrilbutionBillLadingList.vue index eab47302..b805d33a 100644 --- a/src/views/distribution/inventory/distrilbutionBillLadingList.vue +++ b/src/views/distribution/inventory/distrilbutionBillLadingList.vue @@ -3,17 +3,17 @@
- 待提货:{{page.total}}单/{{page.total}}件 + 待提货:{{treatNum}}单/{{ numBill }}件 - 已提货:{{page.total}}单/{{page.total}}件 + 已提货:{{stopNum}}单/{{ numBill }}件 - - + + @@ -79,7 +79,7 @@ 创建自提 - 自提签收 + 自提签收
@@ -104,10 +104,11 @@ > @@ -331,7 +332,15 @@ +