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.
47 lines
2.0 KiB
47 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Rahna Rasheed (<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import fields, models
|
|
|
|
|
|
class VehicleInsurance(models.Model):
|
|
"""New model vehicle .insurance"""
|
|
_name = "vehicle.insurance"
|
|
_description = "Vehicle Insurance"
|
|
_inherit = "mail.thread"
|
|
_rec_name = "insurance_type_id"
|
|
|
|
vehicle_id = fields.Many2one('fleet.vehicle', string="Vehicle",
|
|
help="Help you to choose vehicle")
|
|
start_date = fields.Date(string="Start Date", help="Insurance start date")
|
|
end_date = fields.Date(string="End Date", help="Insurance end date")
|
|
insurance_type_id = fields.Many2one('insurance.type',
|
|
string='Insurance Type',
|
|
help="Choose insurance type")
|
|
insurance_amount = fields.Float(string="Amount",
|
|
compute="_compute_insurance_amount",
|
|
help="Calculate insurance amount")
|
|
|
|
def _compute_insurance_amount(self):
|
|
"""Function used to compute insurance amount"""
|
|
for rec in self:
|
|
rec.insurance_amount = sum(rec.insurance_type_id.coverage_ids.
|
|
mapped('coverage_price'))
|
|
|