feat: add slip upload endpoint
This commit is contained in:
parent
eca99dbcd1
commit
f1312b586f
2 changed files with 43 additions and 1 deletions
|
|
@ -113,6 +113,8 @@ export const fileLocation = {
|
|||
attachment: (taskId: string, name?: string) => `task/attachment-${taskId}/${name || ""}`,
|
||||
},
|
||||
creditNote: {
|
||||
attachment: (taskId: string, name?: string) => `credit-note/attachment-${taskId}/${name || ""}`,
|
||||
slip: (creditNoteId: string, name?: string) => `credit-note/slip-${creditNoteId}/${name || ""}`,
|
||||
attachment: (creditNoteId: string, name?: string) =>
|
||||
`credit-note/attachment-${creditNoteId}/${name || ""}`,
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue