Improve linking app column display and sorting

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-04-28 02:22:21 -04:00
parent ae8a444e42
commit a544924c08
3 changed files with 20 additions and 3 deletions

View File

@@ -74,14 +74,23 @@ class LinkingApp(MayanAppConfig):
)
SourceColumn(
attribute='dynamic_label', source=SmartLink
attribute='label', is_identifier=True, is_sortable=True,
source=SmartLink
)
SourceColumn(
attribute='enabled', source=SmartLink, widget=TwoStateWidget
attribute='dynamic_label', is_sortable=True, source=SmartLink
)
SourceColumn(
attribute='enabled', is_sortable=True, source=SmartLink,
widget=TwoStateWidget
)
SourceColumn(
attribute='enabled', source=SmartLinkCondition,
attribute='get_full_label', is_identifier=True,
source=SmartLinkCondition
)
SourceColumn(
attribute='enabled', is_sortable=True, source=SmartLinkCondition,
widget=TwoStateWidget
)