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
0
votes
3 answers

How to create just a view in odoo9 that does not save data in a model?

I am working in odoo9. Now I needed a view that permits the user to select partner and get his sale history. Now I created a model "sale.history" but it saves the selected data as a record in db. I really don't need this. How can I create a view for…
Sebin
  • 31
  • 1
  • 9
0
votes
0 answers

How to rotate the X axis Label in Odoo V9 Graph view

In OpenERP 7, We have provision to rotate the label in X-axis by altering the graph.js, options_line: function (data) { xaxis : { labelsAngle: 45, ticks: this.orientation ? false : data.ticks } But in ODOO…
0
votes
3 answers

related attributes , related fields on inherited view odoo

what is related attribute , what it can be used for ? and how to add a related attribute . I'm trying to add a related field for total amount.
hela
  • 51
  • 12
0
votes
1 answer

Odoo invoice print with shipping address

I'm trying to print an invoice with shipping address and invoicing address in Odoo. For delivery slip, I'm able to get a customer reference from the sales order using 'o.sale_id.client_order_ref'. It gives me an error when I tried…
0
votes
1 answer

How to open graph or form view from js file in Odoo (V8 or V9)?

I want to open view by using the js file, code: res = self.pool['ir.model.data'].get_object_reference(cr, uid, 'my_module', 'my_view_id') return { 'view_type': 'form', 'view_mode':…
Jeenit khatri
  • 318
  • 4
  • 19
0
votes
1 answer

How to save data from a drop-down list in odoo

In one of my pages of my odoo 9 website I have a drop down list(using select tag in xml view), how can I save the option that the user chooses? Code: