Commit 7011ccc8 authored by Rafael Monnerat's avatar Rafael Monnerat

fix for foldReport and unfoldReport in Main axis.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13282 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent acfcc64b
......@@ -2822,13 +2822,13 @@ class AxisGroup:
"""
if self.is_open:
# current report is unfold, action 'fold'
self.info_title.link = 'portal_selections/foldReport?report_url=' + \
self.info_title.link = 'foldReport?report_url=' + \
'%s&form_id=%s&list_selection_name=%s' %(
self.url, form_id, selection_name)
self.info_title.info = '[-] ' + self.info_title.info
else:
# current report is fold, action 'unfold'
self.info_title.link = 'portal_selections/unfoldReport?report_url=' + \
self.info_title.link = 'unfoldReport?report_url=' + \
'%s&form_id=%s&list_selection_name=%s' %(
self.url, form_id, selection_name)
self.info_title.info = '[+] ' + self.info_title.info
......
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