diff --git a/mrp_production_service/__manifest__.py b/mrp_production_service/__manifest__.py index 6629fe3c7..68436b560 100644 --- a/mrp_production_service/__manifest__.py +++ b/mrp_production_service/__manifest__.py @@ -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", diff --git a/mrp_production_service/models/mrp_production.py b/mrp_production_service/models/mrp_production.py index 3da70265a..120199e2b 100644 --- a/mrp_production_service/models/mrp_production.py +++ b/mrp_production_service/models/mrp_production.py @@ -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,