Commit 6eeb2831 authored by Jérome Perrin's avatar Jérome Perrin

use getPreferredAccountingTransactionLineFunctionBaseCategory in reports

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36110 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8eaeac83
...@@ -83,7 +83,9 @@ ...@@ -83,7 +83,9 @@
</item> </item>
<item> <item>
<key> <string>title</string> </key> <key> <string>title</string> </key>
<value> <string></string> </value> <value>
<persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent>
</value>
</item> </item>
</dictionary> </dictionary>
</value> </value>
...@@ -164,4 +166,20 @@ ...@@ -164,4 +166,20 @@
</dictionary> </dictionary>
</pickle> </pickle>
</record> </record>
<record id="4" aka="AAAAAAAAAAQ=">
<pickle>
<tuple>
<global name="TALESMethod" module="Products.Formulator.TALESField"/>
<tuple/>
</tuple>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>_text</string> </key>
<value> <string>context/AccountingTransactionLine_getFunctionBaseCategoryTitle</string> </value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData> </ZopeData>
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<global name="PythonScript" module="Products.PythonScripts.PythonScript"/>
<tuple/>
</tuple>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>Script_magic</string> </key>
<value> <int>3</int> </value>
</item>
<item>
<key> <string>_bind_names</string> </key>
<value>
<object>
<klass>
<global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key> <string>_asgns</string> </key>
<value>
<dictionary>
<item>
<key> <string>name_container</string> </key>
<value> <string>container</string> </value>
</item>
<item>
<key> <string>name_context</string> </key>
<value> <string>context</string> </value>
</item>
<item>
<key> <string>name_m_self</string> </key>
<value> <string>script</string> </value>
</item>
<item>
<key> <string>name_subpath</string> </key>
<value> <string>traverse_subpath</string> </value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key> <string>_body</string> </key>
<value> <string>portal = context.getPortalObject()\n
\n
function_base_category = portal.portal_preferences.getPreferredAccountingTransactionLineFunctionBaseCategory()\n
\n
if function_base_category:\n
return portal.portal_categories.restrictedTraverse(function_base_category).getBaseCategoryValue().getTitle()\n
\n
return \'Function\'\n
</string> </value>
</item>
<item>
<key> <string>_code</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>_params</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>errors</string> </key>
<value>
<tuple/>
</value>
</item>
<item>
<key> <string>func_code</string> </key>
<value>
<object>
<klass>
<global name="FuncCode" module="Shared.DC.Scripts.Signature"/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key> <string>co_argcount</string> </key>
<value> <int>0</int> </value>
</item>
<item>
<key> <string>co_varnames</string> </key>
<value>
<tuple>
<string>_getattr_</string>
<string>context</string>
<string>portal</string>
<string>function_base_category</string>
</tuple>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key> <string>func_defaults</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>AccountingTransactionLine_getFunctionBaseCategoryTitle</string> </value>
</item>
<item>
<key> <string>warnings</string> </key>
<value>
<tuple/>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
...@@ -55,18 +55,16 @@ ...@@ -55,18 +55,16 @@
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>"""Returns the item list of possible functions to use on accounting lines.\n <value> <string>"""Returns the item list of possible functions to use on accounting lines.\n
"""\n """\n
portal = context.getPortalObject()\n
\n \n
# Configure this ... maybe it will be a system preference\n function_base_category = portal.portal_preferences.getPreferredAccountingTransactionLineFunctionBaseCategory()\n
function_base_category_id = None\n if function_base_category:\n
\n return getattr(portal.portal_categories.restrictedTraverse(function_base_category),\n
if function_base_category_id is not None:\n
portal = context.getPortalObject()\n
return getattr(portal.portal_categories[function_base_category_id], \n
portal.portal_preferences.getPreference(\'preferred_category_child_item_list_method_id\',\n portal.portal_preferences.getPreference(\'preferred_category_child_item_list_method_id\',\n
\'getCategoryChildCompactLogicalPathItemList\'))(\n \'getCategoryChildCompactLogicalPathItemList\'))(\n
local_sort_id=(\'int_index\', \'translated_title\'),\n local_sort_id=(\'int_index\', \'translated_title\'),\n
checked_permission=\'View\',\n checked_permission=\'View\',\n
base=1) \n base=True) \n
\n \n
return ()\n return ()\n
</string> </value> </string> </value>
...@@ -105,13 +103,12 @@ return ()\n ...@@ -105,13 +103,12 @@ return ()\n
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
<value> <value>
<tuple> <tuple>
<string>None</string>
<string>function_base_category_id</string>
<string>_getattr_</string> <string>_getattr_</string>
<string>context</string> <string>context</string>
<string>portal</string> <string>portal</string>
<string>function_base_category</string>
<string>getattr</string> <string>getattr</string>
<string>_getitem_</string> <string>True</string>
</tuple> </tuple>
</value> </value>
</item> </item>
......
1259 1260
\ 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