|
|
@ -935,8 +935,9 @@ export const SupplierinvoiceRecordDetailMain = useCrudSchemas(reactive<CrudSchem |
|
|
|
isDetail: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '', |
|
|
|
field: '', |
|
|
|
label: '系统采购价格', |
|
|
|
field: 'purchaseAmountTotalMain', |
|
|
|
formatter: accountantFormart, |
|
|
|
sortTableDefault: 6, |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
@ -966,8 +967,9 @@ export const SupplierinvoiceRecordDetailMain = useCrudSchemas(reactive<CrudSchem |
|
|
|
isDetail: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '', |
|
|
|
field: '', |
|
|
|
label: '总价差', |
|
|
|
field: 'differencePriceTotalMain', |
|
|
|
formatter: accountantFormart, |
|
|
|
sortTableDefault: 6, |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
@ -1062,8 +1064,8 @@ export const SupplierinvoiceRecordDetailMain = useCrudSchemas(reactive<CrudSchem |
|
|
|
isDetail: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '差额', |
|
|
|
field: '', |
|
|
|
label: '尾差', |
|
|
|
field: 'totalDifference', |
|
|
|
sortTableDefault: 6, |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
@ -1400,6 +1402,39 @@ export const SupplierinvoiceRecordDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
|
component: 'InputNumber', |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '合同金额', |
|
|
|
field: 'contractAmountTotal', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isForm:false, |
|
|
|
tableForm:{ |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '采购金额', |
|
|
|
field: 'purchaseAmontTotal', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isForm:false, |
|
|
|
tableForm:{ |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '总差额', |
|
|
|
field: 'differencePriceTotal', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isForm:false, |
|
|
|
tableForm:{ |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '差额', |
|
|
|
field: 'differencePrice', |
|
|
|