b949500482
- 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.
41 lines
373 B
Plaintext
41 lines
373 B
Plaintext
enum PaymentMethodType {
|
|
TERMINAL
|
|
CASH
|
|
SET_OFF
|
|
CARD
|
|
BANK
|
|
CHECK
|
|
OTHER
|
|
}
|
|
|
|
enum PurchaseReceiptStatus {
|
|
UNPAID
|
|
PARTIALLY_PAID
|
|
PAID
|
|
}
|
|
|
|
enum SalesInvoiceType {
|
|
GOOD
|
|
SERVICE
|
|
}
|
|
|
|
enum UnitType {
|
|
COUNT
|
|
GRAM
|
|
KILOGRAM
|
|
LITER
|
|
METER
|
|
HOUR
|
|
}
|
|
|
|
enum CustomerType {
|
|
INDIVIDUAL
|
|
LEGAL
|
|
UNKNOWN
|
|
}
|
|
|
|
enum SalesInvoiceItemPricingModel {
|
|
STANDARD
|
|
GOLD
|
|
}
|