Merge development
This commit is contained in:
@@ -8,6 +8,10 @@ from api.v1.modules.public.reference_data.code_pedimento_regimens.models import
|
||||
CodePedimentoRegimen,
|
||||
)
|
||||
|
||||
# Import models in correct order for SQLAlchemy relationship resolution
|
||||
# CRITICAL: FaLineItem must be imported BEFORE LineItem
|
||||
from api.v1.modules.a24.fa.fa_item_lines.models import FaLineItem # noqa: F401
|
||||
from api.v1.modules.a76.items.models import LineItem # noqa: F401
|
||||
|
||||
valkey_url = os.getenv("VALKEY_URL", "redis://valkey:6379/0")
|
||||
|
||||
@@ -21,7 +25,10 @@ celery_app = Celery(
|
||||
"api.v1.modules.a76.reports.importacion.packing_list.task",
|
||||
"api.v1.modules.a76.reports.exportacion.aviso_consolidado.task",
|
||||
"api.v1.modules.a76.reports.exportacion.descargo.task",
|
||||
"api.v1.modules.a76.imports.tasks"
|
||||
"api.v1.modules.a76.imports.tasks",
|
||||
"api.v1.modules.a76.reports.exportacion.transmission.MAINX30.task",
|
||||
"api.v1.modules.a76.reports.importacion.transmission.temporal.MAINX30.task",
|
||||
"api.v1.modules.a76.reports.importacion.transmission.definitive.MAINX30.task"
|
||||
] # Ruta al módulo donde están las tareas
|
||||
)
|
||||
|
||||
@@ -36,4 +43,4 @@ celery_app.conf.update(
|
||||
)
|
||||
|
||||
if __name__ == "__main__":
|
||||
celery_app.start()
|
||||
celery_app.start()
|
||||
|
||||
Reference in New Issue
Block a user