diff --git a/ext/custom-addons/cam_reports/report/stock.picking.list.rml b/ext/custom-addons/cam_reports/report/stock.picking.rml similarity index 100% rename from ext/custom-addons/cam_reports/report/stock.picking.list.rml rename to ext/custom-addons/cam_reports/report/stock.picking.rml diff --git a/setup/lib/config_at.py b/setup/lib/config_at.py index c4922076..fa3b64fd 100644 --- a/setup/lib/config_at.py +++ b/setup/lib/config_at.py @@ -27,7 +27,7 @@ class Config(): 'vat_check_vies': True, 'tax_calculation_rounding_method': 'round_globally', #'rml_header' : './ext/addons/custom_reports/report/page.rml', # Report File - 'logo': './ext/addons/cam_reports/logo.png', + 'logo': '../ext/custom-addons/cam_reports/logo.png', } # Nur für Lager diff --git a/setup/lib/functions.py b/setup/lib/functions.py index a53d3a2b..df8984d8 100755 --- a/setup/lib/functions.py +++ b/setup/lib/functions.py @@ -207,7 +207,7 @@ class CamadeusFunctions(): return False journals = self._execute('account.journal', 'read', j_ids, ['sequence_id']) s_ids = [t['sequence_id'][0] for t in journals] - if not self._execute('ir.sequence', 'write', s_ids, seq_dict.get('account.invoicer')): + if not self._execute('ir.sequence', 'write', s_ids, seq_dict.get('account.invoice')): return False return True @@ -228,6 +228,7 @@ class CamadeusFunctions(): vals = { 'groups_id': groups, + 'tz': 'Europe/Vienna', } return self._execute('res.users', 'write', [user_id], vals)