Skip to content

Commit

Permalink
[IMP] account_credit_control: allow to set a line back to draft
Browse files Browse the repository at this point in the history
  • Loading branch information
Jairo Llopis authored and cesar-tecnativa committed Jun 13, 2022
1 parent 84738e9 commit 756ff4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_credit_control/wizard/credit_control_marker.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _default_lines(self):
return self._filter_lines(lines)

name = fields.Selection(
selection=[("ignored", "Ignored"), ("to_be_sent", "To Do"), ("sent", "Done")],
selection=[("draft", "Draft"), ("ignored", "Ignored"), ("to_be_sent", "To Do"), ("sent", "Done")],
string="Mark as",
default="to_be_sent",
required=True,
Expand Down

0 comments on commit 756ff4c

Please sign in to comment.