You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

805 lines
22 KiB

<template>
<basic-container v-loading="details.loadingObj.pageLoading">
<div class="avue-crud">
<!-- 搜索模块 -->
<div v-h5uShow="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="header_search">
<!-- <el-form-item label="有效状态">
<el-select v-model="query.value" clearable placeholder="有效状态">
<el-option label="有效" value="item.value" />
<el-option label="作废" value="item.value" />
</el-select>
</el-form-item> -->
<el-form-item label="运单号:" class="el-times">
<el-input v-model="query.stockupArea" clearable placeholder="请输入运单号"></el-input>
</el-form-item>
<el-form-item label="制单时间:" class="el-times">
<el-date-picker
v-model="details.query.documentMakingTime"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
value-format="YYYY-MM-DD"
clearable
/>
</el-form-item>
<el-form-item label="创建时间:" class="el-times">
<el-date-picker
v-model="details.query.createTime"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
value-format="YYYY-MM-DD"
clearable
/>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button>
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button>
</el-form-item>
</el-form>
</div>
<!-- 控件模块 -->
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<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="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>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
<!-- 列表模块 -->
<tablecmt
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '运单号'">
<el-text @click="handleGoWaybillDetails(slotProps.scope)">
{{ slotProps.scope.row.waybillNo }}
</el-text>
</template>
<template v-else-if="slotProps.scope.column.label === '操作'">
<el-text @click="handleUploadReceipt(slotProps.scope)"> 上传回单 </el-text>
<el-text @click="handleViewOrderDetails(slotProps.scope)"> 查看订单 </el-text>
</template>
</template>
</tablecmt>
<!-- 分页模块 -->
<div class="flex-c-sb">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</div>
</basic-container>
<!-- 上传回单 -->
<el-dialog
class="el-dialog-view"
title="上传回单"
:visible.sync="details.popUpShow.view"
width="780px"
:show-close="false"
:fullscreen="details.fullscreenObj.view"
v-model="details.popUpShow.view"
>
<!-- 头部 -->
<template #header="{ close, titleId, titleClass }">
<div class="my-header flex-c-sb">
<div :id="titleId" :class="titleClass">上传回单</div>
<div class="flex-c-c">
<!-- 全屏显示按钮 -->
<el-button type="text" v-if="!details.fullscreenObj.view">
<el-icon class="" @click="handleFullScrean('open', 'el-dialog-view')"
><FullScreen
/></el-icon>
</el-button>
<el-button type="text" v-else>
<el-icon class="" @click="handleFullScrean('close', 'el-dialog-view')"
><CopyDocument
/></el-icon>
</el-button>
<!-- 弹窗关闭按钮 -->
<el-button type="text">
<el-icon class="" @click="close"><Close /></el-icon>
</el-button>
</div>
</div>
</template>
<el-form label-width="100px">
<el-form-item label="运单号:">
<el-input readonly v-model="details.waybillNo"></el-input>
</el-form-item>
<el-form-item label="图片:">
<el-upload
v-model:file-list="details.fileList"
action="/api/blade-resource/oss/endpoint/put-file"
list-type="picture-card"
:on-preview="handlePictureCardPreview"
:headers="details.header"
:on-remove="handleRemove"
>
<el-icon><Plus /></el-icon>
</el-upload>
</el-form-item>
</el-form>
<div class="flex-c-c mt10">
<el-button @click="details.popUpShow.view = false">关闭</el-button>
<el-button type="primary" icon="Position" @click="handleUploadReceiptSubmit">提交</el-button>
</div>
</el-dialog>
<!-- 图片预览 -->
<el-dialog
v-model="details.popUpShow.dialogVisible"
width="fit-content"
:show-close="false"
:align-center="true"
class="imgDialogVisible"
>
<!-- <img w-full :src="details.dialogImageUrl" alt="Preview Image" /> -->
<el-image
:src="details.dialogImageUrl"
:preview-src-list="details.viewImgList"
:initial-index="details.viewImgIndex"
fit="cover"
/>
</el-dialog>
<!-- 打印 -->
<!-- <el-dialog
title="运单打印"
width="780px"
:show-close="false"
:fullscreen="details.fullscreenObj.WaybillPrintTemplate"
:align-center="true"
v-model="details.popUpShow.WaybillPrintTemplate"
>
<template #header="{ close, titleId, titleClass }">
<div class="my-header flex-c-sb">
<div :id="titleId" :class="titleClass">运单打印</div>
<div class="flex-c-c">
<el-button type="text" v-if="!details.fullscreenObj.WaybillPrintTemplate">
<el-icon class="" @click="handleFullScrean('open', 'WaybillPrintTemplate')"
><FullScreen
/></el-icon>
</el-button>
<el-button type="text" v-else>
<el-icon class="" @click="handleFullScrean('close', 'WaybillPrintTemplate')"
><CopyDocument
/></el-icon>
</el-button>
<el-button type="text">
<el-icon class="" @click="close"><Close /></el-icon>
</el-button>
</div>
</div>
</template>
<div class="mt10 el-dialog-QRCode-container">
<WaybillPrintTemplate
v-for="item in details.selectionList"
:key="item.id"
:waybillInfo="item"
/>
</div>
</el-dialog> -->
<WaybillPrintTemplate
v-model="details.popUpShow.WaybillPrintTemplate"
:html="details.html"
width="70%"
/>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
></edittablehead>
</template>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
import { mapGetters, useStore } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import {
postWarehouseWaybillPageWaybillList,
postSaveWaybillReturn,
postPrintBatch,
} from '@/api/waybill/WaybillOrderList.js';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import {
downloadXls,
setNodeHeight,
getHtmls,
deepClone,
handleTranslationDataSeclect,
getObjType,
} from '@/utils/util';
import { columnList } from '@/option/waybill/WaybillOrderList';
import { useRouter } from 'vue-router';
import print from '@/utils/print';
import { ElMessage } from 'element-plus';
import { getToken } from '@/utils/auth';
import type { UploadProps, UploadUserFile } from 'element-plus';
import { utils } from 'sortablejs';
const $store = useStore();
// 获取路由实例
const $router = useRouter();
const details = reactive<any>({
/** 是否开启搜索 */
search: true,
/** 表格搜索条件 */
query: {},
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList: deepClone(columnList),
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
/** 页面loading */
pageLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
pageNum: 1,
pageSize: 30,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 上传回单 */
view: false,
/** 运单打印模版 */
WaybillPrintTemplate: false,
/** 图片预览 */
dialogVisible: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 查看 */
view: false,
WaybillPrintTemplate: false,
},
/** 预览图片地址 */
dialogImageUrl: '',
/** 上传图片文件list */
fileList: [],
viewImgList: [],
viewImgIndex: 0,
waybillNo: '',
waybillId: '',
header: computed(() => {
return { 'Blade-Auth': 'Bearer ' + getToken() };
}),
html: '',
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
popUpShow,
} = toRefs(details);
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
console.log('permission :>> ', permission);
onMounted(() => {
const timer = setTimeout(() => {
details.listNode = document.querySelector('.maboxhi');
details.listNode.style.transition = 'all .5s ease-out';
clearTimeout(timer);
}, 100);
});
/** 请求页面数据 */
const onLoad = async (page?: any, params = {}) => {
try {
details.loadingObj.list = true;
let _page = details.page;
if (page) _page = page;
const submitData = {
..._page,
...details.query,
...params,
};
// 创建时间
if (getObjType(details.query.createTime) === 'array' && details.query.createTime.length > 0) {
submitData.createTimeStartStr = details.query.createTime[0];
submitData.createTimeEndStr = details.query.createTime[1];
}
// 创建时间
if (
getObjType(details.query.documentMakingTime) === 'array' &&
details.query.documentMakingTime.length > 0
) {
submitData.documentMakingTimeStartStr = details.query.documentMakingTime[0];
submitData.documentMakingTimeEndStr = details.query.documentMakingTime[1];
}
delete submitData.createTime;
delete submitData.documentMakingTime;
// 获取暂存单列表
const res = await postWarehouseWaybillPageWaybillList(submitData);
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
handleTranslationDataSeclect(details.data, details.columnList);
console.log('details.data :>> ', details.data);
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
};
onLoad();
/** 搜索 */
const searchChange = () => {
onLoad(details.page);
};
/** 清空表单 */
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
onLoad(details.page);
};
/** 展开列表控件 */
const showdrawer = (_flag?: boolean) => {
details.drawerShow = _flag;
};
/** 是否开启搜索区 */
const searchHide = () => {
details.search = !details.search;
setNodeHeight(details.listNode, '', true);
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (!index && index !== 0) delete details.query[row.prop];
onLoad(details.page);
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
if (!index && index !== 0) delete details.query[row.prop];
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
onLoad(details.page);
};
/** 表格表头输入框搜索 */
const btnsc = () => {};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
const _key = row.prop.replace('Name', '');
details.query[_key] = index;
if (!index && index !== 0) delete details.query[_key];
onLoad(details.page);
};
/** 表格表头复选框选择 */
const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
onLoad(details.page);
};
/** 页码改变执行的回调 */
const currentChange = current => {
details.page.pageNum = current;
onLoad();
};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调,用于更改头部数组
* 固定搭配,只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
};
/** 弹出层开启前清除数据 */
const beforeClose = done => {
done();
details.form = {};
details.selectionList = [];
details.view = false;
};
/** 上传回单 */
const handleUploadReceipt = ({ row }) => {
details.popUpShow.view = true;
details.fileList = [];
details.viewImgIndex = 0;
details.viewImgList = [];
details.waybillNo = row.waybillNo;
details.waybillId = row.id;
};
/** 查看订单详情 */
const handleViewOrderDetails = ({ row }) => {
$router.push({
path: '/waybill/orderDetails',
query: { id: row.id, name: `${row.waybillNo} -- 订单详情` },
});
};
/**
* 是否开启全屏
* @params(_type) 开启或关闭
*/
const handleFullScrean = (_type: 'open' | 'close', _name: string) => {
let _node: Element;
if (_name) _node = document.querySelector(`.${_name} .maboxhi`);
switch (_name) {
case 'el-dialog-view':
details.fullscreenObj.view = !details.fullscreenObj.view;
if (_type === 'close') {
if (_node) setNodeHeight(_node);
} else {
if (_node) setNodeHeight(_node);
}
break;
default:
details.fullscreenObj[_name] = !details.fullscreenObj[_name];
break;
}
};
/** 批量打印 */
const batchPrint = async () => {
if (details.selectionList.length === 0) {
return ElMessage({
type: 'warning',
message: '最少选择一条数据',
});
}
try {
details.loadingObj.pageLoading = true;
const res = await postPrintBatch({
ids: details.selectionList.map(val => val.id).join(','),
tempId: 15,
});
const { code, data } = res.data;
if (code !== 200 || !data || data.length === 0) return;
let _html = '';
for (let i = 0; i < data.length; i++) {
const value = data[i];
_html += JSON.parse(JSON.stringify(value.templateHtml));
}
console.log('res :>> ', res);
details.html = _html;
details.popUpShow.WaybillPrintTemplate = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
/** 改单 */
const editOrder = () => {
if (details.selectionList.length !== 1) {
return ElMessage({
type: 'warning',
message: '请选择一条进行改单数据',
});
}
const _item = details.selectionList[0];
console.log('_item :>> ', _item);
if (Number(_item.waybillType) === 1 || _item.orderNo) {
$store.commit('DEL_ONCE_TAG', '/distribution/inventory/CreateOrder');
// 暂存单转运单的数据
$router.push({
path: '/distribution/inventory/CreateOrder',
query: {
name: '改单',
id: _item.id,
type: 'edit',
backPath: '/waybill/WaybillOrderList',
},
});
} else if (Number(_item.waybillType) === 2) {
// 零担开单的数据
$router.push({
path: '/waybill/CreateZeroOrder',
query: {
name: '改单',
id: _item.id,
type: 'edit',
backPath: '/waybill/WaybillOrderList',
},
});
}
};
/** 批量作废 */
const handleBatchDelete = () => {
if (details.selectionList.length === 0) {
return ElMessage({
type: 'warning',
message: '最少选择一条数据',
});
}
};
/** 批量冻结 */
const handleBatchFreeze = () => {
if (details.selectionList.length === 0) {
return ElMessage({
type: 'warning',
message: '最少选择一条数据',
});
}
};
/** 批量恢复 */
const handleBatchRecover = () => {
if (details.selectionList.length === 0) {
return ElMessage({
type: 'warning',
message: '最少选择一条数据',
});
}
};
/** 查看运单 */
const handleGoWaybillDetails = ({ row }) => {
console.log('row :>> ', row);
$router.push({
path: '/distribution/inventory/BookingNote',
query: {
name: `查看 -- 【${row.waybillNo}】`,
waybillNo: row.waybillNo,
id: row.id,
waybillType: row.waybillType,
},
});
};
/** 图片删除 */
const handleRemove: UploadProps['onRemove'] = (uploadFile, uploadFiles) => {
console.log(uploadFile, uploadFiles);
};
/** 已上传的文件 */
const handlePictureCardPreview: UploadProps['onPreview'] = uploadFile => {
details.viewImgList = details.fileList.map(val => val.url);
details.viewImgIndex = details.viewImgList.indexOf(uploadFile.url);
details.dialogImageUrl = uploadFile.url!;
details.popUpShow.dialogVisible = true;
};
const handleUploadReceiptSubmit = async () => {
let content = '';
if (!details.waybillNo) content = '运单号不能为空';
else if (details.fileList.length === 0) content = '请上传图片';
if (content) return ElMessage.warning({ message: content });
details.loadingObj.pageLoading = true;
details.popUpShow.view = false;
try {
const imgUrlList = [];
for (let i = 0; i < details.fileList.length; i++) {
const value = details.fileList[i];
imgUrlList.push(value.response.data.link);
}
const submitData = {
waybillId: details.waybillId,
url: imgUrlList.join(','),
};
const res = await postSaveWaybillReturn(submitData);
const { code, data } = res.data;
if (code !== 200) return ElMessage.error({ message: '上传失败' });
ElMessage.success({ message: '上传成功' });
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
</script>
<style scoped lang="scss">
.fo-fl {
display: flex;
flex-wrap: wrap;
zoom: 0.9;
}
// 日期选择器
:deep(.el-date-editor.el-input) {
height: 100% !important;
width: 100% !important;
}
:deep(.el-range-editor.el-input__wrapper) {
height: 100% !important;
}
.view_row {
display: flex;
flex-wrap: wrap;
border: 1px solid #e6e6e6;
> div {
width: 33.33%;
flex: none;
border: 1px solid #e6e6e6;
box-sizing: border-box;
padding: 5px 10px;
}
}
</style>
<style>
.imgDialogVisible .el-dialog__header {
padding: 0;
}
.imgDialogVisible .el-dialog__body {
padding: 0;
}
</style>