feat: print all barcodes for selected deal

This commit is contained in:
2024-09-28 19:47:15 +04:00
parent 196b4103e3
commit 943291c7d1
6 changed files with 88 additions and 20 deletions

View File

@@ -0,0 +1,3 @@
export type GetDealProductsBarcodesPdfRequest = {
dealId: number;
};

View File

@@ -0,0 +1,5 @@
export type GetDealProductsBarcodesPdfResponse = {
base64String: string;
filename: string;
mimeType: string;
};