Questions tagged [odoo-view]

All data’s of the odoo programs are stored as objects. Views are defined to expose these objects to the user. Odoo uses dynamic user interface, which means it is not statically built by some codes, it is dynamically built from XML descriptions. And these screen descriptions are called views.

Odoo Views

Odoo is an enterprise resource management software that is applicable to all kind of business domains. This is simply amazing because it covers all business requirements such as sale, purchase, billing, accounting, manufacturing, warehouse, project management etc… in a single software. Also, they are integrated to each other.

All data’s of the odoo programs are stored as objects. Views are defined to expose these objects to the user. Odoo uses dynamic user interface, which means it is not statically built by some codes, it is dynamically built from XML descriptions. And these screen descriptions are called views.

In Odoo, views define the way by which the models/objects displayed to user-end. Views are of several types, each view represents a mode of visualization. They make the modules more user-friendly and can vary according to the need. In Odoo we use several types of views such as tree, form, search, calendar, graph, pivot, Kanab etc. As the name suggests each kind of views are different, ‘tree’ view provides the list view of objects, ‘Form’ view displays a single object, ‘Search’ view helps to filter the objects etc..

References

295 questions
-1
votes
1 answer

Extend list view and add custom styling

I am working with one2many list view and there is a state column in that i want to add custom css based on state of the object. Like if state is Completed make the text bold and background green somthing like that for other states. I tried but…
Ancient
  • 3,007
  • 14
  • 55
  • 104
-1
votes
1 answer

Add Button next the create Button in odoo Tree View

how to add this button in the Tree view ?? This code in library/static/src/js/script.js openerp.library = function(instance) { instance.web.ListView.include({ load_list: function(data) { this._super(data); if…
-1
votes
2 answers

Functional change needed for "see own leads" option in Odoo 9

when i used this domain rulein "Personal leads" rule under "see own leads" group, so that users can also see those leads that they follow with leads they own i got an error, domai rule…
-1
votes
1 answer

How can I add some custom field in odoo eCommerce website Shopping cart table

I want to add custom fields like following image
M Tahir Noor
  • 443
  • 2
  • 10
  • 31
-1
votes
1 answer

Change the string of button in odoo eCommerce website

I want to change string on Add to Cart button I want to change the label string on Add to Cart button. In attached image Thanks.
M Tahir Noor
  • 443
  • 2
  • 10
  • 31
-1
votes
1 answer

Use a field as key and it must be unique for each record to use it to browse the table (Openerp)

Please in a view form I wish to use a field as key and it must be unique for each record to use it to browse the table in the other views , how to do it class saisirsoum(osv.osv): _name='saisir.soum' _columns = { …
khelifa
  • 71
  • 1
  • 8
-1
votes
1 answer

Odoo 8.0: To save record after on_change event

I need to save a record and open a form in edit mode after on_change event. See the picture before on_change event Before save See the picture after on_change event. After save I need to save record after on_change event. And i need that the form…
atimtim
  • 1
  • 5
-2
votes
2 answers

Add npm pckage in odoo

I want to use a npm package in odoo so that I can use that in odoo widget. I have seen that odoo web add on somehow uses underscore js and query. But I am not able to use npm package in odoo. I have tried to load it by creating package.json file…
-2
votes
2 answers

How to access logged in user's group in a view in Odoo?

I want to show a field read-only for all users of group named Manager (having read and update rights for that model). They must not be able to update a field called 'x_name'. I am using odoo web client (Gui) and don't have access of xml file. I am…
Sankalp Kataria
  • 479
  • 7
  • 24
-7
votes
1 answer

How to add a button to the Action menu?

I want to add new button in action
KAKA RECARDO
  • 115
  • 9
1 2 3
19
20