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

Unified Diff: tryton/gui/window/view_form/view/list.py

Issue 3347041: field is defined on group no more on record (Closed)
Patch Set: Created 14 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tryton/gui/window/view_form/view/list.py
===================================================================
--- a/tryton/gui/window/view_form/view/list.py
+++ b/tryton/gui/window/view_form/view/list.py
@@ -368,8 +368,9 @@
info, etime):
treeview.emit_stop_by_name('drag-data-received')
if treeview.sequence:
+ field = self.screen.group.fields[treeview.sequence]
for record in self.screen.group:
- if record[treeview.sequence].get_state_attrs(
+ if field.get_state_attrs(
record).get('readonly', False):
return
if not selection.data:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

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