feat: Introduce customs office and transport means fields to pedimento data models and forms.

This commit is contained in:
Galindo97
2026-02-25 11:41:35 -06:00
parent d6ab2f47d7
commit 72db67e161
6 changed files with 231 additions and 23 deletions

View File

@@ -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;
}