mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
[IMP] mrp_multi_level: Minor changes
* Planned Orders become fixed on manual creation by default * Released Quantity become readonly * Add product reference if Planned Order name is not defined on bom explosion
This commit is contained in:
committed by
JasminSForgeFlow
parent
c696574765
commit
13bab76498
@@ -42,8 +42,8 @@ class MrpPlannedOrder(models.Model):
|
||||
due_date = fields.Date(
|
||||
string="Due Date", help="Date in which the supply must have been completed."
|
||||
)
|
||||
qty_released = fields.Float()
|
||||
fixed = fields.Boolean()
|
||||
qty_released = fields.Float(readonly=True)
|
||||
fixed = fields.Boolean(default=True)
|
||||
mrp_qty = fields.Float(string="Quantity")
|
||||
mrp_move_down_ids = fields.Many2many(
|
||||
comodel_name="mrp.move",
|
||||
|
||||
Reference in New Issue
Block a user