mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-23 14:55:44 +00:00
feat(FE-33): create suppliers table and forms
This commit is contained in:
@@ -29,6 +29,11 @@ import {
|
||||
Customer,
|
||||
UpdateCustomerPayload,
|
||||
} from '@/types/api/master-data/customer';
|
||||
import {
|
||||
CreateSupplierPayload,
|
||||
Supplier,
|
||||
UpdateSupplierPayload,
|
||||
} from '@/types/api/master-data/supplier';
|
||||
|
||||
export const UomApi = new BaseApiService<
|
||||
Uom,
|
||||
@@ -64,4 +69,10 @@ export const CustomerApi = new BaseApiService<
|
||||
Customer,
|
||||
CreateCustomerPayload,
|
||||
UpdateCustomerPayload
|
||||
>('/master-data/customers');
|
||||
>('/master-data/customers');
|
||||
|
||||
export const SupplierApi = new BaseApiService<
|
||||
Supplier,
|
||||
CreateSupplierPayload,
|
||||
UpdateSupplierPayload
|
||||
>('/master-data/suppliers');
|
||||
Reference in New Issue
Block a user