From 5a595c5931a87129283c3bb258e0e1169506b628 Mon Sep 17 00:00:00 2001 From: Vishnu Thuletiya <vtu@odoo.com> Date: Fri, 8 Nov 2019 08:24:42 +0000 Subject: [PATCH] [FIX] project: fix vendor bills state button icon issue The icon of the 'Vendor Bills' stat button isn't displayed so fix the icon class. Task-2115206 closes odoo/odoo#40006 Closes: #40006 Signed-off-by: Yannick Tivisse (yti) <yti@odoo.com> --- addons/sale_timesheet_purchase/models/project_overview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sale_timesheet_purchase/models/project_overview.py b/addons/sale_timesheet_purchase/models/project_overview.py index c827a89bbcec..46c9524def2a 100644 --- a/addons/sale_timesheet_purchase/models/project_overview.py +++ b/addons/sale_timesheet_purchase/models/project_overview.py @@ -28,7 +28,7 @@ class Project(models.Model): stat_buttons.append({ 'name': _('Vendor Bills'), 'count': len(account_invoices), - 'icon': 'fa pencil-square-o', + 'icon': 'fa fa-pencil-square-o', 'action': _to_action_data( action=self.env.ref('account.action_move_in_invoice_type'), domain=[('id', 'in', account_invoices.ids)], -- GitLab