Commit 8c833d3f authored by Mame Coumba Sall's avatar Mame Coumba Sall

2009-03-23 mame

*modified script to make it simpler and remove useless lines
* also add my_thumbnail.xml

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26127 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 15ef8445
...@@ -53,41 +53,21 @@ ...@@ -53,41 +53,21 @@
</item> </item>
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>from Products.ZSQLCatalog.SQLCatalog import ComplexQuery\n <value> <string># Get the list of attachments\n
from Products.ZSQLCatalog.SQLCatalog import Query\n
\n
from string import zfill\n
global result_list\n
global uid\n
uid = 0\n
result_list = []\n
\n
# Get the list of attachments\n
attachment_pdf_list=[]\n attachment_pdf_list=[]\n
current_object = context.getObject()\n current_object = context.getObject()\n
\n \n
attachment_list = current_object.getAggregateValueList()\n attachment_pdf_list = current_object.getAggregateValueList(\n
attachment_pdf_list.extend(filter(lambda x:(x.getPortalType() in [\'PDF\',\'Image\']),attachment_list))\n portal_type=(\'PDF\', \'Image\'))\n
\n
\n \n
attachment_pdf_uid_list =[x.getUid() for x in attachment_pdf_list]\n attachment_pdf_uid_list =[x.getUid() for x in attachment_pdf_list]\n
\n \n
if not attachment_pdf_uid_list :\n if not attachment_pdf_uid_list :\n
return []\n return []\n
result_list = [x.getObject() for x in current_object.searchFolder(\n
portal_type=(\'PDF\', \'Image\'))]\n
\n \n
# Build query\n return attachment_pdf_list + attachment_list\n
\n
query = ComplexQuery(\n
Query(parent_uid=current_object.getUid()),\n
Query(uid=attachment_pdf_uid_list),\n
operator="OR")\n
\n
\n
kw[\'portal_type\'] = (\'PDF\',\'Image\')\n
result_uid = [x.getUid() for x in context.portal_catalog(parent_uid = current_object.getUid(),query=query, **kw)]\n
\n
result_document = [x.getObject() for x in current_object.portal_catalog(query=query, **kw)]\n
return result_document\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
...@@ -126,29 +106,17 @@ return result_document\n ...@@ -126,29 +106,17 @@ return result_document\n
<tuple> <tuple>
<string>lines_num</string> <string>lines_num</string>
<string>kw</string> <string>kw</string>
<string>Products.ZSQLCatalog.SQLCatalog</string>
<string>ComplexQuery</string>
<string>Query</string>
<string>string</string>
<string>zfill</string>
<string>uid</string>
<string>result_list</string>
<string>attachment_pdf_list</string> <string>attachment_pdf_list</string>
<string>_getattr_</string> <string>_getattr_</string>
<string>context</string> <string>context</string>
<string>current_object</string> <string>current_object</string>
<string>attachment_list</string>
<string>filter</string>
<string>append</string> <string>append</string>
<string>$append0</string> <string>$append0</string>
<string>_getiter_</string> <string>_getiter_</string>
<string>x</string> <string>x</string>
<string>attachment_pdf_uid_list</string> <string>attachment_pdf_uid_list</string>
<string>query</string> <string>result_list</string>
<string>_write_</string> <string>attachment_list</string>
<string>_apply_</string>
<string>result_uid</string>
<string>result_document</string>
</tuple> </tuple>
</value> </value>
</item> </item>
......
353 356
\ No newline at end of file \ 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