lims: update test

This commit is contained in:
Adrián Bernardi 2021-09-22 20:16:11 -03:00
parent b5c7c05d38
commit 63ee15e9ac
1 changed files with 5 additions and 0 deletions

View File

@ -64,6 +64,11 @@ def set_lims_configuration(company=None, config=None):
lims_config.analysis_product_category = analysis_product_category
lims_config.default_notebook_view = default_notebook_view
lims_config.planification_sequence = planification_sequence
Lang = Model.get('ir.lang', config=config)
lang_en, = Lang.find([('code', '=', 'en')])
lang_en.translatable = True
lang_en.save()
lims_config.results_report_language = lang_en
lims_config.save()