Commit 4446deab authored by Jérome Perrin's avatar Jérome Perrin

Add a validation workflow on currencies

Improve currency module list to have some more columns, and remove ID on currency and currency module

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@17800 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a7c4ad7f
......@@ -3,11 +3,8 @@
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<tuple>
<string>Products.PythonScripts.PythonScript</string>
<string>PythonScript</string>
</tuple>
<none/>
<global name="PythonScript" module="Products.PythonScripts.PythonScript"/>
<tuple/>
</tuple>
</pickle>
<pickle>
......@@ -69,6 +66,7 @@
<item>
<key> <string>_body</string> </key>
<value> <string>portal = context.getPortalObject()\n
from ZTUtils import LazyFilter\n
\n
def getCurrencyItemList(include_empty=1, portal_path=""):\n
result = []\n
......@@ -77,10 +75,12 @@ def getCurrencyItemList(include_empty=1, portal_path=""):\n
currency_module = getattr(portal, \'currency_module\',\n
getattr(portal, \'currency\', None))\n
\n
for currency in currency_module.contentValues():\n
# for currency, we intentionaly use reference (EUR) not title (Euros).\n
result.append((currency.getReference() or currency.getTitleOrId(),\n
currency.getRelativeUrl()))\n
for currency in LazyFilter(currency_module.contentValues(), skip=\'View\'):\n
if not skip_invalidated or \\\n
currency.getProperty(\'validation_state\', \'default\') != \'invalidated\':\n
# for currency, we intentionaly use reference (EUR) not title (Euros).\n
result.append((currency.getReference() or currency.getTitleOrId(),\n
currency.getRelativeUrl()))\n
\n
result.sort(lambda x,y: cmp(x[0], y[0]))\n
return result\n
......@@ -115,7 +115,7 @@ return getCurrencyItemList( include_empty=include_empty,\n
</item>
<item>
<key> <string>_params</string> </key>
<value> <string>include_empty=1</string> </value>
<value> <string>include_empty=1, skip_invalidated=1</string> </value>
</item>
<item>
<key> <string>errors</string> </key>
......@@ -135,16 +135,19 @@ return getCurrencyItemList( include_empty=include_empty,\n
<dictionary>
<item>
<key> <string>co_argcount</string> </key>
<value> <int>1</int> </value>
<value> <int>2</int> </value>
</item>
<item>
<key> <string>co_varnames</string> </key>
<value>
<tuple>
<string>include_empty</string>
<string>skip_invalidated</string>
<string>_getattr_</string>
<string>context</string>
<string>portal</string>
<string>ZTUtils</string>
<string>LazyFilter</string>
<string>getCurrencyItemList</string>
<string>Products.ERP5Type.Cache</string>
<string>CachingMethod</string>
......@@ -161,6 +164,7 @@ return getCurrencyItemList( include_empty=include_empty,\n
<value>
<tuple>
<int>1</int>
<int>1</int>
</tuple>
</value>
</item>
......
......@@ -3,11 +3,8 @@
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<tuple>
<string>Products.ERP5Form.ProxyField</string>
<string>ProxyField</string>
</tuple>
<none/>
<global name="ProxyField" module="Products.ERP5Form.ProxyField"/>
<tuple/>
</tuple>
</pickle>
<pickle>
......@@ -18,8 +15,7 @@
<list>
<string>title</string>
<string>columns</string>
<string>search_columns</string>
<string>sort_columns</string>
<string>all_columns</string>
<string>sort</string>
<string>selection_name</string>
<string>portal_types</string>
......@@ -87,6 +83,45 @@
<key> <string>Base_viewSearchResultList</string> </key>
<value> <int>1</int> </value>
</item>
<item>
<key> <string>all_columns</string> </key>
<value>
<list>
<tuple>
<string>reference</string>
<string>Currency Code</string>
</tuple>
<tuple>
<string>title</string>
<string>Title</string>
</tuple>
<tuple>
<string>short_title</string>
<string>Symbol</string>
</tuple>
<tuple>
<string>base_unit_quantity</string>
<string>Precision</string>
</tuple>
<tuple>
<string>translated_validation_state_title</string>
<string>State</string>
</tuple>
<tuple>
<string>creation_date</string>
<string>Creation Date</string>
</tuple>
<tuple>
<string>modification_date</string>
<string>Modification Date</string>
</tuple>
<tuple>
<string>quantity_precision</string>
<string>Quantity Precision</string>
</tuple>
</list>
</value>
</item>
<item>
<key> <string>all_editable_columns</string> </key>
<value>
......@@ -97,10 +132,6 @@
<key> <string>columns</string> </key>
<value>
<list>
<tuple>
<string>id</string>
<string>ID</string>
</tuple>
<tuple>
<string>reference</string>
<string>Currency Code</string>
......@@ -117,6 +148,10 @@
<string>base_unit_quantity</string>
<string>Precision</string>
</tuple>
<tuple>
<string>translated_validation_state_title</string>
<string>State</string>
</tuple>
</list>
</value>
</item>
......@@ -139,25 +174,6 @@
</list>
</value>
</item>
<item>
<key> <string>search_columns</string> </key>
<value>
<list>
<tuple>
<string>id</string>
<string>ID</string>
</tuple>
<tuple>
<string>reference</string>
<string>Currency Code</string>
</tuple>
<tuple>
<string>title</string>
<string>Title</string>
</tuple>
</list>
</value>
</item>
<item>
<key> <string>selection_name</string> </key>
<value> <string>currency_module_selection</string> </value>
......@@ -166,33 +182,10 @@
<key> <string>sort</string> </key>
<value>
<list>
<tuple>
<string>id</string>
<string>ID</string>
</tuple>
<tuple>
<string>reference</string>
<string>Currency Code</string>
</tuple>
</list>
</value>
</item>
<item>
<key> <string>sort_columns</string> </key>
<value>
<list>
<tuple>
<string>id</string>
<string>ID</string>
</tuple>
<tuple>
<string>reference</string>
<string>Currency Code</string>
</tuple>
<tuple>
<string>title</string>
<string>Title</string>
</tuple>
</list>
</value>
</item>
......
......@@ -3,11 +3,8 @@
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<tuple>
<string>Products.ERP5Form.Form</string>
<string>ERP5Form</string>
</tuple>
<none/>
<global name="ERP5Form" module="Products.ERP5Form.Form"/>
<tuple/>
</tuple>
</pickle>
<pickle>
......@@ -99,8 +96,8 @@
<key> <string>left</string> </key>
<value>
<list>
<string>my_id</string>
<string>my_title</string>
<string>my_short_title</string>
</list>
</value>
</item>
......@@ -108,9 +105,9 @@
<key> <string>right</string> </key>
<value>
<list>
<string>my_short_title</string>
<string>my_reference</string>
<string>my_base_unit_quantity</string>
<string>my_translated_validation_state_title</string>
</list>
</value>
</item>
......
......@@ -3,11 +3,8 @@
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<tuple>
<string>Products.ERP5Form.ProxyField</string>
<string>ProxyField</string>
</tuple>
<none/>
<global name="ProxyField" module="Products.ERP5Form.ProxyField"/>
<tuple/>
</tuple>
</pickle>
<pickle>
......@@ -17,7 +14,6 @@
<value>
<list>
<string>title</string>
<string>required</string>
</list>
</value>
</item>
......@@ -86,16 +82,12 @@
<key> <string>form_id</string> </key>
<value> <string>Base_viewFieldLibrary</string> </value>
</item>
<item>
<key> <string>required</string> </key>
<value> <int>1</int> </value>
</item>
<item>
<key> <string>target</string> </key>
<value> <string>Click to edit the target</string> </value>
</item>
<item>
<key> <string>title</string> </key>
<key> <string>title</string> </key>
<value> <string>Precision</string> </value>
</item>
</dictionary>
......
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<global name="ProxyField" module="Products.ERP5Form.ProxyField"/>
<tuple/>
</tuple>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>delegated_list</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>my_translated_validation_state_title</string> </value>
</item>
<item>
<key> <string>message_values</string> </key>
<value>
<dictionary>
<item>
<key> <string>external_validator_failed</string> </key>
<value> <string>The input failed the external validator.</string> </value>
</item>
</dictionary>
</value>
</item>
<item>
<key> <string>overrides</string> </key>
<value>
<dictionary>
<item>
<key> <string>field_id</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>form_id</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>target</string> </key>
<value> <string></string> </value>
</item>
</dictionary>
</value>
</item>
<item>
<key> <string>tales</string> </key>
<value>
<dictionary>
<item>
<key> <string>field_id</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>form_id</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>target</string> </key>
<value> <string></string> </value>
</item>
</dictionary>
</value>
</item>
<item>
<key> <string>values</string> </key>
<value>
<dictionary>
<item>
<key> <string>field_id</string> </key>
<value> <string>my_translated_workflow_state_title</string> </value>
</item>
<item>
<key> <string>form_id</string> </key>
<value> <string>Base_viewFieldLibrary</string> </value>
</item>
<item>
<key> <string>target</string> </key>
<value> <string>Click to edit the target</string> </value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
224
\ No newline at end of file
226
\ No newline at end of file
......@@ -10,6 +10,7 @@ Credit Card | edit_workflow
Currency Exchange Line | currency_exchange_line_interaction_workflow
Currency Exchange Line | edit_workflow
Currency | edit_workflow
Currency | validation_workflow
Email | edit_workflow
Fax | edit_workflow
File | edit_workflow
......
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