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

Merge !496 Replace \r\n by \n in ZSQL Methods' arguments

Since 76cc938e we have diffs each time we edit ZSQL Methods. This is a "big commit" to change all remaining ZSQL methods. I checked diffs one by one, but I would appreciate others check this as well and confirm that it's OK to do so.

From the root of repository, I did :

```
grep -rl Products.ZSQLMethods.SQL  . | grep '\.xml$' | xargs ~/bin/zsql_backslash_n.py
```

With a script containing
```python

from lxml import etree
import sys

for filename in sys.argv[1:]:
  with open(filename) as f:
    tree = etree.parse(f)
    root = tree.getroot()
    for el in tree.xpath('//item/key/string[text() = "arguments_src"]/../../value/string'):
      if el.text:
        el.text = el.text.replace(r'\r\n', r'\n')

    # force <string> element to have a text, so that they export as <string></string> and not <string/>
    for el in tree.xpath('//string[not(text())]'):
      el.text = ''

  with open(filename, 'w') as f:
    f.write(
        '<?xml version="1.0"?>\n'
        + etree.tostring(root, pretty_print=True, encoding="utf-8"))

  print filename
```
( script snippet: $277 )

/cc @jm @georgios.dagkakis @Nicolas

/reviewed-on !496

Conflicts:
	product/ERP5/bootstrap/erp5_mysql_innodb_catalog/CatalogMethodTemplateItem/portal_catalog/erp5_mysql_innodb/z_getitem_by_path.xml
	product/ERP5/bootstrap/erp5_mysql_innodb_catalog/CatalogMethodTemplateItem/portal_catalog/erp5_mysql_innodb/z_getitem_by_uid.xml
	product/ERP5/bootstrap/erp5_mysql_innodb_catalog/CatalogMethodTemplateItem/portal_catalog/erp5_mysql_innodb/z_produce_reserved_uid_list.xml
parents 16de28d5 2adf9084
...@@ -14,21 +14,21 @@ ...@@ -14,21 +14,21 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getSourceSectionUid\r\n getSourceSectionUid\n
getDestinationSectionUid\r\n getDestinationSectionUid\n
getResourceUid\r\n getResourceUid\n
getSourceProjectUid\r\n getSourceProjectUid\n
getDestinationProjectUid\r\n getDestinationProjectUid\n
getSourcePaymentUid\r\n getSourcePaymentUid\n
getDestinationPaymentUid\r\n getDestinationPaymentUid\n
getTitle\r\n getTitle\n
getReference\r\n getReference\n
getSourceReference\r\n getSourceReference\n
getDestinationReference\r\n getDestinationReference\n
getStartDate\r\n getStartDate\n
getStopDate\r\n getStopDate\n
InternalInvoiceTransaction_statInternalTransactionLineList\r\n InternalInvoiceTransaction_statInternalTransactionLineList\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -65,9 +65,9 @@ ...@@ -65,9 +65,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>node_uid\r\n <value> <string>node_uid\n
at_date\r\n at_date\n
section_uid:list\r\n section_uid:list\n
simulation_state:list</string> </value> simulation_state:list</string> </value>
</item> </item>
<item> <item>
......
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>node_uid:list\r\n <value> <string>node_uid:list\n
section_uid:list\r\n section_uid:list\n
simulation_state:list\r\n simulation_state:list\n
portal_type:list\r\n portal_type:list\n
at_date</string> </value> at_date</string> </value>
</item> </item>
<item> <item>
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>account_uid_list\r\n <value> <string>account_uid_list\n
account_node_uid</string> </value> account_node_uid</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
query_table\r\n query_table\n
RELATED_QUERY_SEPARATOR=" AND "</string> </value> RELATED_QUERY_SEPARATOR=" AND "</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,18 +14,18 @@ ...@@ -14,18 +14,18 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>isDelivery\r\n <value> <string>isDelivery\n
uid\r\n uid\n
getSourceUid\r\n getSourceUid\n
getDestinationUid\r\n getDestinationUid\n
getSourceSectionUid\r\n getSourceSectionUid\n
getDestinationSectionUid\r\n getDestinationSectionUid\n
getResourceUid\r\n getResourceUid\n
getRecoupDate\r\n getRecoupDate\n
getSourcePaymentReference\r\n getSourcePaymentReference\n
getDestinationPaymentReference\r\n getDestinationPaymentReference\n
getSourcePaymentInternalBankAccountNumber\r\n getSourcePaymentInternalBankAccountNumber\n
getDestinationPaymentInternalBankAccountNumber\r\n getDestinationPaymentInternalBankAccountNumber\n
getSourceTotalAssetPrice</string> </value> getSourceTotalAssetPrice</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,15 +14,15 @@ ...@@ -14,15 +14,15 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>isMovement\r\n <value> <string>isMovement\n
isAccountable\r\n isAccountable\n
uid\r\n uid\n
getStopDate\r\n getStopDate\n
getBaobabDestinationUid\r\n getBaobabDestinationUid\n
getBaobabDestinationSectionUid\r\n getBaobabDestinationSectionUid\n
getResourceUid\r\n getResourceUid\n
getVariationText\r\n getVariationText\n
getSimulationState\r\n getSimulationState\n
getAggregateUidList</string> </value> getAggregateUidList</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getMeasureRowList</string> </value> getMeasureRowList</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,18 +14,18 @@ ...@@ -14,18 +14,18 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>isMovement\r\n <value> <string>isMovement\n
uid\r\n uid\n
getExplanationUid\r\n getExplanationUid\n
getSourceUid\r\n getSourceUid\n
getDestinationUid\r\n getDestinationUid\n
getResourceUid\r\n getResourceUid\n
getQuantity\r\n getQuantity\n
getStartDate\r\n getStartDate\n
getStopDate\r\n getStopDate\n
getPrice\r\n getPrice\n
isAccountable\r\n isAccountable\n
isDivergent\r\n isDivergent\n
getVariationText</string> </value> getVariationText</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,26 +14,26 @@ ...@@ -14,26 +14,26 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
security_uid\r\n security_uid\n
getViewPermissionOwner\r\n getViewPermissionOwner\n
getPath\r\n getPath\n
getRelativeUrl\r\n getRelativeUrl\n
getParentUid\r\n getParentUid\n
id\r\n id\n
getDescription\r\n getDescription\n
getTitle\r\n getTitle\n
getPortalType\r\n getPortalType\n
getSimulationState\r\n getSimulationState\n
getValidationState\r\n getValidationState\n
getReference\r\n getReference\n
getSourceReference\r\n getSourceReference\n
getStringIndex\r\n getStringIndex\n
getIntIndex\r\n getIntIndex\n
hasCellContent\r\n hasCellContent\n
getCreationDate\r\n getCreationDate\n
getModificationDate\r\n getModificationDate\n
getStartDate\r\n getStartDate\n
getStopDate</string> </value> getStopDate</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getQuantityUnitConversionDefinitionRowList\r\n getQuantityUnitConversionDefinitionRowList\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -14,28 +14,28 @@ ...@@ -14,28 +14,28 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getResourceUid\r\n getResourceUid\n
getInventoriatedQuantity\r\n getInventoriatedQuantity\n
getBaobabSourceUid\r\n getBaobabSourceUid\n
getBaobabDestinationUid\r\n getBaobabDestinationUid\n
getBaobabSourceSectionUid\r\n getBaobabSourceSectionUid\n
getBaobabDestinationSectionUid\r\n getBaobabDestinationSectionUid\n
isMovement\r\n isMovement\n
isCancellationAmount\r\n isCancellationAmount\n
isInventoryMovement\r\n isInventoryMovement\n
getBaobabSourcePaymentUid\r\n getBaobabSourcePaymentUid\n
getBaobabDestinationPaymentUid\r\n getBaobabDestinationPaymentUid\n
getExplanationUid\r\n getExplanationUid\n
getSimulationState\r\n getSimulationState\n
getSourceInventoriatedTotalAssetPrice\r\n getSourceInventoriatedTotalAssetPrice\n
getDestinationInventoriatedTotalAssetPrice\r\n getDestinationInventoriatedTotalAssetPrice\n
getStartDate\r\n getStartDate\n
getStopDate\r\n getStopDate\n
isAccountable\r\n isAccountable\n
getPortalType\r\n getPortalType\n
getBaobabDestinationVariationText\r\n getBaobabDestinationVariationText\n
getBaobabSourceVariationText\r\n getBaobabSourceVariationText\n
getSubVariationText</string> </value> getSubVariationText</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,28 +14,28 @@ ...@@ -14,28 +14,28 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getResourceUid\r\n getResourceUid\n
getInventoriatedQuantity\r\n getInventoriatedQuantity\n
getBaobabSourceUid\r\n getBaobabSourceUid\n
getBaobabDestinationUid\r\n getBaobabDestinationUid\n
getBaobabSourceSectionUid\r\n getBaobabSourceSectionUid\n
getBaobabDestinationSectionUid\r\n getBaobabDestinationSectionUid\n
isMovement\r\n isMovement\n
isCancellationAmount\r\n isCancellationAmount\n
isInventoryMovement\r\n isInventoryMovement\n
getBaobabSourcePaymentUid\r\n getBaobabSourcePaymentUid\n
getBaobabDestinationPaymentUid\r\n getBaobabDestinationPaymentUid\n
getExplanationUid\r\n getExplanationUid\n
getSimulationState\r\n getSimulationState\n
getSourceInventoriatedTotalAssetPrice\r\n getSourceInventoriatedTotalAssetPrice\n
getDestinationInventoriatedTotalAssetPrice\r\n getDestinationInventoriatedTotalAssetPrice\n
getStartDate\r\n getStartDate\n
getStopDate\r\n getStopDate\n
isAccountable\r\n isAccountable\n
getPortalType\r\n getPortalType\n
getBaobabDestinationVariationText\r\n getBaobabDestinationVariationText\n
getBaobabSourceVariationText\r\n getBaobabSourceVariationText\n
getSubVariationText</string> </value> getSubVariationText</string> </value>
</item> </item>
<item> <item>
......
...@@ -20,15 +20,15 @@ ...@@ -20,15 +20,15 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getLanguage\r\n getLanguage\n
getVersion\r\n getVersion\n
getRevision\r\n getRevision\n
subject_set_uid\r\n subject_set_uid\n
getEffectiveDate\r\n getEffectiveDate\n
getExpirationDate\r\n getExpirationDate\n
getCreationDateIndex\r\n getCreationDateIndex\n
getFrequencyIndex\r\n getFrequencyIndex\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -22,28 +22,28 @@ ...@@ -22,28 +22,28 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>from_table_list:list\r\n <value> <string>from_table_list:list\n
where_expression\r\n where_expression\n
order_by_expression\r\n order_by_expression\n
group_by_expression\r\n group_by_expression\n
selection_domain_from_expression\r\n selection_domain_from_expression\n
selection_domain_where_expression\r\n selection_domain_where_expression\n
select_expression\r\n select_expression\n
ignore_variation\r\n ignore_variation\n
standardize\r\n standardize\n
omit_simulation\r\n omit_simulation\n
section_filtered\r\n section_filtered\n
omit_input\r\n omit_input\n
omit_output\r\n omit_output\n
input_simulation_state:list\r\n input_simulation_state:list\n
output_simulation_state:list\r\n output_simulation_state:list\n
precision\r\n precision\n
inventory_list\r\n inventory_list\n
statistic\r\n statistic\n
convert_quantity_result\r\n convert_quantity_result\n
quantity_unit_uid\r\n quantity_unit_uid\n
stock_table_id=stock\r\n stock_table_id=stock\n
transformed_uid\r\n transformed_uid\n
transformed_variation_text</string> </value> transformed_variation_text</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
query_table="catalog"\r\n query_table="catalog"\n
RELATED_QUERY_SEPARATOR=" AND "</string> </value> RELATED_QUERY_SEPARATOR=" AND "</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
query_table="catalog"\r\n query_table="catalog"\n
RELATED_QUERY_SEPARATOR=" AND "</string> </value> RELATED_QUERY_SEPARATOR=" AND "</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
query_table="catalog"\r\n query_table="catalog"\n
RELATED_QUERY_SEPARATOR=" AND "</string> </value> RELATED_QUERY_SEPARATOR=" AND "</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
table_3</string> </value> table_3</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -22,11 +22,11 @@ ...@@ -22,11 +22,11 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>from_date\r\n <value> <string>from_date\n
to_date\r\n to_date\n
node:list\r\n node:list\n
resource:list\r\n resource:list\n
portal_type:list\r\n portal_type:list\n
simulation_state:list</string> </value> simulation_state:list</string> </value>
</item> </item>
<item> <item>
......
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>from_date\r\n <value> <string>from_date\n
to_date\r\n to_date\n
node:list\r\n node:list\n
resource:list\r\n resource:list\n
portal_type:list</string> </value> portal_type:list</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>period_list:list\r\n <value> <string>period_list:list\n
node:list\r\n node:list\n
portal_type:list\r\n portal_type:list\n
resource:list</string> </value> resource:list</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
table_3</string> </value> table_3</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>reference\r\n <value> <string>reference\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>reference_list\r\n <value> <string>reference_list\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getStartDate\r\n getStartDate\n
getBirthplaceAddressCity</string> </value> getBirthplaceAddressCity</string> </value>
</item> </item>
<item> <item>
......
...@@ -20,9 +20,9 @@ ...@@ -20,9 +20,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getPortalType\r\n getPortalType\n
getTranslatedValidationStateTitle\r\n getTranslatedValidationStateTitle\n
modification_date </string> </value> modification_date </string> </value>
</item> </item>
<item> <item>
......
...@@ -20,9 +20,9 @@ ...@@ -20,9 +20,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getCreationDateIndex\r\n getCreationDateIndex\n
getFrequencyIndex\r\n getFrequencyIndex\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -8,13 +8,13 @@ ...@@ -8,13 +8,13 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getPortalType\r\n getPortalType\n
getSender\r\n getSender\n
getRecipient\r\n getRecipient\n
getCcRecipient\r\n getCcRecipient\n
getBccRecipient\r\n getBccRecipient\n
getStartDate\r\n getStartDate\n
getValidationState</string> </value> getValidationState</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,12 +8,12 @@ ...@@ -8,12 +8,12 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
table_3\r\n table_3\n
table_4\r\n table_4\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getTitle\r\n getTitle\n
getDescription</string> </value> getDescription</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
SearchableText</string> </value> SearchableText</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getTitle\r\n getTitle\n
getDescription</string> </value> getDescription</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
SearchableText</string> </value> SearchableText</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
SearchableText</string> </value> SearchableText</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
SearchableText\r\n SearchableText\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getUrlString\r\n getUrlString\n
getPortalType</string> </value> getPortalType</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
table_3\r\n table_3\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
table_3\r\n table_3\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>query_table\r\n <value> <string>query_table\n
table_0\r\n table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>resource_uid\r\n <value> <string>resource_uid\n
quantity_unit_uid</string> </value> quantity_unit_uid</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
variation_text\r\n variation_text\n
transformed_uid\r\n transformed_uid\n
transformed_variation_text</string> </value> transformed_variation_text</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>getOutcomeDescription\r\n <value> <string>getOutcomeDescription\n
uid</string> </value> uid</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>query\r\n <value> <string>query\n
date</string> </value> date</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>query\r\n <value> <string>query\n
date\r\n date\n
result</string> </value> result</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid_list\r\n <value> <string>uid_list\n
min_date</string> </value> min_date</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>getId\r\n <value> <string>getId\n
getPath\r\n getPath\n
getData\r\n getData\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>signature_path\r\n <value> <string>signature_path\n
source_path</string> </value> source_path</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,10 +14,10 @@ ...@@ -14,10 +14,10 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>strict_min_gid\r\n <value> <string>strict_min_gid\n
min_gid\r\n min_gid\n
max_gid\r\n max_gid\n
path\r\n path\n
limit</string> </value> limit</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>min_gid\r\n <value> <string>min_gid\n
max_gid\r\n max_gid\n
path</string> </value> path</string> </value>
</item> </item>
<item> <item>
......
...@@ -129,7 +129,7 @@ ...@@ -129,7 +129,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>id_accounting=""\r\n <value> <string>id_accounting=""\n
id_account=""</string> </value> id_account=""</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -26,8 +26,8 @@ ...@@ -26,8 +26,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>explanation_uid\r\n <value> <string>explanation_uid\n
resource_uid\r\n resource_uid\n
variation_text</string> </value> variation_text</string> </value>
</item> </item>
<item> <item>
......
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>context\r\n <value> <string>context\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -32,8 +32,8 @@ ...@@ -32,8 +32,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>select_expression\r\n <value> <string>select_expression\n
where_expression\r\n where_expression\n
group_by_expression</string> </value> group_by_expression</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,30 +8,30 @@ ...@@ -8,30 +8,30 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>count\r\n <value> <string>count\n
security_uid\r\n security_uid\n
portal_type\r\n portal_type\n
simulation_state\r\n simulation_state\n
validation_state\r\n validation_state\n
owner\r\n owner\n
viewable_owner\r\n viewable_owner\n
parent_uid\r\n parent_uid\n
title\r\n title\n
opportunity_state\r\n opportunity_state\n
causality_state\r\n causality_state\n
invoice_state\r\n invoice_state\n
payment_state\r\n payment_state\n
event_state\r\n event_state\n
immobilisation_state\r\n immobilisation_state\n
reference\r\n reference\n
grouping_reference\r\n grouping_reference\n
source_reference\r\n source_reference\n
destination_reference\r\n destination_reference\n
string_index\r\n string_index\n
int_index\r\n int_index\n
float_index\r\n float_index\n
has_cell_content\r\n has_cell_content\n
creation_date\r\n creation_date\n
modification_date</string> </value> modification_date</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
alarm_date</string> </value> alarm_date</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
alarm_date</string> </value> alarm_date</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>id_group\r\n <value> <string>id_group\n
id_count:int=1\r\n id_count:int=1\n
default:int=0</string> </value> default:int=0</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>id_group\r\n <value> <string>id_group\n
last_id:int=0</string> </value> last_id:int=0</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>where_expression\r\n <value> <string>where_expression\n
valuation_method</string> </value> valuation_method</string> </value>
</item> </item>
<item> <item>
......
...@@ -22,30 +22,30 @@ ...@@ -22,30 +22,30 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>from_table_list:list\r\n <value> <string>from_table_list:list\n
from_expression\r\n from_expression\n
where_expression\r\n where_expression\n
order_by_expression\r\n order_by_expression\n
group_by_expression\r\n group_by_expression\n
selection_domain_from_expression\r\n selection_domain_from_expression\n
selection_domain_where_expression\r\n selection_domain_where_expression\n
selection_domain_catalog_alias_set\r\n selection_domain_catalog_alias_set\n
select_expression\r\n select_expression\n
ignore_variation\r\n ignore_variation\n
standardize\r\n standardize\n
omit_simulation\r\n omit_simulation\n
only_accountable\r\n only_accountable\n
omit_input\r\n omit_input\n
omit_output\r\n omit_output\n
input_simulation_state:list\r\n input_simulation_state:list\n
output_simulation_state:list\r\n output_simulation_state:list\n
precision\r\n precision\n
inventory_list\r\n inventory_list\n
statistic\r\n statistic\n
convert_quantity_result\r\n convert_quantity_result\n
quantity_unit_uid\r\n quantity_unit_uid\n
stock_table_id=stock\r\n stock_table_id=stock\n
transformed_uid\r\n transformed_uid\n
transformed_variation_text</string> </value> transformed_variation_text</string> </value>
</item> </item>
<item> <item>
......
...@@ -417,28 +417,28 @@ ...@@ -417,28 +417,28 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>from_expression\r\n <value> <string>from_expression\n
from_table_list:list\r\n from_table_list:list\n
select_expression\r\n select_expression\n
where_expression\r\n where_expression\n
order_by_expression\r\n order_by_expression\n
group_by_expression\r\n group_by_expression\n
limit_expression\r\n limit_expression\n
selection_domain_from_expression\r\n selection_domain_from_expression\n
selection_domain_where_expression\r\n selection_domain_where_expression\n
selection_domain_catalog_alias_set\r\n selection_domain_catalog_alias_set\n
ignore_variation\r\n ignore_variation\n
standardize\r\n standardize\n
omit_simulation\r\n omit_simulation\n
only_accountable\r\n only_accountable\n
omit_input\r\n omit_input\n
omit_output\r\n omit_output\n
omit_asset_increase\r\n omit_asset_increase\n
omit_asset_decrease\r\n omit_asset_decrease\n
initial_running_total_quantity\r\n initial_running_total_quantity\n
initial_running_total_price\r\n initial_running_total_price\n
input_simulation_state:list\r\n input_simulation_state:list\n
output_simulation_state:list\r\n output_simulation_state:list\n
precision</string> </value> precision</string> </value>
</item> </item>
<item> <item>
......
...@@ -191,20 +191,20 @@ ...@@ -191,20 +191,20 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>from_date\r\n <value> <string>from_date\n
at_date\r\n at_date\n
to_date\r\n to_date\n
input\r\n input\n
output\r\n output\n
from_table_list:list\r\n from_table_list:list\n
where_expression\r\n where_expression\n
selection_domain_from_expression\r\n selection_domain_from_expression\n
selection_domain_where_expression\r\n selection_domain_where_expression\n
selection_domain_catalog_alias_set\r\n selection_domain_catalog_alias_set\n
order_by_expression\r\n order_by_expression\n
group_by_expression\r\n group_by_expression\n
join_on_item\r\n join_on_item\n
date_condition_in_join\r\n date_condition_in_join\n
simulation_state_list:list</string> </value> simulation_state_list:list</string> </value>
</item> </item>
<item> <item>
......
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>search_context\r\n <value> <string>search_context\n
language\r\n language\n
strict_language\r\n strict_language\n
all_languages\r\n all_languages\n
kw</string> </value> kw</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getAlarmDate</string> </value> getAlarmDate</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,18 +14,18 @@ ...@@ -14,18 +14,18 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>isDelivery\r\n <value> <string>isDelivery\n
uid\r\n uid\n
getSourceUid\r\n getSourceUid\n
getDestinationUid\r\n getDestinationUid\n
getSourceSectionUid\r\n getSourceSectionUid\n
getDestinationSectionUid\r\n getDestinationSectionUid\n
getResourceUid\r\n getResourceUid\n
getStartDate\r\n getStartDate\n
getStartDateRangeMin\r\n getStartDateRangeMin\n
getStartDateRangeMax\r\n getStartDateRangeMax\n
getStopDate\r\n getStopDate\n
getStopDateRangeMin\r\n getStopDateRangeMin\n
getStopDateRangeMax</string> </value> getStopDateRangeMax</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,16 +14,16 @@ ...@@ -14,16 +14,16 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>isMovement\r\n <value> <string>isMovement\n
isAccountable\r\n isAccountable\n
uid\r\n uid\n
getStopDate\r\n getStopDate\n
getDestinationUid\r\n getDestinationUid\n
getDestinationSectionUid\r\n getDestinationSectionUid\n
getResourceUid\r\n getResourceUid\n
getVariationText\r\n getVariationText\n
getSimulationState\r\n getSimulationState\n
getAggregateUidList\r\n getAggregateUidList\n
getMovedItemUidList</string> </value> getMovedItemUidList</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getMeasureRowList</string> </value> getMeasureRowList</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getCategoryList</string> </value> getCategoryList</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getAcquiredCategoryList</string> </value> getAcquiredCategoryList</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,38 +14,38 @@ ...@@ -14,38 +14,38 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
security_uid\r\n security_uid\n
getOwnerInfo\r\n getOwnerInfo\n
getViewPermissionOwner\r\n getViewPermissionOwner\n
getPath\r\n getPath\n
getRelativeUrl\r\n getRelativeUrl\n
getParentUid\r\n getParentUid\n
id\r\n id\n
getDescription\r\n getDescription\n
getTitle\r\n getTitle\n
meta_type\r\n meta_type\n
getPortalType\r\n getPortalType\n
getOpportunityState\r\n getOpportunityState\n
getCorporateRegistrationCode\r\n getCorporateRegistrationCode\n
getEan13Code\r\n getEan13Code\n
getSimulationState\r\n getSimulationState\n
getCausalityState\r\n getCausalityState\n
getInvoiceState\r\n getInvoiceState\n
getValidationState\r\n getValidationState\n
getPaymentState\r\n getPaymentState\n
getEventState\r\n getEventState\n
getImmobilisationState\r\n getImmobilisationState\n
getReference\r\n getReference\n
getGroupingReference\r\n getGroupingReference\n
getGroupingDate\r\n getGroupingDate\n
getSourceReference\r\n getSourceReference\n
getDestinationReference\r\n getDestinationReference\n
getStringIndex\r\n getStringIndex\n
getIntIndex\r\n getIntIndex\n
getFloatIndex\r\n getFloatIndex\n
hasCellContent\r\n hasCellContent\n
getCreationDate\r\n getCreationDate\n
getModificationDate</string> </value> getModificationDate</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
predicate_property_dict\r\n predicate_property_dict\n
isPredicate\r\n isPredicate\n
getObject</string> </value> getObject</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
isPredicate\r\n isPredicate\n
predicate_property_dict</string> </value> predicate_property_dict</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getQuantityUnitConversionDefinitionRowList\r\n getQuantityUnitConversionDefinitionRowList\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -14,37 +14,37 @@ ...@@ -14,37 +14,37 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getExplanationUid\r\n getExplanationUid\n
getResourceUid\r\n getResourceUid\n
getInventoriatedQuantity\r\n getInventoriatedQuantity\n
getSourceUid\r\n getSourceUid\n
getDestinationUid\r\n getDestinationUid\n
getSourceSectionUid\r\n getSourceSectionUid\n
getDestinationSectionUid\r\n getDestinationSectionUid\n
isMovement\r\n isMovement\n
isCancellationAmount\r\n isCancellationAmount\n
isInventoryMovement\r\n isInventoryMovement\n
getSourcePaymentUid\r\n getSourcePaymentUid\n
getDestinationPaymentUid\r\n getDestinationPaymentUid\n
getSourceFunctionUid\r\n getSourceFunctionUid\n
getDestinationFunctionUid\r\n getDestinationFunctionUid\n
getSourceProjectUid\r\n getSourceProjectUid\n
getDestinationProjectUid\r\n getDestinationProjectUid\n
getSourceFundingUid\r\n getSourceFundingUid\n
getDestinationFundingUid\r\n getDestinationFundingUid\n
getLedgerUid\r\n getLedgerUid\n
getSourcePaymentRequestUid\r\n getSourcePaymentRequestUid\n
getDestinationPaymentRequestUid\r\n getDestinationPaymentRequestUid\n
getSimulationState\r\n getSimulationState\n
getSourceInventoriatedTotalAssetPrice\r\n getSourceInventoriatedTotalAssetPrice\n
getDestinationInventoriatedTotalAssetPrice\r\n getDestinationInventoriatedTotalAssetPrice\n
getStartDate\r\n getStartDate\n
getStopDate\r\n getStopDate\n
isAccountable\r\n isAccountable\n
getPortalType\r\n getPortalType\n
getVariationText\r\n getVariationText\n
getSubVariationText\r\n getSubVariationText\n
asMovementList</string> </value> asMovementList</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,38 +8,38 @@ ...@@ -8,38 +8,38 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
order_id\r\n order_id\n
mirror_order_id\r\n mirror_order_id\n
getExplanationUid\r\n getExplanationUid\n
getResourceUid\r\n getResourceUid\n
getInventoriatedQuantity\r\n getInventoriatedQuantity\n
getSourceUid\r\n getSourceUid\n
getDestinationUid\r\n getDestinationUid\n
getSourceSectionUid\r\n getSourceSectionUid\n
getDestinationSectionUid\r\n getDestinationSectionUid\n
isMovement\r\n isMovement\n
isCancellationAmount\r\n isCancellationAmount\n
isInventoryMovement\r\n isInventoryMovement\n
getSourcePaymentUid\r\n getSourcePaymentUid\n
getDestinationPaymentUid\r\n getDestinationPaymentUid\n
getSourceFunctionUid\r\n getSourceFunctionUid\n
getDestinationFunctionUid\r\n getDestinationFunctionUid\n
getSourceProjectUid\r\n getSourceProjectUid\n
getDestinationProjectUid\r\n getDestinationProjectUid\n
getSourceFundingUid\r\n getSourceFundingUid\n
getDestinationFundingUid\r\n getDestinationFundingUid\n
getLedgerUid\r\n getLedgerUid\n
getSourcePaymentRequestUid\r\n getSourcePaymentRequestUid\n
getDestinationPaymentRequestUid\r\n getDestinationPaymentRequestUid\n
getSimulationState\r\n getSimulationState\n
getSourceInventoriatedTotalAssetPrice\r\n getSourceInventoriatedTotalAssetPrice\n
getDestinationInventoriatedTotalAssetPrice\r\n getDestinationInventoriatedTotalAssetPrice\n
getStartDate\r\n getStartDate\n
getStopDate\r\n getStopDate\n
isAccountable\r\n isAccountable\n
getPortalType\r\n getPortalType\n
getVariationText\r\n getVariationText\n
getSubVariationText</string> </value> getSubVariationText</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>subject_set_uid\r\n <value> <string>subject_set_uid\n
optimised_subject_list</string> </value> optimised_subject_list</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,10 +14,10 @@ ...@@ -14,10 +14,10 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>language\r\n <value> <string>language\n
message_context\r\n message_context\n
portal_type\r\n portal_type\n
original_message\r\n original_message\n
translated_message</string> </value> translated_message</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getUserId</string> </value> getUserId</string> </value>
</item> </item>
<item> <item>
......
...@@ -20,15 +20,15 @@ ...@@ -20,15 +20,15 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>uid\r\n <value> <string>uid\n
getLanguage\r\n getLanguage\n
getVersion\r\n getVersion\n
getRevision\r\n getRevision\n
subject_set_uid\r\n subject_set_uid\n
getEffectiveDate\r\n getEffectiveDate\n
getExpirationDate\r\n getExpirationDate\n
getCreationDateIndex\r\n getCreationDateIndex\n
getFrequencyIndex\r\n getFrequencyIndex\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>where_expression\r\n <value> <string>where_expression\n
select_expression\r\n select_expression\n
group_by_expression\r\n group_by_expression\n
from_table_list:list\r\n from_table_list:list\n
from_expression\r\n from_expression\n
limit_expression</string> </value> limit_expression</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>id_group\r\n <value> <string>id_group\n
id_count:int=1\r\n id_count:int=1\n
default:int=1</string> </value> default:int=1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,10 +14,10 @@ ...@@ -14,10 +14,10 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2\r\n table_2\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
RELATED_QUERY_SEPARATOR=" AND "</string> </value> RELATED_QUERY_SEPARATOR=" AND "</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
RELATED_QUERY_SEPARATOR=" AND "\r\n RELATED_QUERY_SEPARATOR=" AND "\n
query_table="catalog"</string> </value> query_table="catalog"</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
query_table</string> </value> query_table</string> </value>
</item> </item>
<item> <item>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1\r\n table_1\n
table_2</string> </value> table_2</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>table_0\r\n <value> <string>table_0\n
table_1</string> </value> table_1</string> </value>
</item> </item>
<item> <item>
......
...@@ -14,13 +14,13 @@ ...@@ -14,13 +14,13 @@
</item> </item>
<item> <item>
<key> <string>arguments_src</string> </key> <key> <string>arguments_src</string> </key>
<value> <string>where_expression\r\n <value> <string>where_expression\n
select_expression\r\n select_expression\n
group_by_expression\r\n group_by_expression\n
from_table_list:list\r\n from_table_list:list\n
from_expression\r\n from_expression\n
sort_on\r\n sort_on\n
limit_expression\r\n limit_expression\n
search_mode</string> </value> search_mode</string> </value>
</item> </item>
<item> <item>
......
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