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

accounting: fix the way to get precision in Alarm_checkPayableAndReceivableAccountGrouped

parent e5c1992b
...@@ -70,8 +70,10 @@ section_category_strict = context.getProperty(\'section_category_strict\')\n ...@@ -70,8 +70,10 @@ section_category_strict = context.getProperty(\'section_category_strict\')\n
section_uid_list = portal.Base_getSectionUidListForSectionCategory(section_category, section_category_strict)\n section_uid_list = portal.Base_getSectionUidListForSectionCategory(section_category, section_category_strict)\n
assert section_uid_list\n assert section_uid_list\n
\n \n
precision = portal.Base_getCurrencyForSectionCategory(section_category, section_category_strict) or 3\n precision = 3\n
\n section_currency = portal.Base_getCurrencyForSectionCategory(section_category, section_category_strict)\n
if section_currency:\n
precision = context.getQuantityPrecisionFromResource(section_currency, precision)\n
\n \n
search_params = dict(\n search_params = dict(\n
node_category=(\'account_type/asset/receivable\',\n node_category=(\'account_type/asset/receivable\',\n
......
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