In Odoo 18, URLs and routing are key components of its web framework, used to handle HTTP requests. Understanding them is essential for customizing Odoos behavior, creating new pages, and integrating with external systems.
URLs and Routing in the Odoo 17 Website AppCeline George
油
In Odoo, Controllers are used to configure front-end modules under Website. Using controllers, we can specify the URL to the link the web pages.
For that, we need to setup the controller in our module and create an xml template to load the data in the web page.
When building a website, URLs and routing play a crucial role in ensuring effective navigation and content delivery. URLs (Uniform Resource Locators) are the web addresses that users enter into their browsers to access specific pages or resources on a website. Routing, on the other hand, refers to the process of directing incoming requests to the appropriate pages or resources based on the URL.In the context of building a website, understanding URLs and routing involves creating a logical structure for organizing web pages and determining how users can access them. This includes defining URL patterns, establishing routes, and implementing appropriate handling mechanisms for different types of requests.
How to Add Pagination in Website portal in OdooCeline George
油
In the context of an Odoo website portal, pagination refers to the process of dividing a large set of records into smaller, more manageable pages and providing navigation controls to move between these pages. This is essential for enhancing the user experience by preventing long loading times and making data presentation more manageable.
How to Create a Dynamic Snippet in Odoo 17Celine George
油
Dynamic snippets in Odoo 17 are modular components that allow for the dynamic display of content on web pages. These snippets can be tailored to showcase various types of information, such as product listings, testimonials, or promotional banners.
How to Create a Custom Web Form View in Odoo 17Celine George
油
Creating a custom web form view in Odoo 17 involves several key steps: defining the model, creating the view, setting up actions and menus, and defining the template and controller. Heres a structured overview to guide you through the process:
Django is a Python web framework that encourages rapid development and clean design. It includes an ORM, URL routing, templates, internationalization support, caching, authentication, and an admin interface. Django uses the MVT architecture, with Models handling data, Views returning responses, and Templates rendering output. Requests go through the URL dispatcher to Views, which can retrieve Model data and pass it to Templates to generate responses. The framework provides tools to define Models, URLs, Views and Templates to build applications.
How to Create a Theme Module in Odoo 17 - Odoo 17 際際滷sCeline George
油
For Odoo website, there will be a theme set by default. In Odoo 17, this will be done by odoo automatically once we install the website module from the Apps list and just clicking on the Activate button.
How to Create & Manage a Dashboard Using OWL in Odoo 17Celine George
油
A dashboard in Odoo is a user interface feature that provides a visual overview of key performance indicators (KPIs), metrics, and important data points relevant to a business. Dashboards are designed to present this information in an easy-to-read format, often using charts, graphs, and tables, to help users quickly assess the state of their business and make informed decisions.
This document introduces Django, an open-source Python web framework. It describes Django's key features like rapid development, reusable apps, an admin interface, and templates. It explains Django's model-view-template architecture, including models for defining data, views for business logic, URLs for routing, and templates for presentation. It provides examples of defining a blog application in Django with models, views, URLs, and templates.
How to add menu in Odoo 17 Website - Odoo 17 際際滷sCeline George
油
Creating a menu in Odoo from website front end is not a big deal. From the backend, website development involves using Odoo's website builder tools and some customization.
How to Store Data on the Odoo 17 WebsiteCeline George
油
Here we are going to discuss how to store data in Odoo 17 Website.
It includes defining a model with few fields in it. Add demo data into the model using data directory. Also using a controller, pass the values into the template while rendering it and display the values in the website.
This document summarizes key aspects of using the Django web framework:
1) It describes how to start a new Django project, create apps, define models, migrate the database, and run the development server.
2) It explains how to build templates, map URLs, write views, and use templates to display data on pages.
3) It covers template inheritance, using parameters from URLs in views, and accessing context data from views in templates.
How to add Many2Many fields in odoo website form.pptxCeline George
油
This feature dynamically links various pieces of data, creating complex relationships between records. Users can enjoy a more personalized and engaging experience on your website. For instance, when a user interacts with one record, related records are automatically shown.
How to Install Custom Module in Odoo 17 - Odoo 17 際際滷sCeline George
油
In Odoo, a custom module is a self-contained package of code that extends or modifies the standard functionality of the Odoo system. Custom modules are used to implement additional features, business logic, or changes to the user interface that are specific to an organization's needs.
1. The document provides an overview of Django, an open-source web framework. It discusses Django's MVT architecture, installing Django, creating projects and apps, models, views, templates, and customizing the admin interface.
2. Key aspects covered include using models to define the database structure, views to contain logic and handle requests/responses, templates to separate design from code, and the admin interface to manage data.
3. The document demonstrates how to configure URLs and associate them with views, build templates that use variables and logic, and customize the admin panel through model registration and custom classes.
Michele Gallotti presenta la struttura di un progetto base di Polymer 3.0, insieme a PUG e Typescript e illustrer le basi concettuali di Polymer 3.0 con un semplice widget.
Le slide sono rivolte a chiunque voglia conoscere Polymer 3.0 e le sue potenzialit.
This document provides an introduction to web development with the Django framework. It outlines Django's project structure, how it handles data with models, and its built-in admin interface. It also covers views, templates, forms, and generic views. Django allows defining models as Python classes to represent the database structure. It provides a production-ready admin interface to manage data. URLs are mapped to views, which can render templates to generate responses. Forms validate and display data. Generic views handle common tasks like displaying object lists.
How to Add Sort Option in Website Portal Odoo 17Celine George
油
Odoo provides a versatile approach to improving the user interface on our website portal by enabling the addition of sorting features customized to our requirements.
Client Actions In Odoo 17 - Odoo 17 際際滷sCeline George
油
In Odoo, a client action refers to a set of actions or operations that are executed on the client side of the application. Odoo is an open-source ERP (Enterprise Resource Planning) and business management software, and it uses a client-server architecture. The client-side actions in Odoo are typically defined using JavaScript and XML.
Creating Single Page Web App using Backbone JSAkshay Mathur
油
This was presented during the workshop on the topic. The complete code of the app that was created during the workshop is available at Github https://github.com/mathurakshay/explore-venues
Get things done with Yii - quickly build webapplicationsGiuliano Iacobelli
油
Lesson teached at Universit di Roma Tre - Software Engineering course.
Web is plenty of amazing tools used daily by millions of people. A good idea can turn to be a highly profitable business if well executed. Yii framework is an ideal tool to build in short time an MVP of your product to start as soon as possible to find your market fit. Here follows some infos about the framework and steps on how to build a simple blog over Yii.
This document provides instructions for setting up a Django development environment and creating a basic Django project with an app. It covers installing Python and Pipenv, creating a virtual environment, installing Django, generating a project scaffold, creating an app, configuring URLs and templates, making migrations and running the development server. It also discusses Django templates, forms, models, views and generic views at a high level.
How to Build a Module in Odoo 15 Scaffold MethodCeline George
油
Scaffolding is the way of building a skeleton structure for a module in Odoo. Using Odoo scaffolding we can create the module structure automatically. It saves much of our effort in creating a module manually. This slide lets us see how to use scaffolding in Odoo development.
Django is a Python web framework that encourages rapid development and clean, pragmatic design. It uses the MTV (Model Template View) pattern rather than MVC. Django features an ORM, form handling, template system and admin interface. To set up a Django project, you create a project directory, install Django, add apps, set up models and URLs, and develop templates and views. Django promotes loose coupling, DRY principles and writing minimal code.
Rational Publishing Engine with Rational DOORSGEBS Reporting
油
The document describes how to use Rational Publishing Engine (RPE) to extract data from a Rational DOORS module and linked modules to generate an output document. It provides steps to:
1) Iterate through objects in a DOORS module and display attributes.
2) Configure an RPE data source to extract data from linked modules.
3) Filter and extract children objects from the linked modules.
4) Use schema discovery to add new attributes and update the schema.
5) Create templates, queries, containers and other elements to display the extracted DOORS data in paragraphs, tables and other structures in the output document.
Analysis of Conf File Parameters in Odoo 17Celine George
油
In this slide, we will analyse the configuration file parameters in Odoo 17. The odoo.conf file plays a pivotal role in configuring and managing the Odoo 17 server. It contains essential parameters that control database connections, server behaviour, logging, and performance settings.
How to Create & Manage a Dashboard Using OWL in Odoo 17Celine George
油
A dashboard in Odoo is a user interface feature that provides a visual overview of key performance indicators (KPIs), metrics, and important data points relevant to a business. Dashboards are designed to present this information in an easy-to-read format, often using charts, graphs, and tables, to help users quickly assess the state of their business and make informed decisions.
This document introduces Django, an open-source Python web framework. It describes Django's key features like rapid development, reusable apps, an admin interface, and templates. It explains Django's model-view-template architecture, including models for defining data, views for business logic, URLs for routing, and templates for presentation. It provides examples of defining a blog application in Django with models, views, URLs, and templates.
How to add menu in Odoo 17 Website - Odoo 17 際際滷sCeline George
油
Creating a menu in Odoo from website front end is not a big deal. From the backend, website development involves using Odoo's website builder tools and some customization.
How to Store Data on the Odoo 17 WebsiteCeline George
油
Here we are going to discuss how to store data in Odoo 17 Website.
It includes defining a model with few fields in it. Add demo data into the model using data directory. Also using a controller, pass the values into the template while rendering it and display the values in the website.
This document summarizes key aspects of using the Django web framework:
1) It describes how to start a new Django project, create apps, define models, migrate the database, and run the development server.
2) It explains how to build templates, map URLs, write views, and use templates to display data on pages.
3) It covers template inheritance, using parameters from URLs in views, and accessing context data from views in templates.
How to add Many2Many fields in odoo website form.pptxCeline George
油
This feature dynamically links various pieces of data, creating complex relationships between records. Users can enjoy a more personalized and engaging experience on your website. For instance, when a user interacts with one record, related records are automatically shown.
How to Install Custom Module in Odoo 17 - Odoo 17 際際滷sCeline George
油
In Odoo, a custom module is a self-contained package of code that extends or modifies the standard functionality of the Odoo system. Custom modules are used to implement additional features, business logic, or changes to the user interface that are specific to an organization's needs.
1. The document provides an overview of Django, an open-source web framework. It discusses Django's MVT architecture, installing Django, creating projects and apps, models, views, templates, and customizing the admin interface.
2. Key aspects covered include using models to define the database structure, views to contain logic and handle requests/responses, templates to separate design from code, and the admin interface to manage data.
3. The document demonstrates how to configure URLs and associate them with views, build templates that use variables and logic, and customize the admin panel through model registration and custom classes.
Michele Gallotti presenta la struttura di un progetto base di Polymer 3.0, insieme a PUG e Typescript e illustrer le basi concettuali di Polymer 3.0 con un semplice widget.
Le slide sono rivolte a chiunque voglia conoscere Polymer 3.0 e le sue potenzialit.
This document provides an introduction to web development with the Django framework. It outlines Django's project structure, how it handles data with models, and its built-in admin interface. It also covers views, templates, forms, and generic views. Django allows defining models as Python classes to represent the database structure. It provides a production-ready admin interface to manage data. URLs are mapped to views, which can render templates to generate responses. Forms validate and display data. Generic views handle common tasks like displaying object lists.
How to Add Sort Option in Website Portal Odoo 17Celine George
油
Odoo provides a versatile approach to improving the user interface on our website portal by enabling the addition of sorting features customized to our requirements.
Client Actions In Odoo 17 - Odoo 17 際際滷sCeline George
油
In Odoo, a client action refers to a set of actions or operations that are executed on the client side of the application. Odoo is an open-source ERP (Enterprise Resource Planning) and business management software, and it uses a client-server architecture. The client-side actions in Odoo are typically defined using JavaScript and XML.
Creating Single Page Web App using Backbone JSAkshay Mathur
油
This was presented during the workshop on the topic. The complete code of the app that was created during the workshop is available at Github https://github.com/mathurakshay/explore-venues
Get things done with Yii - quickly build webapplicationsGiuliano Iacobelli
油
Lesson teached at Universit di Roma Tre - Software Engineering course.
Web is plenty of amazing tools used daily by millions of people. A good idea can turn to be a highly profitable business if well executed. Yii framework is an ideal tool to build in short time an MVP of your product to start as soon as possible to find your market fit. Here follows some infos about the framework and steps on how to build a simple blog over Yii.
This document provides instructions for setting up a Django development environment and creating a basic Django project with an app. It covers installing Python and Pipenv, creating a virtual environment, installing Django, generating a project scaffold, creating an app, configuring URLs and templates, making migrations and running the development server. It also discusses Django templates, forms, models, views and generic views at a high level.
How to Build a Module in Odoo 15 Scaffold MethodCeline George
油
Scaffolding is the way of building a skeleton structure for a module in Odoo. Using Odoo scaffolding we can create the module structure automatically. It saves much of our effort in creating a module manually. This slide lets us see how to use scaffolding in Odoo development.
Django is a Python web framework that encourages rapid development and clean, pragmatic design. It uses the MTV (Model Template View) pattern rather than MVC. Django features an ORM, form handling, template system and admin interface. To set up a Django project, you create a project directory, install Django, add apps, set up models and URLs, and develop templates and views. Django promotes loose coupling, DRY principles and writing minimal code.
Rational Publishing Engine with Rational DOORSGEBS Reporting
油
The document describes how to use Rational Publishing Engine (RPE) to extract data from a Rational DOORS module and linked modules to generate an output document. It provides steps to:
1) Iterate through objects in a DOORS module and display attributes.
2) Configure an RPE data source to extract data from linked modules.
3) Filter and extract children objects from the linked modules.
4) Use schema discovery to add new attributes and update the schema.
5) Create templates, queries, containers and other elements to display the extracted DOORS data in paragraphs, tables and other structures in the output document.
Analysis of Conf File Parameters in Odoo 17Celine George
油
In this slide, we will analyse the configuration file parameters in Odoo 17. The odoo.conf file plays a pivotal role in configuring and managing the Odoo 17 server. It contains essential parameters that control database connections, server behaviour, logging, and performance settings.
Managing Online Signature and Payment with Odoo 17Celine George
油
Odoo Digital Signature is a feature that allows users to sign documents electronically within the Odoo platform. This functionality streamlines workflows by enabling the creation, distribution, and signing of documents digitally, reducing the need for physical paperwork and speeding up processes.
Recruitment in the Odoo 17 - Odoo 17 際際滷sCeline George
油
It is a sad fact that finding qualified candidates for open positions has grown to be a challenging endeavor for an organization's human resource management. In Odoo, we can manage this easily by using the recruitment module
How to Setup Company Data in Odoo 17 Accounting AppCeline George
油
The Accounting module in Odoo 17 is a comprehensive tool designed to manage all financial aspects of a business. It provides a range of features that help with everything from day-to-day bookkeeping to advanced financial analysis.
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sCeline George
油
In this slide well discuss the installation of odoo 18 with pycharm. Odoo 18 is a powerful business management software known for its enhanced features and ability to streamline operations. Built with Python 3.10+ for the backend and PostgreSQL as its database, it provides a reliable and efficient system.
How to Manage Purchase Order Approval in Odoo 18Celine George
油
In Odoo 18, you can set a minimum amount as a limit, and whenever an order comes above the limit, it requires the approval of the manager. In this slide, we are diving into the crucial aspect of procurement, which is managing purchase order approval.
How to Configure Outgoing and Incoming mail servers in Odoo 18Celine George
油
Odoo 18 features a powerful email management system designed to streamline business communications directly within the platform. By setting up Outgoing Mail Servers, users can effortlessly send emails. Similarly, configuring Incoming Mail Servers enables Odoo to process incoming emails and generate records such as leads or helpdesk tickets.
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesCeline George
油
Odoo offers several ways to apply the discounts on sales orders, providing flexibility for various scenarios. The discounts applied on the sales order lines are global discounts, fixed discounts, and discounts on all order lines. In this slide, we will learn how to grant discounts on the sale order line in Odoo 18.
Comparing RFQ Lines for the best price in Odoo 17Celine George
油
The Purchase module in Odoo 17 is a powerful tool designed to streamline the procurement process for businesses. It offers a wide range of features that help manage supplier relationships, track purchase orders, and ensure that procurement activities align with the company's needs.
List View Attributes in Odoo 18 - Odoo 際際滷sCeline George
油
In this slide, we will explore some of the most useful list view attributes in Odoo 18, explaining their functionalities and demonstrating how they can improve the user experience.
How to Set Default Terms and Conditions in Odoo 17 AccountingCeline George
油
In Odoo 17, we can set default terms and conditions from the Accounting module. They ensure that all our sales orders, invoices, purchase orders, and other documents are consistent in terms of legal and business terms, reducing the risk of errors or discrepancies.
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo SalesCeline George
油
A sales quotation in Odoo is a formal offer provided to a potential customer detailing the products or services, prices, terms, and conditions of a sale. In Odoo 17 sales, we can create reusable quotations to kickstart a business lead.
What are the Views in Odoo 18 Purchase - Odoo 際際滷sCeline George
油
Explore the different views in Odoo 18 Purchase. Enhance your purchasing experience with user-friendly interfaces designed to streamline your procurement tasks.
Configuration of Python and SQL Constraints in Odoo 18Celine George
油
In this slide well discuss the configuration of python and SQL constraints in Odoo 18. Constraints are essential for enforcing business rules and data integrity directly at the database and application levels.
How to Add Custom Fields to Configuration Settings in Odoo 18Celine George
油
In Odoo, adding custom fields to Configuration Settings actually means adding fields to the res.config.settings model. This model is designed for system configuration, allowing users to define global settings for various modules, such as the Sale, Purchase.
How to Manage Abandoned Cart in Odoo 17 WebsiteCeline George
油
We are familiar with the website and Ecommerce in Odoo. There, the customers can select the needed products from the Shop and put them in the cart and proceed to purchase it. Here, the concept of Abandoned Cart is the situation when the customer may put some of the products in the virtual cart, but they will fail to process with the checkout or they may cancel the checkout process.
How to Add opening Balance in Odoo AccountingCeline George
油
To set up an opening balance in Odoo Accounting, needs to establish initial balances for your accounts. This ensures accurate reflection of financial position at the beginning of a fiscal year or when migrating from another system to Odoo.
How to Manage Your Company Budget Using Odoo 17 AccountingCeline George
油
Effective budget management is vital for a company's success. Odoo 17 streamlines financial management with tools for transactions, invoicing, and budgeting. Set up budgets for departments, projects, or cost centers, define goals, allocate resources, and set spending limits.
How to Simplify Reconciliation Process using Reconciliation Models using odoo...Celine George
油
In a firm, daily transactions are invoiced, but the accounting department may not enter all details immediately. Weekly, account statements are reviewed for reconciliation, ensuring accuracy and transparency by comparing cash transactions with bank records.
Tollywood Quiz- 21st March 2025, Quiz Club NITWQuiz Club NITW
油
The most anticipated Tollywood Quiz, organised by the Quiz Club NITW, was held on March 21, 2025. The quiz set will take you on a nostalgic journey through iconic movies and their unforgettable songs and dialogues.
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...EduSkills OECD
油
Celine Caira, Economist & Policy Analyst, AI Unit of the OECD Division of Science, Technology and Innovation (STI), OECD presents at the OECD Webinar 'Women, girls and AI: Paving the way to a balanced digital future' on 28 March 2025. PPT by Lucia Russo, B辿n辿dicte Rispal and
Celine Caira OECD
Design approaches and ethical challenges in Artificial Intelligence tools for...Yannis
油
The recent technology of Generative Artificial Intelligence (GenAI) has undeniable advantages, especially with regard to improving the efficiency of all stakeholders in the education process.
At the same time, almost all responsible international organisations and experts in the field of education and educational technology point out a multitude of general ethical problems that need to be addressed. Many of these problems have already arisen in previous models of artificial intelligence or even in systems based on learning data, and several are appearing for the first time.
In this short contribution, we will briefly review some dimensions of ethical problems, both (a) the general ones related to trust, transparency, privacy, personal data security, accountability, environmental responsibility, bias, power imbalance, etc., and (b) the more directly related to teaching, learning, and education, such as students' critical thinking, the social role of education, the development of teachers' professional competences, etc.
In addition, the categorizations of possible service allocation to humans and AI tools, the human-centered approach to designing AI tools and learning data, as well as the more general design of ethics-aware applications and activities will be briefly presented. Finally, some short illustrative examples will be presented to set the basis for the debate in relation to ethical and other dilemmas.
Precise guide for GNM/RGNM, B.Sc. Nursing/Basic B.Sc. Nursing & M.Sc Nursing students ... Regarding pain and its management. Highly recommended for Third Semester B.Sc Nursing Students .
Also this document discusses pain management through both non-pharmacological and pharmacological approaches. It covers typical areas of referred pain, pain assessment techniques, non-drug therapies like recreation and different approaches for using analgesic medications.
Stages of combustion, Ignition lag, Flame propagation, Factors affecting flame
speed, Abnormal combustion, Influence of engine design and operating
variables on detonation, Fuel rating, Octane number, Fuel additives, HUCR,
Requirements of combustion chambers of S.I. Engines and its types.
2025 Women Leaders Program - Award WinningSonia McDonald
油
Empower & Lead: Women in Leadership
Dive into our award-winning and dynamic programs designed to boost your confidence and equip you with bold tools and strategies. Unleash your unique leadership potential and lead with flair!
Elevate Your Game with the Women Leaders Program
Step up to the challenge with Sonia McDonalds dynamic leadership program, perfectly blending neuroscience, personal, and professional development. With over three decades of expertise in leadership and HR, Sonia has designed a program that adapts to your busy lifestyle, offering both virtual and in-house options. Explore ten robust modules equipped with an all-encompassing toolkit, infused with cutting-edge neuroscience to enhance your understanding of leadership dynamics. Choose from engaging monthly group coaching or personalized 1:1 sessions with Sonia.
If youre ready for a transformative journey focused on growth, neuroscience-backed courage, leadership, and freedom, this is your call to action. Join us and start leading like never before!
Transform Your Leadership.
Transform Your Life.
Women are underrepresented in key decision-making roles across almost all industries in the Australian workforce, women comprise only:
19.4% of CEOs
32.5% of key management positions
33% of board members
18% of board chairs.
ITS TIME FOR CHANGE. JOIN THE PROGRAM TODAY.
Maximise Your Leadership Skills
Achieve the best results for yourself, your team, and for the business.
Develop & Grow Your Courage
Build courageous habits to live the life you choose.
Enhance Your Career Progression
Step in, stand up, lead and get your seat at the Table.
https://soniamcdonald.com.au/women-leaders-program/
Unit1 Inroduction to Internal Combustion EnginesNileshKumbhar21
油
Introduction of I. C. Engines, Types of engine, working of engine, Nomenclature of engine, Otto cycle, Diesel cycle Fuel air cycles Characteristics of fuel - air mixtures Actual cycles, Valve timing diagram for high and low speed engine, Port timing diagram
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialJenny408767
油
Pass SAP C_C4H47_2503 with expert-designed practice tests & real questions. Start preparing today with ERPPrep.com and boost your SAP Sales Cloud career!
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...coreylewis960
油
Marketing is Everything in the Beauty Business! 憓
Talent gets you in the gamebut visibility keeps your chair full.
Todays top stylists arent just skilledtheyre seen.
Thats where MyFi Beauty comes in.
We Help You Get Noticed with Tools That Work:
Social Media Scheduling & Strategy
We make it easy for you to stay consistent and on-brand across Instagram, Facebook, TikTok, and more.
Youll get content prompts, captions, and posting tools that do the work while you do the hair.
ワ Your Own Personal Beauty App
Stand out from the crowd with a custom app made just for you. Clients can:
Book appointments
Browse your services
View your gallery
Join your email/text list
Leave reviews & refer friends
種 Offline Marketing Made Easy
We provide digital flyers, QR codes, and branded business cards that connect straight to your appturning strangers into loyal clients with just one tap.
ッ The Result?
You build a strong personal brand that reaches more people, books more clients, and grows with you. Whether youre just starting out or trying to level upMyFi Beauty is your silent partner in success.
The Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by the Yale School of Public Health faculty and graduate students in response to the 2010 Haiti Earthquake.
Each year, students enrolled in Environmental Health Science Course 581Public Health Emergencies: Disaster Planning and Response produce the VMOC Briefs. These briefs compile diverse information sourcesincluding status reports, maps, news articles, and web contentinto a single, easily digestible document that can be widely shared and used interactively.
Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The unlocked" format enables other responders to share, copy, and adapt it seamlessly.
The students learn by doing, quickly discovering how and where to find critical油information and presenting油it in an easily understood manner.
2. Enterprise
Introduction
In Odoo 18, URLs and routing are key components of its web framework,
used to handle HTTP requests. Understanding them is essential for
customizing Odoos behavior, creating new pages, and integrating with
external systems.
Controllers are used to configure front-end modules under Website.
Using controllers, we can specify the URL to the link the web pages.
For that, we need to setup the controller in our module and create an xml
template to load the data in the web page.
4. Enterprise
Create a Controller in the custom module
In the directory controllers inside the module, there are two python files
(here its is main.py) and __init__.py. main.py have the method with which
the data is taken from backend module to show in the website.
5. Enterprise
Inside main.py, import the http and http.request and create a class to write
the method. Then, use the method decorator @http.route to navigate to a
specific page using controller
from odoo import http
from odoo.http import request
class PurchaseDetail(http.Controller):
@http.route('/purchase_detail', type='http', auth="public",
website=True)
def purchase_detail(self, **arg):
purchase_detail = request.env['purchase.order'].sudo().search([])
values = {'record' : purchase_detail}
return request.render('purchase_detail.all_purchases_data', values)
6. Enterprise
For the decorator, the first parameter /purchase_details is the URL.
The second parameter says the type of the request. It can be http or json. Keep it as http.
json requests are used to execute methods on server to obtain result.
Type = 'http' is for responding over http request. It will take you to the another template
with the values with the dictionary passed and will refresh the page
Third parameter gives the authentication. The values can be public, user or none.
The last parameter website=True to make it visible on website
Inside the method, fetch the data we need using sudo() to get data as a super user. Here
the purchase order details are taken and set as a value dictionary(values here)
Render the template and pass the value dictionary by calling the template with the syntax
module_name. template_name
7. Enterprise
Create the Template
Inside the directory views, create a new xml file to design the template to display the
data taken from backend modules.
Inside <odoo> tag, give a unique name for the template. Keep in mind that the template
name must be the same when we render the template from the .py file.
Design the template by keeping Odoos default websites
layout using.
<template id="purchase_detail.all_purchases_data"
name="Purchases Details">
<t t-call="website.layout">
8. Enterprise
Design the content using the <table>, <thead>, <tbody> tags. Here, inside the div of class
container, we have to set a heading for the data to be shown, we added a table with
table table-striped table-dark class as
<br/>
<center>
<h2>PURCHASE DETAILS</h2>
</center>
<table class="table table-striped table-dark">
<thead>
<th>Purchase Order</th>
<th>Purchase Customer</th>
<th>Date</th>
<th>Amount</th>
</thead>
9. Enterprise
To iterate through multiple records, <t t-foreach> can be used. Here in this example,
inside <tbody>, to get the details Purchase order Number, Customer name, Date and
Amount of each Purchase order, iterate as
<tbody>
<t t-foreach="record" t-as="po">
<tr>
<td><span t-esc="po.name"/></td>
<td><span t-esc="po.partner_id.name"/></td>
<td><span t-esc="po.date_order"/></td>
<td><span t-esc="po.amount_total"/></td>
</tr>
</t>
</tbody>
10. Enterprise
Open the URL from the website
Go to the website from UI and copy our URL used in the controller, ie /purchase_details here.
The page will be loaded as below with all the details we specified using the template.
11. For More Info.
Check our company website for related blogs
and Odoo book.
Check our YouTube channel for
functional and technical videos in Odoo.
Enterprise
www.cybrosys.com