changeset 6574035fe28c in modules/sale_opportunity:default
details:
https://hg.tryton.org/modules/sale_opportunity?cmd=changeset&node=6574035fe28c
description:
Do not sort state selection
issue11169
review374761005
diffstat:
opportunity.py | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (16 lines):
diff -r 432b82329101 -r 6574035fe28c opportunity.py
--- a/opportunity.py Thu Feb 03 23:13:27 2022 +0100
+++ b/opportunity.py Tue Feb 15 00:08:47 2022 +0100
@@ -128,10 +128,9 @@
('opportunity', "Opportunity"),
('converted', "Converted"),
('won', "Won"),
+ ('lost', "Lost"),
('cancelled', "Cancelled"),
- ('lost', "Lost"),
- ], "State", required=True, select=True,
- sort=False, readonly=True)
+ ], "State", required=True, select=True, sort=False, readonly=True)
del _states_start, _depends_start
del _states_stop, _depends_stop