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
Titouan Soulard
slapos.core
Commits
f14d5aa9
Commit
f14d5aa9
authored
Sep 30, 2020
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_crm: Invalidate Regularisation Request with the same rule of
Person_checkToCreateRegularisationRequest
parent
95bed802
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm/RegularisationRequest_invalidateIfPersonBalanceIsOk.py
...rm/RegularisationRequest_invalidateIfPersonBalanceIsOk.py
+19
-3
No files found.
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm/RegularisationRequest_invalidateIfPersonBalanceIsOk.py
View file @
f14d5aa9
...
@@ -5,8 +5,24 @@ if REQUEST is not None:
...
@@ -5,8 +5,24 @@ if REQUEST is not None:
state
=
context
.
getSimulationState
()
state
=
context
.
getSimulationState
()
person
=
context
.
getSourceProjectValue
(
portal_type
=
"Person"
)
person
=
context
.
getSourceProjectValue
(
portal_type
=
"Person"
)
if
(
state
!=
'suspended'
)
or
\
if
(
state
!=
'suspended'
)
or
\
(
person
is
None
)
or
\
(
person
is
None
):
(
int
(
person
.
Entity_statOutstandingAmount
())
>
0
):
return
return
else
:
outstanding_amount
=
person
.
Entity_statSlapOSOutstandingAmount
()
# Amount to be ignored, as it comes from the first invoice generated
# after the subscription. We do not take it into account as no service
# was provided yet.
unpaid_payment_amount
=
0
for
payment
in
person
.
Person_getSubscriptionRequestFirstUnpaidPaymentList
():
unpaid_payment_amount
+=
payment
.
PaymentTransaction_getTotalPayablePrice
()
# It can't be smaller, we are considernig all open invoices are from unpaid_payment_amount
if
round
(
float
(
outstanding_amount
),
2
)
==
round
(
-
float
(
unpaid_payment_amount
),
2
):
context
.
invalidate
(
comment
=
"Automatically disabled as balance is %s"
%
person
.
Entity_statOutstandingAmount
())
context
.
invalidate
(
comment
=
"Automatically disabled as balance is %s"
%
person
.
Entity_statOutstandingAmount
())
if
(
int
(
outstanding_amount
)
>
0
):
return
context
.
invalidate
(
comment
=
"Automatically disabled as balance is %s"
%
person
.
Entity_statOutstandingAmount
())
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