Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
fast-food
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Мырзабеков Бекайдар
fast-food
Commits
889a6da3
Commit
889a6da3
authored
Nov 28, 2023
by
Мырзабеков Бекайдар
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added accepted order status
parent
58915028
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
2 deletions
+35
-2
ctrl.py
src/app/api/order/ctrl.py
+9
-0
routes.py
src/app/api/order/routes.py
+7
-1
schemas.py
src/app/api/order/schemas.py
+5
-0
services.py
src/app/api/order/services.py
+14
-1
No files found.
src/app/api/order/ctrl.py
View file @
889a6da3
from
uuid
import
UUID
from
tortoise.exceptions
import
ValidationError
from
..base
import
BaseController
...
...
@@ -17,3 +19,10 @@ class OrderController(BaseController):
except
ValidationError
as
e
:
raise
http_exc
.
HTTPBadRequestException
(
detail
=
f
"Validation error: {str(e)}"
)
async
def
accepted_order
(
self
,
id
:
UUID
):
try
:
return
await
self
.
order_service
.
accepted_order
(
id
)
except
common_exc
.
UpdateException
as
e
:
raise
http_exc
.
HTTPBadRequestException
(
detail
=
str
(
e
))
src/app/api/order/routes.py
View file @
889a6da3
import
fastapi
as
fa
from
.ctrl
import
OrderController
from
.schemas
import
OrderPostSchema
from
.schemas
import
OrderPostSchema
,
OrderIdSchema
,
OrderStatusSchema
router
=
fa
.
APIRouter
(
prefix
=
'/orders'
,
tags
=
[
'Order'
])
...
...
@@ -11,3 +11,9 @@ ctrl = OrderController()
@
router
.
post
(
''
)
async
def
create_order
(
body
:
OrderPostSchema
):
return
await
ctrl
.
create
(
**
body
.
model_dump
(
exclude_none
=
True
))
@
router
.
put
(
'/accepted'
)
async
def
accepted_order
(
body
:
OrderIdSchema
):
order
=
await
ctrl
.
accepted_order
(
**
body
.
model_dump
(
exclude_none
=
True
))
return
OrderStatusSchema
.
model_validate
(
order
)
src/app/api/order/schemas.py
View file @
889a6da3
...
...
@@ -24,3 +24,8 @@ class OrderGetSchema(OrderIdSchema):
status
:
str
total
:
float
products
:
List
[
ProductOrderGetSchema
]
class
OrderStatusSchema
(
BaseModel
):
id
:
UUID
status
:
str
src/app/api/order/services.py
View file @
889a6da3
from
uuid
import
UUID
from
db.repositories.order
import
OrderRepository
from
db.repositories.product
import
ProductRepository
from
.schemas
import
OrderGetSchema
from
exceptions
import
common
as
common_exc
,
http
as
http_exc
from
db.models
import
ProductOrder
from
db.models
import
ProductOrder
,
Order
class
OrderService
:
...
...
@@ -40,3 +42,14 @@ class OrderService:
}
return
OrderGetSchema
.
model_validate
(
order_data
)
async
def
accepted_order
(
self
,
id
:
UUID
):
try
:
order
=
await
self
.
order_repository
.
get
(
id
=
id
)
except
common_exc
.
NotFoundException
as
e
:
raise
http_exc
.
HTTPBadRequestException
(
detail
=
str
(
e
))
order
.
status
=
Order
.
StatusEnum
.
CONFIRMED
await
order
.
save
()
return
{
'id'
:
order
.
id
,
'status'
:
order
.
status
}
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