Commit 0f418f57 authored by Romain Courteaud's avatar Romain Courteaud

Hardcode one more columns used by sql cached worklist.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19584 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0617b07b
...@@ -531,14 +531,14 @@ def WorkflowTool_refreshWorklistCache(self): ...@@ -531,14 +531,14 @@ def WorkflowTool_refreshWorklistCache(self):
# (and cached). # (and cached).
table_column_id_set = ImmutableSet([ table_column_id_set = ImmutableSet([
COUNT_COLUMN_TITLE, 'security_uid', 'simulation_state', COUNT_COLUMN_TITLE, 'security_uid', 'simulation_state',
'validation_state', 'portal_type', 'owner','parent_uid', 'validation_state', 'portal_type', 'owner', 'viewable_owner', 'parent_uid',
'title','opportunity_state', 'causality_state', 'invoice_state', 'title','opportunity_state', 'causality_state', 'invoice_state',
'payment_state', 'event_state', 'immobilisation_state', 'reference', 'payment_state', 'event_state', 'immobilisation_state', 'reference',
'grouping_reference', 'source_reference', 'destination_reference', 'grouping_reference', 'source_reference', 'destination_reference',
'string_index', 'int_index', 'float_index', 'has_cell_content', 'string_index', 'int_index', 'float_index', 'has_cell_content',
'creation_date', 'modification_date' 'creation_date', 'modification_date'
]) ])
security_column_id_list = ['security_uid', 'owner'] security_column_id_list = ['security_uid', 'viewable_owner', 'owner']
(worklist_list_grouped_by_condition, worklist_metadata) = \ (worklist_list_grouped_by_condition, worklist_metadata) = \
groupWorklistListByCondition( groupWorklistListByCondition(
worklist_dict=worklist_dict, worklist_dict=worklist_dict,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment