mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
[IMP] mrp_production_note: black, isort
This commit is contained in:
@@ -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,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user