- Add /logs page with per-order sync run details, filters (Toate/Importate/Fara Mapare/Erori) - Add price pre-validation (validate_prices + ensure_prices) to prevent ORA-20000 on direct articles - Add find_new_orders() to detect orders not yet in Oracle COMENZI - Extend missing_skus table with order context (order_count, order_numbers, customers) - Add server-side pagination on /api/validate/missing-skus and /missing-skus page - Replace confusing "Skip"/"Err" with "Fara Mapare"/"Erori" terminology - Add inline mapping modal on dashboard (replaces navigation to /mappings) - Add 2-row stat cards: orders (Comenzi Noi/Ready/Importate/Fara Mapare/Erori) + articles - Add ID_POL/ID_GESTIUNE/ID_SECTIE to config.py and .env - Update .gitignore (venv, *.db, api/api/, logs/) - 33/33 unit tests pass, E2E verified with Playwright Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
746 B
Bash
28 lines
746 B
Bash
#!/bin/bash
|
|
# Start GoMag Import Manager - WSL/Linux
|
|
cd "$(dirname "$0")"
|
|
|
|
# Create venv if it doesn't exist
|
|
if [ ! -d "venv" ]; then
|
|
echo "Creating virtual environment..."
|
|
python3 -m venv venv
|
|
fi
|
|
|
|
# Activate venv
|
|
source venv/bin/activate
|
|
|
|
# Install/update dependencies if needed
|
|
if [ api/requirements.txt -nt venv/.deps_installed ] || [ ! -f venv/.deps_installed ]; then
|
|
echo "Installing dependencies..."
|
|
pip install -r api/requirements.txt
|
|
touch venv/.deps_installed
|
|
fi
|
|
|
|
# Oracle config
|
|
export TNS_ADMIN="$(pwd)/api"
|
|
export LD_LIBRARY_PATH=/opt/oracle/instantclient_21_15:$LD_LIBRARY_PATH
|
|
|
|
cd api
|
|
echo "Starting GoMag Import Manager on http://0.0.0.0:5003"
|
|
python -m uvicorn app.main:app --host 0.0.0.0 --port 5003 --reload
|