Skip to content

Commit

Permalink
Merge pull request ForgeFlow#176 from ForgeFlow/14.0-rma_account-refu…
Browse files Browse the repository at this point in the history
…nd_policy-editable

[14.0][rma_account][imp] allow to change the refund policy even when the rma has been approved
  • Loading branch information
JordiBForgeFlow committed Sep 3, 2021
2 parents 1859570 + 026d749 commit c2d3807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rma_account/models/rma_order_line.py
Expand Up @@ -94,7 +94,7 @@ def _compute_refund_count(self):
required=True,
default="no",
readonly=True,
states={"draft": [("readonly", False)]},
states={"draft": [("readonly", False)], "approved": [("readonly", False)]},
)
qty_to_refund = fields.Float(
string="Qty To Refund",
Expand Down

0 comments on commit c2d3807

Please sign in to comment.