Initial commit: L10N_Europe packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:52 +02:00
commit 9803722600
2377 changed files with 380711 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
def migrate(cr, version):
cr.execute("SELECT res_id FROM ir_model_data WHERE module = 'l10n_ch' AND name='account_tax_report_line_chtax_solde_formula'")
expression_id = cr.fetchone()
if expression_id:
cr.execute(
"DELETE FROM account_report_external_value WHERE target_report_expression_id = %s",
[expression_id[0]]
)