feat(customers): add DTOs for individual and legal customer creation

- Created CreateCustomerIndividualDto for individual customer data with fields: first_name, last_name, national_code, postal_code, is_favorite, and economic_code.
- Created CreateCustomerLegalDto for legal customer data with fields: company_name, economic_code, registration_number, and postal_code.
This commit is contained in:
2026-02-24 12:42:10 +03:30
parent c7cd7cd855
commit b949500482
27 changed files with 4116 additions and 600 deletions
@@ -1,7 +1,8 @@
import { GoldKarat } from '../enums/enums'
export interface SaleInvoicePayload {
karat?: keyof typeof GoldKarat
wages?: number
profit?: number
export interface SaleInvoiceGoldTypePayload {
karat: keyof typeof GoldKarat
wages: number
profit: number
}
export interface SaleInvoiceStandardPayload {}