Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
e0c6feb3
Commit
e0c6feb3
authored
Jan 27, 2021
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_accounting: (AccountingBuilder) Now Invoice Lines contains dates
parent
3574c2fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
master/bt5/slapos_accounting/TestTemplateItem/portal_components/test.erp5.testSlapOSAccountingBuilder.py
...ortal_components/test.erp5.testSlapOSAccountingBuilder.py
+7
-5
No files found.
master/bt5/slapos_accounting/TestTemplateItem/portal_components/test.erp5.testSlapOSAccountingBuilder.py
View file @
e0c6feb3
...
...
@@ -18,7 +18,7 @@ class TestSlapOSSalePackingListBuilder(SlapOSTestCaseMixin):
self
.
assertNotEqual
(
None
,
simulation_movement
.
getDeliveryValue
())
def
checkDeliveryLine
(
self
,
simulation_movement
,
delivery_line
,
line_portal_type
,
cell_portal_type
):
line_portal_type
,
cell_portal_type
,
has_date_on_line
):
self
.
assertEqual
(
line_portal_type
,
delivery_line
.
getPortalType
())
self
.
assertSameSet
([
'use/trade/sale'
,
...
...
@@ -35,8 +35,8 @@ class TestSlapOSSalePackingListBuilder(SlapOSTestCaseMixin):
delivery_line
.
getQuantity
())
self
.
assertEqual
(
simulation_movement
.
getPrice
(),
delivery_line
.
getPrice
())
self
.
assert
False
(
delivery_line
.
hasStartDate
()
)
self
.
assert
False
(
delivery_line
.
hasStopDate
()
)
self
.
assert
Equal
(
delivery_line
.
hasStartDate
(),
has_date_on_line
)
self
.
assert
Equal
(
delivery_line
.
hasStopDate
(),
has_date_on_line
)
self
.
assertEqual
([],
delivery_line
.
contentValues
(
portal_type
=
cell_portal_type
))
self
.
assertSameSet
([
simulation_movement
.
getRelativeUrl
()],
...
...
@@ -128,7 +128,8 @@ class TestSlapOSSalePackingListBuilder(SlapOSTestCaseMixin):
delivery_line_2
.
getRelativeUrl
())
line_kw
=
dict
(
line_portal_type
=
'Sale Packing List Line'
,
cell_portal_type
=
'Sale Packing List Cell'
)
cell_portal_type
=
'Sale Packing List Cell'
,
has_date_on_line
=
False
)
self
.
checkDeliveryLine
(
simulation_movement_1
,
delivery_line_1
,
**
line_kw
)
self
.
checkDeliveryLine
(
simulation_movement_2
,
delivery_line_2
,
**
line_kw
)
...
...
@@ -325,7 +326,8 @@ class TestSlapOSSaleInvoiceBuilder(TestSlapOSSalePackingListBuilder):
invoice_line_1_bis
.
getParentValue
())
line_kw
=
dict
(
line_portal_type
=
'Invoice Line'
,
cell_portal_type
=
'Invoice Cell'
)
cell_portal_type
=
'Invoice Cell'
,
has_date_on_line
=
True
)
self
.
checkDeliveryLine
(
invoice_movement_1
,
invoice_line_1
,
**
line_kw
)
self
.
checkDeliveryLine
(
invoice_movement_1_bis
,
invoice_line_1_bis
,
**
line_kw
)
...
...
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