mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-23 21:52:09 +02:00
8 lines
247 B
Python
8 lines
247 B
Python
from odoo import fields, models
|
|
|
|
|
|
class MrpUnbuild(models.Model):
|
|
_inherit = "mrp.unbuild"
|
|
|
|
picking_id = fields.Many2one("stock.picking", "Transfer", readonly=True)
|
|
is_subcontracted = fields.Boolean("Is Subcontracted?", readonly=True)
|