Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(209)

Issue 3977047: Display deleted lines in One2Many and Many2Many (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
15 years ago by nicoe
Modified:
14 years, 12 months ago
Reviewers:
bch, ced
Visibility:
Public.

Patch Set 1 #

Total comments: 9

Patch Set 2 : changed __deleted and __removed to record_deleted and record_removed #

Patch Set 3 : Allow drag'n'drop in treeview after del/undelete #

Patch Set 4 : Fix adding of lines #

Patch Set 5 : remove unused prints #

Patch Set 6 : remove unused variable #

Total comments: 2

Patch Set 7 : Fix for get_set_attrs readonly computation #

Patch Set 8 : Reverted get_state_attrs change #

Patch Set 9 : removed print statements #

Patch Set 10 : Made removed and deleted status mutually exclusive #

Total comments: 2

Patch Set 11 : Removed unused information from message #

Patch Set 12 : Added shortcuts to help message #

Unified diffs Side-by-side diffs Delta from patch set Stats (+370 lines, -43 lines) Patch
M CHANGELOG View 1 chunk +1 line, -0 lines 0 comments Download
A share/pixmaps/tryton/tryton-undo.svg View 1 chunk +230 lines, -0 lines 0 comments Download
M tryton/common/cellrenderercombo.py View 2 chunks +5 lines, -0 lines 0 comments Download
M tryton/common/cellrendererdate.py View 2 chunks +5 lines, -0 lines 0 comments Download
M tryton/common/cellrenderertext.py View 2 chunks +5 lines, -0 lines 0 comments Download
M tryton/common/cellrenderertoggle.py View 1 chunk +3 lines, -0 lines 0 comments Download
M tryton/gui/window/shortcuts.py View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +18 lines, -13 lines 0 comments Download
M tryton/gui/window/view_form/model/field.py View 1 2 3 7 4 chunks +6 lines, -5 lines 0 comments Download
M tryton/gui/window/view_form/model/group.py View 1 2 3 4 5 6 7 8 9 6 chunks +26 lines, -15 lines 0 comments Download
M tryton/gui/window/view_form/model/record.py View 2 3 4 1 chunk +19 lines, -0 lines 0 comments Download
M tryton/gui/window/view_form/screen/screen.py View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +4 lines, -0 lines 0 comments Download
M tryton/gui/window/view_form/view/form_gtk/interface.py View 1 chunk +1 line, -0 lines 0 comments Download
M tryton/gui/window/view_form/view/form_gtk/many2many.py View 1 1 chunk +9 lines, -0 lines 0 comments Download
M tryton/gui/window/view_form/view/form_gtk/one2many.py View 1 2 3 4 5 8 chunks +32 lines, -9 lines 0 comments Download
M tryton/gui/window/view_form/view/list_gtk/parser.py View 2 chunks +6 lines, -1 line 0 comments Download

Messages

Total messages: 22
nicoe
15 years ago (2011-01-27 16:10:22 UTC) #1
ced
15 years ago (2011-01-27 16:38:40 UTC) #2
ced
http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/model/group.py File tryton/gui/window/view_form/model/group.py (right): http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/model/group.py#newcode32 tryton/gui/window/view_form/model/group.py:32: self.__deleted, self.__removed = {}, {} Is the list fields ...
15 years ago (2011-01-27 17:35:40 UTC) #3
ced
http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/view/form_gtk/one2many.py File tryton/gui/window/view_form/view/form_gtk/one2many.py (right): http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/view/form_gtk/one2many.py#newcode205 tryton/gui/window/view_form/view/form_gtk/one2many.py:205: return False Add a shortcut for undelete. http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/view/form_gtk/one2many.py#newcode357 tryton/gui/window/view_form/view/form_gtk/one2many.py:357: ...
15 years ago (2011-01-27 18:03:56 UTC) #4
nicoe
15 years ago (2011-01-28 12:34:24 UTC) #5
nicoe
Most of the issues are done in the next upload http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/model/group.py File tryton/gui/window/view_form/model/group.py (right): http://codereview.appspot.com/3977047/diff/1/tryton/gui/window/view_form/model/group.py#newcode32 ...
15 years ago (2011-01-28 12:34:24 UTC) #6
nicoe
15 years ago (2011-01-28 14:54:01 UTC) #7
bch
Nice feature :) I made a quick test and it seems that I cannot add ...
15 years ago (2011-01-28 16:40:03 UTC) #8
nicoe
15 years ago (2011-01-31 22:35:43 UTC) #9
nicoe
15 years ago (2011-01-31 22:38:55 UTC) #10
nicoe
15 years ago (2011-01-31 22:41:08 UTC) #11
ced
http://codereview.appspot.com/3977047/diff/29001/tryton/gui/window/view_form/model/field.py File tryton/gui/window/view_form/model/field.py (right): http://codereview.appspot.com/3977047/diff/29001/tryton/gui/window/view_form/model/field.py#newcode179 tryton/gui/window/view_form/model/field.py:179: if record.group.readonly or record.readonly: Is the record.readonly case should ...
15 years ago (2011-02-07 19:31:33 UTC) #12
nicoe
http://codereview.appspot.com/3977047/diff/29001/tryton/gui/window/view_form/model/field.py File tryton/gui/window/view_form/model/field.py (right): http://codereview.appspot.com/3977047/diff/29001/tryton/gui/window/view_form/model/field.py#newcode179 tryton/gui/window/view_form/model/field.py:179: if record.group.readonly or record.readonly: On 2011/02/07 19:31:36, ced wrote: ...
15 years ago (2011-02-08 11:42:59 UTC) #13
nicoe
15 years ago (2011-02-08 11:43:33 UTC) #14
nicoe
15 years ago (2011-02-10 14:25:46 UTC) #15
nicoe
15 years ago (2011-02-10 14:27:13 UTC) #16
nicoe
15 years ago (2011-02-10 15:21:34 UTC) #17
ced
You must update the help page with the new shortcut. http://codereview.appspot.com/3977047/diff/43001/tryton/gui/window/view_form/screen/screen.py File tryton/gui/window/view_form/screen/screen.py (right): http://codereview.appspot.com/3977047/diff/43001/tryton/gui/window/view_form/screen/screen.py#newcode231 ...
15 years ago (2011-02-11 14:12:34 UTC) #18
nicoe
http://codereview.appspot.com/3977047/diff/43001/tryton/gui/window/view_form/screen/screen.py File tryton/gui/window/view_form/screen/screen.py (right): http://codereview.appspot.com/3977047/diff/43001/tryton/gui/window/view_form/screen/screen.py#newcode231 tryton/gui/window/view_form/screen/screen.py:231: (record.deleted or record.removed) if record else False)) On 2011/02/11 ...
14 years, 12 months ago (2011-02-15 14:49:18 UTC) #19
nicoe
14 years, 12 months ago (2011-02-15 14:49:56 UTC) #20
nicoe
14 years, 12 months ago (2011-02-16 14:23:12 UTC) #21
ced
14 years, 12 months ago (2011-02-16 14:25:32 UTC) #22
LGTM
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b