feat: implement supplier management module with create, update, find, and delete functionalities

- Added CreateSupplierDto for supplier creation
- Added UpdateSupplierDto for supplier updates
- Implemented SuppliersController to handle HTTP requests for suppliers
- Created SuppliersService to manage supplier data using Prisma
- Integrated SuppliersModule to encapsulate suppliers-related components
This commit is contained in:
2025-12-05 00:01:44 +03:30
parent 621e15dd02
commit 7cb9d7d037
20 changed files with 1762 additions and 1703 deletions
+2 -2
View File
@@ -68,10 +68,10 @@ export type ProductBrand = Prisma.ProductBrandModel
*/
export type ProductCategory = Prisma.ProductCategoryModel
/**
* Model Vendor
* Model Supplier
*
*/
export type Vendor = Prisma.VendorModel
export type Supplier = Prisma.SupplierModel
/**
* Model Customer
*