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

Loading…
Cancel
Save