This commit is contained in:
Samandar Turg'unboev
2025-05-29 09:51:29 +05:00
parent 1c57e2a9ee
commit c8d259d1ba
6 changed files with 53 additions and 22 deletions

View File

@@ -35,4 +35,7 @@ export const party_requests = {
async downloadPartyItemsExcel(params: { partyId: number | string }) {
return request.get<Blob>('/parties/items/download', { params, responseType: 'blob' });
},
async downloadPartyItemsAllExcel(params: { partyId: number | string }) {
return request.get<Blob>('/parties/download/box-order', { params, responseType: 'blob' });
},
};