Compare commits
3 Commits
main
...
163f941c08
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
163f941c08 | ||
|
|
cc65f7d418 | ||
|
|
30ad1e22f2 |
@@ -14,7 +14,7 @@ readonly FILESTORE_SUBPATH="var/lib/odoo/filestore"
|
|||||||
|
|
||||||
check_required_commands() {
|
check_required_commands() {
|
||||||
local missing=()
|
local missing=()
|
||||||
for cmd in docker compose sudo rsync; do
|
for cmd in docker compose sudo rsync yq; do
|
||||||
if ! command -v "$cmd" &>/dev/null; then
|
if ! command -v "$cmd" &>/dev/null; then
|
||||||
missing+=("$cmd")
|
missing+=("$cmd")
|
||||||
fi
|
fi
|
||||||
@@ -100,7 +100,83 @@ exec_python_script_in_odoo_shell() {
|
|||||||
run_compose --debug run "$service_name" shell -d "$db_name" --no-http --stop-after-init < "$python_script"
|
run_compose --debug run "$service_name" shell -d "$db_name" --no-http --stop-after-init < "$python_script"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Classifies missing modules into 4 categories based on the known_changes.yaml
|
||||||
|
# files from each traversed version (from ORIGIN_VERSION+1 to FINAL_VERSION).
|
||||||
|
# The following global arrays are populated:
|
||||||
|
# addons_obsolete : modules that became obsolete
|
||||||
|
# addons_core : modules merged into Odoo Core
|
||||||
|
# addons_renamed : renamed modules (format "old_name -> new_name")
|
||||||
|
# addons_truly_missing : modules that are genuinely missing
|
||||||
|
#
|
||||||
|
# Prerequisites: ORIGIN_VERSION and FINAL_VERSION must be exported.
|
||||||
|
classify_missing_addons() {
|
||||||
|
local missing_addons_raw="$1"
|
||||||
|
|
||||||
|
addons_obsolete=()
|
||||||
|
addons_core=()
|
||||||
|
addons_renamed=()
|
||||||
|
addons_truly_missing=()
|
||||||
|
|
||||||
|
# Convert the string into an array (one entry per line)
|
||||||
|
local -a missing=()
|
||||||
|
while IFS= read -r line; do
|
||||||
|
[[ -n "$line" ]] && missing+=("$line")
|
||||||
|
done <<< "$missing_addons_raw"
|
||||||
|
|
||||||
|
if [[ ${#missing[@]} -eq 0 ]]; then
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Build lookup tables from all known_changes.yaml files in traversed versions
|
||||||
|
local -A known_obsolete=()
|
||||||
|
local -A known_core=()
|
||||||
|
local -A known_renamed=()
|
||||||
|
|
||||||
|
local versions_path="${PROJECT_ROOT}/versions"
|
||||||
|
local v
|
||||||
|
for v in $(seq $((ORIGIN_VERSION + 1)) "$FINAL_VERSION"); do
|
||||||
|
local yaml_file="${versions_path}/${v}.0/known_changes.yaml"
|
||||||
|
[[ -f "$yaml_file" ]] || continue
|
||||||
|
|
||||||
|
local mod
|
||||||
|
while IFS= read -r mod; do
|
||||||
|
[[ -n "$mod" && "$mod" != "null" ]] && known_obsolete["$mod"]=1
|
||||||
|
done < <(yq '.obsolete[]?' "$yaml_file" 2>/dev/null)
|
||||||
|
|
||||||
|
while IFS= read -r mod; do
|
||||||
|
[[ -n "$mod" && "$mod" != "null" ]] && known_core["$mod"]=1
|
||||||
|
done < <(yq '.merged_in_core[]?' "$yaml_file" 2>/dev/null)
|
||||||
|
|
||||||
|
local count
|
||||||
|
count=$(yq '.renamed | length' "$yaml_file" 2>/dev/null)
|
||||||
|
if [[ "$count" =~ ^[0-9]+$ && "$count" -gt 0 ]]; then
|
||||||
|
local i
|
||||||
|
for ((i = 0; i < count; i++)); do
|
||||||
|
local old new
|
||||||
|
old=$(yq ".renamed[$i].old" "$yaml_file" 2>/dev/null)
|
||||||
|
new=$(yq ".renamed[$i].new" "$yaml_file" 2>/dev/null)
|
||||||
|
[[ -n "$old" && "$old" != "null" ]] && known_renamed["$old"]="$new"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Classify each missing module
|
||||||
|
local mod
|
||||||
|
for mod in "${missing[@]}"; do
|
||||||
|
if [[ -n "${known_obsolete[$mod]:-}" ]]; then
|
||||||
|
addons_obsolete+=("$mod")
|
||||||
|
elif [[ -n "${known_core[$mod]:-}" ]]; then
|
||||||
|
addons_core+=("$mod")
|
||||||
|
elif [[ -n "${known_renamed[$mod]:-}" ]]; then
|
||||||
|
addons_renamed+=("${mod} -> ${known_renamed[$mod]}")
|
||||||
|
else
|
||||||
|
addons_truly_missing+=("$mod")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
export PROJECT_ROOT DATASTORE_PATH FILESTORE_SUBPATH
|
export PROJECT_ROOT DATASTORE_PATH FILESTORE_SUBPATH
|
||||||
export -f log_info log_warn log_error log_step confirm_or_exit
|
export -f log_info log_warn log_error log_step confirm_or_exit
|
||||||
export -f check_required_commands
|
export -f check_required_commands
|
||||||
export -f query_postgres_container copy_database copy_filestore run_compose exec_python_script_in_odoo_shell
|
export -f query_postgres_container copy_database copy_filestore run_compose exec_python_script_in_odoo_shell
|
||||||
|
export -f classify_missing_addons
|
||||||
|
|||||||
@@ -60,9 +60,31 @@ echo "Retrieve missing addons..."
|
|||||||
missing_addons=$(query_postgres_container "$SQL_MISSING_ADDONS" "$DB_NAME")
|
missing_addons=$(query_postgres_container "$SQL_MISSING_ADDONS" "$DB_NAME")
|
||||||
|
|
||||||
log_step "ADD-ONS CHECK"
|
log_step "ADD-ONS CHECK"
|
||||||
echo "Installed add-ons not available in final Odoo version:"
|
classify_missing_addons "$missing_addons"
|
||||||
echo "$missing_addons"
|
|
||||||
confirm_or_exit "Do you accept to migrate with these add-ons still installed?"
|
if [[ ${#addons_obsolete[@]} -gt 0 ]]; then
|
||||||
|
log_info "Obsolete modules (${#addons_obsolete[@]}):"
|
||||||
|
printf "%s\n" "${addons_obsolete[@]}"
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
if [[ ${#addons_core[@]} -gt 0 ]]; then
|
||||||
|
log_info "Merged into Odoo Core (${#addons_core[@]}):"
|
||||||
|
printf "%s\n" "${addons_core[@]}"
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
if [[ ${#addons_renamed[@]} -gt 0 ]]; then
|
||||||
|
log_info "Renamed modules (${#addons_renamed[@]}):"
|
||||||
|
printf "%s\n" "${addons_renamed[@]}"
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
if [[ ${#addons_truly_missing[@]} -gt 0 ]]; then
|
||||||
|
log_warn "Truly missing modules (${#addons_truly_missing[@]}):"
|
||||||
|
printf "%s\n" "${addons_truly_missing[@]}"
|
||||||
|
echo ""
|
||||||
|
confirm_or_exit "Do you accept to migrate with these add-ons truly missing?"
|
||||||
|
else
|
||||||
|
log_info "No truly missing modules — all accounted for."
|
||||||
|
fi
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
PYTHON_SCRIPT="${SCRIPT_DIR}/lib/python/check_views.py"
|
PYTHON_SCRIPT="${SCRIPT_DIR}/lib/python/check_views.py"
|
||||||
|
|||||||
@@ -31,8 +31,10 @@ fi
|
|||||||
|
|
||||||
check_required_commands
|
check_required_commands
|
||||||
|
|
||||||
readonly ORIGIN_VERSION="$1"
|
export ORIGIN_VERSION="$1"
|
||||||
readonly FINAL_VERSION="$2"
|
readonly ORIGIN_VERSION
|
||||||
|
export FINAL_VERSION="$2"
|
||||||
|
readonly FINAL_VERSION
|
||||||
readonly ORIGIN_DB_NAME="$3"
|
readonly ORIGIN_DB_NAME="$3"
|
||||||
readonly ORIGIN_SERVICE_NAME="$4"
|
readonly ORIGIN_SERVICE_NAME="$4"
|
||||||
|
|
||||||
|
|||||||
10
versions/13.0/known_changes.yaml
Normal file
10
versions/13.0/known_changes.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Modules that became obsolete in version 13.0
|
||||||
|
obsolete: []
|
||||||
|
|
||||||
|
# Modules merged into Odoo Core in version 13.0
|
||||||
|
merged_in_core: []
|
||||||
|
|
||||||
|
# Modules renamed in version 13.0
|
||||||
|
renamed: []
|
||||||
|
# - old: old_name
|
||||||
|
# new: new_name
|
||||||
10
versions/14.0/known_changes.yaml
Normal file
10
versions/14.0/known_changes.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Modules that became obsolete in version 14.0
|
||||||
|
obsolete: []
|
||||||
|
|
||||||
|
# Modules merged into Odoo Core in version 14.0
|
||||||
|
merged_in_core: []
|
||||||
|
|
||||||
|
# Modules renamed in version 14.0
|
||||||
|
renamed: []
|
||||||
|
# - old: old_name
|
||||||
|
# new: new_name
|
||||||
15
versions/15.0/known_changes.yaml
Normal file
15
versions/15.0/known_changes.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# Modules that became obsolete in version 15.0
|
||||||
|
obsolete:
|
||||||
|
- l10n_ch_base_bank
|
||||||
|
- l10n_ch_isrb
|
||||||
|
- project_timeline_task_dependency
|
||||||
|
- account_reconcile_reconciliation_date
|
||||||
|
|
||||||
|
# Modules merged into Odoo Core in version 15.0
|
||||||
|
merged_in_core:
|
||||||
|
- project_category
|
||||||
|
|
||||||
|
# Modules renamed in version 15.0
|
||||||
|
renamed:
|
||||||
|
- old: crm_phone
|
||||||
|
new: crm_phonecall
|
||||||
23
versions/16.0/known_changes.yaml
Normal file
23
versions/16.0/known_changes.yaml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Modules that became obsolete in version 16.0
|
||||||
|
obsolete:
|
||||||
|
- account_reconciliation_widget
|
||||||
|
- account_statement_import
|
||||||
|
- account_statement_import_file_reconciliation_widget
|
||||||
|
|
||||||
|
# Modules merged into Odoo Core in version 16.0
|
||||||
|
merged_in_core:
|
||||||
|
- account_balance_line
|
||||||
|
- l10n_ch_states
|
||||||
|
- project_task_dependency
|
||||||
|
- web_ir_actions_act_view_reload
|
||||||
|
- mail_activity_creator
|
||||||
|
- website_sale_require_login
|
||||||
|
|
||||||
|
# Modules renamed in version 16.0
|
||||||
|
renamed:
|
||||||
|
- old: account_statement_import_file_reconcile_oca
|
||||||
|
new: account_statement_import_file_reconcile_oca
|
||||||
|
- old: mass_editing
|
||||||
|
new: server_action_mass_edit
|
||||||
|
- old: crm_project
|
||||||
|
new: crm_lead_to_task
|
||||||
13
versions/17.0/known_changes.yaml
Normal file
13
versions/17.0/known_changes.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# Modules that became obsolete in version 17.0
|
||||||
|
obsolete: []
|
||||||
|
|
||||||
|
# Modules merged into Odoo Core in version 17.0
|
||||||
|
merged_in_core:
|
||||||
|
- project_list
|
||||||
|
- web_advanced_search
|
||||||
|
- web_listview_range_select
|
||||||
|
|
||||||
|
# Modules renamed in version 17.0
|
||||||
|
renamed: []
|
||||||
|
# - old: old_name
|
||||||
|
# new: new_name
|
||||||
35
versions/18.0/known_changes.yaml
Normal file
35
versions/18.0/known_changes.yaml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# Modules that became obsolete in version 18.0
|
||||||
|
obsolete:
|
||||||
|
- account_payment_paired_internal_transfer
|
||||||
|
- account_reconciliation_widget
|
||||||
|
|
||||||
|
# Modules merged into Odoo Core in version 18.0
|
||||||
|
merged_in_core:
|
||||||
|
- account_payment_partner
|
||||||
|
|
||||||
|
# Modules renamed in version 18.0
|
||||||
|
renamed:
|
||||||
|
# Refactor bank-payment-alternative
|
||||||
|
- old: account_payment_mode
|
||||||
|
new: account_payment_base_oca
|
||||||
|
- old: account_payment_sale
|
||||||
|
new: account_payment_base_oca_sale
|
||||||
|
- old: account_payment_order
|
||||||
|
new: account_payment_batch_oca
|
||||||
|
- old: account_payment_order_tier_validation
|
||||||
|
new: account_payment_batch_oca_tier_validation
|
||||||
|
- old: account_banking_pain_base
|
||||||
|
new: account_payment_sepa_base
|
||||||
|
- old: account_banking_sepa_credit_transfer
|
||||||
|
new: account_payment_sepa_credit_transfer
|
||||||
|
- old: account_banking_mandate
|
||||||
|
new: account_payment_mandate
|
||||||
|
- old: account_banking_mandate_sale
|
||||||
|
new: account_payment_mandate_sale
|
||||||
|
- old: account_banking_sepa_direct_debit
|
||||||
|
new: account_payment_sepa_direct_debit
|
||||||
|
# End refactor
|
||||||
|
- old: base_delivery_carrier_label
|
||||||
|
new: delivery_shipping_label_default
|
||||||
|
- old: l10n_fr_oca
|
||||||
|
new: l10n_fr_account_oca
|
||||||
@@ -121,8 +121,38 @@ EOF
|
|||||||
echo "Fixing company-dependent columns for Odoo 18..."
|
echo "Fixing company-dependent columns for Odoo 18..."
|
||||||
query_postgres_container "$COMPANY_DEPENDENT_FIX_SQL" ou18 || exit 1
|
query_postgres_container "$COMPANY_DEPENDENT_FIX_SQL" ou18 || exit 1
|
||||||
|
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# CLEAN: Reset l10n_fr_secure_sequence_number field from table pos_order
|
||||||
|
# In Odoo 18, several checks are done concerning the pos order, for instance
|
||||||
|
# that there is no missing number in the order sequence. BUT, if add-on l10n_fr_pos_cert
|
||||||
|
# has been installer AFTER the creation of some pos orders, then the l10n_fr_secure_sequence_number
|
||||||
|
# is not filled correctly for all the pos order, and v18 checks fails.
|
||||||
|
# Solution: reset all the l10n_fr_secure_sequence_number values so that there
|
||||||
|
# is no missing sequence.
|
||||||
|
# ============================================================================
|
||||||
|
RESET_SECURE_SEQUENCE_NUMBER_SQL=$(cat <<'EOF'
|
||||||
|
DO $$
|
||||||
|
BEGIN
|
||||||
|
-- res.partner.barcode (base module)
|
||||||
|
IF EXISTS (SELECT 1 FROM information_schema.columns
|
||||||
|
WHERE table_name = 'pos_order' AND column_name = 'l10n_fr_secure_sequence_number') THEN
|
||||||
|
UPDATE pos_order t
|
||||||
|
SET l10n_fr_secure_sequence_number = r.num
|
||||||
|
FROM (
|
||||||
|
SELECT id,
|
||||||
|
ROW_NUMBER() OVER (ORDER BY date_order ASC) AS num
|
||||||
|
FROM pos_order
|
||||||
|
) r
|
||||||
|
WHERE t.id = r.id;
|
||||||
|
END IF;
|
||||||
|
END $$;
|
||||||
EOF
|
EOF
|
||||||
)
|
)
|
||||||
|
echo "Reset l10n_fr_secure_sequence_number values to avoid missing sequence value for Odoo 18..."
|
||||||
|
query_postgres_container "$RESET_SECURE_SEQUENCE_NUMBER_SQL" ou18 || exit 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Execute SQL pre-migration commands
|
# Execute SQL pre-migration commands
|
||||||
PRE_MIGRATE_SQL=$(cat <<'EOF'
|
PRE_MIGRATE_SQL=$(cat <<'EOF'
|
||||||
|
|||||||
Reference in New Issue
Block a user