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.
72 lines
2.6 KiB
72 lines
2.6 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
|
|
|
|
|
|
class StockWarehouse(models.Model):
|
|
"""inherited stock warehouse"""
|
|
_inherit = "stock.warehouse"
|
|
|
|
@api.model
|
|
def _get_default_branch(self):
|
|
"""methode to get default branch"""
|
|
branch_id = self.env.user.branch_id
|
|
return branch_id
|
|
|
|
def _get_branch_domain(self):
|
|
"""methode to get branch domain"""
|
|
company = self.env.company
|
|
branch_ids = self.env.user.branch_ids
|
|
branch = branch_ids.filtered(
|
|
lambda branch: branch.company_id == company)
|
|
return [('id', 'in', branch.ids)]
|
|
|
|
branch_id = fields.Many2one('res.branch', string='Branch', store=True,
|
|
default=_get_default_branch,
|
|
domain=_get_branch_domain,
|
|
help='Leave this field empty if this warehouse '
|
|
' is shared between all branches')
|
|
|
|
|
|
class BranchStockMove(models.Model):
|
|
"""inherited stock.move"""
|
|
_inherit = 'stock.move'
|
|
|
|
branch_id = fields.Many2one('res.branch', readonly=True, store=True,
|
|
related='picking_id.branch_id')
|
|
|
|
|
|
class BranchStockMoveLine(models.Model):
|
|
"""inherited stock move line"""
|
|
_inherit = 'stock.move.line'
|
|
|
|
branch_id = fields.Many2one('res.branch', readonly=True, store=True,
|
|
related='move_id.branch_id')
|
|
|
|
|
|
class BranchStockValuationLayer(models.Model):
|
|
"""Inherited Stock Valuation Layer"""
|
|
_inherit = 'stock.valuation.layer'
|
|
|
|
branch_id = fields.Many2one('res.branch', readonly=True, store=True,
|
|
related='stock_move_id.branch_id')
|
|
|