[FIX] description on rma models

This commit is contained in:
ahenriquez
2019-10-08 18:05:47 +02:00
committed by AaronHForgeFlow
parent 87c7538cb4
commit d6c0b79e2c
2 changed files with 2 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ from datetime import datetime
class RmaOrder(models.Model): class RmaOrder(models.Model):
_name = "rma.order" _name = "rma.order"
_description = 'RMA Group'
_inherit = ['mail.thread'] _inherit = ['mail.thread']
@api.model @api.model

View File

@@ -11,6 +11,7 @@ ops = {'=': operator.eq,
class RmaOrderLine(models.Model): class RmaOrderLine(models.Model):
_name = "rma.order.line" _name = "rma.order.line"
_description = 'RMA'
_inherit = ['mail.thread'] _inherit = ['mail.thread']
@api.model @api.model