Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PizzaPalace
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TheJoeCoder
PizzaPalace
Commits
0ac8e05c
Verified
Commit
0ac8e05c
authored
Jul 18, 2023
by
TheJoeCoder
Browse files
Options
Downloads
Patches
Plain Diff
[Frontend] Fix cart add endpoint
parent
9f1304ab
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
client/pizza_palace.py
+2
-1
2 additions, 1 deletion
client/pizza_palace.py
with
2 additions
and
1 deletion
client/pizza_palace.py
+
2
−
1
View file @
0ac8e05c
...
@@ -144,7 +144,8 @@ def order_item(item, people, stuffed_crust):
...
@@ -144,7 +144,8 @@ def order_item(item, people, stuffed_crust):
if
item_dict
==
{}:
if
item_dict
==
{}:
messagebox
.
showerror
(
"
Error
"
,
"
Could not find pizza
"
)
messagebox
.
showerror
(
"
Error
"
,
"
Could not find pizza
"
)
return
return
res
=
requests
.
post
(
get_endpoint
(
"
/cart/add
"
),
json
=
{
"
cart_id
"
:
cart_id
,
"
cart_key
"
:
cart_key
,
"
pizza_id
"
:
item
,
"
people
"
:
people
,
"
stuffed_crust
"
:
stuffed_crust
})
res
=
requests
.
post
(
get_endpoint
(
"
/cart/add
"
),
json
=
{
"
id
"
:
cart_id
,
"
key
"
:
cart_key
,
"
type
"
:
item
,
"
num_people
"
:
people
,
"
stuffed_crust
"
:
stuffed_crust
})
print
(
res
.
text
)
if
(
res
.
status_code
==
200
):
if
(
res
.
status_code
==
200
):
res_json
=
res
.
json
()
res_json
=
res
.
json
()
if
(
res_json
!=
None
and
res_json
[
"
status
"
]
==
200
):
if
(
res_json
!=
None
and
res_json
[
"
status
"
]
==
200
):
...
...
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
sign in
to comment