|
|
@ -254,6 +254,7 @@ export const SupplierinvoiceRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
isSearch: true, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
label: '供应商维护未税金额', |
|
|
|
field: 'amount', |
|
|
@ -294,6 +295,46 @@ export const SupplierinvoiceRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
precision: 2, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
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: 'moldTaxAmount', |
|
|
|
formatter: accountantFormart, |
|
|
|
table: { |
|
|
|
width: 160 |
|
|
|
}, |
|
|
|
sortTableDefault:8, |
|
|
|
form: { |
|
|
|
component: 'InputNumber', |
|
|
|
componentProps: { |
|
|
|
precision: 2, |
|
|
|
disabled: true, |
|
|
|
} |
|
|
|
}, |
|
|
|
tableForm: { |
|
|
|
type: 'InputNumber', |
|
|
|
precision: 2, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '税率(%)', |
|
|
|
field: 'taxRate', |
|
|
|