|
|
@ -1404,23 +1404,45 @@ export const SupplierinvoiceRecordDetailMain = useCrudSchemas(reactive<CrudSchem |
|
|
|
// }
|
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '', |
|
|
|
field: '', |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
|
isSearch: false, |
|
|
|
isDetail: true, |
|
|
|
label: '模具未税金额', |
|
|
|
field: 'moldUntaxedAmount', |
|
|
|
formatter: accountantFormart, |
|
|
|
table: { |
|
|
|
width: 160 |
|
|
|
}, |
|
|
|
sortTableDefault:8, |
|
|
|
form: { |
|
|
|
component: 'InputNumber', |
|
|
|
componentProps: { |
|
|
|
precision: 2, |
|
|
|
disabled: true, |
|
|
|
} |
|
|
|
}, |
|
|
|
tableForm: { |
|
|
|
type: 'InputNumber', |
|
|
|
precision: 2, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '', |
|
|
|
field: '', |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
|
isSearch: false, |
|
|
|
isDetail: true, |
|
|
|
label: '模具税额', |
|
|
|
field: 'moldTaxAmount', |
|
|
|
formatter: accountantFormart, |
|
|
|
table: { |
|
|
|
width: 160 |
|
|
|
}, |
|
|
|
sortTableDefault:8, |
|
|
|
form: { |
|
|
|
component: 'InputNumber', |
|
|
|
componentProps: { |
|
|
|
precision: 2, |
|
|
|
disabled: true, |
|
|
|
} |
|
|
|
}, |
|
|
|
tableForm: { |
|
|
|
type: 'InputNumber', |
|
|
|
precision: 2, |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
])) |
|
|
|
const singlePriceFormart = (row, column, cellValue) => { |
|
|
|
cellValue= Number(cellValue).toFixed(5) |
|
|
|