The pre-shell state reset in ``scripts/finalize_db.sh`` forced both ``to upgrade`` and ``to install`` modules to ``installed``. Forcing ``to install`` to ``installed`` makes Odoo skip their install scripts entirely (tables, ``noupdate`` data, init hooks never run), leaving ghost "installed but empty" modules that the final ``-u all`` cannot recover. Restrict the reset to ``to upgrade`` only, whose real update is honored by the controlled ``-u all`` at the end of the script. Also drop the dead ``NOT IN (... state = 'uninstalled')`` sub-query: ``name`` is unique so a module never has two states, making the filter a no-op. A commented-out ``SELECT`` is added to trace pending-upgrade modules if the trailing ``-u all`` is ever removed.
96 lines
4.1 KiB
Bash
Executable File
96 lines
4.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
DB_NAME="$1"
|
|
ODOO_SERVICE="$2"
|
|
|
|
echo "Running SQL cleanup..."
|
|
CLEANUP_SQL=$(cat <<'EOF'
|
|
-- Drop sequences that prevent Odoo from starting.
|
|
-- These sequences are recreated by Odoo on startup but stale values
|
|
-- from the old version can cause conflicts.
|
|
DROP SEQUENCE IF EXISTS base_registry_signaling;
|
|
DROP SEQUENCE IF EXISTS base_cache_signaling;
|
|
|
|
-- Purge compiled frontend assets (CSS/JS bundles).
|
|
-- These cached files reference old asset versions and must be regenerated
|
|
-- by Odoo after migration to avoid broken stylesheets and scripts.
|
|
DELETE FROM ir_attachment
|
|
WHERE name LIKE '/web/assets/%'
|
|
OR name LIKE '%.assets_%'
|
|
OR (res_model = 'ir.ui.view' AND mimetype = 'text/css');
|
|
EOF
|
|
)
|
|
query_postgres_container "$CLEANUP_SQL" "$DB_NAME"
|
|
|
|
# Reset modules still marked as 'to upgrade' before launching the Odoo shell
|
|
# scripts below. Loading the registry in `odoo shell` re-triggers the upgrade
|
|
# of these modules, which can fail on broken views (e.g. website_sale
|
|
# TypeError). The controlled `-u all` at the end of this script performs the
|
|
# real update afterwards. We deliberately do NOT touch 'to install' modules:
|
|
# forcing them to 'installed' would skip their install scripts entirely.
|
|
#
|
|
# Uncomment the SELECT below to trace which modules were pending upgrade
|
|
# before we neutralize their state (useful if the `-u all` above is removed).
|
|
# query_postgres_container "
|
|
# SELECT name FROM ir_module_module WHERE state = 'to upgrade' ORDER BY name;
|
|
# " "$DB_NAME" || true
|
|
query_postgres_container "
|
|
UPDATE ir_module_module
|
|
SET state = 'installed'
|
|
WHERE state = 'to upgrade';
|
|
" "$DB_NAME" || true
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
PYTHON_SCRIPT="${SCRIPT_DIR}/lib/python/fix_duplicated_views.py"
|
|
echo "Remove duplicated views with script $PYTHON_SCRIPT ..."
|
|
exec_python_script_in_odoo_shell "$DB_NAME" "$DB_NAME" "$PYTHON_SCRIPT"
|
|
|
|
PYTHON_SCRIPT="${SCRIPT_DIR}/lib/python/cleanup_modules.py"
|
|
echo "Uninstall obsolete add-ons with script $PYTHON_SCRIPT ..."
|
|
exec_python_script_in_odoo_shell "$DB_NAME" "$DB_NAME" "$PYTHON_SCRIPT"
|
|
|
|
# ────────────────────────────────────────────────────────────
|
|
# Regenerate POS inalterability hashes if needed
|
|
# ────────────────────────────────────────────────────────────
|
|
HASHES_NEEDED=$(query_postgres_container "
|
|
SELECT COUNT(*) FROM information_schema.tables WHERE table_name = 'pos_order'
|
|
" "$DB_NAME")
|
|
if [[ "$HASHES_NEEDED" =~ ^[0-9]+$ && "$HASHES_NEEDED" -gt 0 ]]; then
|
|
HASHES_NEEDED=$(query_postgres_container "
|
|
SELECT COUNT(*)
|
|
FROM pos_order po
|
|
JOIN res_company rc ON rc.id = po.company_id
|
|
WHERE po.state IN ('paid', 'done', 'invoiced')
|
|
AND rc.l10n_fr_pos_cert_sequence_id IS NOT NULL
|
|
AND (po.l10n_fr_hash IS NULL OR po.l10n_fr_secure_sequence_number IS NULL)
|
|
" "$DB_NAME")
|
|
fi
|
|
|
|
if [[ "$HASHES_NEEDED" =~ ^[0-9]+$ && "$HASHES_NEEDED" -gt 0 ]]; then
|
|
echo ""
|
|
echo "Found $HASHES_NEEDED pos.order(s) with missing inalterability hash or sequence number."
|
|
echo "Regenerating all POS hashes..."
|
|
PYTHON_SCRIPT="${SCRIPT_DIR}/lib/python/regenerate_pos_hashes.py"
|
|
exec_python_script_in_odoo_shell "$DB_NAME" "$DB_NAME" "$PYTHON_SCRIPT"
|
|
echo "POS hash regeneration completed."
|
|
else
|
|
echo "No missing POS hashes detected."
|
|
fi
|
|
|
|
# Give back the right to user to access to the tables
|
|
# docker exec -u 70 "$DB_CONTAINER_NAME" pgm chown "$FINALE_SERVICE_NAME" "$DB_NAME"
|
|
|
|
|
|
# Launch Odoo with database in finale version to run all updates
|
|
run_compose --debug run "$ODOO_SERVICE" -u all --log-level=debug --stop-after-init --no-http --load=base,web,openupgrade_framework
|
|
|
|
echo ""
|
|
echo "Running post-migration view validation..."
|
|
if exec_python_script_in_odoo_shell "$DB_NAME" "$DB_NAME" "${SCRIPT_DIR}/lib/python/validate_views.py"; then
|
|
echo "View validation passed."
|
|
else
|
|
echo "WARNING: View validation found issues. Run scripts/validate_migration.sh for the full report."
|
|
fi
|