241 lines
9.3 KiB
Python
241 lines
9.3 KiB
Python
"""
|
|
Tareas Celery para importación CSV de Pedimentos.
|
|
Flujo: scan_file (validación) → insert_valid_rows (commit).
|
|
Usa layouts_csv.common (storage, normalize, meta, responses, csv_reader), fk_loader, validators, mappers.
|
|
"""
|
|
import json
|
|
import logging
|
|
import os
|
|
from datetime import datetime
|
|
from typing import Dict, Any, Optional, List
|
|
|
|
from core.celery_app import celery_app
|
|
from core.database import CoreSessionLocal
|
|
|
|
from ..common import storage as common_storage
|
|
from ..common import normalize as common_normalize
|
|
from ..common import meta as common_meta
|
|
from ..common import responses as common_responses
|
|
from ..common import csv_reader as common_csv_reader
|
|
from .template_config import row_from_template
|
|
from .validators import validate_row_pedimento
|
|
from .common.fk_loader import load_pedimentos_fk_sets
|
|
from .common.mappers import row_to_pedimento_data
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
JOB_TYPE = "ped"
|
|
TEMPLATE_ID = "pedimentos"
|
|
|
|
# Para routes.py
|
|
PED_IMPORT_FILE_PREFIX = "ped_import_file:"
|
|
PED_IMPORT_META_PREFIX = "ped_import_meta:"
|
|
PED_IMPORT_ERROR_LINES_PREFIX = "ped_import_error_lines:"
|
|
PED_IMPORT_REDIS_TTL = common_storage.IMPORT_REDIS_TTL
|
|
|
|
|
|
def _norm_row(row: Dict[str, Any]) -> Dict[str, Any]:
|
|
return row_from_template(row, common_normalize.normalize_header, TEMPLATE_ID)
|
|
|
|
|
|
def _do_scan(job_id: str, progress_callback: Optional[Any] = None) -> Dict[str, Any]:
|
|
file_path = common_storage.ensure_file_from_redis(JOB_TYPE, job_id, "Pedimentos import")
|
|
if not file_path:
|
|
return {"status": "failed", "error": "Archivo no encontrado (expirado o no subido). Sube de nuevo."}
|
|
common_storage.ensure_meta_from_redis(JOB_TYPE, job_id, file_path, "Pedimentos import")
|
|
|
|
error_path = common_storage.error_path_for_job(JOB_TYPE, job_id)
|
|
|
|
try:
|
|
total_rows = common_csv_reader.count_csv_rows(file_path)
|
|
except Exception as e:
|
|
return {"status": "failed", "error": str(e)}
|
|
|
|
try:
|
|
tenant_id, company_id = common_meta.require_tenant_context(file_path)
|
|
except ValueError as e:
|
|
return {"status": "failed", "error": str(e)}
|
|
|
|
try:
|
|
with CoreSessionLocal() as session:
|
|
valid_client_ids, valid_regimes, valid_pedimento_codes = load_pedimentos_fk_sets(
|
|
session, tenant_id, company_id
|
|
)
|
|
except Exception as e:
|
|
logger.error("Pedimentos import: failed to load FK sets: %s", e)
|
|
return {"status": "failed", "error": "No se pudo cargar catálogos"}
|
|
|
|
error_count = 0
|
|
processed_rows = 0
|
|
errors_detail: List[Dict[str, Any]] = []
|
|
error_lines_list: List[int] = []
|
|
|
|
try:
|
|
with open(error_path, "w", encoding="utf-8") as f_err:
|
|
for i, row in common_csv_reader.iter_csv_rows(file_path):
|
|
if progress_callback and i % 500 == 0:
|
|
progress_callback(i, total_rows, error_count)
|
|
|
|
row_norm = _norm_row(row)
|
|
err = validate_row_pedimento(
|
|
row_norm, i, valid_client_ids, valid_regimes, valid_pedimento_codes
|
|
)
|
|
if err:
|
|
error_count += 1
|
|
error_lines_list.append(err["line"])
|
|
f_err.write(json.dumps(err) + "\n")
|
|
if len(errors_detail) < 500:
|
|
errors_detail.append({
|
|
"line": err["line"],
|
|
"col": err.get("col", ""),
|
|
"msg": err.get("msg", ""),
|
|
})
|
|
processed_rows += 1
|
|
|
|
if error_lines_list:
|
|
common_storage.store_error_lines(JOB_TYPE, job_id, error_lines_list)
|
|
except Exception as e:
|
|
logger.error("Pedimentos import scan failed: %s", e)
|
|
return {"status": "failed", "error": str(e)}
|
|
|
|
return common_responses.scan_result(job_id, processed_rows, error_count, errors_detail)
|
|
|
|
|
|
@celery_app.task(bind=True)
|
|
def scan_file(self, job_id: str, config: str = None):
|
|
logger.info("Pedimentos import: starting scan for job %s", job_id)
|
|
|
|
def on_progress(current: int, total: int, errors: int) -> None:
|
|
self.update_state(state="PROGRESS", meta={"current": current, "total": total, "errors": errors})
|
|
|
|
return _do_scan(job_id, progress_callback=on_progress)
|
|
|
|
|
|
def _do_commit(job_id: str) -> Dict[str, Any]:
|
|
file_path = common_storage.ensure_file_from_redis(JOB_TYPE, job_id, "Pedimentos import")
|
|
if not file_path:
|
|
alt_path = common_storage.file_path_for_job(JOB_TYPE, job_id)
|
|
if not os.path.exists(alt_path):
|
|
return {"status": "failed", "error": "Archivo no encontrado (expirado). Sube y confirma de nuevo."}
|
|
file_path = alt_path
|
|
else:
|
|
common_storage.ensure_meta_from_redis(JOB_TYPE, job_id, file_path, "Pedimentos import")
|
|
|
|
error_path = common_storage.error_path_for_job(JOB_TYPE, job_id)
|
|
error_lines = common_storage.get_error_lines(JOB_TYPE, job_id, error_path)
|
|
|
|
try:
|
|
tenant_id, company_id = common_meta.require_tenant_context(file_path)
|
|
except ValueError as e:
|
|
return {"status": "failed", "error": str(e)}
|
|
|
|
try:
|
|
with CoreSessionLocal() as session:
|
|
valid_client_ids, valid_regimes, valid_pedimento_codes = load_pedimentos_fk_sets(
|
|
session, tenant_id, company_id
|
|
)
|
|
except Exception as e:
|
|
logger.error("Pedimentos import: failed to load FK sets: %s", e)
|
|
return {"status": "failed", "error": "No se pudo cargar catálogos"}
|
|
|
|
from api.v1.modules.a76.pedmientos.dtos.pedimentos import PedimentosCreate
|
|
from api.v1.modules.a76.pedmientos.dtos.pedimento_dates import PedimentoDatesCreate
|
|
from api.v1.modules.a76.pedmientos.services.pedimentos import PedimentosService
|
|
|
|
inserted_count = 0
|
|
skipped_invalid = 0
|
|
skipped_missing_fk = 0
|
|
skipped_duplicate = 0
|
|
skipped_details: List[Dict[str, Any]] = []
|
|
meta_path = common_meta.get_meta_path(file_path)
|
|
|
|
try:
|
|
with CoreSessionLocal() as session:
|
|
for i, row in common_csv_reader.iter_csv_rows(file_path):
|
|
if i in error_lines:
|
|
continue
|
|
|
|
row_norm = _norm_row(row)
|
|
err = validate_row_pedimento(
|
|
row_norm, i, valid_client_ids, valid_regimes, valid_pedimento_codes
|
|
)
|
|
if err:
|
|
skipped_invalid += 1
|
|
skipped_details.append({
|
|
"line": i,
|
|
"reason": f"{err.get('col', '')}: {err.get('msg', '')}",
|
|
})
|
|
continue
|
|
|
|
try:
|
|
data = row_to_pedimento_data(row_norm)
|
|
if "pedimento_dates" not in data or data.get("pedimento_dates") is None:
|
|
data["pedimento_dates"] = PedimentoDatesCreate(
|
|
entry_date=datetime.now(),
|
|
end_date=datetime.now(),
|
|
)
|
|
create_data = PedimentosCreate(**data)
|
|
PedimentosService.create(session, create_data, tenant_id, company_id)
|
|
inserted_count += 1
|
|
except ValueError as ve:
|
|
if "Ya existe" in str(ve) or "duplicate" in str(ve).lower():
|
|
skipped_duplicate += 1
|
|
skipped_details.append({"line": i, "reason": str(ve)})
|
|
else:
|
|
skipped_invalid += 1
|
|
skipped_details.append({"line": i, "reason": str(ve)})
|
|
except Exception as e:
|
|
logger.warning("Pedimentos import line %s: %s", i, e)
|
|
skipped_invalid += 1
|
|
skipped_details.append({"line": i, "reason": str(e)})
|
|
|
|
except Exception as e:
|
|
logger.exception("Pedimentos import task failed")
|
|
return {"status": "failed", "error": str(e)}
|
|
|
|
common_storage.cleanup_import_job(
|
|
JOB_TYPE, job_id,
|
|
file_path=file_path,
|
|
error_path=error_path,
|
|
meta_path=meta_path,
|
|
)
|
|
|
|
total_skipped = skipped_invalid + skipped_missing_fk + skipped_duplicate
|
|
if inserted_count == 0 and total_skipped > 0:
|
|
return {
|
|
"status": "warning",
|
|
"inserted": 0,
|
|
"updated": 0,
|
|
"skipped_invalid": skipped_invalid,
|
|
"skipped_missing_fk": skipped_missing_fk,
|
|
"skipped_duplicate": skipped_duplicate,
|
|
"skipped_details": skipped_details,
|
|
"message": f"No se insertaron registros. {total_skipped} rechazados.",
|
|
}
|
|
if inserted_count == 0:
|
|
return {
|
|
"status": "failed",
|
|
"error": "No hay registros válidos en el archivo CSV",
|
|
"inserted": 0,
|
|
"updated": 0,
|
|
"skipped_invalid": skipped_invalid,
|
|
"skipped_missing_fk": skipped_missing_fk,
|
|
"skipped_duplicate": skipped_duplicate,
|
|
"skipped_details": skipped_details,
|
|
}
|
|
return {
|
|
"status": "finished",
|
|
"inserted": inserted_count,
|
|
"updated": 0,
|
|
"skipped_invalid": skipped_invalid,
|
|
"skipped_missing_fk": skipped_missing_fk,
|
|
"skipped_duplicate": skipped_duplicate,
|
|
"skipped_details": skipped_details,
|
|
}
|
|
|
|
|
|
@celery_app.task(bind=True)
|
|
def insert_valid_rows(self, job_id: str):
|
|
logger.info("Pedimentos import: starting commit for job %s", job_id)
|
|
return _do_commit(job_id)
|