Commit eb74578c authored by Vincent Pelletier's avatar Vincent Pelletier

AccountingTransactionModule_getDetailedAgedBalanceLineList: Stop using Query.

Also, drop whitespaces at end of line.
parent 15d4b9dd
from Products.ZSQLCatalog.SQLCatalog import Query, ComplexQuery from Products.ZSQLCatalog.SQLCatalog import SimpleQuery, ComplexQuery
from Products.PythonScripts.standard import Object from Products.PythonScripts.standard import Object
portal = context.getPortalObject() portal = context.getPortalObject()
...@@ -13,8 +13,8 @@ section_uid = portal.Base_getSectionUidListForSectionCategory( ...@@ -13,8 +13,8 @@ section_uid = portal.Base_getSectionUidListForSectionCategory(
section_category, section_category_strict) section_category, section_category_strict)
grouping_query = ComplexQuery( grouping_query = ComplexQuery(
Query(grouping_reference=None), SimpleQuery(grouping_reference=None),
Query(grouping_date=at_date, range="min"), SimpleQuery(grouping_date=at_date, comparison_operator=">="),
logical_operator="OR") logical_operator="OR")
account_number_memo = {} account_number_memo = {}
......
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