Your have asked a very genuine query:
As you said in php we follow this pattern while making the routes and controllers:
http://host/ {controller} / {method} / {parameter}
.
Main objective for making such pattern is to make the unique URI for
each resource.
Here in odoo there is no as such restrication about placing controller/method in the url route.
odoo give you the freedom/power to make the route and as you know the power always come with responsibility,
so its the developer responsibility to ensure that no two route conflict with each other.
At the same time the url should SEO friendly too .
In Our team we usually flow module/model/method .
For example :
i have A:
- module name
academy
- module have a model teachers[
_name='academy.teacher'
]
- module have a model students[
_name='academy.student'
]
- module have a model courses[
_name='academy.course'
]
- For displaying the list of teachers in the grid view we create the
url pattern like:
/academy/teachers
- For displaying the list the individual teacher we create the url
pattern like:
/academy/teacher
- for creating the teacher:
/academy/teacher/create
- For displaying the list of students in the grid view we create the
url pattern like :
/academy/students
- For displaying the list the individual teacher we create the url
pattern like :
/academy/student
- For displaying the list of courses in the grid view we create the
url pattern like
/academy/courses
- For displaying the list the individual teacher we create the url
pattern like:
/academy/course
Let's a an live example:
For displaying the order /shop/cart
@http.route(['/shop/cart'], type='http', auth="public", methods=['POST'], website=True)
def cart(self, product_id, add_qty=1, set_qty=0, **kw):
pass
For updating the order /shop/cart/update
:
@http.route(['/shop/cart/update'], type='http', auth="public", methods=['POST'], website=True)
def cart_update(self, product_id, add_qty=1, set_qty=0, **kw):
pass
In case if you want to create a json request handler type='json'
for
shop cart update /shop/cart/update_json
@http.route(['/shop/cart/update_json'], type='json', auth="public", methods=['POST'], website=True)
def cart_update_json(self, product_id, line_id=None, add_qty=None, set_qty=None, display=True):
pass
As you said you are a fresher i would also suggest you few useful link :
- FOR ODOO GuideLine.
- FOR ODOO WEBSITE MODULE
- FOR ODOO Http handler
- FOR ODOO BACKED MODULE
Hope this may help you in understating the URL pattern of ODOO.