Merge branch 'development' of https://gitlab.com/mbugroup/lti-web-client into feat/FE/US-34/stock-adjustment

This commit is contained in:
randy-ar
2025-10-11 13:18:15 +07:00
30 changed files with 2306 additions and 36 deletions
+10
View File
@@ -24,6 +24,11 @@ import {
UpdateWarehousePayload,
Warehouse,
} from '@/types/api/master-data/warehouse';
import {
CreateCustomerPayload,
Customer,
UpdateCustomerPayload,
} from '@/types/api/master-data/customer';
import {
CreateProductCategoryPayload,
ProductCategory,
@@ -85,6 +90,11 @@ export const WarehouseApi = new BaseApiService<
UpdateWarehousePayload
>('/master-data/warehouses');
export const CustomerApi = new BaseApiService<
Customer,
CreateCustomerPayload,
UpdateCustomerPayload
>('/master-data/customers');
export const ProductCategoryApi = new BaseApiService<
ProductCategory,
CreateProductCategoryPayload,