Browse Source

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

intex_online20250409
叶佳兴 2 months 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: '', label: '模具未税金额',
field: '', field: 'moldUntaxedAmount',
isForm: false, formatter: accountantFormart,
isTable: false, table: {
isSearch: false, width: 160
isDetail: true, },
sortTableDefault:8,
form: {
component: 'InputNumber',
componentProps: {
precision: 2,
disabled: true,
}
},
tableForm: {
type: 'InputNumber',
precision: 2,
}
}, },
{ {
label: '', label: '模具税额',
field: '', field: 'moldTaxAmount',
isForm: false, formatter: accountantFormart,
isTable: false, table: {
isSearch: false, width: 160
isDetail: true, },
sortTableDefault:8,
form: {
component: 'InputNumber',
componentProps: {
precision: 2,
disabled: true,
}
},
tableForm: {
type: 'InputNumber',
precision: 2,
}
}, },
])) ]))
const singlePriceFormart = (row, column, cellValue) => { const singlePriceFormart = (row, column, cellValue) => {
cellValue= Number(cellValue).toFixed(5) cellValue= Number(cellValue).toFixed(5)

Loading…
Cancel
Save