Browse Source

YT-2545销售开票记录,字段不正确,应去掉模具未税尾差,增加此3个字段

intex_online20250427
张立 1 day ago
parent
commit
29a7f1fb51
  1. 58
      src/views/wms/deliversettlementManage/customerSaleInvoiceRecordMain/customerSaleInvoiceRecordMain.data.ts

58
src/views/wms/deliversettlementManage/customerSaleInvoiceRecordMain/customerSaleInvoiceRecordMain.data.ts

@ -280,24 +280,64 @@ export const CustomerSaleInvoiceMain = useCrudSchemas(reactive<CrudSchema[]>([
type: 'InputNumber', type: 'InputNumber',
precision: 2, precision: 2,
} }
}, { },
label: '模具未税尾差', // {
field: 'allocationDifferenceBeforeTax', // label: '模具未税尾差',
// field: 'allocationDifferenceBeforeTax',
// formatter: accountantFormart,
// table: {
// width: 160
// },
// form: {
// component: 'InputNumber',
// componentProps: {
// precision: 2,
// disabled: true,
// }
// },
// tableForm: {
// type: 'InputNumber',
// precision: 2,
// }
// },
{
label: '已分摊模具未税金额',
field: 'alreadyMoldUntaxedAmount',
formatter: accountantFormart,
table: {
width: 160
},
form: {
componentProps: {
disabled: true,
}
},
},
{
label: '已分摊模具税额',
field: 'alreadyMoldTaxAmount',
formatter: accountantFormart,
table: {
width: 160
},
form: {
componentProps: {
disabled: true,
}
},
},
{
label: '模具未税差异',
field: 'moldTaxAmountDiff',
formatter: accountantFormart, formatter: accountantFormart,
table: { table: {
width: 160 width: 160
}, },
form: { form: {
component: 'InputNumber',
componentProps: { componentProps: {
precision: 2,
disabled: true, disabled: true,
} }
}, },
tableForm: {
type: 'InputNumber',
precision: 2,
}
}, },
{ {
label: '金税票号', label: '金税票号',

Loading…
Cancel
Save