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
247632ab
Commit
247632ab
authored
5 years ago
by
Fabian Krüger
Browse files
Options
Downloads
Patches
Plain Diff
update backend: now support annullateCharge function
parent
e18b43ac
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
store/backend.py
+23
-4
23 additions, 4 deletions
store/backend.py
store/models.py
+4
-0
4 additions, 0 deletions
store/models.py
store/store_exceptions.py
+5
-0
5 additions, 0 deletions
store/store_exceptions.py
with
32 additions
and
4 deletions
store/backend.py
+
23
−
4
View file @
247632ab
...
...
@@ -172,15 +172,14 @@ class PurchaseLogic:
# 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
'
]
now
=
datetime
.
now
()
time_limit
=
datetime
.
now
()
-
timedelta
(
minutes
=
annullable_time
)
timezone
=
pytz
.
timezone
(
'
Europe/Berlin
'
)
time_limit
=
timezone
.
localize
(
time_limit
)
print
(
purchase_id
)
purchase
=
list
(
Purchase
.
objects
.
filter
(
id
=
purchase_id
))[
0
]
purchase_time
=
purchase
.
time_stamp
print
(
"
purchase_id:
"
,
purchase
.
id
,
"
time_limit:
"
,
time_limit
,
"
purchase_time
"
,
purchase_time
,
"
valid:
"
,
time_limit
>
purchase_time
)
if
time_limit
>=
purchase_time
:
raise
PurchaseNotAnnullable
()
...
...
@@ -188,7 +187,6 @@ class PurchaseLogic:
user
=
list
(
User
.
objects
.
filter
(
id
=
purchase
.
user
.
id
))[
0
]
purchase
.
annullate
()
user
.
updateMoney
(
purchase
.
price
)
print
(
"
user_id:
"
,
user
.
id
,
"
purchase_id:
"
,
purchase
.
id
,
"
user.money:
"
,
user
.
money
)
class
ChargeLogic
:
...
...
@@ -253,3 +251,24 @@ class ChargeLogic:
@staticmethod
def
__updateUserMoney
(
user
,
amount
):
user
.
updateMoney
(
amount
)
@staticmethod
def
annullateCharge
(
charge_id
):
# 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
'
]
now
=
datetime
.
now
()
time_limit
=
datetime
.
now
()
-
timedelta
(
minutes
=
annullable_time
)
timezone
=
pytz
.
timezone
(
'
Europe/Berlin
'
)
time_limit
=
timezone
.
localize
(
time_limit
)
charge
=
list
(
Charge
.
objects
.
filter
(
id
=
charge_id
))[
0
]
if
time_limit
>
charge
.
time_stamp
:
raise
ChargeNotAnnullable
()
with
transaction
.
atomic
():
user
=
list
(
User
.
objects
.
filter
(
id
=
charge
.
user
.
id
))[
0
]
charge
.
annullate
()
user
.
updateMoney
((
-
1
)
*
charge
.
amount
)
This diff is collapsed.
Click to expand it.
store/models.py
+
4
−
0
View file @
247632ab
...
...
@@ -40,6 +40,10 @@ class Charge(models.Model):
amount
=
models
.
DecimalField
(
max_digits
=
6
,
decimal_places
=
2
)
annullated
=
models
.
BooleanField
(
null
=
False
)
def
annullate
(
self
):
self
.
annullated
=
True
self
.
save
()
class
Purchase
(
models
.
Model
):
token
=
models
.
BigIntegerField
(
null
=
False
,
unique
=
True
)
user
=
models
.
ForeignKey
(
'
user
'
,
on_delete
=
models
.
CASCADE
,
null
=
False
)
...
...
This diff is collapsed.
Click to expand it.
store/store_exceptions.py
+
5
−
0
View file @
247632ab
...
...
@@ -11,3 +11,8 @@ class NotAnnullable(Exception):
class
PurchaseNotAnnullable
(
Exception
):
def
__init__
(
self
):
super
().
__init__
(
"
Einkauf ist nicht annullierbar!
"
)
class
ChargeNotAnnullable
(
Exception
):
def
__init__
(
self
):
super
().
__init__
(
"
Aufladung ist nicht annullierbar
"
)
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