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.
		
		
		
		
		
			
		
			
				
					
					
						
							61 lines
						
					
					
						
							2.6 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							61 lines
						
					
					
						
							2.6 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################### | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Cybrosys Technologies (<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/>. | |
| # | |
| ############################################################################### | |
| """ This module inherits sale order to add new fields. """ | |
| from odoo import fields, models | |
| 
 | |
| 
 | |
| class SaleOrder(models.Model): | |
|     """ Inherits sale order to add the fields comment and rating """ | |
|     _inherit = 'sale.order' | |
| 
 | |
|     comment = fields.Char(string='Comment', readonly=True, | |
|                           help='The comment provided by the customer.') | |
|     rating = fields.Selection([ | |
|         ('1', 'Poor'), ('2', 'Too Bad'), ('3', 'Average Quality'), | |
|         ('4', 'Nice'), ('5', 'Good')], string='Rating', readonly=True, | |
|         help='The rating provided by the customer.') | |
|     return_order_count = fields.Integer(compute="_compute_return_order_count", | |
|                                         string='Return Orders') | |
| 
 | |
|     def _compute_return_order_count(self): | |
|         """method to compute return count""" | |
|         sale_return_groups = self.env['sale.return'].sudo().read_group( | |
|             domain=[('order_id', '=', self.ids)], | |
|             fields=['order_id'], groupby=['order_id']) | |
|         orders = self.browse() | |
|         for group in sale_return_groups: | |
|             order_id = self.browse(group['order_id'][0]) | |
|             while order_id: | |
|                 if order_id in self: | |
|                     order_id.return_order_count += group['sale_order_count'] | |
|                     orders |= order_id | |
|                     order_id = False | |
|         (self - orders).return_order_count = 0 | |
| 
 | |
|     def action_open_returns(self): | |
|         """This function returns an action that displays the sale return orders | |
|            from sale order""" | |
|         action = self.env['ir.actions.act_window']._for_xml_id( | |
|             'all_in_one_website_kit.sale_return_action') | |
|         action['domain'] = [('order_id', '=', self.id)] | |
|         action['context'] = {'search_default_order': 1} | |
|         return action
 | |
| 
 |