mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# Copyright (C) 2019 IBM Corp.
|
|
# Copyright (C) 2019 Open Source Integrators
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class StockScrap(models.Model):
|
|
_inherit = 'stock.scrap'
|
|
|
|
reason_code_id = fields.Many2one(
|
|
'reason.code', string='Reason Code',
|
|
states={'done': [('readonly', True)]})
|
|
scrap_location_id = fields.Many2one(
|
|
'stock.location', 'Scrap Location',
|
|
required=True, readonly=True)
|
|
|
|
def _prepare_move_values(self):
|
|
res = super(StockScrap, self)._prepare_move_values()
|
|
res['reason_code_id'] = self.reason_code_id.id
|
|
return res
|
|
|
|
@api.onchange('reason_code_id')
|
|
def _onchange_reason_code_id(self):
|
|
if self.reason_code_id.location_id:
|
|
self.scrap_location_id = self.reason_code_id.location_id
|
|
|
|
@api.multi
|
|
def write(self, vals):
|
|
if 'reason_code_id' in vals:
|
|
self.scrap_location_id = self.env['reason.code'].browse(
|
|
vals.get('reason_code_id')).location_id
|
|
return super(StockScrap, self).write(vals)
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
if 'reason_code_id' in vals:
|
|
vals['scrap_location_id'] = self.env['reason.code'].browse(
|
|
vals.get('reason_code_id')).location_id.id
|
|
return super(StockScrap, self).create(vals)
|