|
|
@@ -6,23 +6,24 @@
|
|
|
productionPlan.code
|
|
|
}}</el-descriptions-item>
|
|
|
<el-descriptions-item
|
|
|
- :label="'计划生产数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
|
|
|
- >{{ productionPlan.productNum }}</el-descriptions-item
|
|
|
+ :label="'计划数量'"
|
|
|
+ >{{ productionPlan.productNum }} {{ clientEnvironmentId == '4' ? '(方)' : productionPlan.measuringUnit }}</el-descriptions-item
|
|
|
>
|
|
|
- <!-- <el-descriptions-item label="已交货数量">已交货数量</el-descriptions-item>
|
|
|
- <el-descriptions-item label="未交货数量">未交货数量</el-descriptions-item> -->
|
|
|
+
|
|
|
<el-descriptions-item label="计划创建人">{{
|
|
|
productionPlan.createUserName
|
|
|
}}</el-descriptions-item>
|
|
|
<el-descriptions-item label="计划类型">{{
|
|
|
['', '内销计划', '外销计划', '预制计划'][productionPlan.planType]
|
|
|
}}</el-descriptions-item>
|
|
|
- <el-descriptions-item label="计划生产重量">{{
|
|
|
+ <el-descriptions-item label="计划重量">{{
|
|
|
productionPlan.productNum &&
|
|
|
productionPlan.productNum * productionPlan.productUnitWeight
|
|
|
- }}</el-descriptions-item>
|
|
|
- <!-- <el-descriptions-item label="已交货重量">已交货重量</el-descriptions-item>
|
|
|
- <el-descriptions-item label="未交货重量">未交货重量</el-descriptions-item> -->
|
|
|
+ }}
|
|
|
+ {{ productionPlan.weightUnit}}
|
|
|
+
|
|
|
+ </el-descriptions-item>
|
|
|
+
|
|
|
<el-descriptions-item label="计划创建时间">{{
|
|
|
productionPlan.createTime
|
|
|
}}</el-descriptions-item>
|
|
|
@@ -31,10 +32,9 @@
|
|
|
}}</el-descriptions-item>
|
|
|
<el-descriptions-item
|
|
|
:label="'要求生产数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
|
|
|
- >{{ productionPlan.requiredFormingNum }}</el-descriptions-item
|
|
|
+ >{{ productionPlan.requiredFormingNum }} {{ clientEnvironmentId == '4' ? '(方)' : productionPlan.measuringUnit }}</el-descriptions-item
|
|
|
>
|
|
|
- <!-- <el-descriptions-item label="已生产数量">已生产数量</el-descriptions-item>
|
|
|
- <el-descriptions-item label="未生产数量">未生产数量</el-descriptions-item> -->
|
|
|
+
|
|
|
<el-descriptions-item
|
|
|
:label="'实际交货数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
|
|
|
>
|
|
|
@@ -45,13 +45,8 @@
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item label="要求生产重量">{{
|
|
|
productionPlan.requiredFormingWeight
|
|
|
- }}</el-descriptions-item>
|
|
|
- <!-- <el-descriptions-item label="已生产重量">{{
|
|
|
- productionPlan.code
|
|
|
- }}</el-descriptions-item>
|
|
|
- <el-descriptions-item label="未生产重量">{{
|
|
|
- productionPlan.code
|
|
|
- }}</el-descriptions-item> -->
|
|
|
+ }} {{ productionPlan.weightUnit}}</el-descriptions-item>
|
|
|
+
|
|
|
<el-descriptions-item label="使用改型">{{
|
|
|
productionPlan.modification ? '是' : '否'
|
|
|
}}</el-descriptions-item>
|
|
|
@@ -67,8 +62,7 @@
|
|
|
<el-descriptions-item label="牌号">{{
|
|
|
productRequirementInfo.bandNo
|
|
|
}}</el-descriptions-item>
|
|
|
- <!-- <el-descriptions-item label="型号">已交货数量</el-descriptions-item>
|
|
|
- <el-descriptions-item label="单重">未交货数量</el-descriptions-item> -->
|
|
|
+
|
|
|
<el-descriptions-item label="重量单位">{{
|
|
|
productRequirementInfo.unitWeight
|
|
|
}}</el-descriptions-item>
|
|
|
@@ -81,8 +75,7 @@
|
|
|
<el-descriptions-item label="产品层次5">{{
|
|
|
productRequirementInfo.productLevel5
|
|
|
}}</el-descriptions-item>
|
|
|
- <!--
|
|
|
- <el-descriptions-item label="包装要求">未交货重量</el-descriptions-item> -->
|
|
|
+
|
|
|
<el-descriptions-item label="物料描述" :span="3">{{
|
|
|
productRequirementInfo.materialDesc
|
|
|
}}</el-descriptions-item>
|
|
|
@@ -92,12 +85,7 @@
|
|
|
<el-descriptions-item label="印字要求" :span="2">{{
|
|
|
productRequirementInfo.printingRequirements
|
|
|
}}</el-descriptions-item>
|
|
|
- <!-- <el-descriptions-item label="质量要求" :span="2"
|
|
|
- >已生产数量</el-descriptions-item
|
|
|
- >
|
|
|
- <el-descriptions-item label="质量证书要求" :span="2"
|
|
|
- >未生产数量</el-descriptions-item
|
|
|
- > -->
|
|
|
+
|
|
|
</el-descriptions>
|
|
|
<HeaderTitle title="销售订单信息" class="mt-20"> </HeaderTitle>
|
|
|
<ele-pro-table
|
|
|
@@ -105,6 +93,18 @@
|
|
|
:columns="columns"
|
|
|
:datasource="infoData.salesOrderList"
|
|
|
>
|
|
|
+
|
|
|
+ <template v-slot:contractNum="{ row }">
|
|
|
+ {{ row.contractNum }} {{row.measuringUnit}}
|
|
|
+ </template>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <template v-slot:productSumWeight="{ row }">
|
|
|
+ {{ row.productSumWeight }} {{row.weightUnit}}
|
|
|
+ </template>
|
|
|
+
|
|
|
+
|
|
|
<template v-slot:number="{ row }">
|
|
|
<div class="progress-box">
|
|
|
<div class="gress">
|
|
|
@@ -160,11 +160,13 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
prop: 'contractNum',
|
|
|
- label: '合同数量'
|
|
|
+ slot: 'contractNum',
|
|
|
+ label: '订单数量'
|
|
|
},
|
|
|
{
|
|
|
prop: 'productSumWeight',
|
|
|
- label: '合同重量'
|
|
|
+ slot: 'productSumWeight',
|
|
|
+ label: '订单重量'
|
|
|
},
|
|
|
{
|
|
|
prop: 'orderLibraryType',
|
|
|
@@ -191,13 +193,7 @@ export default {
|
|
|
prop: 'deliveryTime',
|
|
|
label: '交付日期'
|
|
|
},
|
|
|
- // {
|
|
|
- // action: 'number',
|
|
|
- // slot: 'number',
|
|
|
- // prop: 'number',
|
|
|
- // label: '已交付数量',
|
|
|
- // width: 280
|
|
|
- // },
|
|
|
+
|
|
|
{
|
|
|
prop: 'customerName',
|
|
|
label: '客户名称'
|