Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Kaffeekasse 2000XT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lehrstuhl für Informatik 4 (Systemsoftware)
PASST
Projekte
Kaffeekasse 2000XT
Commits
1644c12a
Commit
1644c12a
authored
5 years ago
by
Lukas Schneider
Browse files
Options
Downloads
Patches
Plain Diff
Add token to revert method bodies. Logic is still TODO
parent
0ccd1ea0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
store/backend.py
+8
-8
8 additions, 8 deletions
store/backend.py
with
8 additions
and
8 deletions
store/backend.py
+
8
−
8
View file @
1644c12a
...
...
@@ -168,7 +168,7 @@ class PurchaseLogic:
@config-param annullable_time: depends on T_ANNULLABLE_PURCHASE_M
"""
@staticmethod
def
annullatePurchase
(
purchase_id
):
def
annullatePurchase
(
purchase_id
,
token
):
# warning: summertime/wintertime currently is not respected in the following calculations. This should be
# implemented to avoid non-annullable transactions in the lost hour between summer- and wintertime
annullable_time
=
config
[
'
T_ANNULLABLE_PURCHASE_M
'
]
...
...
@@ -182,7 +182,7 @@ class PurchaseLogic:
purchase_time
=
purchase
.
time_stamp
if
time_limit
>=
purchase_time
:
raise
PurchaseNotAnnullable
()
with
transaction
.
atomic
():
user
=
list
(
User
.
objects
.
filter
(
id
=
purchase
.
user
.
id
))[
0
]
purchase
.
annullate
()
...
...
@@ -190,17 +190,17 @@ class PurchaseLogic:
class
ChargeLogic
:
"""
Returns a list of the last charges of a specified user: [{
'
id
'
: ...,
'
amount
'
: Decimal(...,...),
'
annullated
'
: ...,
'
time_stamp
'
: ...,
'
annullable
'
: ...}]
@param user_id: the id of the specified user
@config-param max_charges: Number of charges to be shown. Depends on N_LAST_CHARGES
@config-param annullable_time: time to annullate a charge. Depends on T_ANNULLABLE_CHARGE_M
@config-param annullable_time: time to annullate a charge. Depends on T_ANNULLABLE_CHARGE_M
"""
@staticmethod
def
getLastChargesList
(
user_id
):
max_charges
=
config
[
'
N_LAST_CHARGES
'
]
max_charges
=
config
[
'
N_LAST_CHARGES
'
]
annullable_time
=
config
[
'
T_ANNULLABLE_CHARGE_M
'
]
charges
=
Charge
.
objects
.
filter
(
user
=
user_id
).
values
(
'
id
'
,
'
amount
'
,
'
annullated
'
,
'
time_stamp
'
)
...
...
@@ -223,9 +223,9 @@ class ChargeLogic:
charge
.
update
({
'
annullable
'
:
True
})
return
charges
"""
Executes the charge logic.
Executes the charge logic.
@param user_id: id of the user that charges
@param amount: the amount of money to be charged
@param token: the unique token got by getToken()
...
...
@@ -253,7 +253,7 @@ class ChargeLogic:
user
.
updateMoney
(
amount
)
@staticmethod
def
annullateCharge
(
charge_id
):
def
annullateCharge
(
charge_id
,
token
):
# warning: summertime/wintertime currently is not respected in the following calculations. This should be
# implemented to avoid non-annullable transactions in the lost hour between summer- and wintertime
annullable_time
=
config
[
'
T_ANNULLABLE_CHARGE_M
'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment