feat: add payment post process

This commit is contained in:
Methapon Metanipat 2024-10-09 15:04:59 +07:00
parent 80a407ba61
commit 07742732ac
5 changed files with 133 additions and 6 deletions

View file

@ -93,4 +93,8 @@ export const fileLocation = {
quotation: {
payment: (quotationId: string) => `quotation/payment-${quotationId}`,
},
request: {
attachment: (requestId: string, name?: string) =>
`request/attachment-${requestId}/${name || ""}`,
},
};