Browse Source

SCP《供应商开票申请》《供应商发票记录》增加字段;对账单打印增加字段

intex_online20250409
叶佳兴 2 weeks ago
parent
commit
2904c56c17
  1. 50
      src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRecordMain/supplierinvoiceRecordMain.data.ts

50
src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRecordMain/supplierinvoiceRecordMain.data.ts

@ -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)

Loading…
Cancel
Save