feat: Introduce customs office and transport means fields to pedimento data models and forms.
This commit is contained in:
@@ -39,6 +39,11 @@ export interface PedimentoTransportMeans {
|
||||
departure?: string | null;
|
||||
}
|
||||
|
||||
export interface PedimentoCustomsOffices {
|
||||
dispatch_customs?: string | null;
|
||||
entry_exit_customs?: string | null;
|
||||
}
|
||||
|
||||
export interface PedimentoValidation {
|
||||
validator?: string | null;
|
||||
validation_ack?: string | null;
|
||||
@@ -186,6 +191,7 @@ export interface Pedimento {
|
||||
pedimento_config_parameters?: PedimentoConfigParameters | null;
|
||||
pedimento_config_updates?: PedimentoConfigUpdates | null;
|
||||
pedimento_config_update_rectification?: PedimentoConfigUpdateRectification | null;
|
||||
pedimento_customs_offices?: PedimentoCustomsOffices | null;
|
||||
identificadores?: Identificador[] | null;
|
||||
}
|
||||
|
||||
@@ -226,6 +232,7 @@ export interface CreatePedimentoData {
|
||||
pedimento_config_parameters?: PedimentoConfigParameters | null;
|
||||
pedimento_config_updates?: PedimentoConfigUpdates | null;
|
||||
pedimento_config_update_rectification?: PedimentoConfigUpdateRectification | null;
|
||||
pedimento_customs_offices?: PedimentoCustomsOffices | null;
|
||||
identificadores?: Identificador[] | null;
|
||||
}
|
||||
|
||||
@@ -259,6 +266,7 @@ export interface UpdatePedimentoData {
|
||||
pedimento_config_parameters?: PedimentoConfigParameters | null;
|
||||
pedimento_config_updates?: PedimentoConfigUpdates | null;
|
||||
pedimento_config_update_rectification?: PedimentoConfigUpdateRectification | null;
|
||||
pedimento_customs_offices?: PedimentoCustomsOffices | null;
|
||||
identificadores?: Identificador[] | null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user