From 8683c2315cf5d2af59bfb666c3d9ce1835445387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Br=C3=BCckl?= Date: Fri, 25 May 2018 10:49:07 +0200 Subject: [PATCH] =?UTF-8?q?BUGFIX:=20FB1692:=20SST-15:=20Es=20wird=20keine?= =?UTF-8?q?=20Odoo-ID=20=C3=BCbergeben?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ext/custom-addons/dp_custom/wizards/portal_assign_company.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/custom-addons/dp_custom/wizards/portal_assign_company.py b/ext/custom-addons/dp_custom/wizards/portal_assign_company.py index 7c8ea910..a87ed3ab 100644 --- a/ext/custom-addons/dp_custom/wizards/portal_assign_company.py +++ b/ext/custom-addons/dp_custom/wizards/portal_assign_company.py @@ -64,7 +64,7 @@ class PortalAssignCompany(models.TransientModel): # Wichtig hier ist, dass dieser Call vor dem ersten Write stattfindet, da das Portal # parallel einen Call absetzt, dann dann blockieren würde. - # self.send_to_portal(partner.portal_id, partner.id) + self.send_to_portal(partner.portal_id, partner.id) partner.write({'portal_pending': False, 'active': True}) return True