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',
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,
table: {
width: 160
},
form: {
component: 'InputNumber',
componentProps: {
precision: 2,
disabled: true,
}
},
tableForm: {
type: 'InputNumber',
precision: 2,
}
},
{
label: '金税票号',

Loading…
Cancel
Save