123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- # -*- coding: utf-8 -*-
- from odoo import api, fields, models, _
- class AccountAnalyticAccount(models.Model):
- _inherit = 'account.analytic.account'
- invoice_count = fields.Integer(
- "Invoice Count",
- compute='_compute_invoice_count',
- )
- vendor_bill_count = fields.Integer(
- "Vendor Bill Count",
- compute='_compute_vendor_bill_count',
- )
- @api.depends('line_ids')
- def _compute_invoice_count(self):
- sale_types = self.env['account.move'].get_sale_types(include_receipts=True)
- query = self.env['account.move.line']._search([
- ('parent_state', '=', 'posted'),
- ('move_id.move_type', 'in', sale_types),
- ])
- query.add_where(
- 'account_move_line.analytic_distribution ?| %s',
- [[str(account_id) for account_id in self.ids]],
- )
- query.order = None
- query_string, query_param = query.select(
- 'jsonb_object_keys(account_move_line.analytic_distribution) as account_id',
- 'COUNT(DISTINCT(account_move_line.move_id)) as move_count',
- )
- query_string = f"{query_string} GROUP BY jsonb_object_keys(account_move_line.analytic_distribution)"
- self._cr.execute(query_string, query_param)
- data = {int(record.get('account_id')): record.get('move_count') for record in self._cr.dictfetchall()}
- for account in self:
- account.invoice_count = data.get(account.id, 0)
- @api.depends('line_ids')
- def _compute_vendor_bill_count(self):
- purchase_types = self.env['account.move'].get_purchase_types(include_receipts=True)
- query = self.env['account.move.line']._search([
- ('parent_state', '=', 'posted'),
- ('move_id.move_type', 'in', purchase_types),
- ])
- query.add_where(
- 'account_move_line.analytic_distribution ?| %s',
- [[str(account_id) for account_id in self.ids]],
- )
- query.order = None
- query_string, query_param = query.select(
- 'jsonb_object_keys(account_move_line.analytic_distribution) as account_id',
- 'COUNT(DISTINCT(account_move_line.move_id)) as move_count',
- )
- query_string = f"{query_string} GROUP BY jsonb_object_keys(account_move_line.analytic_distribution)"
- self._cr.execute(query_string, query_param)
- data = {int(record.get('account_id')): record.get('move_count') for record in self._cr.dictfetchall()}
- for account in self:
- account.vendor_bill_count = data.get(account.id, 0)
- def action_view_invoice(self):
- self.ensure_one()
- query = self.env['account.move.line']._search([('move_id.move_type', 'in', self.env['account.move'].get_sale_types())])
- query.order = None
- query.add_where('analytic_distribution ? %s', [str(self.id)])
- query_string, query_param = query.select('DISTINCT account_move_line.move_id')
- self._cr.execute(query_string, query_param)
- move_ids = [line.get('move_id') for line in self._cr.dictfetchall()]
- result = {
- "type": "ir.actions.act_window",
- "res_model": "account.move",
- "domain": [('id', 'in', move_ids)],
- "context": {"create": False, 'default_move_type': 'out_invoice'},
- "name": _("Customer Invoices"),
- 'view_mode': 'tree,form',
- }
- return result
- def action_view_vendor_bill(self):
- self.ensure_one()
- query = self.env['account.move.line']._search([('move_id.move_type', 'in', self.env['account.move'].get_purchase_types())])
- query.order = None
- query.add_where('analytic_distribution ? %s', [str(self.id)])
- query_string, query_param = query.select('DISTINCT account_move_line.move_id')
- self._cr.execute(query_string, query_param)
- move_ids = [line.get('move_id') for line in self._cr.dictfetchall()]
- result = {
- "type": "ir.actions.act_window",
- "res_model": "account.move",
- "domain": [('id', 'in', move_ids)],
- "context": {"create": False, 'default_move_type': 'in_invoice'},
- "name": _("Vendor Bills"),
- 'view_mode': 'tree,form',
- }
- return result
|