Browse Source

客户对账单bug

intex
yufei_wang 3 days ago
parent
commit
6fcdd3d30d
  1. 8
      src/views/wms/deliversettlementManage/moldAllocation/customerStatement/customerStatementMain.data.ts
  2. 8
      src/views/wms/deliversettlementManage/moldAllocation/customerStatement/index.vue

8
src/views/wms/deliversettlementManage/moldAllocation/customerStatement/customerStatementMain.data.ts

@ -426,6 +426,14 @@ export const CustomerStatementShareReconciliation = useCrudSchemas(reactive<Crud
label: '调整金额', label: '调整金额',
field: 'adjustmentAmount', field: 'adjustmentAmount',
sort: 'custom', sort: 'custom',
form: {
component: 'InputNumber',
value: 0,
componentProps: {
precision: 2
},
}
}, },
])) ]))

8
src/views/wms/deliversettlementManage/moldAllocation/customerStatement/index.vue

@ -254,7 +254,7 @@ const butttondata = (row, $index) => {
{ {
label: t('ts.确认对比结果'), label: t('ts.确认对比结果'),
name: 'confirmationContrast', name: 'confirmationContrast',
hide: isShowMainButton(row, ['2']), hide: row.isCompare!='1',
type: 'primary', type: 'primary',
icon: '', icon: '',
color: '', color: '',
@ -273,7 +273,7 @@ const butttondata = (row, $index) => {
{ {
label: t('ts.确认分摊金额'), label: t('ts.确认分摊金额'),
name: 'confirmShareMoney', name: 'confirmShareMoney',
hide: isShowMainButton(row, ['4']), hide: row.isShare!='1',
type: 'primary', type: 'primary',
color: '', color: '',
hasPermi: 'wms:customer-statement-main:confirmationShare', hasPermi: 'wms:customer-statement-main:confirmationShare',
@ -592,6 +592,10 @@ const changeTabs = async (item) => {
{ {
key: 'masterId', key: 'masterId',
value: chooseRow.value.id value: chooseRow.value.id
},
{
key: 'status',
value: 0
} }
] ]
apiPage.value = CustomerStatementDetailApi.getCustomerToolApportStatementPage apiPage.value = CustomerStatementDetailApi.getCustomerToolApportStatementPage

Loading…
Cancel
Save