Commit b76491e2 authored by Jérome Perrin's avatar Jérome Perrin

Apply checked_permission to list possible bank accounts, otherwise we have a...

Apply checked_permission to list possible bank accounts, otherwise we have a problem with deleted bank accounts
parent e451ad9e
......@@ -10,9 +10,9 @@
<key> <string>delegated_list</string> </key>
<value>
<list>
<string>title</string>
<string>description</string>
<string>items</string>
<string>title</string>
</list>
</value>
</item>
......@@ -127,7 +127,7 @@
<dictionary>
<item>
<key> <string>_text</string> </key>
<value> <string>python:[(\'\', \'\')] + (here.getDestinationSection() and [(x.Title(), x.getRelativeUrl()) for x in here.getDestinationSectionValue().objectValues(portal_type = here.getPortalPaymentNodeTypeList())] or [])</string> </value>
<value> <string>python:[(\'\', \'\')] + (here.getDestinationSection() and [(x.getTitle(), x.getRelativeUrl()) for x in here.getDestinationSectionValue().contentValues(portal_type=here.getPortalPaymentNodeTypeList(), checked_permission="Access contents information")] or [])</string> </value>
</item>
</dictionary>
</pickle>
......
......@@ -10,9 +10,9 @@
<key> <string>delegated_list</string> </key>
<value>
<list>
<string>title</string>
<string>description</string>
<string>items</string>
<string>title</string>
</list>
</value>
</item>
......@@ -127,7 +127,7 @@
<dictionary>
<item>
<key> <string>_text</string> </key>
<value> <string>python:[(\'\', \'\')] + (here.getSourceSection() and [(x.Title(), x.getRelativeUrl()) for x in here.getSourceSectionValue().objectValues(portal_type = here.getPortalPaymentNodeTypeList())] or [])</string> </value>
<value> <string>python:[(\'\', \'\')] + (here.getSourceSection() and [(x.getTitle(), x.getRelativeUrl()) for x in here.getSourceSectionValue().contentValues(portal_type=here.getPortalPaymentNodeTypeList(), checked_permission="Access contents information")] or [])</string> </value>
</item>
</dictionary>
</pickle>
......
1159
\ No newline at end of file
1160
\ No newline at end of file
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