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.
		
		
		
		
		
			
		
			
				
					
					
						
							106 lines
						
					
					
						
							5.2 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							106 lines
						
					
					
						
							5.2 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Cybrosys Techno Solutions(<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 models, fields, api, exceptions, _ | |
| from odoo.exceptions import UserError | |
| 
 | |
| 
 | |
| class StockPickingInherit(models.Model): | |
|     _inherit = 'stock.picking' | |
| 
 | |
|     auto_generated = fields.Boolean(string='Auto Generated Transfer', copy=False, | |
|                                     help="Field helps to check the picking is created from an another picking or not") | |
| 
 | |
|     def button_validate(self): | |
|         """Creating the internal transfer if it is not created from another picking""" | |
|         res = super(StockPickingInherit, self).button_validate() | |
|         if not self.auto_generated: | |
|             self.create_intercompany_transfer() | |
|         return res | |
| 
 | |
|     def create_intercompany_transfer(self): | |
|         """Creating the transfer if the selected company is enabled the internal transfer option""" | |
|         company_id = self.env['res.company'].sudo().search([('partner_id', '=', self.partner_id.id)], limit=1) | |
|         operation_type_id = False | |
|         location_id = False | |
|         location_dest_id = False | |
| 
 | |
|         if company_id and company_id.enable_inter_company_transfer: | |
|             create_transfer = False | |
|             if self.picking_type_id.code == company_id.apply_transfer_type or company_id.apply_transfer_type == 'all': | |
|                  create_transfer = True | |
|             if create_transfer: | |
|                 warehouse_ids = company_id.destination_warehouse_id.sudo() | |
|                 if self.picking_type_id.code == 'incoming': | |
|                     operation_type_id = self.env['stock.picking.type'].sudo().search( | |
|                         [('warehouse_id', 'in', warehouse_ids.ids), ('code', '=', 'outgoing')], limit=1) | |
| 
 | |
|                 elif self.picking_type_id.code == 'outgoing': | |
|                     operation_type_id = self.env['stock.picking.type'].sudo().search( | |
|                         [('warehouse_id', 'in', warehouse_ids.ids), ('code', '=', 'incoming')], limit=1) | |
|                 else: | |
|                     raise UserError(_('Internal transfer between companies are not allowed')) | |
| 
 | |
|                 if operation_type_id: | |
|                     if operation_type_id.default_location_src_id: | |
|                         location_id = operation_type_id.default_location_src_id.id | |
|                     elif self.company_id.partner_id: | |
|                         location_id = self.partner_id.property_stock_supplier.id | |
| 
 | |
|                     if operation_type_id.default_location_dest_id: | |
|                         location_dest_id = operation_type_id.default_location_dest_id.id | |
|                     elif company_id.partner_id: | |
|                         location_dest_id = company_id.partner_id.property_stock_customer.id | |
|                 if location_id and location_dest_id: | |
|                     picking_vals = { | |
|                         'partner_id': self.company_id.partner_id.id, | |
|                         'company_id': company_id.id, | |
|                         'picking_type_id': operation_type_id.id, | |
|                         'location_id': location_id, | |
|                         'location_dest_id': location_dest_id, | |
|                         'auto_generated': True, | |
|                         'origin': self.name | |
|                     } | |
|                     picking_id = self.env['stock.picking'].sudo().create(picking_vals) | |
|                 else: | |
|                     raise UserError(_('Please configure appropriate locations on Operation type/Partner')) | |
| 
 | |
|                 for move in self.move_ids: | |
|                     lines = self.move_line_ids.filtered(lambda x: x.product_id == move.product_id) | |
|                     done_qty = sum(lines.mapped('qty_done')) | |
|                     if not done_qty: | |
|                         done_qty = sum(lines.mapped('product_uom_qty')) | |
|                     move_vals = { | |
|                         'picking_id': picking_id.id, | |
|                         'picking_type_id': operation_type_id.id, | |
|                         'name': move.name, | |
|                         'product_id': move.product_id.id, | |
|                         'product_uom': move.product_uom.id, | |
|                         'product_uom_qty': done_qty, | |
|                         'location_id': location_id, | |
|                         'location_dest_id': location_dest_id, | |
|                         'company_id': company_id.id | |
|                     } | |
|                     self.env['stock.move'].sudo().create(move_vals) | |
|                 if picking_id: | |
|                     picking_id.sudo().action_confirm() | |
|                     picking_id.sudo().action_assign()
 | |
| 
 |