[IMP] mrp_production_note: black, isort

This commit is contained in:
ps-tubtim
2020-03-12 13:31:15 +07:00
committed by David Alonso
parent b93a75ff8a
commit 437377d222
2 changed files with 7 additions and 11 deletions

View File

@@ -3,19 +3,15 @@
{ {
"name": "Notes in production orders", "name": "Notes in production orders",
"version": "12.0.1.0.0", "version": "13.0.1.0.0",
"category": "Manufacturing", "category": "Manufacturing",
"license": "AGPL-3", "license": "AGPL-3",
"author": "OdooMRP team, " "author": "OdooMRP team, "
"AvanzOSC, " "AvanzOSC, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, " "Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"Odoo Community Association (OCA)", "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/manufacture", "website": "https://github.com/OCA/manufacture",
"depends": [ "depends": ["mrp"],
"mrp", "data": ["views/mrp_production_view.xml"],
],
"data": [
"views/mrp_production_view.xml",
],
"installable": True, "installable": True,
} }

View File

@@ -5,6 +5,6 @@ from odoo import fields, models
class MrpProduction(models.Model): class MrpProduction(models.Model):
_inherit = 'mrp.production' _inherit = "mrp.production"
notes = fields.Html() notes = fields.Html()