blob: 54d90256d1e3c2c8356b108e0e31f024968b2176 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from odoo import fields, models, api, _
from odoo.exceptions import AccessError, UserError, ValidationError
class MrpProduction(models.Model):
_inherit = 'mrp.production'
desc = fields.Text(string='Description')
|