Merge branch 'feat/FE/US-33/TASK-40-slicing-ui-for-master-data-forms' of gitlab.com:mbugroup/lti-web-client into feat/FE/US-35/stock-transfer

This commit is contained in:
rstubryan
2025-10-09 16:33:31 +07:00
30 changed files with 2354 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,