|
|
|
@ -90,7 +90,9 @@
|
|
|
|
|
</el-tab-pane> |
|
|
|
|
<el-tab-pane label="包 件 列 表" name="tab3"> |
|
|
|
|
<el-button type="primary" icon="Position" @click="Packageexport">包件导出</el-button> |
|
|
|
|
|
|
|
|
|
<el-button type="warning" plain icon="el-icon-camera" @click="handleqr('')" |
|
|
|
|
>批量查看二维码 |
|
|
|
|
</el-button> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="columnListarrs.wrapoption" |
|
|
|
@ -103,7 +105,10 @@
|
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text size="small" @click="ViewingTrajectories(slotProps.scope.row)" >查看轨迹</el-text> |
|
|
|
|
<el-text size="small" @click="ViewingTrajectories(slotProps.scope.row)" |
|
|
|
|
>查看轨迹</el-text |
|
|
|
|
> |
|
|
|
|
<el-text size="small" @click="handleqr(slotProps.scope.row)">查看二维码</el-text> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
<div class="avue-crud__pagination" style="width: 100%"> |
|
|
|
@ -185,19 +190,27 @@ import {
|
|
|
|
|
getViewDetailOwn, |
|
|
|
|
getBillLadingDetail, |
|
|
|
|
getOrderDetail, |
|
|
|
|
$_checkBillLadingIsRelease, |
|
|
|
|
} from '@/api/distribution/distrilbutionBillLading'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus' |
|
|
|
|
import { getLodop } from '@/utils/LodopFuncs.js'; |
|
|
|
|
|
|
|
|
|
import { getPrintTemplate } from '@/api/basicdata/basicdataGoodsAllocation'; |
|
|
|
|
|
|
|
|
|
import option from '@/option/basic/basicPdarecords'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
import {getToken} from '@/utils/auth'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import NProgress from 'nprogress'; |
|
|
|
|
import {downloadXls} from "@/utils/util"; |
|
|
|
|
import {exportBlob} from "@/api/common"; |
|
|
|
|
import {dateNow} from "@/utils/date"; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { exportBlob } from '@/api/common'; |
|
|
|
|
import { dateNow } from '@/utils/date'; |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
allselectionList: [], //选择的订单 |
|
|
|
|
|
|
|
|
|
columnListarrs: { |
|
|
|
|
//入库明细 |
|
|
|
|
ordoption: [ |
|
|
|
@ -525,15 +538,15 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
wrapoption: [ |
|
|
|
|
// { |
|
|
|
|
// prop: '', |
|
|
|
|
// label: '序号', |
|
|
|
|
// type: 0, |
|
|
|
|
// values: '', |
|
|
|
|
// width: 55, |
|
|
|
|
// checkarr: [], |
|
|
|
|
// fixed: true, |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
prop: '', |
|
|
|
|
label: '序号', |
|
|
|
|
type: 0, |
|
|
|
|
values: '', |
|
|
|
|
width: 55, |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'serviceNumber', |
|
|
|
|
label: '服务号', |
|
|
|
@ -806,7 +819,7 @@ export default {
|
|
|
|
|
label: '操作', |
|
|
|
|
type: 6, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
width: '220', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: 'right', |
|
|
|
|
sortable: true, |
|
|
|
@ -1358,61 +1371,66 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 订单导出 |
|
|
|
|
Orderexport(){ |
|
|
|
|
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderDetailExcel?${this.website.tokenHeader}=${getToken()}`; |
|
|
|
|
Orderexport() { |
|
|
|
|
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderDetailExcel?${ |
|
|
|
|
this.website.tokenHeader |
|
|
|
|
}=${getToken()}`; |
|
|
|
|
|
|
|
|
|
let values = { |
|
|
|
|
billLadingId:this.$route.query.id |
|
|
|
|
billLadingId: this.$route.query.id, |
|
|
|
|
}; |
|
|
|
|
this.$confirm("是否导出数据?", "提示", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
this.$confirm('是否导出数据?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(() => { |
|
|
|
|
NProgress.start(); |
|
|
|
|
exportBlob(downloadUrl, values).then(res => { |
|
|
|
|
downloadXls(res.data, `订单列表${dateNow()}.xlsx`); |
|
|
|
|
NProgress.done(); |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 包件导出 |
|
|
|
|
Packageexport(){ |
|
|
|
|
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderPackExcel?${this.website.tokenHeader}=${getToken()}`; |
|
|
|
|
|
|
|
|
|
Packageexport() { |
|
|
|
|
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderPackExcel?${ |
|
|
|
|
this.website.tokenHeader |
|
|
|
|
}=${getToken()}`; |
|
|
|
|
|
|
|
|
|
let values = { |
|
|
|
|
billLadingId:this.$route.query.id |
|
|
|
|
billLadingId: this.$route.query.id, |
|
|
|
|
}; |
|
|
|
|
this.$confirm("是否导出数据?", "提示", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
this.$confirm('是否导出数据?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(() => { |
|
|
|
|
NProgress.start(); |
|
|
|
|
exportBlob(downloadUrl, values).then(res => { |
|
|
|
|
downloadXls(res.data, `包件导出${dateNow()}.xlsx`); |
|
|
|
|
NProgress.done(); |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 库存导出 |
|
|
|
|
Inventoryexport(){ |
|
|
|
|
let downloadUrl = `/logpm-distribution/distributionDeliveryDetails/billOrderInventoryExcel?${this.website.tokenHeader}=${getToken()}`; |
|
|
|
|
Inventoryexport() { |
|
|
|
|
let downloadUrl = `/logpm-distribution/distributionDeliveryDetails/billOrderInventoryExcel?${ |
|
|
|
|
this.website.tokenHeader |
|
|
|
|
}=${getToken()}`; |
|
|
|
|
|
|
|
|
|
let values = { |
|
|
|
|
billLadingId:this.$route.query.id |
|
|
|
|
billLadingId: this.$route.query.id, |
|
|
|
|
}; |
|
|
|
|
this.$confirm("是否导出数据?", "提示", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
this.$confirm('是否导出数据?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(() => { |
|
|
|
|
NProgress.start(); |
|
|
|
|
exportBlob(downloadUrl, values).then(res => { |
|
|
|
|
downloadXls(res.data, `库存品导出${dateNow()}.xlsx`); |
|
|
|
|
NProgress.done(); |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
beforeOpen(done, type) { |
|
|
|
@ -1461,12 +1479,74 @@ export default {
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
searchHide() { |
|
|
|
|
this.search = !this.search; |
|
|
|
|
}, |
|
|
|
|
searchChange() { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
// 查看二维码 |
|
|
|
|
handleqr(val) { |
|
|
|
|
console.log(val, 'val'); |
|
|
|
|
let qr = ''; |
|
|
|
|
let checkcode = []; |
|
|
|
|
if (val) { |
|
|
|
|
qr = val.id; |
|
|
|
|
} else { |
|
|
|
|
if (!this.selectionList.length) { |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.selectionList.map(item => { |
|
|
|
|
checkcode.push(item.id); |
|
|
|
|
// checkcode.push(item.orderPackageCode) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
qr = checkcode.join(','); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.html = ''; |
|
|
|
|
getPrintTemplate({ |
|
|
|
|
ids: qr, |
|
|
|
|
}).then(res => { |
|
|
|
|
// this.orderPackageCode = res.data |
|
|
|
|
console.log(res.data); |
|
|
|
|
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); |
|
|
|
|
this.dialogVisible = true; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 打印二维码 |
|
|
|
|
printTemplate() { |
|
|
|
|
let LODOP = getLodop(); |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const nodeList = document.querySelectorAll('.printNode > div'); |
|
|
|
|
|
|
|
|
|
// getPrintTemplate(this.ids).then(res => { |
|
|
|
|
// let templateData = res.data.data; |
|
|
|
|
// let templateData = "res.data.data"; |
|
|
|
|
// console.log(templateData); |
|
|
|
|
LODOP.PRINT_INITA('测试预览功能'); |
|
|
|
|
// LODOP.PRINT_INITA("测试预览功能"); |
|
|
|
|
// LODOP.SET_PRINT_PAGESIZE(1, 0, 0, 'A4'); |
|
|
|
|
LODOP.SET_PRINT_MODE('WINDOW_DEFPRINTER', 'Deli DL-888T'); |
|
|
|
|
LODOP.SET_PRINT_PAGESIZE(2, '210mm', '50mm', ''); |
|
|
|
|
LODOP.SET_SHOW_MODE('LANDSCAPE_DEFROTATED', 1); |
|
|
|
|
|
|
|
|
|
// // 设置打印后自动关闭 |
|
|
|
|
LODOP.SET_PRINT_MODE('WINDOW_DEFPAGESIZE', 1); |
|
|
|
|
// // data就是一段html文本 |
|
|
|
|
nodeList.forEach(val => { |
|
|
|
|
LODOP.ADD_PRINT_HTM('0%', '0%', '100%', '100%', val.innerHTML); |
|
|
|
|
LODOP.NewPage(); |
|
|
|
|
}); |
|
|
|
|
LODOP.PREVIEW(); //预览(预览打印无脚标) |
|
|
|
|
// }); |
|
|
|
|
}, |
|
|
|
|
searchReset() { |
|
|
|
|
this.query = {}; |
|
|
|
|
this.page.currentPage = 1; |
|
|
|
@ -1540,16 +1620,16 @@ export default {
|
|
|
|
|
console.log('查看>>>>>库存>>', res.data.data); |
|
|
|
|
const data = res.data.data; |
|
|
|
|
this.inventorydata = data.records; |
|
|
|
|
data.records.forEach(item=>{ |
|
|
|
|
data.records.forEach(item => { |
|
|
|
|
// 备货状态 1 待备货 2 备货中 3 备货完成 |
|
|
|
|
if(item.stockStatus == 1){ |
|
|
|
|
item.stockStatus = '待备货' |
|
|
|
|
} else if(item.stockStatus == 2){ |
|
|
|
|
item.stockStatus = '备货中' |
|
|
|
|
}else if(item.stockStatus == 3){ |
|
|
|
|
item.stockStatus = '备货完成' |
|
|
|
|
if (item.stockStatus == 1) { |
|
|
|
|
item.stockStatus = '待备货'; |
|
|
|
|
} else if (item.stockStatus == 2) { |
|
|
|
|
item.stockStatus = '备货中'; |
|
|
|
|
} else if (item.stockStatus == 3) { |
|
|
|
|
item.stockStatus = '备货完成'; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
this.inventorypage.total = data.total; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -1564,14 +1644,14 @@ export default {
|
|
|
|
|
this.selectionList = list; |
|
|
|
|
}, |
|
|
|
|
// 查看轨迹 |
|
|
|
|
ViewingTrajectories(scope){ |
|
|
|
|
ViewingTrajectories(scope) { |
|
|
|
|
console.log('查看>>>>>轨迹>>', scope); |
|
|
|
|
this.$router.push({ |
|
|
|
|
path: '/distribution/signdetail/packageNodeSearch', |
|
|
|
|
query: { |
|
|
|
|
orderPackageCode:scope.orderPackageCode, |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
orderPackageCode: scope.orderPackageCode, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
selectionClear() { |
|
|
|
|
this.selectionList = []; |
|
|
|
@ -1611,14 +1691,38 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
/** 确认提货 */ |
|
|
|
|
handleSigin() { |
|
|
|
|
this.$confirm('确定签收吗?', { |
|
|
|
|
let data = { |
|
|
|
|
billLadingId: this.$route.query.id, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$_checkBillLadingIsRelease(data).then(res => { |
|
|
|
|
console.log(res, 're====?'); |
|
|
|
|
if (!res.data) { |
|
|
|
|
ElMessageBox.confirm('包件未扫描完成,此操作会释放此类包件!是否继续操作?', '操作提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(async () => { |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
this.pageLoading = true; |
|
|
|
|
getBillLadingDetail(this.$route.query.id).then(res=>{ |
|
|
|
|
const { code } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
this.$message.success('签收成功'); |
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|
this.$router.back('-1'); |
|
|
|
|
}).catch(()=>{ |
|
|
|
|
|
|
|
|
|
}).finally(()=>{ |
|
|
|
|
this.pageLoading = false; |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
} else { |
|
|
|
|
try { |
|
|
|
|
this.pageLoading = true; |
|
|
|
|
const res = await getBillLadingDetail(this.$route.query.id); |
|
|
|
|
const res = getBillLadingDetail(this.$route.query.id); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
this.$message.success('签收成功'); |
|
|
|
@ -1629,7 +1733,9 @@ export default {
|
|
|
|
|
} finally { |
|
|
|
|
this.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
}, |
|
|
|
|
onLoad() { |
|
|
|
|
//查询详情 |
|
|
|
|