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.
90 lines
4.4 KiB
90 lines
4.4 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 fields, models, tools
|
|
|
|
|
|
class AssetAssetReport(models.Model):
|
|
_name = "asset.asset.report"
|
|
_description = "Assets Analysis"
|
|
_auto = False
|
|
|
|
name = fields.Char(string='Year', required=False, readonly=True)
|
|
date = fields.Date(readonly=True)
|
|
depreciation_date = fields.Date(string='Depreciation Date', readonly=True)
|
|
asset_id = fields.Many2one('account.asset.asset', string='Asset', readonly=True)
|
|
asset_category_id = fields.Many2one('account.asset.category', string='Asset category', readonly=True)
|
|
partner_id = fields.Many2one('res.partner', string='Partner', readonly=True)
|
|
state = fields.Selection([('draft', 'Draft'), ('open', 'Running'), ('close', 'Close')], string='Status', readonly=True)
|
|
depreciation_value = fields.Float(string='Amount of Depreciation Lines', readonly=True)
|
|
installment_value = fields.Float(string='Amount of Installment Lines', readonly=True)
|
|
move_check = fields.Boolean(string='Posted', readonly=True)
|
|
installment_nbr = fields.Integer(string='# of Installment Lines', readonly=True)
|
|
depreciation_nbr = fields.Integer(string='# of Depreciation Lines', readonly=True)
|
|
gross_value = fields.Float(string='Gross Amount', readonly=True)
|
|
posted_value = fields.Float(string='Posted Amount', readonly=True)
|
|
unposted_value = fields.Float(string='Unposted Amount', readonly=True)
|
|
company_id = fields.Many2one('res.company', string='Company', readonly=True)
|
|
|
|
def init(self):
|
|
tools.drop_view_if_exists(self._cr, 'asset_asset_report')
|
|
self._cr.execute("""
|
|
create or replace view asset_asset_report as (
|
|
select
|
|
min(dl.id) as id,
|
|
dl.name as name,
|
|
dl.depreciation_date as depreciation_date,
|
|
a.date as date,
|
|
(CASE WHEN dlmin.id = min(dl.id)
|
|
THEN a.value
|
|
ELSE 0
|
|
END) as gross_value,
|
|
dl.amount as depreciation_value,
|
|
dl.amount as installment_value,
|
|
(CASE WHEN dl.move_check
|
|
THEN dl.amount
|
|
ELSE 0
|
|
END) as posted_value,
|
|
(CASE WHEN NOT dl.move_check
|
|
THEN dl.amount
|
|
ELSE 0
|
|
END) as unposted_value,
|
|
dl.asset_id as asset_id,
|
|
dl.move_check as move_check,
|
|
a.category_id as asset_category_id,
|
|
a.partner_id as partner_id,
|
|
a.state as state,
|
|
count(dl.*) as installment_nbr,
|
|
count(dl.*) as depreciation_nbr,
|
|
a.company_id as company_id
|
|
from account_asset_depreciation_line dl
|
|
left join account_asset_asset a on (dl.asset_id=a.id)
|
|
left join (select min(d.id) as id,ac.id as ac_id from
|
|
account_asset_depreciation_line as d inner join
|
|
account_asset_asset as ac ON (ac.id=d.asset_id) group by
|
|
ac_id) as dlmin on dlmin.ac_id=a.id
|
|
where a.active is true
|
|
group by
|
|
dl.amount,dl.asset_id,dl.depreciation_date,dl.name,
|
|
a.date, dl.move_check, a.state, a.category_id,
|
|
a.partner_id, a.company_id,
|
|
a.value, a.id, a.salvage_value, dlmin.id
|
|
)""")
|
|
|