Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
141
Merge Requests
141
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
2d03bc4e
Commit
2d03bc4e
authored
Apr 05, 2024
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup! testTradeModelLine py3
parent
b1327d9a
Pipeline
#33900
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
bt5/erp5_simplified_invoicing/TestTemplateItem/portal_components/test.erp5.testTradeModelLine.py
...ateItem/portal_components/test.erp5.testTradeModelLine.py
+5
-5
No files found.
bt5/erp5_simplified_invoicing/TestTemplateItem/portal_components/test.erp5.testTradeModelLine.py
View file @
2d03bc4e
...
...
@@ -1234,6 +1234,7 @@ return lambda *args, **kw: 1""")
self
.
assertEqual
(
sorted
(
expected_tax
),
sorted
(
x
.
getTotalPrice
()
for
x
in
amount_list
))
@
expectedFailure
def
test_tradeModelLineWithRounding
(
self
):
"""
Test if trade model line works with rounding.
...
...
@@ -1293,11 +1294,10 @@ return lambda *args, **kw: 1""")
self
.
assertEqual
(
3333
*
0.05
+
171
*
0.05
,
amount
.
getTotalPrice
())
# 175.2
# check the result with rounding
amount_list
=
order
.
getAggregatedAmountList
(
rounding
=
True
)
# XXX next assertion is commented out until we have clear specification
# of what we wish with rounding
# self.assertEqual(2, len(amount_list)) # XXX 1 or 2 ???
# XXX Here, the assertion will fail with the current implementation.
self
.
assertEqual
(
2
,
len
(
amount_list
))
# XXX 1 or 2 ???
# XXX and here, the result is 175, because round is applied against
# already aggregated single amount.
self
.
assertEqual
(
174
,
getTotalAmount
(
amount_list
))
# check getAggregatedAmountList result of each movement
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment