mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
16 lines
457 B
Python
16 lines
457 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
class MrpProduction(models.Model):
|
|
""" Manufacturing Orders """
|
|
_inherit = 'mrp.production'
|
|
|
|
@api.onchange('bom_id')
|
|
def onchange_bom_id(self):
|
|
if self.bom_id.location_id:
|
|
self.location_src_id = self.bom_id.location_id
|
|
self.location_dest_id = self.bom_id.location_id
|
|
|