Tower: upload at_accounting 18.0.1.7 (via marketplace)
This commit is contained in:
34
addons/at_accounting/models/digest.py
Normal file
34
addons/at_accounting/models/digest.py
Normal file
@@ -0,0 +1,34 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models, _
|
||||
from odoo.exceptions import AccessError
|
||||
|
||||
|
||||
class Digest(models.Model):
|
||||
_inherit = 'digest.digest'
|
||||
|
||||
kpi_account_bank_cash = fields.Boolean('Bank & Cash Moves')
|
||||
kpi_account_bank_cash_value = fields.Monetary(compute='_compute_kpi_account_total_bank_cash_value')
|
||||
|
||||
def _compute_kpi_account_total_bank_cash_value(self):
|
||||
if not self.env.user.has_group('account.group_account_user'):
|
||||
raise AccessError(_("Do not have access, skip this data for user's digest email"))
|
||||
|
||||
start, end, companies = self._get_kpi_compute_parameters()
|
||||
data = self.env['account.move']._read_group([
|
||||
('date', '>=', start),
|
||||
('date', '<', end),
|
||||
('journal_id.type', 'in', ('cash', 'bank')),
|
||||
('company_id', 'in', companies.ids),
|
||||
], ['company_id'], ['amount_total:sum'])
|
||||
data = dict(data)
|
||||
|
||||
for record in self:
|
||||
company = record.company_id or self.env.company
|
||||
record.kpi_account_bank_cash_value = data.get(company)
|
||||
|
||||
def _compute_kpis_actions(self, company, user):
|
||||
res = super(Digest, self)._compute_kpis_actions(company, user)
|
||||
res.update({'kpi_account_bank_cash': 'account.open_account_journal_dashboard_kanban&menu_id=%s' % (self.env.ref('account.menu_finance').id)})
|
||||
return res
|
||||
Reference in New Issue
Block a user