Browse Source

修复打印bug

dev-xx
qb 1 year ago
parent
commit
6d10c0b7a8
  1. 70
      src/option/waybill/TemporaryStorageList.js
  2. 61
      src/views/distribution/artery/VehicleArrivalManagement.vue
  3. 7
      src/views/distribution/artery/VehicleStowage.vue
  4. 169
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  5. 4
      src/views/waybill/WaybillOrderList.vue

70
src/option/waybill/TemporaryStorageList.js

@ -85,6 +85,76 @@ export const columnList = [
fixed: false,
sortable: true,
},
{
prop: 'senderFactory',
label: '发货单位',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'senderName',
label: '发货人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'senderPhone',
label: '发货人电话',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'senderAddress',
label: '发货地址',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneePerson',
label: '商场联系人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneeMobile',
label: '联系电话',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneeAddress',
label: '地址',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'lineNameTitle',
label: '干仓配',

61
src/views/distribution/artery/VehicleArrivalManagement.vue

@ -194,6 +194,43 @@
@click="handleEditStowage(slotProps.scope)"
>编辑</el-text
>
<el-dropdown>
<span class="el-dropdown-link">
<el-text>
更多 <el-icon class="el-icon--right"><arrow-down /></el-icon
></el-text>
</span>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item v-if="Mydata.id === slotProps.scope.row.nowWarehouseId">
<el-text @click="handleNodeCost(slotProps.scope)"> 节点费用 </el-text>
</el-dropdown-item>
<el-dropdown-item v-if="Mydata.id === slotProps.scope.row.nowWarehouseId">
<el-text @click="handleDirectGoMarketVesited(slotProps.scope)">
配置直发商家
</el-text>
</el-dropdown-item>
<el-dropdown-item>
<el-text @click="handleDirectGoMarketDetails(slotProps.scope)">
签收详情
</el-text>
</el-dropdown-item>
<el-dropdown-item
v-if="
Mydata.id === slotProps.scope.row.nowWarehouseId &&
Number(slotProps.scope.row.loadingType) === 1 &&
Number(slotProps.scope.row.loadStatus) === 20
"
>
<el-text @click="handleManualLoading(slotProps.scope)"> 手动装车 </el-text>
</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
</template>
</template>
</tablecmt>
@ -417,6 +454,7 @@ import {
postUpdateLoadScanFinalNodeIdById,
postRemoveCarsLoadScan,
postCancelStartCarByLoadId,
postManualLoadingloadId,
postFindLoadingListData,
} from '@/api/distribution/VehicleStowage';
import { useRouter } from 'vue-router';
@ -1187,6 +1225,29 @@ const handleShowListOfLoadedWagons = async () => {
details.loadingObj.pageLoading = false;
}
};
/** 手动装车 */
const handleManualLoading = ({ row }) => {
console.log('row :>> ', row);
ElMessageBox.confirm(`是否进行手动装车?`)
.then(async () => {
try {
details.loadingObj.pageLoading = true;
const response = await postManualLoadingloadId({ loadId: row.id });
if (response.data.code !== 200) return;
ElMessage.success(response.data.msg);
onLoad();
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
})
.catch(() => {
// catch error
});
};
</script>
<style scoped lang="scss">

7
src/views/distribution/artery/VehicleStowage.vue

@ -197,7 +197,12 @@
</el-text>
</el-dropdown-item>
<el-dropdown-item v-if="Mydata.id === slotProps.scope.row.nowWarehouseId">
<el-dropdown-item
v-if="
Mydata.id === slotProps.scope.row.nowWarehouseId &&
Number(slotProps.scope.row.loadingType) === 1
"
>
<el-text @click="handleManualLoading(slotProps.scope)"> 手动装车 </el-text>
</el-dropdown-item>
</el-dropdown-menu>

169
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -518,23 +518,22 @@
>
</template>
</template>
</tablecmt>
<div class="avue-crud__pagination" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
background
@size-change="wsizeChange"
@current-change="wcurrentChange"
:current-page="wpage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="wpage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="wpage.total"
>
<!-- :align="center"-->
</el-pagination>
</div>
<!-- 分页模块 -->
<el-pagination
background
@size-change="wsizeChange"
@current-change="wcurrentChange"
:current-page="wpage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="wpage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="wpage.total"
>
<!-- :align="center"-->
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="库存品包件" name="reservationInventoryPackage">
<el-button @click="Batchsigning" style="margin-bottom: 4px" type="primary"
@ -580,20 +579,20 @@
</template>
</tablecmt>
<div class="avue-crud__pagination" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
background
@size-change="InventoryChange"
@current-change="InventorycurrentChange"
:current-page="wpage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="wpage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="wpage.total"
>
<!-- :align="center"-->
</el-pagination>
</div>
<!-- 分页模块 -->
<el-pagination
background
@size-change="InventoryChange"
@current-change="InventorycurrentChange"
:current-page="wpage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="wpage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="wpage.total"
>
<!-- :align="center"-->
</el-pagination>
</div>
</el-tab-pane>
<!-- <el-tab-pane label="角色管理" name="third">角色管理</el-tab-pane>-->
<!-- <el-tab-pane label="定时任务补偿" name="fourth">定时任务补偿</el-tab-pane>-->
@ -641,29 +640,25 @@
</template>
</template>
</tablecmt>
<!-- 分页模块 -->
<div class="avue-crud__pagination" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
background
@size-change="zeroChange"
@current-change="zerocurrentChange"
:current-page="zeroPg.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="zeroPg.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="zeroPg.total"
>
<!-- :align="center"-->
</el-pagination>
</div>
<!-- 分页模块 -->
<div class="avue-crud__pagination" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
background
@size-change="zeroChange"
@current-change="zerocurrentChange"
:current-page="zeroPg.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="zeroPg.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="zeroPg.total"
>
<!-- :align="center"-->
</el-pagination>
</div>
</el-tab-pane>
</el-tabs>
<!-- 表单按钮 -->
<!-- <template #footer>-->
<!-- <span v-if="!view" class="dialog-footer">-->
@ -822,7 +817,7 @@
width="70vw"
v-model="dialogVisibleF"
>
<div>
<div class="waybill">
<div v-html="html"></div>
</div>
<span slot="footer" class="dialog-footer flex-c-c mt10">
@ -834,12 +829,12 @@
<!-- 打印模块 -->
<el-dialog title="二维码" :visible.sync="isShowPrint" width="780px" v-model="isShowPrint">
<div>
<div class="BarCode">
<div v-html="html"></div>
</div>
<span slot="footer" class="dialog-footer flex-c-c mt10">
<el-button @click="isShowPrint = false"> </el-button>
<el-button type="primary" icon="Printer" @click="printTemplate"> </el-button>
<el-button type="primary" icon="Printer" @click="printTemplatePackage"> </el-button>
</span>
</el-dialog>
@ -2344,7 +2339,7 @@ export default {
//
stateData: [],
//
zeroPg:{
zeroPg: {
currentPage: 1,
pageSize: 30,
total: 40,
@ -4006,9 +4001,7 @@ export default {
this.LessThantruckloadListData = data.records;
this.zeroPg.total = data.total;
})
.catch(() => {
})
.catch(() => {})
.finally(() => {
this.loading = false; //
});
@ -4312,7 +4305,7 @@ export default {
}
},
//
async handleStockQRCode(row){
async handleStockQRCode(row) {
try {
this.loadingObj.pageLoading = true;
@ -4463,7 +4456,7 @@ export default {
const allSigned = this.LessThantruckloadListData.every(
item => item.signingStatusName == '待签收' || item.signingStatusName == '部分签收'
);
console.log(allSigned,'allSigned');
console.log(allSigned, 'allSigned');
if (!allSigned) {
let temp = {};
console.log(true); // true
@ -4472,7 +4465,7 @@ export default {
message: `${temp.orderCode}运单号已签收`,
type: 'warning',
});
return
return;
}
this.$confirm('是否进行批量签收?')
@ -4483,27 +4476,28 @@ export default {
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',
$_deliveryZeroPackage(data)
.then(res => {
if (res.data.code == 200) {
ElMessage({
showClose: true,
message: res.data.msg,
type: 'success',
});
this.truckload(this.page);
this.selectionList = [];
}
})
this.truckload(this.page);
this.selectionList = [];
}
}).catch(()=>{
}).finally(()=>{
this.loading = false; //
});
.catch(() => {})
.finally(() => {
this.loading = false; //
});
})
.catch(() => {});
},
//
LdBatchcancellation() {
return
return;
if (!this.selectionList.length) {
ElMessage({
message: '请勾选需要计划取消的数据',
@ -4568,12 +4562,19 @@ export default {
this.loading = false;
});
},
/**
/**printTemplate
* 打印
*/
printTemplatePackage() {
const orderNode = document.querySelectorAll('.BarCode>div>div');
console.log('orderNode :>> ', orderNode);
print(orderNode);
},
printTemplate() {
const orderNodeList = document.querySelectorAll('.el-dialog__body>div>div>div');
print(orderNodeList);
const orderNode = document.querySelectorAll('.waybill>div>div');
console.log('orderNode :>> ', orderNode);
print(orderNode);
},
handleSubmit() {
this.$refs.form.validate(valid => {
@ -5241,27 +5242,27 @@ export default {
this.getWrapdetails(this.wpage);
},
//
InventorycurrentChange(currentPage){
InventorycurrentChange(currentPage) {
this.wpage.currentPage = currentPage;
this.getReservationInventoryPackageListInfo(this.wpage)
this.getReservationInventoryPackageListInfo(this.wpage);
},
wsizeChange(pageSize) {
this.wpage.pageSize = pageSize;
this.getWrapdetails(this.wpage);
},
//
InventoryChange(pageSize){
InventoryChange(pageSize) {
this.wpage.pageSize = pageSize;
this.getReservationInventoryPackageListInfo(this.wpage)
this.getReservationInventoryPackageListInfo(this.wpage);
},
//
zeroChange(pageSize){
zeroChange(pageSize) {
this.zeroPg.pageSize = pageSize;
this.truckload(this.zeroPg);
},
//
zerocurrentChange(currentPage){
this.zeroPg.currentPag=currentPage;
zerocurrentChange(currentPage) {
this.zeroPg.currentPag = currentPage;
this.truckload(this.zeroPg);
},
winputsc(index, row) {

4
src/views/waybill/WaybillOrderList.vue

@ -80,8 +80,8 @@
<div class="avue-crud__left">
<el-button type="primary" icon="Printer" @click="batchPrint"> </el-button>
<el-button type="primary" icon="Edit" @click="editOrder"> </el-button>
<el-button type="primary" icon="Plus" @click="searchChange">加入挑单夹</el-button>
<el-button type="primary" icon="Location" @click="searchChange">运单跟踪</el-button>
<!-- <el-button type="primary" icon="Plus" @click="searchChange">加入挑单夹</el-button> -->
<!-- <el-button type="primary" icon="Location" @click="searchChange">运单跟踪</el-button> -->
<el-button type="primary" icon="Delete" @click="handleBatchDelete">批量作废</el-button>
<el-button type="primary" icon="Rank" @click="handleBatchFreeze"> </el-button>
<el-button type="primary" icon="Refresh" @click="handleBatchRecover"> </el-button>

Loading…
Cancel
Save