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.
76 lines
3.3 KiB
76 lines
3.3 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Cybrosys Techno Solutions(odoo@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 api, fields, models, _
|
|
|
|
|
|
class ClaimDetails(models.Model):
|
|
_name = 'claim.details'
|
|
|
|
name = fields.Char(string='Name', required=True, copy=False,
|
|
readonly=True, index=True, default=lambda self: _('New'))
|
|
name_2 = fields.Char(
|
|
string='Name 2', required=True, copy=False, readonly=True, index=True,
|
|
default=lambda self: _('New'))
|
|
insurance_id = fields.Many2one('insurance.details', required=True,
|
|
domain=[('state', '=', 'confirmed')],
|
|
help="Confirmed orders can be selected")
|
|
partner_id = fields.Many2one(related='insurance_id.partner_id',
|
|
string='Customer', readonly=True)
|
|
policy_id = fields.Many2one(related='insurance_id.policy_id',
|
|
string='Policy', readonly=True)
|
|
employee_id = fields.Many2one(related='insurance_id.employee_id',
|
|
string='Agent', readonly=True)
|
|
currency_id = fields.Many2one(
|
|
'res.currency', string='Currency', required=True,
|
|
default=lambda self: self.env.user.company_id.currency_id.id)
|
|
amount = fields.Monetary(related='insurance_id.amount', string='Amount')
|
|
date_claimed = fields.Date(
|
|
string='Date Applied', default=fields.Date.context_today)
|
|
invoice_id = fields.Many2one('account.move', string='Invoiced',
|
|
readonly=True, copy=False)
|
|
note_field = fields.Html(string='Comment')
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
if vals.get('name', 'New') == 'New':
|
|
vals['name'] = self.env['ir.sequence'].next_by_code(
|
|
'claim.details') or 'New'
|
|
return super(ClaimDetails, self).create(vals)
|
|
|
|
def action_create_bill(self):
|
|
if not self.invoice_id:
|
|
invoice_val = self.env['account.move'].sudo().create({
|
|
'move_type': 'in_invoice',
|
|
'invoice_date': fields.Date.context_today(self),
|
|
'partner_id': self.partner_id.id,
|
|
'invoice_user_id': self.env.user.id,
|
|
'claim_id': self.id,
|
|
'invoice_origin': self.name,
|
|
'invoice_line_ids': [(0, 0, {
|
|
'name': 'Invoice For Insurance Claim',
|
|
'quantity': 1,
|
|
'price_unit': self.amount,
|
|
'account_id': 41,
|
|
})],
|
|
})
|
|
self.invoice_id = invoice_val
|
|
|