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.
		
		
		
		
		
			
		
			
				
					
					
						
							59 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							59 lines
						
					
					
						
							2.4 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Gayathri V (Contact : 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 models | |
| 
 | |
| 
 | |
| class StockPicking(models.Model): | |
|     """Inherits model 'stock.picking' and updates unit of measure in move | |
|     lines""" | |
|     _inherit = 'stock.picking' | |
| 
 | |
|     def _prepare_stock_move_vals(self, first_line, order_lines): | |
|         """Updates unit of measure in move lines""" | |
|         for line in order_lines: | |
|             self._cr.execute( | |
|                 """select * from pos_order_line where id = %s""" % (line.id)) | |
|             uom_id = self._cr.dictfetchall()[0]['uom_id'] | |
|             return { | |
|                 'name': first_line.name, | |
|                 'product_uom': uom_id, | |
|                 'picking_id': self.id, | |
|                 'picking_type_id': self.picking_type_id.id, | |
|                 'product_id': first_line.product_id.id, | |
|                 'product_uom_qty': abs(sum(order_lines.mapped('qty'))), | |
|                 'state': 'draft', | |
|                 'location_id': self.location_id.id, | |
|                 'location_dest_id': self.location_dest_id.id, | |
|                 'company_id': self.company_id.id, | |
|             } | |
| 
 | |
|     def _create_move_from_pos_order_lines(self, lines): | |
|         """Creates individual stock move lines for each sale order line""" | |
|         self.ensure_one() | |
|         move_vals = [] | |
|         for line in lines: | |
|             order_lines = self.env['pos.order.line'].concat(line) | |
|             move_vals.append( | |
|                 self._prepare_stock_move_vals(order_lines[0], order_lines)) | |
|         moves = self.env['stock.move'].create(move_vals) | |
|         confirmed_moves = moves._action_confirm() | |
|         confirmed_moves._add_mls_related_to_order(lines, are_qties_done=True)
 | |
| 
 |