Browse Source

新增在途订单详情,修复部分bug

dev-xx
qb 6 months ago
parent
commit
4e51d44183
  1. 28
      src/api/distribution/OrderInTransitDetails.js
  2. 8
      src/api/warehouse/OrderInTransit.js
  3. 89
      src/components/tablecmt/tablecmt.vue
  4. 507
      src/option/distribution/OrderInTransit.js
  5. 12
      src/router/views/index.js
  6. 13
      src/views/distribution/artery/AddVehicleStowage.vue
  7. 42
      src/views/distribution/artery/VehicleArrivalManagement.vue
  8. 7
      src/views/distribution/artery/VehicleStowage.vue
  9. 39
      src/views/distribution/inventory/delivery/OrderInTransit.vue
  10. 614
      src/views/distribution/inventory/delivery/OrderInTransitDetails.vue

28
src/api/distribution/OrderInTransitDetails.js

@ -0,0 +1,28 @@
import request from '@/axios';
/** 获取订单详情 */
export const getDetail = params => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/detail',
method: 'get',
params,
});
};
/** 获取包件列表 */
export const getPackageList = params => {
return request({
url: '/api/logpm-distribution/distributionParcelList/list',
method: 'get',
params,
});
};
/** 获取零担列表 */
export const getZeroList = params => {
return request({
url: '/api/logpm-distribution/distributionParcelList/zeroListTransfer',
method: 'get',
params,
});
};

8
src/api/warehouse/OrderInTransit.js

@ -2,13 +2,13 @@ import request from '@/axios';
/**
* 获取在途订单列表
* @param {*} params
* @param {*} data
* @returns
*/
export const getListTransfer = params => {
export const getListTransfer = data => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/listTransfer',
method: 'get',
params,
method: 'post',
data,
});
};

89
src/components/tablecmt/tablecmt.vue

@ -95,7 +95,7 @@
format="YYYY/MM/DD HH:mm:ss"
@change="timechange($event, column)"
/>
<span v-else></span>
<span v-else></span>
</template>
<template #default="scope">
@ -147,8 +147,15 @@
>
<slot :scope="scope"> </slot>
</div>
<el-input v-else-if="column.type == 15" v-model.trim="scope.row[column.prop]" style="width: 100%" :placeholder="'请输入' + column.label" :disabled="!scope.row.disabled" clearable />
<el-input
v-else-if="column.type == 15"
v-model.trim="scope.row[column.prop]"
style="width: 100%"
:placeholder="'请输入' + column.label"
:disabled="!scope.row.disabled"
clearable
/>
<!-- <el-image
preview-teleported
v-else-if="column.type == 7"
@ -169,7 +176,6 @@
:src="item"
:preview-src-list="scope.row[column.prop]?.split(',')"
/>
</template>
</el-table-column>
@ -220,36 +226,7 @@ const $route = useRoute();
const functions = inject('functions') as any;
const { proxy } = getCurrentInstance() as any;
const selecttable = ref(null);
/**
* 对应通知事件
* inputTxt:输入框输入的确认事件
* timeCheck:时间选择器选择事件
* selectCheck:下拉框选中事件
* selection:勾选框事件
*/
onMounted(() => {
function getWinHight() {
var windowHight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
windowHight =
document.body.clientHeight < document.documentElement.clientHeight
? document.body.clientHeight
: document.documentElement.clientHeight;
} else {
// windowHight=(document.body.clientHeight>document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
}
// return windowHight;
return document.documentElement.clientHeight;
}
var bodyContent = document.querySelectorAll('.maboxhi');
const _height = getWinHight();
//
bodyContent.forEach(val => {
val.style.height = _height - val.getBoundingClientRect().top - 65 + 'px';
// if (val.style.height === '890px') val.style.height = '600px';
});
});
interface TableColumnType {
/** 表格列的key */
prop: string;
@ -389,6 +366,12 @@ let props = defineProps({
required: false,
default: 55,
},
/** 是否初始化设置表格高度 */
isInitHeigt: {
type: Boolean as PropType<Boolean>,
required: false,
default: true,
},
});
/** 勾选数据统计 */
const selectCount = ref([]);
@ -420,18 +403,39 @@ watchEffect(() => {
newcolumnList.value = _arr;
});
/**
* 对应通知事件
* inputTxt:输入框输入的确认事件
* timeCheck:时间选择器选择事件
* selectCheck:下拉框选中事件
* selection:勾选框事件
*/
onMounted(() => {
/* if (props.checkselect) {
props.checkselect.map(item => {
if (props.isselectfun) {
if (props.isselectfun(item)) {
selecttable.value.toggleRowSelection(item, true);
}
if (props.isInitHeigt) {
function getWinHight() {
var windowHight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
windowHight =
document.body.clientHeight < document.documentElement.clientHeight
? document.body.clientHeight
: document.documentElement.clientHeight;
} else {
selecttable.value.toggleRowSelection(item, true);
// windowHight=(document.body.clientHeight>document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
}
// return windowHight;
return document.documentElement.clientHeight;
}
var bodyContent = document.querySelectorAll('.maboxhi');
const _height = getWinHight();
//
bodyContent.forEach(val => {
val.style.height = _height - val.getBoundingClientRect().top - 65 + 'px';
// if (val.style.height === '890px') val.style.height = '600px';
});
} */
}
let _checkSelect = props.checkselect;
console.log('_checkSelect :>> ', _checkSelect);
if (!_checkSelect) {
@ -929,7 +933,7 @@ defineExpose({ handleCheckSelect, handleClearSelect });
border-radius: 4px; //
background-color: #d3d3d3; //
box-shadow: 0 0 6px rgba(0, 0, 0, 0.15); //
height: 8px
height: 8px;
}
//
@ -945,5 +949,4 @@ defineExpose({ handleCheckSelect, handleClearSelect });
font-weight: initial;
font-size: 12px;
}
</style>

507
src/option/distribution/OrderInTransit.js

@ -0,0 +1,507 @@
export const columnList = [
{
prop: '',
label: '复选框',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'waybillNumber',
label: '运单号',
type: 2,
values: '',
width: '160',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'mallName',
label: '商场名称',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalNumber',
label: '订单总件数',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'handQuantity',
label: '在库件数',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'notReceived',
label: '未入库数量',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'sortingQuantity',
label: '分拣数量',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'deliveryQuantity',
label: '配送数量',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
},
{
prop: 'transferQuantity',
label: '中转数量',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'signinQuantity',
label: '签收数量',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'groundingStatusName',
label: '上架状态',
type: 3,
values: '',
width: '100',
checkarr: [
// {
// value: '0',
// label: '未上架',
// },
// {
// value: '1',
// label: '部分上架',
// }, {
// value: '2',
// label: '已上架',
// },
// {
// value: '3',
// label: '已下架',130
// },
],
fixed: false,
sortable: true,
},
{
prop: 'allocation',
label: '货位信息',
type: 13,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'descriptionGoods',
label: '货物名称',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'isZeroName',
label: '是否零担',
type: 3,
values: '',
width: '100',
checkarr: [
{
value: '0',
label: '否',
},
{
value: '1',
label: '是',
},
],
fixed: false,
sortable: true,
},
{
prop: 'warehouse',
label: '所在仓库',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'warehouseEntryTime',
label: '入库时间',
type: 4,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'warehouseEntryTimeEnd',
label: '最新入库时间',
type: 4,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'storeTime',
label: '在库时间',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneeUnit',
label: '收货单位',
type: 2,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneePerson',
label: '收货人',
type: 2,
values: '',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'resource',
label: '订单来源',
type: 1,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'brand',
label: '品牌',
type: 2,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'trays',
label: '所在托盘',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'freezeStatusName',
label: '冻结状态',
type: 3,
values: '',
width: '100',
checkarr: [
// {
// value: '1',
// label: '已冻结',
// },
// {
// value: '0',
// label: '未冻结',
// },
],
fixed: false,
sortable: true,
},
{
prop: 'orderStatusName',
label: '订单状态',
type: 3,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'reservationStatusName',
label: '预约状态',
type: 3,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'stockupStatusName',
label: '备货状态',
type: 3,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'orderReceiveStatusName',
label: '入库状态',
type: 3,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'completeSetName',
label: '是否齐套',
type: 14,
values: '',
width: '100',
checkarr: [
{
value: '2',
label: '已齐套',
},
{
value: '1',
label: '未齐套',
},
],
fixed: false,
sortable: true,
},
{
prop: 'weight',
label: '重量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'volume',
label: '体积',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'acceptWarehouseName',
label: '目的仓',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'typeServerName',
label: '服务类型',
type: 3,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'customerName',
label: '顾客名字',
type: 2,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'customerTelephone',
label: '顾客电话',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'customerAddress',
label: '顾客地址',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'fee',
label: '增值服务',
type: 1,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'createUserName',
label: '创建人',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'createTime',
label: '创建时间',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'inventoryDate',
// label: '最新盘点时间',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'inventoryPerson',
// label: '盘点人',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: '',
label: '操作',
type: 6,
values: '',
width: '250',
checkarr: [],
fixed: 'right',
hide: true,
},
// 更多列的配置...
];
export default columnList;

12
src/router/views/index.js

@ -407,6 +407,18 @@ export default [
component: () =>
import(/* webpackChunkName: "views" */ '@/views/distribution/inventory/CreateOrder.vue'),
},
{
path: '/distribution/inventory/delivery/OrderInTransitDetails',
name: '在途订单查询',
meta: {
data: 'data',
keepAlive: true,
},
component: () =>
import(
/* webpackChunkName: "views" */ '@/views/distribution/inventory/delivery/OrderInTransitDetails.vue'
),
},
{
path: 'delivery/orderLogs',
name: '订单日志',

13
src/views/distribution/artery/AddVehicleStowage.vue

@ -193,7 +193,11 @@
<!-- 装车方式 -->
<div class="form_row_item">
<el-form-item inline label="装车方式" prop="loadingType">
<el-radio-group v-model="form.loadingType" class="ml-4">
<el-radio-group
v-model="form.loadingType"
:disabled="!permissionObj.VehicleStowage_ManualLoading"
class="ml-4"
>
<el-radio label="1" size="large">手动装车(后台)</el-radio>
<el-radio label="2" size="large">扫描装车</el-radio>
</el-radio-group>
@ -1062,6 +1066,13 @@ const newColumnListNode = ref();
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
const permissionObj = reactive({
/** 手动装车 */
VehicleStowage_ManualLoading: computed(() => {
return $store.getters.permission.VehicleStowage_ManualLoading;
}),
});
/** 设置页面表格高度 */
const setTabelHeight = async () => {
//

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

@ -293,6 +293,17 @@
>装车明细
</el-text>
<!-- 零担补录 -->
<el-text
v-if="
permissionObj.VehicleArrivalManagement_zeroAdditionalRecording &&
Number(slotProps.scope.row.loadStatus) !== 80
"
@click="handleShowzeroAdditionalRecording(slotProps.scope)"
>
零担补录
</el-text>
<!-- 编辑 -->
<el-text
v-if="
@ -313,7 +324,12 @@
</span>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item>
<el-dropdown-item
v-if="
permissionObj.VehicleArrivalManagement_nodeCost &&
Number(slotProps.scope.row.loadStatus) !== 100
"
>
<el-text @click="handleNodeCost(slotProps.scope)"> 节点费用 </el-text>
</el-dropdown-item>
@ -842,6 +858,10 @@ const permissionObj = reactive({
VehicleArrivalManagement_UnloadReport: computed(() => {
return $store.getters.permission.VehicleArrivalManagement_UnloadReport;
}),
/** 零担补录 */
VehicleArrivalManagement_zeroAdditionalRecording: computed(
() => $store.getters.permission.VehicleArrivalManagement_zeroAdditionalRecording
),
/** 装车明细 */
VehicleArrivalManagement_shippingSpecification: computed(() => {
return $store.getters.permission.VehicleArrivalManagement_shippingSpecification;
@ -1427,6 +1447,26 @@ const packageInputsc = (value, row) => {
details.packageRenderData = _data;
};
/** 显示零担补录 */
const handleShowzeroAdditionalRecording = ({ row }, type = false) => {
if (!ChecksWhetherTheWarehouseIsSelected())
return ElMessage.warning('多仓权限无法操作,请选择仓库');
const _obj = {
name: '零担补录',
loadId: row.id,
carsNo: row.carsNo,
};
type && (_obj.type = 'sign');
//
$router.push({
path: '/distribution/artery/zeroAdditionalRecording',
query: _obj,
});
};
/** 卸车确认 */
const handleUnloadByLoadId = async (type: 1 | 2) => {
try {

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

@ -313,7 +313,12 @@
<template #dropdown>
<el-dropdown-menu>
<!-- 节点费用 -->
<el-dropdown-item v-if="permissionObj.VehicleStowage_nodeCost">
<el-dropdown-item
v-if="
permissionObj.VehicleStowage_nodeCost &&
Number(slotProps.scope.row.loadStatus) !== 100
"
>
<el-text @click="handleNodeCost(slotProps.scope)"> 节点费用 </el-text>
</el-dropdown-item>

39
src/views/distribution/inventory/delivery/OrderInTransit.vue

@ -43,6 +43,25 @@
</el-form-item>
</template>
<el-form-item label="目的仓:">
<el-select
v-model="details.query.acceptWarehouseIdList"
class="w100"
clearable
placeholder="请选择目的仓"
filterable
multiple
:reserve-keyword="false"
>
<el-option
v-for="value in details.warehouseOption"
:key="value.dictKey"
:label="value.dictValue"
:value="value.dictKey"
/>
</el-select>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
@ -126,7 +145,8 @@ import {
handleTranslationDataSeclect,
getObjType,
} from '@/utils/util';
import { columnList } from '@/option/distribution/distributionStockArticleSelf';
import { columnList } from '@/option/distribution/OrderInTransit';
import { getListName } from '@/api/basicdata/basicdataVehicle';
import { getListTransfer } from '@/api/warehouse/OrderInTransit';
import { useStore } from 'vuex';
import { useRouter } from 'vue-router';
@ -199,6 +219,7 @@ const details = reactive<any>({
/** 上传 */
UploadPackageDelivery: false,
},
warehouseOption: [],
});
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, page } =
@ -278,6 +299,18 @@ const initData = async () => {
initData();
/** 初始化请求仓库数据 */
getListName({ name: '' }).then(res => {
const { code, data } = res.data;
if (code !== 200 || getObjType(data) !== 'array') return;
details.warehouseOption = data.map(val => {
return {
dictKey: val.id,
dictValue: val.name,
};
});
});
/** 搜索 */
const searchChange = () => {
onLoad();
@ -349,9 +382,11 @@ const currentChange = current => {
/** 查看 */
const handleView = ({ row }) => {
$router.push({
path: '/distribution/inventory/distributionStockArticleDetails',
path: '/distribution/inventory/delivery/OrderInTransitDetails',
query: {
id: row.id,
orderCode: row.orderCode,
waybillNumber: row.waybillNumber,
name: '详情 - ' + row.orderCode,
isZero: row.isZero,
},

614
src/views/distribution/inventory/delivery/OrderInTransitDetails.vue

@ -0,0 +1,614 @@
<template>
<basic-container v-loading="details.loadingObj.pageLoading">
<div class="avue-crud">
<tablecmt
style="height: initial !important"
:isInitHeigt="false"
:columnList="details.customer.columnList"
:tableData="details.consigneeData"
>
<template #default="slotProps"> </template>
</tablecmt>
<tablecmt
style="height: initial !important; margin: 10px 0"
:isInitHeigt="false"
:columnList="details.consignee.columnList"
:tableData="details.consigneeData"
>
<template #default="slotProps"> </template>
</tablecmt>
<!-- 控件模块 -->
<div class="flex-c-sb mb10">
<!-- 头部左侧按钮模块 -->
<div class="flex">
<div class="pageTitle">
{{ $route.query.isZero === '1' ? '零担列表' : '定制品列表' }}
</div>
<el-button class="ml20" type="primary" @click="allhandleQRCode">批量查看二维码</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div>
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
</div>
</div>
<!-- 列表模块 -->
<tablecmt
style="height: 64vh"
:isInitHeigt="false"
:columnList="$route.query.isZero + '' === '1' ? details.zerocolumnList : details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="$route.query.isZero + '1' !== '1'">
<el-text
type="primary"
text
icon="el-icon-view"
@click="handleTrajectory(slotProps.scope.row)"
>查看轨迹
</el-text>
<el-text
type="primary"
text
icon="el-icon-view"
@click="handleQRCode(slotProps.scope.row)"
>查看二维码
</el-text>
</template>
</template>
</tablecmt>
<template v-if="$route.query.isZero + '' !== '1'">
<!-- 分页模块 -->
<div class="flex-c-sb mt20">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.current"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.size"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</template>
</div>
</basic-container>
<!-- 打印二维码 -->
<MyPrint
:html="details.html"
v-model="details.popUpShow.QRCodeVisible"
:isShowExport="false"
type="titlePrint"
width="780px"
></MyPrint>
<!-- 列表配置显示 -->
<edittablehead
@closce="showdrawer"
:drawerShow="drawerShow"
v-model="details.columnList"
></edittablehead>
</template>
<script setup lang="ts">
import {
ref,
reactive,
toRefs,
computed,
onMounted,
nextTick,
getCurrentInstance,
watch,
} from 'vue';
import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import {
downloadXls,
setNodeHeight,
getHtmls,
deepClone,
handleClearTableQuery,
debounce,
handleSelectQuery,
handleInputQuery,
handleTranslationDataSeclect,
getObjType,
hanleTextLineFeed,
} from '@/utils/util';
import {
columnList,
zerocolumnList,
} from '@/option/distribution/distributionStockArticleDetails.js';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { getListName } from '@/api/basicdata/basicdataVehicle';
import { getListTransfer } from '@/api/warehouse/OrderInTransit';
import { getDetail, getPackageList, getZeroList } from '@/api/distribution/OrderInTransitDetails';
import { useStore } from 'vuex';
import { useRouter, useRoute } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
//
const $router = useRouter();
const $route = useRoute();
const $store = useStore();
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];
},
},
],
/** 定制品列表 */
columnList: deepClone(columnList),
/** 零担列表 */
zerocolumnList: deepClone(zerocolumnList),
/** 列表数据 */
data: [],
/** 顾客 */
customer: {
columnList: [
{
prop: 'customerName',
label: '顾客名字',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'customerTelephone',
label: '顾客电话',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'customerAddress',
label: '顾客地址',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
],
},
/** 收货人 */
consignee: {
columnList: [
{
prop: 'consigneePerson',
label: '收货人名字',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'consigneeMobile',
label: '收货人电话',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'consigneeAddress',
label: '收货人地址',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
],
},
consigneeData: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
/** 页面loading */
pageLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
current: 1,
size: 30,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 查看二维码 */
QRCodeVisible: false,
},
warehouseOption: [],
html: '',
});
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, page } =
toRefs(details);
/** 请求页面数据 */
const onLoad = debounce(async (isTranslation = true) => {
try {
details.loadingObj.list = true;
if ($route.query.isZero + '' === '1') {
const submitData = {
...details.query,
waybillNumber: $route.query.waybillNumber,
orderCode: $route.query.orderCode,
};
const res = await getZeroList(submitData);
const { code, data } = res.data;
if (code !== 200 || getObjType(data) !== 'array') return;
details.data = data || [];
details.page.total = details.data.length;
} else {
const submitData = {
...details.query,
...details.page,
stockArticleId: $route.query.id,
};
delete submitData.total;
const res = await getPackageList(submitData);
const { code, data } = res.data;
if (code !== 200 || getObjType(data) !== 'object') return;
details.data = data.records || [];
details.page.total = data.total;
}
isTranslation && handleTranslationDataSeclect(details.data, details.columnList);
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
}, 10);
const getOrderInfo = async () => {
const res = await getDetail({ id: $route.query.id });
const { code, data } = res.data;
if (code !== 200 || getObjType(data) !== 'object') return;
details.consigneeData = [data];
};
const handleData = (key, res) => {
const { code, data } = res.data;
if (code !== 200) return;
for (let i = 0; i < details.columnList.length; i++) {
const value = details.columnList[i];
if (value.label === key)
return (value.checkarr =
getObjType(data) === 'array'
? data.map(val => {
val.label = val.dictValue;
val.value = val.dictKey;
return val;
})
: []);
}
};
//
const initData = async () => {
try {
details.loadingObj.pageLoading = true;
await Promise.all([
//
// getDictionaryBiz('distribution_type').then(res => handleData('', res)),
// getDictionaryBiz('order_status').then(res => handleData('', res)),
// getDictionaryBiz('basic_grounding').then(res => handleData('', res)),
// getDictionaryBiz('freeze_status').then(res => handleData('', res)),
// getDictionaryBiz('order_stockup_status').then(res => handleData('', res)),
// getDictionaryBiz('order_reservation_status').then(res => handleData('', res)),
// getDictionaryBiz('order_receive_status').then(res => handleData('', res)),
getOrderInfo(),
onLoad(false),
]);
await nextTick();
handleTranslationDataSeclect(details.data, details.columnList);
console.log('details.columnList :>> ', details.columnList);
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
/** 初始化请求仓库数据 */
getListName({ name: '' }).then(res => {
const { code, data } = res.data;
if (code !== 200 || getObjType(data) !== 'array') return;
details.warehouseOption = data.map(val => {
return {
dictKey: val.id,
dictValue: val.name,
};
});
});
/** 搜索 */
const searchChange = () => {
onLoad();
};
/** 清空表单 */
const searchReset = () => {
details.query = {};
details.page.current = 1;
handleClearTableQuery(details.columnList);
onLoad();
};
/** 展开列表控件 */
const showdrawer = (_flag?: boolean) => {
details.drawerShow = _flag;
};
/** 是否开启搜索区 */
const searchHide = () => {
details.search = !details.search;
setNodeHeight(details.listNode, '', true);
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
handleInputQuery(index, row, details.query);
onLoad();
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
onLoad();
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
handleSelectQuery(index, row, details.query);
onLoad();
};
/** 表格表头复选框选择 */
const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (size: number) => {
details.page.size = size;
onLoad();
};
/** 页码改变执行的回调 */
const currentChange = current => {
details.page.current = current;
onLoad();
};
/** 查看轨迹 */
const handleTrajectory = row => {
console.log('>>>>', row);
$router.push({
path: '/distribution/signdetail/packageNodeSearch',
query: {
orderPackageCode: row.orderPackageCode,
},
});
};
/** 查看二维码 */
const handleQRCode = async row => {
try {
details.loadingObj.pageLoading = true;
let qr = {
ids: row.id,
};
details.html = '';
const res = await showOrderPackgeCode(qr);
const { code, data } = res.data;
if (code !== 200) return;
// details.html = details.getHtmls(data.dataList, data.templateHtml);
for (let i = 0; i < data.moldList.length; i++) {
const element = data.moldList[i];
details.html += element;
}
details.popUpShow.QRCodeVisible = true;
await nextTick();
hanleTextLineFeed('category', 14);
hanleTextLineFeed('materialName', 14);
hanleTextLineFeed('qrCode', 18);
hanleTextLineFeed('customer', 45);
} catch (err) {
console.log('err :>> ', err);
} finally {
details.loadingObj.pageLoading = false;
}
};
//
const allhandleQRCode = async () => {
try {
details.loadingObj.pageLoading = true;
console.log(details.selectionList);
if (details.selectionList.length == 0) {
ElMessage.error({ message: '请先选择包件' });
return;
}
let checkcode = [];
details.selectionList.map(item => {
checkcode.push(item.id);
// checkcode.push(item.orderPackageCode)
});
// return
let qr = {
ids: checkcode.join(','),
// qrCodes: checkcode.join(','),
};
details.html = '';
const res = await showOrderPackgeCode(qr);
const { code, data } = res.data;
if (code !== 200) return;
for (let i = 0; i < data.moldList.length; i++) {
const element = data.moldList[i];
details.html += element;
}
details.popUpShow.QRCodeVisible = true;
await nextTick();
hanleTextLineFeed('category', 14);
hanleTextLineFeed('materialName', 14);
hanleTextLineFeed('qrCode', 18);
hanleTextLineFeed('customer', 45);
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
watch(
() => $route.fullPath,
() => {
console.log('$route.fullPath :>> ', $route.fullPath);
if ($route.path !== '/distribution/inventory/delivery/OrderInTransitDetails') return;
initData();
},
{
immediate: true,
}
);
</script>
<style scoped lang="scss">
//
:deep(.el-date-editor.el-input) {
height: 100% !important;
width: 100% !important;
}
:deep(.el-range-editor.el-input__wrapper) {
height: 100% !important;
}
.avue-crud {
position: relative;
}
//
:deep(.el-overlay) {
position: absolute;
}
:deep(.el-input-number .el-input__inner) {
text-align: left !important;
}
:deep(.el-overlay-dialog) {
position: absolute;
}
.pageTitle {
display: flex;
align-items: center;
font-weight: bold;
color: var(--el-color-primary);
&::before {
content: '';
height: 20px;
width: 4px;
background-color: var(--el-color-primary);
margin-right: 5px;
}
}
</style>
Loading…
Cancel
Save