|
@@ -1,13 +1,15 @@
|
|
|
<template>
|
|
|
<a-modal
|
|
|
:title="modalTitle"
|
|
|
- :width="1200"
|
|
|
+ :width="1400"
|
|
|
:visible="visible"
|
|
|
:confirmLoading="confirmLoading"
|
|
|
class="ant-modal2"
|
|
|
@cancel="handleCancel"
|
|
|
>
|
|
|
<detail-list title="" :col="2">
|
|
|
+ <detail-list-item term="采购单号">{{ model.yongYouId }}</detail-list-item>
|
|
|
+
|
|
|
<detail-list-item term="计划类型">{{ BaseTool.Object.getField(typeMap,model.type) }}</detail-list-item>
|
|
|
<detail-list-item term="请购原因">{{ model.cmemo }}</detail-list-item>
|
|
|
<detail-list-item term="计划类型">{{ BaseTool.Object.getField(cptcodeMap,model.cptcode) }}</detail-list-item>
|
|
@@ -116,6 +118,21 @@ export default {
|
|
|
width: 100,
|
|
|
dataIndex: 'inStoreNum'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '单价',
|
|
|
+ dataIndex: 'ftaxprice',
|
|
|
+ width: 100
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '税率',
|
|
|
+ dataIndex: 'ipertaxrate',
|
|
|
+ width: 100
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '价税合计',
|
|
|
+ dataIndex: 'iorisum',
|
|
|
+ width: 100
|
|
|
+ },
|
|
|
{
|
|
|
title: '采购状态',
|
|
|
width: 100,
|