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