- Track already_imported/new_imported counts separately in sync_runs and surface them in status API + dashboard last-run card - Cache invoice data in SQLite orders table (factura_* columns); dashboard falls back to Oracle only for uncached imported orders - Resolve JSON_OUTPUT_DIR and SQLITE_DB_PATH relative to known anchored roots in config.py, independent of CWD (fixes WSL2 start) - Use single Oracle connection for entire validation phase (perf) - Batch upsert web_products instead of one-by-one - Remove stale VFP scripts (replaced by gomag-vending.prg workflow) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
78 lines
2.6 KiB
Plaintext
78 lines
2.6 KiB
Plaintext
# =============================================================================
|
|
# GoMag Import Manager - Configurare
|
|
# Copiaza in api/.env si completeaza cu datele reale
|
|
# =============================================================================
|
|
|
|
# =============================================================================
|
|
# ORACLE MODE - Alege una din urmatoarele doua optiuni:
|
|
# =============================================================================
|
|
|
|
# THICK MODE (Oracle 10g/11g/12.1+) - Recomandat pentru compatibilitate maxima
|
|
# Necesita Oracle Instant Client instalat
|
|
INSTANTCLIENTPATH=/opt/oracle/instantclient_21_15
|
|
|
|
# THIN MODE (Oracle 12.1+ only) - Fara Instant Client, mai simplu
|
|
# Comenteaza INSTANTCLIENTPATH de sus si decommenteaza urmatoarea linie:
|
|
# FORCE_THIN_MODE=true
|
|
|
|
# =============================================================================
|
|
# ORACLE - Credentiale baza de date
|
|
# =============================================================================
|
|
|
|
ORACLE_USER=USER_ORACLE
|
|
ORACLE_PASSWORD=parola_oracle
|
|
ORACLE_DSN=TNS_ALIAS
|
|
|
|
# Calea absoluta la directorul cu tnsnames.ora
|
|
# De obicei: directorul api/ al proiectului
|
|
TNS_ADMIN=/cale/absoluta/la/gomag/api
|
|
|
|
# =============================================================================
|
|
# APLICATIE
|
|
# =============================================================================
|
|
|
|
APP_PORT=5003
|
|
LOG_LEVEL=INFO
|
|
|
|
# =============================================================================
|
|
# CALE FISIERE
|
|
# Relative: JSON_OUTPUT_DIR la project root, SQLITE_DB_PATH la api/
|
|
# Se pot folosi si cai absolute
|
|
# =============================================================================
|
|
|
|
# JSON-uri comenzi GoMag
|
|
JSON_OUTPUT_DIR=output
|
|
|
|
# SQLite tracking DB
|
|
SQLITE_DB_PATH=data/import.db
|
|
|
|
# =============================================================================
|
|
# ROA - Setari import comenzi (din vfp/settings.ini sectiunea [ROA])
|
|
# =============================================================================
|
|
|
|
# Politica de pret
|
|
ID_POL=39
|
|
|
|
# Gestiune implicita
|
|
ID_GESTIUNE=0
|
|
|
|
# Sectie implicita
|
|
ID_SECTIE=6
|
|
|
|
# =============================================================================
|
|
# SMTP - Notificari email (optional)
|
|
# =============================================================================
|
|
|
|
# SMTP_HOST=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=email@exemplu.com
|
|
# SMTP_PASSWORD=parola_app
|
|
# SMTP_TO=destinatar@exemplu.com
|
|
|
|
# =============================================================================
|
|
# AUTH - HTTP Basic Auth pentru dashboard (optional)
|
|
# =============================================================================
|
|
|
|
# API_USERNAME=admin
|
|
# API_PASSWORD=parola_sigura
|