mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
9 lines
246 B
Python
9 lines
246 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)
|