Skip to content
Snippets Groups Projects
Commit 5a595c59 authored by Vishnu Thuletiya's avatar Vishnu Thuletiya Committed by Barad Mahendra
Browse files

[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: default avatarYannick Tivisse (yti) <yti@odoo.com>
parent 4640ea40
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ class Project(models.Model): ...@@ -28,7 +28,7 @@ class Project(models.Model):
stat_buttons.append({ stat_buttons.append({
'name': _('Vendor Bills'), 'name': _('Vendor Bills'),
'count': len(account_invoices), 'count': len(account_invoices),
'icon': 'fa pencil-square-o', 'icon': 'fa fa-pencil-square-o',
'action': _to_action_data( 'action': _to_action_data(
action=self.env.ref('account.action_move_in_invoice_type'), action=self.env.ref('account.action_move_in_invoice_type'),
domain=[('id', 'in', account_invoices.ids)], domain=[('id', 'in', account_invoices.ids)],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment