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.
		
		
		
		
		
			
		
			
				
					
					
						
							60 lines
						
					
					
						
							2.6 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							60 lines
						
					
					
						
							2.6 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								#############################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
							 | 
						|
								#    Author: Gayathri V(<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
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class WarrantyClaim(models.Model):
							 | 
						|
								    """ Warranty claim class to add fields for warranty claim"""
							 | 
						|
								    _name = 'warranty.claim'
							 | 
						|
								    _rec_name = "sale_order_id"
							 | 
						|
								    _description = 'Warranty Claim'
							 | 
						|
								
							 | 
						|
								    customer_id = fields.Many2one('res.partner',
							 | 
						|
								                                  string='Customer Name',
							 | 
						|
								                                  help="Customer selection",
							 | 
						|
								                                  required=True)
							 | 
						|
								    sale_order_id = fields.Many2one('sale.order',
							 | 
						|
								                                    help="To select the sale order",
							 | 
						|
								                                    string='Sale Order')
							 | 
						|
								    product_id = fields.Many2one('product.product',
							 | 
						|
								                                 string='Product',
							 | 
						|
								                                 help="To select the product",
							 | 
						|
								                                 required=True)
							 | 
						|
								    partner_id = fields.Many2one('res.users', string='User',
							 | 
						|
								                                 help="To select the partner",
							 | 
						|
								                                 default=lambda self: self.env.user)
							 | 
						|
								    state = fields.Selection(
							 | 
						|
								        [('draft', 'Draft'), ('approved', 'Approved'),
							 | 
						|
								         ('rejected', 'Rejected')], default='draft', String="Status",
							 | 
						|
								        help="To select the state")
							 | 
						|
								    product_expiry_date = fields.Date(
							 | 
						|
								        string='Product Expiry Date', help="To get the product expiry date",
							 | 
						|
								        related='product_id.product_tmpl_id.warranty_expiry',
							 | 
						|
								        store=True, readonly=True)
							 | 
						|
								
							 | 
						|
								    def change_status_approved(self):
							 | 
						|
								        """ Function to change the status of the claim to approved"""
							 | 
						|
								        self.state = 'approved'
							 | 
						|
								
							 | 
						|
								    def change_status_rejected(self):
							 | 
						|
								        """ Function to change the status of the claim to rejected"""
							 | 
						|
								        self.state = 'rejected'
							 | 
						|
								
							 |