feat(FE-328-329-330): Adding Feature Inventory Product Stocks

This commit is contained in:
randy-ar
2025-12-04 02:05:34 +07:00
parent 873a4b308d
commit 3e07316678
12 changed files with 780 additions and 41 deletions
+8 -1
View File
@@ -12,6 +12,7 @@ import {
CreateInventoryAdjustmentPayload,
InventoryAdjustment,
} from '@/types/api/inventory/adjustment';
import { InventoryProduct } from '@/types/api/inventory/product';
export const ProductWarehouseApi = new BaseApiService<
ProductWarehouse,
@@ -25,8 +26,14 @@ export const MovementApi = new BaseApiService<
unknown
>('/inventory/transfers');
export const inventoryAdjustmentApi = new BaseApiService<
export const InventoryAdjustmentApi = new BaseApiService<
InventoryAdjustment,
CreateInventoryAdjustmentPayload,
unknown
>('/inventory/adjustments');
export const InventoryProductApi = new BaseApiService<
InventoryProduct,
unknown,
unknown
>('/inventory/product-stocks');