From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- .../models/project_overview.py | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 addons/sale_timesheet_purchase/models/project_overview.py (limited to 'addons/sale_timesheet_purchase/models/project_overview.py') diff --git a/addons/sale_timesheet_purchase/models/project_overview.py b/addons/sale_timesheet_purchase/models/project_overview.py new file mode 100644 index 00000000..86484038 --- /dev/null +++ b/addons/sale_timesheet_purchase/models/project_overview.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +from odoo import _, models +from odoo.addons.sale_timesheet.models.project_overview import _to_action_data + + +class Project(models.Model): + _inherit = 'project.project' + + def _plan_get_stat_button(self): + stat_buttons = super(Project, self)._plan_get_stat_button() + if self.env.user.has_group('purchase.group_purchase_user'): + accounts = self.mapped('analytic_account_id.id') + purchase_order_lines = self.env['purchase.order.line'].search([('account_analytic_id', 'in', accounts)]) + purchase_orders = purchase_order_lines.mapped('order_id') + if purchase_orders: + stat_buttons.append({ + 'name': _('Purchase Orders'), + 'count': len(purchase_orders), + 'icon': 'fa fa-shopping-cart', + 'action': _to_action_data('purchase.order', + domain=[('id', 'in', purchase_orders.ids)], + context={'create': False, 'edit': False, 'delete': False} + ) + }) + account_invoice_lines = self.env['account.move.line'].search( + [('analytic_account_id', 'in', accounts), + ('move_id.move_type', 'in', ['in_invoice', 'in_refund'])]) + account_invoices = account_invoice_lines.mapped('move_id') + if account_invoices: + stat_buttons.append({ + 'name': _('Vendor Bills'), + 'count': len(account_invoices), + '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)], + context={'create': False, 'edit': False, 'delete': False} + )}) + + return stat_buttons -- cgit v1.2.3