|
|
@ -370,30 +370,7 @@ export const SupplierinvoiceRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
disabled: true, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '索赔金额', |
|
|
|
field: 'claimAmount', |
|
|
|
formatter: accountantFormart, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
isTableForm:false, |
|
|
|
isForm:false, |
|
|
|
isDetail:false, |
|
|
|
form: { |
|
|
|
component: 'InputNumber', |
|
|
|
componentProps: { |
|
|
|
min: 0, |
|
|
|
precision: 2, |
|
|
|
} |
|
|
|
}, |
|
|
|
tableForm: { |
|
|
|
type: 'InputNumber', |
|
|
|
min: 0, |
|
|
|
precision: 2, |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
// {
|
|
|
|
// label: '调整价差',
|
|
|
|
// field: 'discountAmount',
|
|
|
@ -1592,6 +1569,28 @@ export const SupplierinvoiceRequestDetailMain = useCrudSchemas(reactive<CrudSche |
|
|
|
slotFilter: true |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '索赔总额', |
|
|
|
field: 'claimAmount', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
isTable: true, |
|
|
|
isDetail: true, |
|
|
|
isTableForm: false, |
|
|
|
isForm: true, |
|
|
|
isSearch: false, |
|
|
|
sortTableDefault: 12, |
|
|
|
form: { |
|
|
|
component: 'InputNumber', |
|
|
|
componentProps: { |
|
|
|
precision: 5, |
|
|
|
disabled: true, |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
])) |
|
|
@ -2282,17 +2281,5 @@ export const ClaimDetails = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
//仅是主列表页面的筛选搜索条件
|
|
|
|
{ |
|
|
|
label: '索赔金额', |
|
|
|
field: 'claimAmount', |
|
|
|
sort: 'custom', |
|
|
|
tableForm: { |
|
|
|
disabled: true, |
|
|
|
type: 'InputNumber', |
|
|
|
min: 0, |
|
|
|
precision: 5, |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
])) |
|
|
|