Commit bd734d65 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

keep the obsoleted argument for safety.

parent 80d332d4
...@@ -159,7 +159,8 @@ class AmountGeneratorMixin: ...@@ -159,7 +159,8 @@ class AmountGeneratorMixin:
security.declareProtected(Permissions.AccessContentsInformation, security.declareProtected(Permissions.AccessContentsInformation,
'getGeneratedAmountList') 'getGeneratedAmountList')
def getGeneratedAmountList(self, amount_list=None, rounding=False, def getGeneratedAmountList(self, amount_list=None, rounding=False,
amount_generator_type_list=None): amount_generator_type_list=None,
generate_empty_amounts=True):
""" """
Implementation of a generic transformation algorithm which is Implementation of a generic transformation algorithm which is
applicable to payroll, tax generation and BOMs. Return the applicable to payroll, tax generation and BOMs. Return the
...@@ -374,7 +375,8 @@ class AmountGeneratorMixin: ...@@ -374,7 +375,8 @@ class AmountGeneratorMixin:
security.declareProtected(Permissions.AccessContentsInformation, security.declareProtected(Permissions.AccessContentsInformation,
'getAggregatedAmountList') 'getAggregatedAmountList')
def getAggregatedAmountList(self, amount_list=None, rounding=False, def getAggregatedAmountList(self, amount_list=None, rounding=False,
amount_generator_type_list=None): amount_generator_type_list=None,
generate_empty_amounts=True):
""" """
Implementation of a generic transformation algorith which is Implementation of a generic transformation algorith which is
applicable to payroll, tax generation and BOMs. Return the applicable to payroll, tax generation and BOMs. Return the
......
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