From 756ff4c351a6c7a5a8210e2217694887dbdb4f7e Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Wed, 9 Sep 2020 09:06:28 +0100 Subject: [PATCH] [IMP] account_credit_control: allow to set a line back to draft --- account_credit_control/wizard/credit_control_marker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_credit_control/wizard/credit_control_marker.py b/account_credit_control/wizard/credit_control_marker.py index 623a6460f..67e2dfefd 100644 --- a/account_credit_control/wizard/credit_control_marker.py +++ b/account_credit_control/wizard/credit_control_marker.py @@ -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,