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 a2e3fce2..07fb7a3e 100644
--- a/src/components/tablecmt/tablecmt.vue
+++ b/src/components/tablecmt/tablecmt.vue
@@ -44,9 +44,7 @@
class="mx-1"
>
-
@@ -348,7 +346,7 @@ let props = defineProps({
isShowRefresh: {
type: Boolean as PropType,
required: false,
- default: true,
+ default: false,
},
});
/** 勾选数据统计 */
diff --git a/src/main.js b/src/main.js
index da6f3bae..07e3b156 100644
--- a/src/main.js
+++ b/src/main.js
@@ -27,6 +27,7 @@ import SelectBox from './components/SelectBox/SelectBox.vue';
import edittablehead from './components/edittablehead/index.vue';
import WaybillPrintTemplate from './components/WaybillPrintTemplate/WaybillPrintTemplate.vue';
import ArteryPrintTemplate from './components/ArteryPrintTemplate/ArteryPrintTemplate.vue';
+import TripartiteTransferPrintTemplate from './components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue';
import { message } from './utils/resetMessage';
import App from './App.vue';
import 'animate.css';
@@ -56,6 +57,8 @@ app.component('SelectBox', SelectBox);
app.component('WaybillPrintTemplate', WaybillPrintTemplate);
/** 干线运输打印模版 */
app.component('ArteryPrintTemplate', ArteryPrintTemplate);
+/** 三方运输打印模版 */
+app.component('TripartiteTransferPrintTemplate', TripartiteTransferPrintTemplate);
app.config.globalProperties.$dayjs = dayjs;
app.config.globalProperties.$functions = functions;
app.provide('functions', functions);
diff --git a/src/views/distribution/artery/TripartiteTransfer.vue b/src/views/distribution/artery/TripartiteTransfer.vue
index a65e9ee9..956b54fb 100644
--- a/src/views/distribution/artery/TripartiteTransfer.vue
+++ b/src/views/distribution/artery/TripartiteTransfer.vue
@@ -1,5 +1,5 @@
-
+