feat(FE-33): create suppliers table and forms

This commit is contained in:
randy-ar
2025-10-09 12:27:59 +07:00
parent 21cc01fe68
commit a83452a0e4
17 changed files with 1194 additions and 25 deletions
+12 -1
View File
@@ -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');