mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-33): create customers forms
This commit is contained in:
@@ -24,6 +24,11 @@ import {
|
||||
UpdateWarehousePayload,
|
||||
Warehouse,
|
||||
} from '@/types/api/master-data/warehouse';
|
||||
import {
|
||||
CreateCustomerPayload,
|
||||
Customer,
|
||||
UpdateCustomerPayload,
|
||||
} from '@/types/api/master-data/customer';
|
||||
|
||||
export const UomApi = new BaseApiService<
|
||||
Uom,
|
||||
@@ -54,3 +59,9 @@ export const WarehouseApi = new BaseApiService<
|
||||
CreateWarehousePayload,
|
||||
UpdateWarehousePayload
|
||||
>('/master-data/warehouses');
|
||||
|
||||
export const CustomerApi = new BaseApiService<
|
||||
Customer,
|
||||
CreateCustomerPayload,
|
||||
UpdateCustomerPayload
|
||||
>('/master-data/customers');
|
||||
Reference in New Issue
Block a user