documentation/content/developer/tutorials/getting_started/07_basicviews.rst
Antoine Vandevenne (anv) 14c0438764 [IMP] reference/user_interface: reformat and clarify views reference
In particular, the following changes are made:
- Use the `class` and `attribute` admonitions along with custom
  attributes to define classes, views' root attributes, views'
  components, and attribute values. This allows re-using the responsive
  design that was made for reference lists, and getting rid of the
  previous implementation that relied on class attributes, which were not
  intended for this usage and reduce readability while hindering further
  contributions due to a lack of flexibility (no admonitions,
  sub-attributes...)
- Use definition lists to define view types to allow for clearer and
  longer descriptions.
- Rewrite and restructure the explanations when there is a lack clarity.
- Extract duplicated content to included RST files.
- Display SVG images into dedicated admonitions.
- Fix RST and English mistakes.
- Rename `view_architecture` to `view_architectures`, as it lists all
  existing architectures and doesn't describe "the architecture of a
  view".
- Replace underscores with hyphens in image file names to improve SEO.

task-3458320

closes odoo/documentation#5237

closes odoo/documentation#7497

X-original-commit: a17eaf4c6f
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2024-01-23 10:51:24 +00:00

243 lines
8.6 KiB
ReStructuredText

.. _tutorials/getting_started/07_basicviews:
======================
Chapter 7: Basic Views
======================
We have seen in the :ref:`previous chapter <tutorials/getting_started/06_firstui>` that Odoo is able
to generate default views for a given model. In practice, the default view is **never** acceptable
for a business application. Instead, we should at least organize the various fields in a logical
manner.
Views are defined in XML files with actions and menus. They are instances of the
``ir.ui.view`` model.
In our real estate module, we need to organize the fields in a logical way:
- in the list (tree) view, we want to display more than just the name.
- in the form view, the fields should be grouped.
- in the search view, we must be able to search on more than just the name. Specifically, we want a
filter for the 'Available' properties and a shortcut to group by postcode.
List
====
**Reference**: the documentation related to this topic can be found in
:ref:`reference/view_architectures/list`.
.. note::
**Goal**: at the end of this section, the list view should look like this:
.. image:: 07_basicviews/list.png
:align: center
:alt: List view
List views, also called tree views, display records in a tabular form.
Their root element is ``<tree>``. The most basic version of this view simply
lists all the fields to display in the table (where each field is a column):
.. code-block:: xml
<tree string="Tests">
<field name="name"/>
<field name="last_seen"/>
</tree>
A simple example can be found
`here <https://github.com/odoo/odoo/blob/6da14a3aadeb3efc40f145f6c11fc33314b2f15e/addons/crm/views/crm_lost_reason_views.xml#L46-L54>`__.
.. exercise:: Add a custom list view.
Define a list view for the ``estate.property`` model in the appropriate XML file. Check the
**Goal** of this section for the fields to display.
Tips:
- do not add the ``editable="bottom"`` attribute that you can find in the example above. We'll
come back to it later.
- some field labels may need to be adapted to match the reference.
As always, you need to restart the server (do not forget the ``-u`` option) and refresh the browser
to see the result.
.. warning::
You will probably use some copy-paste in this chapter, therefore always make sure that the ``id``
remains unique for each view!
Form
====
**Reference**: the documentation related to this topic can be found in
:ref:`reference/view_architectures/form`.
.. note::
**Goal**: at the end of this section, the form view should look like this:
.. image:: 07_basicviews/form.png
:align: center
:alt: Form view
Forms are used to create and edit single records.
Their root element is ``<form>``. They are composed of high-level structure
elements (groups and notebooks) and interactive elements (buttons and fields):
.. code-block:: xml
<form string="Test">
<sheet>
<group>
<group>
<field name="name"/>
</group>
<group>
<field name="last_seen"/>
</group>
<notebook>
<page string="Description">
<field name="description"/>
</page>
</notebook>
</group>
</sheet>
</form>
It is possible to use regular HTML tags such as ``div`` and ``h1`` as well as the the ``class`` attribute
(Odoo provides some built-in classes) to fine-tune the look.
A simple example can be found
`here <https://github.com/odoo/odoo/blob/6da14a3aadeb3efc40f145f6c11fc33314b2f15e/addons/crm/views/crm_lost_reason_views.xml#L16-L44>`__.
.. exercise:: Add a custom form view.
Define a form view for the ``estate.property`` model in the appropriate XML file. Check the
**Goal** of this section for the expected final design of the page.
This might require some trial and error before you get to the expected result ;-) It is advised
that you add the fields and the tags one at a time to help understand how it works.
In order to avoid relaunching the server every time you do a modification to the view, it can
be convenient to use the ``--dev xml`` parameter when launching the server:
.. code-block:: console
$ ./odoo-bin --addons-path=addons,../enterprise/,../technical-training-sandbox/ -d rd-demo -u estate --dev xml
This parameter allows you to just refresh the page to view your view modifications.
Search
======
**Reference**: the documentation related to this topic can be found in
:ref:`reference/view_architectures/search`.
.. note::
**Goal**: at the end of this section, the search view should look like this:
.. image:: 07_basicviews/search_01.png
:align: center
:alt: Search fields
.. image:: 07_basicviews/search_02.png
:align: center
:alt: Filter
.. image:: 07_basicviews/search_03.png
:align: center
:alt: Group By
Search views are slightly different from the list and form views since they don't display
*content*. Although they apply to a specific model, they are used to filter
other views' content (generally aggregated views such as
:ref:`reference/view_architectures/list`). Beyond the difference in use case, they are
defined the same way.
Their root element is ``<search>``. The most basic version of this view simply
lists all the fields for which a shortcut is desired:
.. code-block:: xml
<search string="Tests">
<field name="name"/>
<field name="last_seen"/>
</search>
The default search view generated by Odoo provides a shortcut to filter by ``name``. It is very
common to add the fields which the user is likely to filter on in a customized search view.
.. exercise:: Add a custom search view.
Define a search view for the ``estate.property`` model in the appropriate XML file. Check the
first image of this section's **Goal** for the list of fields.
After restarting the server, it should be possible to filter on the given fields.
Search views can also contain ``<filter>`` elements, which act as toggles for
predefined searches. Filters must have one of the following attributes:
- ``domain``: adds the given domain to the current search
- ``context``: adds some context to the current search; uses the key ``group_by`` to group
results on the given field name
A simple example can be found
`here <https://github.com/odoo/odoo/blob/715a24333bf000d5d98b9ede5155d3af32de067c/addons/delivery/views/delivery_view.xml#L30-L44>`__.
Before going further in the exercise, it is necessary to introduce the 'domain' concept.
Domains
-------
**Reference**: the documentation related to this topic can be found in
:ref:`reference/orm/domains`.
In Odoo, a domain encodes conditions on
records: a domain is a list of criteria used to select a subset of a model's
records. Each criterion is a triplet with a *field name*, an *operator* and a *value*.
A record satisfies a criterion if the specified field meets the condition of the operator applied to the value.
For instance, when used on the *Product* model the following domain selects
all *services* with a unit price greater than *1000*::
[('product_type', '=', 'service'), ('unit_price', '>', 1000)]
By default criteria are combined with an implicit AND, meaning *every* criterion
needs to be satisfied for a record to match a domain. The logical operators
``&`` (AND), ``|`` (OR) and ``!`` (NOT) can be used to explicitly combine
criteria. They are used in prefix position (the operator is inserted before
its arguments rather than between). For instance, to select products 'which are
services *OR* have a unit price which is *NOT* between 1000 and 2000'::
['|',
('product_type', '=', 'service'),
'!', '&',
('unit_price', '>=', 1000),
('unit_price', '<', 2000)]
.. note:: XML does not allow ``<`` and ``&`` to be used inside XML
elements. To avoid parsing errors, entity references should be used:
``&lt;`` for ``<`` and ``&amp;`` for ``&``. Other entity references
(``&gt;``, ``&apos;`` & ``&quot;``) are optional.
.. example::
.. code-block:: xml
<filter name="negative" domain="[('test_val', '&lt;', 0)]"/>
.. exercise:: Add filter and Group By.
The following should be added to the previously created search view:
- a filter which displays available properties, i.e. the state should be 'New' or
'Offer Received'.
- the ability to group results by postcode.
Looking good? At this point we are already able to create models and design a user interface which
makes sense business-wise. However, a key component is still missing: the
:ref:`link between models <tutorials/getting_started/08_relations>`.