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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.core
Commits
3f51a2ca
Commit
3f51a2ca
authored
Feb 17, 2021
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_subscription_request: Ignore refund lines on the Report.
parent
05a8e283
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
master/bt5/slapos_subscription_request/SkinTemplateItem/portal_skins/slapos_subscription_request/SubscriptionRequest_getRelatedAccountingTransactionList.py
...ubscriptionRequest_getRelatedAccountingTransactionList.py
+11
-3
No files found.
master/bt5/slapos_subscription_request/SkinTemplateItem/portal_skins/slapos_subscription_request/SubscriptionRequest_getRelatedAccountingTransactionList.py
View file @
3f51a2ca
...
...
@@ -19,7 +19,7 @@ aggregated_spl_list = portal.portal_catalog(
portal_type
=
"Sale Packing List"
,
simulation_state
=
"delivered"
,
# Hardcoded Value to only recover recent values
# Replace to acquite value from the template
# Replace to acquite value from the template
source_section_uid
=
context
.
organisation_module
.
rapidspace
.
getUid
(),
destination_section_uid
=
context
.
getDestinationSectionUid
(),
default_specialise_uid
=
specialise_uid
)
...
...
@@ -30,7 +30,6 @@ for aggregated_sale_packing_list in aggregated_spl_list:
portal_type
=
"Sale Invoice Transaction"
)
assert
len
(
related_invoice_list
)
==
1
,
aggregated_sale_packing_list
.
absolute_url
()
invoice
=
related_invoice_list
[
0
]
invoice_dict
=
dict
(
...
...
@@ -51,7 +50,16 @@ for aggregated_sale_packing_list in aggregated_spl_list:
min_start_date
=
None
max_stop_date
=
None
quantity
=
0
for
sale_packing_list_line
in
portal
.
portal_catalog
(
**
search_kw
):
delivery_line_list
=
portal
.
portal_catalog
(
**
search_kw
)
if
len
(
delivery_line_list
)
==
0
:
if
[
i
for
i
in
aggregated_sale_packing_list
.
objectValues
()
if
i
.
getResource
()
!=
"service_module/slapos_reservation_refund"
]:
raise
ValueError
(
aggregated_sale_packing_list
.
getRelativeUrl
())
continue
for
sale_packing_list_line
in
delivery_line_list
:
if
not
min_start_date
:
min_start_date
=
sale_packing_list_line
.
getStartDate
()
else
:
...
...
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