From 4108da903e7944df37497f8755914866a4d3b4cd Mon Sep 17 00:00:00 2001
From: qb <1191961160@qq.com>
Date: Thu, 31 Oct 2024 17:58:51 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BD=95=E5=8D=95?=
=?UTF-8?q?=E5=BC=80=E5=8D=95=E5=90=8D=E7=A7=B0=E5=AD=97=E6=95=B0=E9=99=90?=
=?UTF-8?q?=E5=88=B6=EF=BC=8C=E6=96=B0=E5=A2=9E=E5=AF=B9=E8=B4=A6=E5=8D=95?=
=?UTF-8?q?=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/SelectBox/SelectBox.vue | 1 +
src/components/tablecmt/tablecmt.vue | 8 +-
.../finance/ReconciliationDepositSlip.js | 94 ++++++++++++++-----
.../distribution/artery/abnormalList.vue | 6 +-
4 files changed, 78 insertions(+), 31 deletions(-)
diff --git a/src/components/SelectBox/SelectBox.vue b/src/components/SelectBox/SelectBox.vue
index fe2584ee..4c95168f 100644
--- a/src/components/SelectBox/SelectBox.vue
+++ b/src/components/SelectBox/SelectBox.vue
@@ -9,6 +9,7 @@
@change="handleChange"
:clearable="props.clearable !== false"
:disabled="props.disabled === true"
+ :maxlength="30"
>
{
console.log('props.columnListName :>> ', props.columnListName);
- postSaveTableSeting({
- tableKey: $route.path + props.columnListName,
- tableSetCongig: JSON.stringify(props.columnList),
- });
+ // postSaveTableSeting({
+ // tableKey: $route.path + props.columnListName,
+ // tableSetCongig: JSON.stringify(props.columnList),
+ // });
};
defineExpose({ handleCheckSelect, handleClearSelect });
diff --git a/src/option/finance/ReconciliationDepositSlip.js b/src/option/finance/ReconciliationDepositSlip.js
index d074aa26..02c54fd5 100644
--- a/src/option/finance/ReconciliationDepositSlip.js
+++ b/src/option/finance/ReconciliationDepositSlip.js
@@ -114,18 +114,18 @@ export const columnList = [
width: '150',
checkarr: [
{
- label:'商配',
- value:1
- },
- {
- label:'市配',
- value:2
- },
- {
- label:'自提',
- value:3
- },
- ],
+ label: '商配',
+ value: 1,
+ },
+ {
+ label: '市配',
+ value: 2,
+ },
+ {
+ label: '自提',
+ value: 3,
+ },
+ ],
fixed: false,
sortable: true,
head: false,
@@ -152,6 +152,28 @@ export const columnList = [
sortable: true,
head: false,
},
+ {
+ prop: 'goodsNum',
+ label: '品类件数',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'goodsPrice',
+ label: '品类单价',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'totalNum',
label: '总件数',
@@ -726,18 +748,18 @@ export const columnListB = [
width: '150',
checkarr: [
{
- label:'商配1',
- value:1
- },
- {
- label:'市配',
- value:2
- },
- {
- label:'自提',
- value:3
- },
- ],
+ label: '商配1',
+ value: 1,
+ },
+ {
+ label: '市配',
+ value: 2,
+ },
+ {
+ label: '自提',
+ value: 3,
+ },
+ ],
fixed: false,
sortable: true,
head: false,
@@ -764,6 +786,28 @@ export const columnListB = [
sortable: true,
head: false,
},
+ {
+ prop: 'goodsNum',
+ label: '品类件数',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'goodsPrice',
+ label: '品类单价',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'totalNum',
label: '总件数',
@@ -1291,4 +1335,4 @@ export const confirmColumnList = [
head: false,
isshowSummary: true,
},
-];
\ No newline at end of file
+];
diff --git a/src/views/distribution/artery/abnormalList.vue b/src/views/distribution/artery/abnormalList.vue
index ca11436d..95968d3e 100644
--- a/src/views/distribution/artery/abnormalList.vue
+++ b/src/views/distribution/artery/abnormalList.vue
@@ -159,7 +159,9 @@
:align-center="true"
v-model="details.popUpShow.abnormalVisited"
>
-
包条码 ({{ details.abnormalInfo.orderPackageCode }})
+
+ 包条码 ({{ details.abnormalInfo.orderPackageCode }})
+
@@ -560,7 +562,7 @@ const handleAbnormal = (dealType, title) => {
const handleBatchAbnormarl = () => {
if (details.selectionList.length === 0) return ElMessage.warning('请选择需要处理的异常数据');
- if (details.selectionList.length > 30) return ElMessage.warning('最大数暂时支持30条')
+ if (details.selectionList.length > 30) return ElMessage.warning('最大数暂时支持30条');
const _abnormalType = details.selectionList[0].abnormalType;
From 223c550c61c74cf5927b6dd48e7e246d4f81e0ca Mon Sep 17 00:00:00 2001
From: qb <1191961160@qq.com>
Date: Thu, 31 Oct 2024 22:06:07 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=B0=E8=BD=A6?=
=?UTF-8?q?=E5=90=8C=E6=AD=A5=EF=BC=8C=E6=96=B0=E5=A2=9E=E7=BB=93=E7=AE=97?=
=?UTF-8?q?=E7=A1=AE=E8=AE=A4=EF=BC=8C=E6=96=B0=E5=A2=9E=E6=96=B0=E9=85=8D?=
=?UTF-8?q?=E8=BD=BD=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../distribution/VehicleArrivalManagement.js | 9 +
src/api/distribution/VehicleStowageDetails.js | 13 +-
src/api/finance/CustomerSettlement.js | 15 +-
.../distribution/VehicleArrivalManagement.js | 2 +-
src/router/views/index.js | 16 +-
.../artery/NewVehicleStowageDetails.vue | 1260 +++++++++++++++++
.../artery/VehicleArrivalManagement.vue | 62 +
.../distribution/artery/VehicleStowage.vue | 34 +-
src/views/finance/CustomerSettlement.vue | 45 +-
9 files changed, 1422 insertions(+), 34 deletions(-)
create mode 100644 src/views/distribution/artery/NewVehicleStowageDetails.vue
diff --git a/src/api/distribution/VehicleArrivalManagement.js b/src/api/distribution/VehicleArrivalManagement.js
index 626ad39b..c476b8cb 100644
--- a/src/api/distribution/VehicleArrivalManagement.js
+++ b/src/api/distribution/VehicleArrivalManagement.js
@@ -92,3 +92,12 @@ export const postExportCarsPageList = data => {
responseType: 'blob',
});
};
+
+/** 同步数据 */
+export const postSyncNoSystemData = data => {
+ return request({
+ url: '/api/logpm-trunkline/carsLoad/syncNoSystemData',
+ method: 'post',
+ data,
+ });
+};
diff --git a/src/api/distribution/VehicleStowageDetails.js b/src/api/distribution/VehicleStowageDetails.js
index 3825ebcd..a736879a 100644
--- a/src/api/distribution/VehicleStowageDetails.js
+++ b/src/api/distribution/VehicleStowageDetails.js
@@ -12,7 +12,7 @@ export const postloadFindLoadInitData = (data = {}) => {
};
/**
- * 通过名称查询仓库信息
+ * 查询配载详情
*/
export const postCarsLoadDetailInfo = data => {
return request({
@@ -22,6 +22,17 @@ export const postCarsLoadDetailInfo = data => {
});
};
+/**
+ * 查询配载详情
+ */
+export const postCarsLoadDetailInfoNew = data => {
+ return request({
+ url: '/api/logpm-trunkline/carsLoad/carsLoadDetailInfoNew',
+ method: 'post',
+ data,
+ });
+};
+
/**
* 配载日志
*/
diff --git a/src/api/finance/CustomerSettlement.js b/src/api/finance/CustomerSettlement.js
index 517a1dae..bec83446 100644
--- a/src/api/finance/CustomerSettlement.js
+++ b/src/api/finance/CustomerSettlement.js
@@ -14,7 +14,7 @@ export const postPageList = data => {
};
/**
- * 确认结算
+ * 提交结算信息
* @param {*} data
* @returns
*/
@@ -25,3 +25,16 @@ export const postCheckBalance = data => {
data,
});
};
+
+/**
+ * 确认结算信息
+ * @param {*} data
+ * @returns
+ */
+export const postEnterBalance = data => {
+ return request({
+ url: '/api/logpm-statisticsdata/merchantBalance/enterBalance',
+ method: 'post',
+ data,
+ });
+};
diff --git a/src/option/distribution/VehicleArrivalManagement.js b/src/option/distribution/VehicleArrivalManagement.js
index e81ac865..7f67e03a 100644
--- a/src/option/distribution/VehicleArrivalManagement.js
+++ b/src/option/distribution/VehicleArrivalManagement.js
@@ -380,7 +380,7 @@ export const columnList = [
label: '操作',
type: 6,
values: '',
- width: '200',
+ width: '250',
checkarr: [],
fixed: 'right',
sortable: false,
diff --git a/src/router/views/index.js b/src/router/views/index.js
index 62fae612..0aa94b1a 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -268,6 +268,17 @@ export default [
/* webpackChunkName: "views" */ '@/views/distribution/artery/VehicleStowageDetails.vue'
),
},
+ {
+ path: 'NewVehicleStowageDetails',
+ name: '配载详情V2',
+ meta: {
+ i18n: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/artery/NewVehicleStowageDetails.vue'
+ ),
+ },
{
path: 'directGoMarket',
name: '配置直发商家',
@@ -1190,8 +1201,7 @@ export default [
name: route.query.name,
id: route.query.id,
}),
- component: () =>
- import('@/views/distribution/inventory/delivery/Unstoreddetails.vue'),
+ component: () => import('@/views/distribution/inventory/delivery/Unstoreddetails.vue'),
},
],
},
@@ -1473,7 +1483,7 @@ export default [
},
],
},
-
+
{
path: '/aftersales/aftersalesWorkOrderInfo',
component: Layout,
diff --git a/src/views/distribution/artery/NewVehicleStowageDetails.vue b/src/views/distribution/artery/NewVehicleStowageDetails.vue
new file mode 100644
index 00000000..23beff0d
--- /dev/null
+++ b/src/views/distribution/artery/NewVehicleStowageDetails.vue
@@ -0,0 +1,1260 @@
+
+
+
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 节点信息
+
+
+
+
+
+ {{ slotProps.scope.row[slotProps.scope.column.property] }}
+
+
+
+
+
+
+ 运单信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 成本分摊确认
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+ handleGoWayBillDetail(slotProps.scope)">{{
+ slotProps.scope.row.waybillNo
+ }}
+
+
+
+
+
+
+
+
+ {{ slotProps.scope.row.waybillNo }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 操作时间:
+ {{ item.updateTime }}
+
+
+
+ 操作网点:
+ {{ item.nodeName }}
+
+
+
+ 操作人:
+ {{ item.createUserName }}
+
+
+
+
+ {{ item.content }}
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂 无 数 据 ~
+
+
+
+
+
+
+
+
+
+
+
+ 操作时间:
+ {{ item.updateTime }}
+
+
+
+ 操作网点:
+ {{ item.warehouseName }}
+
+
+
+ 操作人:
+ {{ item.createUserName }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{
+ details.updateImgList = [];
+ details.popUpShow.addImgVisible = true;
+ }
+ "
+ >
+ 添加运输合同图片
+
+
+
+
+
+
+
+
+
+
+ {{ item.createUserName }}
+
+
+
+
+ {{ item.createTime }}
+
+
+
+
+
+
+
+ 暂 无 数 据 ~
+
+
+
+ 暂 无 数 据 ~
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 批 量 删 除
+
+ (details.abnormalSelectionList = list)"
+ :isShowRefresh="false"
+ >
+
+
+
+
+ 关 闭
+ 成本分摊
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/distribution/artery/VehicleArrivalManagement.vue b/src/views/distribution/artery/VehicleArrivalManagement.vue
index 4a0b04cd..60ed26b6 100644
--- a/src/views/distribution/artery/VehicleArrivalManagement.vue
+++ b/src/views/distribution/artery/VehicleArrivalManagement.vue
@@ -289,6 +289,13 @@
Number(slotProps.scope.row.loadStatus) !== 100
"
>
+
+ 配载详情
+
+
编辑
+
+ 同步数据
+
+
@@ -674,6 +688,7 @@ import {
postUnloadByLoadId,
postUnloadByLoadIdBefore,
postExportCarsPageList,
+ postSyncNoSystemData,
} from '@/api/distribution/VehicleArrivalManagement';
import {
postStartCarByLoadId,
@@ -911,6 +926,10 @@ const permissionObj = reactive({
VehicleArrivalManagement_ZeroLoading: computed(
() => $store.getters.permission.VehicleArrivalManagement_ZeroLoading
),
+ /** 配载详情 */
+ VehicleStowage_GoVehicleDetail: computed(
+ () => $store.getters.permission.VehicleStowage_GoVehicleDetail
+ ),
});
/** 请求页面数据 */
@@ -1555,6 +1574,49 @@ const handleUnloadByLoadId = async (type: 1 | 2) => {
}
};
+/** 跳转配载详情 */
+const GoVehicleDetail = ({ row }) => {
+ $router.push({
+ path: '/distribution/artery/NewVehicleStowageDetails',
+ query: {
+ loadId: row.id,
+ name: `${row.carsNo} - 配载详情`,
+ },
+ });
+};
+
+/** 同步数据 */
+const handleSync = ({ row }) => {
+ ElMessageBox.confirm('确认同步数据吗?', '', {
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ type: 'warning',
+ }).then(async () => {
+ try {
+ details.loadingObj.pageLoading = true;
+ const submitData = {
+ loadId: row.id,
+ };
+
+ const res = await postSyncNoSystemData(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 handleShowListOfLoadedWagons = async () => {
try {
diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue
index ac5f584d..12028a14 100644
--- a/src/views/distribution/artery/VehicleStowage.vue
+++ b/src/views/distribution/artery/VehicleStowage.vue
@@ -264,6 +264,14 @@
"
>
+
+
+ 配载详情
+
+
- 直发签收零担补录
- -->
-
$store.getters.permission.VehicleStowage_ZeroLoading),
+ /** 配载详情 */
+ VehicleStowage_GoVehicleDetail: computed(
+ () => $store.getters.permission.VehicleStowage_GoVehicleDetail
+ ),
});
onMounted(() => {
@@ -1082,6 +1083,17 @@ const handleShowTruckLoadingDetails = ({ row }) => {
// });
};
+/** 跳转配载详情 */
+const GoVehicleDetail = ({ row }) => {
+ $router.push({
+ path: '/distribution/artery/NewVehicleStowageDetails',
+ query: {
+ loadId: row.id,
+ name: `${row.carsNo} - 配载详情`,
+ },
+ });
+};
+
/** 显示零担补录 */
const handleShowzeroAdditionalRecording = ({ row }, type = false) => {
if (!ChecksWhetherTheWarehouseIsSelected())
diff --git a/src/views/finance/CustomerSettlement.vue b/src/views/finance/CustomerSettlement.vue
index 2689bc6d..b261606a 100644
--- a/src/views/finance/CustomerSettlement.vue
+++ b/src/views/finance/CustomerSettlement.vue
@@ -91,7 +91,7 @@
- 导 出
+
@@ -116,6 +116,12 @@
ViewSettlementInformation(slotProps.scope)"> 结算信息
ViewTransactionInformation(slotProps.scope)"> 异常信息
+ handleConfirmCustomer(slotProps.scope)"
+ >
+ 确认结算
+
@@ -158,7 +164,7 @@ import {
getopenOrderAdvancePageList,
postOpenOrderFreezeByAdvanceIds,
} from '@/api/waybill/TemporaryStorageList';
-import { postPageList } from '@/api/finance/CustomerSettlement';
+import { postPageList, postEnterBalance } from '@/api/finance/CustomerSettlement';
import {
downloadXls,
setNodeHeight,
@@ -242,8 +248,6 @@ const details = reactive
({
pageSize: 30,
total: 0,
},
- /** 列表Dom节点 */
- listNode: '',
form: {},
});
@@ -251,25 +255,13 @@ const tableNodeRef = ref();
const { search, query, shortcuts, selectionList, drawerShow, page, defaultTime2 } = 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 (params = {}) => {
try {
// 开启列表loading动画
details.loadingObj.list = true;
const queryCopy = { ...details.query };
- await TimeProcessing(queryCopy);
+ TimeProcessing(queryCopy);
const submitData = { ...queryCopy, ...params, ...details.page };
// 获取暂存单列表
const res = await postPageList(submitData);
@@ -409,6 +401,25 @@ const ViewTransactionInformation = ({ row }) => {
query: { balanceOrderInfoId: row.id, backPath: '/finance/CustomerSettlement' },
});
};
+
+const handleConfirmCustomer = ({ row }) => {
+ ElMessageBox.confirm(`【 ${row.balanceOrderNo} 】 确认结算`, '提示', {
+ type: 'warning',
+ }).then(async () => {
+ try {
+ details.loadingObj.pageLoading = true;
+ const res = await postEnterBalance({ balanceOrderInfoId: row.id });
+ const { code, msg } = res.data;
+ if (code !== 200) return;
+ msg && ElMessage.success(msg);
+ onLoad();
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ details.loadingObj.pageLoading = false;
+ }
+ });
+};