23 lines
659 B
TypeScript
23 lines
659 B
TypeScript
export interface UpdateFeeForm {
|
|
feeId: string;
|
|
feeCategoryId: string;
|
|
feeName: string;
|
|
feeDescription: string;
|
|
feeAccount: string;
|
|
contractTypeId: string;
|
|
burialSiteTypeId: string;
|
|
feeAmount?: string;
|
|
feeFunction?: string;
|
|
taxAmount?: string;
|
|
taxPercentage?: string;
|
|
includeQuantity: '' | '1';
|
|
quantityUnit?: string;
|
|
isRequired: '' | '1';
|
|
}
|
|
export default function updateFee(feeForm: UpdateFeeForm, user: User): boolean;
|
|
export interface UpdateFeeAmountForm {
|
|
feeId: string;
|
|
feeAmount: string;
|
|
}
|
|
export declare function updateFeeAmount(feeAmountForm: UpdateFeeAmountForm, user: User): boolean;
|