-
Nicht kategorisiert
- [0] Introduction
- [1] Module Structure
- [2] Models & Fields
- [3] Data introduction
- [4] Introduction to Security
- [5] Actions & Menus
- [6] Basic Views
- [7] Relational Fields
- [8] Fields computation
- [9] Fields Onchange
- [10] Actions
- [11] Constraints
- [12] Inline Views
- [13] Widgets
- [14] Ordering
- [15] Advanced Views
- [16] Advanced searches
-
[17] More buttons
-
[18] Model Inheritance
-
[19] View Inheritance
-
[END]
Bewertung
0
0
Momentan sind keine Kommentare vorhanden.
1.
How can you define a search domain in Odoo to filter records where the product type is "Service" and the price is between 100 and 200?
2.
What logical operator would you use in a search domain to filter records where the product type is "Consumable" OR the price is less than 50?
3.
How can you define a search domain in Odoo to filter records where the product type is "Storable" AND the price is either greater than 100 or less than 50?
[('type', '=', 'storable'), ('price', '>', 100), ('price', '<', 50)]
[('type', '=', 'storable'),'|',('price', '>', 100), ('price', '<', 50)]
[('type', '=', 'storable'), '&', '|', ('price', '>', 100), ('price', '<', 50)]
[('type', '=', 'storable'), '&', ('|', ('price', '>', 100), ('price', '<', 50))]
Zusätzliche Ressourcen
Inhalt ist nur für Kursteilnehmer zugänglich.