feat: add new form field components for company details and consumer management
- Implemented CompanyNameComponent, DescriptionComponent, DeviceIdComponent, EconomicCodeComponent, EmailComponent, FirstNameComponent, FiscalCodeComponent, GuildIdComponent, LastNameComponent, LegalNameComponent, LicenseStartsAtComponent, MobileComponent, MobileNumberComponent, ModelComponent, NameComponent, NationalCodeComponent, NationalIdComponent, PartnerTokenComponent, PosTypeComponent, PostalCodeComponent, ProviderIdComponent, QuantityComponent, RegistrationCodeComponent, RegistrationNumberComponent, SerialNumberComponent, SetOffComponent, SkuComponent, TerminalComponent, UnitPriceComponent, UsernameComponent. - Added field control configurations for new fields in the form. - Updated routing and branding configurations for TIS tenant. - Created consumer type models for handling individual and legal consumer data.
This commit is contained in:
+13
-4
@@ -12,12 +12,21 @@ export interface ICustomerResponse extends ICustomerRawResponse {}
|
||||
|
||||
export interface ICustomerRequest {}
|
||||
|
||||
export interface ICustomerIndividualRequest extends CustomerIndividual {
|
||||
is_favorite: boolean;
|
||||
export interface ICustomerIndividualRequest {
|
||||
first_name?: string;
|
||||
last_name?: string;
|
||||
national_code?: string;
|
||||
postal_code?: string;
|
||||
economic_code?: string;
|
||||
is_favorite?: boolean;
|
||||
}
|
||||
|
||||
export interface ICustomerLegalRequest extends CustomerLegal {
|
||||
is_favorite: boolean;
|
||||
export interface ICustomerLegalRequest {
|
||||
company_name?: string;
|
||||
registration_number?: string;
|
||||
postal_code?: string;
|
||||
economic_code?: string;
|
||||
is_favorite?: boolean;
|
||||
}
|
||||
|
||||
interface CustomerLegal {
|
||||
|
||||
Reference in New Issue
Block a user