Date: Fri, 8 Nov 2024 18:27:53 +0800
Subject: [PATCH 3/5] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=9B=B6=E6=8B=85?=
=?UTF-8?q?=E5=8D=B8=E8=BD=A6=E7=A1=AE=E8=AE=A4=EF=BC=8C=E8=AE=A2=E5=8D=95?=
=?UTF-8?q?=E9=85=8D=E8=BD=BD=E9=94=81=E5=AE=9A=E6=9F=A5=E8=AF=A2=EF=BC=8C?=
=?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BC=80=E5=8D=95=E5=BD=95=E5=8D=95=E6=95=B4?=
=?UTF-8?q?=E8=BD=A6=E8=B4=B9=E8=87=AA=E5=AE=9A=E4=B9=89=EF=BC=8C=E6=96=B0?=
=?UTF-8?q?=E5=A2=9E=E8=B4=A2=E5=8A=A1=E6=A8=A1=E5=9D=97=E8=A1=A8=E6=A0=BC?=
=?UTF-8?q?=E7=BB=9F=E8=AE=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/distribution/VehicleStowage.js | 11 ++
src/api/distribution/truckLoadingDetails.js | 11 ++
src/api/finance/WaybillAudit.js | 17 ++-
src/option/distribution/VehicleStowage.js | 54 +++++++++
src/option/finance/CustomerSettlement.js | 24 ++++
src/option/finance/MerchantDepositSlip.js | 24 ++++
.../finance/ReconciliationDepositSlip.js | 49 ++++++++
.../distribution/artery/AddVehicleStowage.vue | 4 +-
.../artery/VehicleArrivalManagement.vue | 97 +++++++++++++++-
.../distribution/artery/VehicleStowage.vue | 107 +++++++++++++++++-
.../artery/truckLoadingDetails.vue | 48 +++++++-
.../distribution/inventory/CreateOrder.vue | 2 +-
src/views/finance/CustomerSettlement.vue | 7 +-
src/views/finance/WaybillAudit.vue | 49 ++++++--
src/views/waybill/CreateZeroOrder.vue | 2 +-
15 files changed, 486 insertions(+), 20 deletions(-)
diff --git a/src/api/distribution/VehicleStowage.js b/src/api/distribution/VehicleStowage.js
index 82b2e80f..3327c0ed 100644
--- a/src/api/distribution/VehicleStowage.js
+++ b/src/api/distribution/VehicleStowage.js
@@ -170,3 +170,14 @@ export const postExportLoadCarsPageList = data => {
responseType: 'blob',
});
};
+
+/**
+ * 查询订单配载锁定详情
+ */
+export const postFindOrderPlanCarsNum = data => {
+ return request({
+ url: '/api/logpm-trunkline/carsLoad/findOrderPlanCarsNum ',
+ method: 'post',
+ data,
+ });
+};
diff --git a/src/api/distribution/truckLoadingDetails.js b/src/api/distribution/truckLoadingDetails.js
index 83d778db..3719421a 100644
--- a/src/api/distribution/truckLoadingDetails.js
+++ b/src/api/distribution/truckLoadingDetails.js
@@ -121,3 +121,14 @@ export const postUnloadZero = data => {
data,
});
};
+
+/**
+ * 零担卸车确认
+ */
+export const postZeroUnloadEnter = data => {
+ return request({
+ url: '/api/logpm-trunkline/api/carsLoad/zeroUnloadEnter ',
+ method: 'post',
+ data,
+ });
+};
diff --git a/src/api/finance/WaybillAudit.js b/src/api/finance/WaybillAudit.js
index f867df8a..4fd9e424 100644
--- a/src/api/finance/WaybillAudit.js
+++ b/src/api/finance/WaybillAudit.js
@@ -23,6 +23,19 @@ export const postFinanceWaybillListExport = data => {
url: '/api/logpm-warehouse/warehouseWaybill/financeWaybillListExport',
method: 'post',
data,
- responseType: 'blob'
+ responseType: 'blob',
});
-};
\ No newline at end of file
+};
+
+/**
+ * 运单批量审核
+ * @param {*} data
+ * @returns
+ */
+export const postCheckWaybillList = data => {
+ return request({
+ url: '/api/logpm-trunkline/openOrder/checkWaybillList',
+ method: 'post',
+ data,
+ });
+};
diff --git a/src/option/distribution/VehicleStowage.js b/src/option/distribution/VehicleStowage.js
index 8f3651ec..9271bfab 100644
--- a/src/option/distribution/VehicleStowage.js
+++ b/src/option/distribution/VehicleStowage.js
@@ -697,3 +697,57 @@ export const packageColumnList = [
sortable: false,
},
];
+
+/** 对比报表 -- 仓库节点 */
+export const orderDetailColumnList = [
+ {
+ prop: '',
+ label: '序号',
+ type: 12,
+ values: '',
+ width: 55,
+ fixed: true,
+ },
+ {
+ prop: 'carsNo',
+ label: '车次号',
+ width: '130',
+ type: 6,
+ values: '',
+ checkarr: [],
+ fixed: true,
+ sortable: false,
+ head: false,
+ },
+ {
+ prop: 'orderCode',
+ label: '订单号',
+ width: '130',
+ type: 1,
+ values: '',
+ checkarr: [],
+ fixed: true,
+ sortable: false,
+ head: false,
+ },
+ {
+ prop: 'waybillNo',
+ label: '运单号',
+ width: '130',
+ type: 1,
+ values: '',
+ checkarr: [],
+ fixed: false,
+ sortable: false,
+ },
+ {
+ prop: 'startNum',
+ label: '锁定件数',
+ width: '130',
+ type: 1,
+ values: '',
+ checkarr: [],
+ fixed: false,
+ sortable: false,
+ },
+];
diff --git a/src/option/finance/CustomerSettlement.js b/src/option/finance/CustomerSettlement.js
index c7c634df..c4895ef2 100644
--- a/src/option/finance/CustomerSettlement.js
+++ b/src/option/finance/CustomerSettlement.js
@@ -138,6 +138,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'hasBalanceFee',
@@ -149,6 +150,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'noBalanceFee',
@@ -160,6 +162,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalCount',
@@ -171,6 +174,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalWeight',
@@ -182,6 +186,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalVolume',
@@ -193,6 +198,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'openFee',
@@ -204,6 +210,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'pickupFee',
@@ -215,6 +222,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'freightFee',
@@ -226,6 +234,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseServiceFee',
@@ -237,6 +246,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseFee',
@@ -248,6 +258,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseManageFee',
@@ -259,6 +270,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseSortingFee',
@@ -270,6 +282,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseOperatingFee',
@@ -281,6 +294,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryServiceFee',
@@ -292,6 +306,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryFee',
@@ -303,6 +318,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryLoadingFee',
@@ -314,6 +330,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliverySortingFee',
@@ -325,6 +342,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryUpfloorFee',
@@ -336,6 +354,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryMoveFee',
@@ -347,6 +366,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryCrossingFee',
@@ -358,6 +378,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'installFee',
@@ -369,6 +390,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'otherFee',
@@ -380,6 +402,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'abnormalBalanceStatusName',
@@ -405,6 +428,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'abnormalRemark',
diff --git a/src/option/finance/MerchantDepositSlip.js b/src/option/finance/MerchantDepositSlip.js
index 19cecabe..90697a9f 100644
--- a/src/option/finance/MerchantDepositSlip.js
+++ b/src/option/finance/MerchantDepositSlip.js
@@ -68,6 +68,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalWeight',
@@ -79,6 +80,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalVolume',
@@ -90,6 +92,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'realTotalFee',
@@ -101,6 +104,8 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
+ isshowSummary: true,
},
{
prop: 'systemTotalFee',
@@ -123,6 +128,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'freightFee',
@@ -134,6 +140,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseServiceFee',
@@ -145,6 +152,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseFee',
@@ -156,6 +164,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseManageFee',
@@ -167,6 +176,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseSortingFee',
@@ -178,6 +188,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseOperatingFee',
@@ -189,6 +200,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryServiceFee',
@@ -200,6 +212,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryFee',
@@ -211,6 +224,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryLoadingFee',
@@ -222,6 +236,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliverySortingFee',
@@ -233,6 +248,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryUpfloorFee',
@@ -244,6 +260,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryMoveFee',
@@ -255,6 +272,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryCrossingFee',
@@ -266,6 +284,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'installFee',
@@ -277,6 +296,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'otherFee',
@@ -288,6 +308,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'destinationWarehouseName',
@@ -335,6 +356,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'realTotalFee',
@@ -346,6 +368,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'createUserName',
@@ -393,6 +416,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'changesItems',
diff --git a/src/option/finance/ReconciliationDepositSlip.js b/src/option/finance/ReconciliationDepositSlip.js
index 6bdcfdc2..3ae52fbb 100644
--- a/src/option/finance/ReconciliationDepositSlip.js
+++ b/src/option/finance/ReconciliationDepositSlip.js
@@ -184,6 +184,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalWeight',
@@ -195,6 +196,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalVolume',
@@ -206,6 +208,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'sysTotalFee',
@@ -228,6 +231,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'systemFreightPrice',
@@ -239,6 +243,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'freightPrice',
@@ -250,6 +255,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'systemPickupPrice',
@@ -261,6 +267,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'pickupPrice',
@@ -272,6 +279,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseServiceFee',
@@ -283,6 +291,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseFee',
@@ -294,6 +303,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseManageFee',
@@ -305,6 +315,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseSortingFee',
@@ -316,6 +327,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseOperatingFee',
@@ -327,6 +339,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryServiceFee',
@@ -338,6 +351,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'systemDeliveryFee',
@@ -349,6 +363,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryFee',
@@ -360,6 +375,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryLoadingFee',
@@ -371,6 +387,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliverySortingFee',
@@ -382,6 +399,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryUpfloorFee',
@@ -393,6 +411,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryMoveFee',
@@ -404,6 +423,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryOtherFee',
@@ -415,6 +435,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryCrossingFee',
@@ -426,6 +447,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'installFee',
@@ -437,6 +459,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'otherFee',
@@ -448,6 +471,7 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'shipperPerson',
@@ -818,6 +842,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalWeight',
@@ -829,6 +854,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalVolume',
@@ -840,6 +866,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'sysTotalFee',
@@ -851,6 +878,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'totalFee',
@@ -862,6 +890,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'systemFreightPrice',
@@ -873,6 +902,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'freightPrice',
@@ -884,6 +914,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'systemPickupPrice',
@@ -895,6 +926,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'pickupPrice',
@@ -906,6 +938,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseServiceFee',
@@ -917,6 +950,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseFee',
@@ -928,6 +962,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseManageFee',
@@ -939,6 +974,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseSortingFee',
@@ -950,6 +986,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'warehouseOperatingFee',
@@ -961,6 +998,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryServiceFee',
@@ -972,6 +1010,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'systemDeliveryFee',
@@ -983,6 +1022,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryFee',
@@ -994,6 +1034,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryLoadingFee',
@@ -1005,6 +1046,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliverySortingFee',
@@ -1016,6 +1058,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryUpfloorFee',
@@ -1027,6 +1070,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryMoveFee',
@@ -1038,6 +1082,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryOtherFee',
@@ -1049,6 +1094,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'deliveryCrossingFee',
@@ -1060,6 +1106,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'installFee',
@@ -1071,6 +1118,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'otherFee',
@@ -1082,6 +1130,7 @@ export const columnListB = [
fixed: false,
sortable: true,
head: false,
+ isshowSummary: true,
},
{
prop: 'shipperPerson',
diff --git a/src/views/distribution/artery/AddVehicleStowage.vue b/src/views/distribution/artery/AddVehicleStowage.vue
index 01e4602b..180a1640 100644
--- a/src/views/distribution/artery/AddVehicleStowage.vue
+++ b/src/views/distribution/artery/AddVehicleStowage.vue
@@ -657,7 +657,9 @@
- 关闭
+
+ 关闭
+
+
+
+ 查询订单配载锁定详情
+
+
导 出
@@ -419,6 +424,44 @@
>
+
+
+
+
+
+
+ 搜 索
+
+
+
+
+ {
+ const row = { ...slotProps.scope.row };
+ row.id = row.loadId;
+ handleGoWaybill({ row });
+ }
+ "
+ >{{ slotProps.scope.row.carsNo }}
+
+
+
@@ -621,7 +664,7 @@ import {
ChecksWhetherTheWarehouseIsSelected,
} from '@/utils/util';
import { columnList } from '@/option/distribution/VehicleArrivalManagement';
-import { packageColumnList } from '@/option/distribution/VehicleStowage';
+import { packageColumnList, orderDetailColumnList } from '@/option/distribution/VehicleStowage';
import {
postloadArriveCarsPageList,
postloadArriveCarByLoadId,
@@ -641,6 +684,7 @@ import {
postManualLoadingloadId,
postFindLoadingListData,
postFindWarehouseUnloadReport,
+ postFindOrderPlanCarsNum,
} from '@/api/distribution/VehicleStowage';
import { getListName } from '@/api/basicdata/basicdataVehicle';
import { useRouter, useRoute } from 'vue-router';
@@ -660,6 +704,7 @@ const Mydata = ref({});
Mydata.value = JSON.parse(localStorage.getItem('my_data')); //获取本地仓库信息
const truckLoadingDetailNodeRef = ref();
+const searchOrderTableNode = ref();
const details = reactive({
/** 是否开启搜索 */
@@ -708,6 +753,8 @@ const details = reactive({
truckLoadingDetailPopUpLoading: false,
/** 全屏Loading */
pageLoading: false,
+ /** 订单配载锁定详情 */
+ searchOrder: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
@@ -731,6 +778,8 @@ const details = reactive({
listOfLoadedWagons: false,
/** 卸车清单 */
unloadReport: false,
+ /** 订单配载锁定详情 */
+ searchOrderVisited: false,
},
/** 全屏 */
fullscreenObj: {
@@ -782,6 +831,12 @@ const details = reactive({
unloadReportInfo: {},
/** 仓库信息 */
warehouseOption: [] as [{ dictKey: string; dictValue: string }] | [],
+ /** 订单配载锁定详情 */
+ searchOrderOption: {
+ data: [],
+ columnList: deepClone(orderDetailColumnList),
+ searchText: '',
+ },
});
const tableNode = ref();
@@ -1723,6 +1778,33 @@ const handleExport = () => {
}
});
};
+
+/** 查询订单锁定详情 */
+const handleSeachOrder = async () => {
+ details.popUpShow.searchOrderVisited = true;
+ details.searchOrderOption.searchText = '';
+ details.searchOrderOption.data = [];
+ await nextTick();
+ setNodeHeight(searchOrderTableNode.value.$el, '');
+};
+
+/** 搜索订单锁定详情 */
+const searchOrder = async () => {
+ const orderCode = details.searchOrderOption.searchText;
+ if (!orderCode) return ElMessage.warning('请输入需要查询的订单号');
+ try {
+ details.loadingObj.searchOrder = true;
+
+ const res = await postFindOrderPlanCarsNum({ orderCode });
+ const { code, data } = res.data;
+ if (code !== 200 || getObjType(data) !== 'array') return;
+ details.searchOrderOption.data = data;
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.searchOrder = false;
+ }
+};
diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue
index f26959df..e9624fd0 100644
--- a/src/views/distribution/artery/VehicleStowage.vue
+++ b/src/views/distribution/artery/VehicleStowage.vue
@@ -156,6 +156,11 @@
对比报表