[IMP] rma_account: add index in account.move.line to field 'rma_line_id'

This commit is contained in:
Jordi Ballester Alomar
2023-02-27 16:08:38 +01:00
committed by DavidJForgeFlow
parent c0ef1a5576
commit 37e70e1767

View File

@@ -170,5 +170,6 @@ class AccountMoveLine(models.Model):
comodel_name="rma.order.line", comodel_name="rma.order.line",
string="RMA line refund", string="RMA line refund",
ondelete="set null", ondelete="set null",
help="This will contain the rma line that originated the refund line", index=True,
help="This will contain the rma line that originated this line",
) )