|
@@ -8,17 +8,17 @@
|
|
|
@cancel="handleCancel"
|
|
|
>
|
|
|
<detail-list title="" :col="2">
|
|
|
- <detail-list-item term="采购计划名称">{{ model.orderName }}</detail-list-item>
|
|
|
- <detail-list-item term="采购计划类型">{{ BaseTool.Object.getField(typeMap,model.type) }}</detail-list-item>
|
|
|
+ <detail-list-item term="计划名称">{{ model.orderName }}</detail-list-item>
|
|
|
+ <detail-list-item term="计划类型">{{ BaseTool.Object.getField(typeMap,model.type) }}</detail-list-item>
|
|
|
+ <detail-list-item term="计划备注">{{ model.remark }}</detail-list-item>
|
|
|
+ <detail-list-item term="设备位号">{{ model.positionNo }}</detail-list-item>
|
|
|
<detail-list-item term="厂区">{{ BaseTool.Object.getField(flagMap,model.oldOrNew) }}</detail-list-item>
|
|
|
<detail-list-item term="项目">{{ model.complateProjectName }}</detail-list-item>
|
|
|
- <detail-list-item term="设备位号">{{ model.positionNo }}</detail-list-item>
|
|
|
- <detail-list-item term="备注">{{ model.remark }}</detail-list-item>
|
|
|
- <detail-list-item term="创建人">{{ model.createdUserName }}</detail-list-item>
|
|
|
- <detail-list-item term="更新日期">{{ model.updateTime }}</detail-list-item>
|
|
|
+ <detail-list-item term="申请人">{{ model.createdUserName }}</detail-list-item>
|
|
|
+ <detail-list-item term="申请日期">{{ model.updateTime }}</detail-list-item>
|
|
|
</detail-list>
|
|
|
|
|
|
- <title-divider title="采购单明细" width="120px"></title-divider>
|
|
|
+ <title-divider title="计划明细" width="120px"></title-divider>
|
|
|
<a-table
|
|
|
bordered
|
|
|
:data-source="model.detailVOS"
|
|
@@ -66,22 +66,22 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- title: '名称',
|
|
|
+ title: '物料名称',
|
|
|
width: 100,
|
|
|
dataIndex: 'spareName'
|
|
|
},
|
|
|
{
|
|
|
- title: '编号',
|
|
|
+ title: '存货编码',
|
|
|
width: 100,
|
|
|
dataIndex: 'no'
|
|
|
},
|
|
|
{
|
|
|
- title: '规格',
|
|
|
+ title: '规格型号',
|
|
|
width: 100,
|
|
|
dataIndex: 'ggxh'
|
|
|
},
|
|
|
{
|
|
|
- title: '仓库',
|
|
|
+ title: '仓库名称',
|
|
|
dataIndex: 'storeName',
|
|
|
width: 100
|
|
|
|
|
@@ -92,22 +92,22 @@ export default {
|
|
|
width: 100
|
|
|
},
|
|
|
{
|
|
|
- title: '采购数量',
|
|
|
+ title: '申请数量',
|
|
|
dataIndex: 'num',
|
|
|
width: 100
|
|
|
},
|
|
|
{
|
|
|
- title: '已采购数量',
|
|
|
+ title: '已采数量',
|
|
|
width: 100,
|
|
|
dataIndex: 'purchasedNum'
|
|
|
},
|
|
|
{
|
|
|
- title: '已入库数量',
|
|
|
+ title: '入库数量',
|
|
|
width: 100,
|
|
|
dataIndex: 'inStoreNum'
|
|
|
},
|
|
|
{
|
|
|
- title: '明细状态',
|
|
|
+ title: '采购状态',
|
|
|
width: 100,
|
|
|
dataIndex: 'detailStatus',
|
|
|
customRender: (text, record, index) => {
|