diff --git a/src/api/distribution/VehicleStowage.js b/src/api/distribution/VehicleStowage.js
index cce9b802..423e027c 100644
--- a/src/api/distribution/VehicleStowage.js
+++ b/src/api/distribution/VehicleStowage.js
@@ -136,3 +136,14 @@ export const postManualLoadingloadId = data => {
data,
});
};
+
+/**
+ * 查看配载清单
+ */
+export const postFindLoadingListData = data => {
+ return request({
+ url: '/api/logpm-trunkline/carsLoad/findLoadingListData',
+ method: 'post',
+ data,
+ });
+};
diff --git a/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue b/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue
index 76e6a8c0..f0253b33 100644
--- a/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue
+++ b/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue
@@ -10,19 +10,29 @@
干线装载清单 |
- ![]() |
+
+
+ {{ renderInfo.carsNo }}
+ |
- 始发站: |
- 经停站: |
- 目的站: |
+ 始发站:{{ renderInfo.startWarehouseName }} |
+
+ 经停站:{{
+ renderInfo.endWarehouseNames.slice(0, renderInfo.endWarehouseNames.length - 1)[0] ||
+ ''
+ }}
+ |
+
+ 目的站:{{ renderInfo.endWarehouseNames.slice(-1)[0] }}
+ |
- 司机: |
- 司机联系电话: |
- 车牌号: |
- 卸车完成时间: 年 月 日 |
- 卸车人员签字 |
+ 司机:{{ renderInfo.assistantName || '' }} |
+ 司机联系电话:{{ renderInfo.assistantMobile || '' }} |
+ 车牌号:{{ renderInfo.carNumber || '' }} |
+ 卸车完成时间: {{ renderInfo.unloadDate || '年 月 日' }} |
+ 卸车人员签字 |
序号 |
@@ -37,7 +47,7 @@
合同号 |
计划件数 |
货位 |
- 装车产品明细 |
+ 装车产品明细 |
合计件数 |
卸车件数 |
卸车网点 |
@@ -45,63 +55,66 @@
异常备注 |
- 品类 |
+ {{ item }} |
+
小计 |
-
- 序号 |
+
+ {{ index + 1 }} |
- |
+ {{ value.shipper || '' }} |
- |
+ {{ value.createTime || '' }} |
- 始发仓 |
+ {{ value.departureWarehouseName || '' }} |
- 目的仓 |
+ {{ value.destinationWarehouseName || '' }} |
- 收货单位 |
+ {{ value.consignee }} |
- 收货人 |
+ {{ value.consigneeName }} |
- 收货电话 |
+ {{ value.consigneeMobile }} |
- 物流单号 |
+ {{ value.waybillNo }} |
- 合同号 |
+ {{ value.orderCode }} |
- 计划件数 |
+ {{ value.planNum }} |
- 货位 |
- 品类 |
+ |
+
+ {{ (value.goodsList.find(val => val.goodsName === item) || {}).num || '' }}
+ |
- 小计 |
+ {{ value.smallTotal }} |
- 合计件数 |
+ {{ value.smallTotal }} |
- 卸车件数 |
+ {{ value.unloadNum }} |
- 卸车网点 |
+ |
- 卸车时间 |
+ |
- 异常备注 |
+ |
合计 |
- 计划件数 |
- |
+ {{ totalPlanNum }} |
|
+ |
|
- |
+ {{ totalNum }} |
- 卸车件数 |
+ {{ totalUnLoadNum }} |
|
|
|
@@ -119,23 +132,47 @@
diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue
index 0a07c08f..07fb7a3e 100644
--- a/src/components/tablecmt/tablecmt.vue
+++ b/src/components/tablecmt/tablecmt.vue
@@ -44,6 +44,10 @@
class="mx-1"
>
+
+
,
+ required: false,
+ default: false,
+ },
});
/** 勾选数据统计 */
const selectCount = ref([]);
@@ -491,6 +500,8 @@ function makeCargo(value, column: TableColumnType) {
emit('makeCargo', value, column);
}
function inputchange(value, column: TableColumnType) {
+ console.log('value :>> ', value);
+ console.log('column :>> ', column);
if (typeof value == 'string') {
emit('inputTxt', value, column);
}
@@ -673,6 +684,18 @@ function copyContent(content: string) {
}
}
+const handleRefresh = () => {
+ for (let i = 0; i < newcolumnList.value.length; i++) {
+ const item = newcolumnList.value[i];
+
+ item.values = '';
+
+ if (item.type === 2 || item.type === 13) emit('inputTxt', item.values, item);
+ else if (item.type === 3) emit('selectCheck', item.values, item);
+ else if (item.type === 4) emit('timeCheck', item.values, item);
+ }
+};
+
defineExpose({ handleCheckSelect, handleClearSelect });
diff --git a/src/views/distribution/artery/TripartiteTransferDetails.vue b/src/views/distribution/artery/TripartiteTransferDetails.vue
index 7c670ff7..9bda7045 100644
--- a/src/views/distribution/artery/TripartiteTransferDetails.vue
+++ b/src/views/distribution/artery/TripartiteTransferDetails.vue
@@ -593,7 +593,7 @@ onMounted(() => {
});
/** 请求页面数据 */
-const onLoad = async () => {
+const onLoad = debounce(async () => {
try {
details.loadingObj.pageLoading = true;
@@ -644,7 +644,7 @@ const onLoad = async () => {
} finally {
details.loadingObj.pageLoading = false;
}
-};
+}, 10);
onLoad();
@@ -754,6 +754,7 @@ const remoteMethodDriver = async val => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
+ if (!index) delete details.query[row.prop];
onLoad();
};
diff --git a/src/views/distribution/artery/VehicleArrivalManagement.vue b/src/views/distribution/artery/VehicleArrivalManagement.vue
index 1bd04585..43a24a7b 100644
--- a/src/views/distribution/artery/VehicleArrivalManagement.vue
+++ b/src/views/distribution/artery/VehicleArrivalManagement.vue
@@ -1,5 +1,5 @@
-
+
@@ -65,49 +65,44 @@
-
-
@@ -279,6 +274,7 @@
:loading="loadingObj.list"
@inputTxt="packageInputsc"
@selection="list => (details.packageSelectedData = list)"
+ :isShowRefresh="false"
>
+
+
+
{
});
/** 请求页面数据 */
-const onLoad = async (params = {}) => {
+const onLoad = debounce(async (params = {}) => {
try {
// 开启loading
details.loadingObj.list = true;
@@ -602,13 +659,13 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
-};
+}, 10);
-onLoad(details.page);
+onLoad();
/** 搜索 */
const searchChange = () => {
- onLoad(details.page);
+ onLoad();
};
/** 清空表单 */
@@ -616,7 +673,7 @@ const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.pageNum = 1;
- onLoad(details.page);
+ onLoad();
};
/** 展开列表控件 */
@@ -634,7 +691,8 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
- onLoad(details.page);
+ if (!index) delete details.query[row.prop];
+ onLoad();
};
/** 表格表头时间选择 */
@@ -647,7 +705,7 @@ const timesc = (index, row) => {
if (!index) {
delete details.query[row.prop];
}
- onLoad(details.page);
+ onLoad();
};
/** 表格表头输入框搜索 */
@@ -661,7 +719,7 @@ const selectsc = (index, row) => {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
}
- onLoad(details.page);
+ onLoad();
};
/** 表格表头复选框选择 */
@@ -672,7 +730,7 @@ const selectionChange = (list: any) => {
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
- onLoad(details.page);
+ onLoad();
};
/** 页码改变执行的回调 */
@@ -733,50 +791,68 @@ const handleShowComparativeStatement = () => {
const handleArrive = async () => {
if (details.selectionList.length == 0) return ElMessage.warning('请选择需要到车的数据');
- console.log(
- 'details.selectionList.map(val => val.id) :>> ',
- details.selectionList.map(val => val.id)
- );
- const submitData = {
- loadId: details.selectionList.map(val => val.id).join(','),
- ...details.form,
- };
-
- const res = await postloadArriveCarByLoadId(submitData);
- const { code } = res.data;
- if (code !== 200) {
- return;
- }
- ElMessage({
- type: 'success',
- message: '到达成功',
- });
+ ElMessageBox.confirm('确认到车?', '提示', {
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ type: 'warning',
+ }).then(async () => {
+ try {
+ details.loadingObj.pageLoading = true;
+ const submitData = {
+ loadId: details.selectionList.map(val => val.id).join(','),
+ ...details.form,
+ };
- onLoad();
+ const res = await postloadArriveCarByLoadId(submitData);
+ const { code } = res.data;
+ if (code !== 200) {
+ return;
+ }
+ ElMessage({
+ type: 'success',
+ message: '到达成功',
+ });
+
+ onLoad();
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
+ });
};
/** 取消到车 */
const handleCloseArrive = async () => {
- console.log(
- 'details.selectionList.map(val => val.id) :>> ',
- details.selectionList.map(val => val.id)
- );
- const submitData = {
- loadId: details.selectionList.map(val => val.id).join(','),
- ...details.form,
- };
-
- const res = await postloadCancelArriveCarByLoadId(submitData);
- const { code } = res.data;
- if (code !== 200) {
- return;
- }
- ElMessage({
- type: 'success',
- message: '取消成功',
- });
+ ElMessageBox.confirm('确认取消到车?', '提示', {
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ type: 'warning',
+ }).then(async () => {
+ try {
+ details.loadingObj.pageLoading = true;
+ const submitData = {
+ loadId: details.selectionList.map(val => val.id).join(','),
+ ...details.form,
+ };
- onLoad();
+ const res = await postloadCancelArriveCarByLoadId(submitData);
+ const { code } = res.data;
+ if (code !== 200) {
+ return;
+ }
+ ElMessage({
+ type: 'success',
+ message: '取消成功',
+ });
+
+ onLoad();
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
+ });
};
/** 编辑配载信息 */
@@ -856,50 +932,65 @@ const handleStartCar = async () => {
});
}
- // 判断是否有未有终点的装车数据
- const res = await postDetermineHasNoFinalNode({ loadId: details.selectionList[0].id });
-
- const { code, data } = res.data;
- if (code !== 200) return;
- // 根据data是否返值判断能否发车
- if (data) {
- details.popUpShow.truckLoadingDetailVisited = true;
-
- details.packageData = data || [];
- details.packageRenderData = details.packageData;
-
- // 初始化数据
- const _item = details.selectionList[0];
- init(_item);
-
- await nextTick();
- const _node = document.querySelector('.truckLoadingDetailPopUpTable');
- setNodeHeight(_node, '500px');
- } else {
- details.popUpShow.truckLoadingDetailVisited = false;
+ try {
+ details.loadingObj.pageLoading = true;
- ElMessageBox.confirm('确认发车吗?', '', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(async () => {
- const submitData = {
- loadId: details.selectionList.map(val => val.id).join(','),
- startCarType: '2',
- };
+ // 判断是否有未有终点的装车数据
+ const res = await postDetermineHasNoFinalNode({ loadId: details.selectionList[0].id });
- const res = await postStartCarByLoadId(submitData);
- const { code } = res.data;
- if (code !== 200) {
- return;
- }
- ElMessage({
- type: 'success',
- message: '发车成功',
+ const { code, data } = res.data;
+ if (code !== 200) return;
+ // 根据data是否返值判断能否发车
+ if (data) {
+ details.popUpShow.truckLoadingDetailVisited = true;
+
+ details.packageData = data || [];
+ details.packageRenderData = details.packageData;
+
+ // 初始化数据
+ const _item = details.selectionList[0];
+ init(_item);
+
+ await nextTick();
+ const _node = document.querySelector('.truckLoadingDetailPopUpTable');
+ setNodeHeight(_node, '500px');
+ } else {
+ details.popUpShow.truckLoadingDetailVisited = false;
+
+ ElMessageBox.confirm('确认发车吗?', '', {
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ type: 'warning',
+ }).then(async () => {
+ try {
+ details.loadingObj.pageLoading = true;
+ const submitData = {
+ loadId: details.selectionList.map(val => val.id).join(','),
+ startCarType: '2',
+ };
+
+ const res = await postStartCarByLoadId(submitData);
+ const { code } = res.data;
+ if (code !== 200) {
+ return;
+ }
+ ElMessage({
+ type: 'success',
+ message: '发车成功',
+ });
+
+ onLoad();
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
});
-
- onLoad();
- });
+ }
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
}
};
@@ -922,22 +1013,29 @@ const handleEndCar = async () => {
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
- const submitData = {
- loadId: details.selectionList.map(val => val.id).join(','),
- startCarType: '2',
- };
+ try {
+ details.loadingObj.pageLoading = true;
+ const submitData = {
+ loadId: details.selectionList.map(val => val.id).join(','),
+ startCarType: '2',
+ };
- const res = await postCancelStartCarByLoadId(submitData);
- const { code } = res.data;
- if (code !== 200) {
- return;
- }
- ElMessage({
- type: 'success',
- message: '取消成功',
- });
+ const res = await postCancelStartCarByLoadId(submitData);
+ const { code } = res.data;
+ if (code !== 200) {
+ return;
+ }
+ ElMessage({
+ type: 'success',
+ message: '取消成功',
+ });
- onLoad();
+ onLoad();
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
});
};
@@ -1042,24 +1140,53 @@ const handleUnloadByLoadId = (type: 1 | 2) => {
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
- const submitData = {
- loadId: details.selectionList.map(val => val.id).join(','),
- unloadType: type,
- };
+ try {
+ details.loadingObj.pageLoading = true;
- const res = await postUnloadByLoadId(submitData);
- const { code } = res.data;
- if (code !== 200) {
- return;
- }
- ElMessage({
- type: 'success',
- message: '卸车成功',
- });
+ const submitData = {
+ loadId: details.selectionList.map(val => val.id).join(','),
+ unloadType: type,
+ };
+
+ const res = await postUnloadByLoadId(submitData);
+ const { code } = res.data;
+ if (code !== 200) {
+ return;
+ }
+ ElMessage({
+ type: 'success',
+ message: '卸车成功',
+ });
- onLoad();
+ onLoad();
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
});
};
+
+/** 显示装载清单 */
+const handleShowListOfLoadedWagons = async () => {
+ try {
+ if (details.selectionList.length === 0) return ElMessage.warning('请选择装载清单');
+ if (details.selectionList.length > 1) return ElMessage.warning('只能选择一个装载清单');
+ details.loadingObj.pageLoading = true;
+ const { id } = details.selectionList[0];
+
+ const res = await postFindLoadingListData({ loadId: id });
+ const { code, data } = res.data;
+
+ if (code !== 200) return;
+ details.popUpShow.listOfLoadedWagons = true;
+ details.listOfLoadedWagonsData = data;
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
+};
diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue
index 0c9da30a..16619762 100644
--- a/src/views/distribution/artery/VehicleStowage.vue
+++ b/src/views/distribution/artery/VehicleStowage.vue
@@ -56,40 +56,38 @@
-
-
@@ -430,6 +428,7 @@ import {
postUpdateLoadScanFinalNodeIdById,
postRemoveCarsLoadScan,
postManualLoadingloadId,
+ postFindLoadingListData,
} from '@/api/distribution/VehicleStowage';
import { useStore } from 'vuex';
import { useRouter, useRoute } from 'vue-router';
@@ -543,6 +542,8 @@ const details = reactive({
/** 被选中的数据 */
chooseNodeId: '',
packageQuery: {},
+ /** 配载清单数据 */
+ listOfLoadedWagonsData: {},
});
/** 车辆状态字典 */
@@ -660,7 +661,7 @@ onMounted(() => {
});
/** 请求页面数据 */
-const onLoad = async (params = {}) => {
+const onLoad = debounce(async (params = {}) => {
try {
// 开启loading
details.loadingObj.list = true;
@@ -693,7 +694,7 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
-};
+}, 10);
const initOnload = () => {
details.page.pageNum = 1;
@@ -746,6 +747,7 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
+ if (!index) delete details.query[row.prop];
initOnload();
};
@@ -1213,6 +1215,27 @@ const handleManualLoading = ({ row }) => {
// catch error
});
};
+
+/** 显示装载清单 */
+const handleShowListOfLoadedWagons = async () => {
+ try {
+ if (details.selectionList.length === 0) return ElMessage.warning('请选择装载清单');
+ if (details.selectionList.length > 1) return ElMessage.warning('只能选择一个装载清单');
+ details.loadingObj.pageLoading = true;
+ const { id } = details.selectionList[0];
+
+ const res = await postFindLoadingListData({ loadId: id });
+ const { code, data } = res.data;
+
+ if (code !== 200) return;
+ details.popUpShow.listOfLoadedWagons = true;
+ details.listOfLoadedWagonsData = data;
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
+};