Hello,
I need to know that how to call function through URL?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello,
I need to know that how to call function through URL?
You can call a funtion from url using http.route
for example call a function from url www.domain.com/web/my/home
@http.route(['/my/home'], type='http', auth="public", website=True)
def your_function(self, **kw):
# your code
or if you want to call a function defined inside a model use this inside your function
request.env['your.model'].function_name()
Thank You Mohammed
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
7
9月 21
|
28283 | ||
|
3
9月 22
|
30657 | ||
|
2
12月 24
|
2106 | ||
|
1
2月 22
|
3926 | ||
|
1
2月 22
|
6809 |