blob: ce60e01b3a0cccf746ae880917af579f6a413006 (
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 Users(models.Model):
_inherit = 'mrp.production'
desc = fields.Text(string='Description')
|