From e056b448d606ace67a36466adf9aab2b6fbf06ee Mon Sep 17 00:00:00 2001 From: Giovanni Francesco Capalbo Date: Fri, 22 Feb 2019 10:23:55 +0100 Subject: [PATCH] [FIX] Add needed dependency on hr_expense --- financial_reporting_enhancement/__openerp__.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/financial_reporting_enhancement/__openerp__.py b/financial_reporting_enhancement/__openerp__.py index af5485a..98f70d7 100644 --- a/financial_reporting_enhancement/__openerp__.py +++ b/financial_reporting_enhancement/__openerp__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution +# OpenERP, Open Source Management Solution # Copyright (c) 2010-2012 Elico Corp. All Rights Reserved. # # Author: Yannick Gouin @@ -32,7 +32,10 @@ """, "author": "be-cloud.be (Jerome Sonnet)", "website": "http://www.be-cloud.be", - 'depends': ['account'], + 'depends': [ + 'account', + 'hr_expense', + ], 'init_xml': [], 'data': [ 'financial_reporting_enhancement.xml', @@ -40,4 +43,4 @@ 'installable': True, 'active': False, } -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: