[FIX][mrp_production_service] date_planned_start field does not exist in procurement

This commit is contained in:
Simone Rubino
2018-07-13 15:14:18 +02:00
committed by Jordi Ballester Alomar
parent dd3054533b
commit 3025fda6ad
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
"name": "MRP Production Service",
"summary": "Creates procurement orders from manufacturing orders, for "
"services included in the Bill of Materials",
"version": "10.0.1.0.0",
"version": "10.0.1.0.1",
"author": "Eficent,"
"Odoo Community Association (OCA)",
"website": "https://www.odoo-community.org",

View File

@@ -16,7 +16,7 @@ class MrpProduction(models.Model):
'name': '%s for %s' % (line.product_id.name, production.name),
'origin': production.origin,
'company_id': production.company_id.id,
'date_planned_start': production.date_planned_start,
'date_planned': production.date_planned_start,
'product_id': line.product_id.id,
'product_qty': line.product_qty,
'product_uom': line.product_uom_id.id,