From 90773042c3a37bbe6af055e735288e6d58684f76 Mon Sep 17 00:00:00 2001 From: Bernat Brunet Date: Wed, 9 Aug 2023 14:11:58 +0200 Subject: [PATCH] Fix bug when set the deafult facturae_service. It's s selction and it's useed as a m2o. Don't have ID, it's not berowseble, is an string. Task: #161646 --- invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invoice.py b/invoice.py index e2ad490..81b0690 100644 --- a/invoice.py +++ b/invoice.py @@ -843,7 +843,7 @@ class GenerateFacturae(Wizard): config = Configuration(1) if config.facturae_service: - default['service'] = config.facturae_service.id + default['service'] = config.facturae_service if config.facturae_certificate: default['certificate'] = config.facturae_certificate.id