demo seed change 2

This commit is contained in:
Urtzi Alfaro
2025-12-14 11:58:14 +01:00
parent ff830a3415
commit a030bd14c8
44 changed files with 3093 additions and 977 deletions

View File

@@ -17,12 +17,17 @@
/**
* Customer type classifications
* Backend: CustomerType enum in models/enums.py (lines 10-14)
* Backend: CustomerType enum in models/enums.py (lines 10-18)
*/
export enum CustomerType {
INDIVIDUAL = 'individual',
BUSINESS = 'business',
CENTRAL_BAKERY = 'central_bakery'
CENTRAL_BAKERY = 'central_bakery',
RETAIL = 'RETAIL',
WHOLESALE = 'WHOLESALE',
RESTAURANT = 'RESTAURANT',
HOTEL = 'HOTEL',
ENTERPRISE = 'ENTERPRISE'
}
export enum DeliveryMethod {