跳至内容
菜单
此问题已终结
2 回复
1642 查看

I just learned about Odoo, I downloaded Odoo 16 (Open Source), I want to learn about the website module so from the code how can I know how many tables are in the module and what are the functions of the module

形象
丢弃
最佳答案

Hello @TrungChien


Hope you are doing well.


Uses of module Website in odoo:

Module       uses

website ==> for website building

website_sale ==>For E-commerce (Selling products on website)

website_slides ==> for managing and publish E-learning material

website_event ==> for publishing Events and selling the tickets

social ==> To manage website social media and website visitor

website_hr_recruitment ==> for managing the process of online hiring

im_liveshat ==> for a chat with a website visitor


There are many tables available in the Odoo website.


You can reach out all of the odoo website-related information by going through this link:


https://www.odoo.com/documentation/16.0/applications/websites/website.html


Also you can build your website using this documentation's following steps 


https://www.odoo.com/documentation/16.0/developer/tutorials/website.html


I hope this will help you.

Thanks & Regards,
Email: odoo@aktivsoftware.com     

Skype: kalpeshmaheshwari

形象
丢弃
最佳答案

Hi,

You can see the tables and functions of the website module from the code itself in the website module directory,

Follow the path 
Odoo Project -> addons - > website -> models

From the model's directory, you can find each table and functions associated with the table by opening the file, the tables are defined by _name or _inherit inside the class or you can find the tables directly from the pgAdmin database.


Hope it helps

形象
丢弃