You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
5.2 KiB
112 lines
5.2 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import api, fields, models
|
|
from odoo.tools.misc import get_lang
|
|
|
|
|
|
class CashFlow(models.Model):
|
|
"""Inherits the account.account model to add additional functionality and
|
|
fields to the account"""
|
|
_inherit = 'account.account'
|
|
|
|
def get_cash_flow_ids(self):
|
|
"""Returns a list of cashflows for the account"""
|
|
cash_flow_id = self.env.ref('base_accounting_kit.account_financial_report_cash_flow0')
|
|
if cash_flow_id:
|
|
return [('parent_id.id', '=', cash_flow_id.id)]
|
|
|
|
cash_flow_type = fields.Many2one('account.financial.report',
|
|
string="Cash Flow type",
|
|
domain=get_cash_flow_ids)
|
|
|
|
@api.onchange('cash_flow_type')
|
|
def onchange_cash_flow_type(self):
|
|
"""Onchange the cash flow type of the account that will be updating
|
|
the account_ids values"""
|
|
for rec in self.cash_flow_type:
|
|
# update new record
|
|
rec.write({
|
|
'account_ids': [(4, self._origin.id)]
|
|
})
|
|
if self._origin.cash_flow_type.ids:
|
|
for rec in self._origin.cash_flow_type:
|
|
# remove old record
|
|
rec.write({'account_ids': [(3, self._origin.id)]})
|
|
|
|
|
|
class AccountCommonJournalReport(models.TransientModel):
|
|
"""Model used for creating the common journal report"""
|
|
_name = 'account.common.journal.report'
|
|
_description = 'Common Journal Report'
|
|
_inherit = "account.report"
|
|
|
|
section_main_report_ids = fields.Many2many(string="Section Of",
|
|
comodel_name='account.report',
|
|
relation="account_common_journal_report_section_rel",
|
|
column1="sub_report_id",
|
|
column2="main_report_id")
|
|
section_report_ids = fields.Many2many(string="Sections",
|
|
comodel_name='account.report',
|
|
relation="account_common_journal_report_section_rel",
|
|
column1="main_report_id",
|
|
column2="sub_report_id")
|
|
amount_currency = fields.Boolean(
|
|
'With Currency',
|
|
help="Print Report with the currency column if the currency differs "
|
|
"from the company currency.")
|
|
company_id = fields.Many2one('res.company', string='Company',
|
|
required=True, readonly=True,
|
|
default=lambda self: self.env.company)
|
|
date_from = fields.Date(string='Start Date')
|
|
date_to = fields.Date(string='End Date')
|
|
target_move = fields.Selection([('posted', 'All Posted Entries'),
|
|
('all', 'All Entries'),
|
|
], string='Target Moves',
|
|
required=True, default='posted')
|
|
|
|
def pre_print_report(self, data):
|
|
"""Pre-print the given data and that updates the amount
|
|
amount_currency value"""
|
|
data['form'].update({'amount_currency': self.amount_currency})
|
|
return data
|
|
|
|
def check_report(self):
|
|
"""Function to check if the report comes active models and related values"""
|
|
self.ensure_one()
|
|
data = {}
|
|
data['ids'] = self.env.context.get('active_ids', [])
|
|
data['model'] = self.env.context.get('active_model', 'ir.ui.menu')
|
|
data['form'] = self.read(['date_from', 'date_to', 'journal_ids', 'target_move', 'company_id'])[0]
|
|
used_context = self._build_contexts(data)
|
|
data['form']['used_context'] = dict(used_context, lang=get_lang(self.env).code)
|
|
return self.with_context(discard_logo_check=True)._print_report(data)
|
|
|
|
def _build_contexts(self, data):
|
|
"""Builds the context information for the given data"""
|
|
result = {}
|
|
result['journal_ids'] = 'journal_ids' in data['form'] and data['form']['journal_ids'] or False
|
|
result['state'] = 'target_move' in data['form'] and data['form']['target_move'] or ''
|
|
result['date_from'] = data['form']['date_from'] or False
|
|
result['date_to'] = data['form']['date_to'] or False
|
|
result['strict_range'] = True if result['date_from'] else False
|
|
result['company_id'] = data['form']['company_id'][0] or False
|
|
return result
|
|
|