From b745669e40e23d2f126bc1e01e4af1c07a1d6562 Mon Sep 17 00:00:00 2001 From: Fabien BOURGEOIS Date: Mon, 26 Mar 2018 10:57:10 +0200 Subject: [PATCH] [FIX]GOLEM Resource Account : bad order for data, views needs wizard XMLID, not found at install --- golem_resource_account/__manifest__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/golem_resource_account/__manifest__.py b/golem_resource_account/__manifest__.py index 7451bd4..5296b87 100644 --- a/golem_resource_account/__manifest__.py +++ b/golem_resource_account/__manifest__.py @@ -26,8 +26,7 @@ 'license': 'AGPL-3', 'application': True, 'installable': True, - 'depends': ['golem_resource', - 'account'], - 'data': ['views/golem_resource_reservation_views.xml', - 'wizard/golem_reservation_invoice.xml'] + 'depends': ['golem_resource', 'account'], + 'data': ['wizard/golem_reservation_invoice.xml', + 'views/golem_resource_reservation_views.xml'] }