Skip to content

Commit

Permalink
[FIX]rma_account: avoid duplicated field string
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronHForgeFlow committed Jan 29, 2024
1 parent 4034cd2 commit 58349e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rma_account/models/account_move_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _compute_rma_count(self):
invl.rma_line_count = len(rma_lines)

used_in_rma_line_count = fields.Integer(
compute="_compute_used_in_rma_count", string="# of RMA"
compute="_compute_used_in_rma_count", string="# of used RMA"
)
rma_line_count = fields.Integer(compute="_compute_rma_count", string="# of RMA")
rma_line_ids = fields.One2many(
Expand Down

0 comments on commit 58349e4

Please sign in to comment.