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

Table Fields are not adding in Odoo during creation of a module?

Am a newbie in Odoo Development. I created a Module Named Mytransaction. My Module code will be like this:- class mytrans(osv.osv): _name= "mytrans" _description= "My Transaction" _coloums = { 'subject':…
Peniel
  • 203
  • 3
  • 5
  • 16
0
votes
1 answer

missing send invoice by email , print, confirm sales and cancel button bar in odoo

I have no clue whats happening but , I was trying to configure outgoing email client in Email settings under in developers mode. I came back to quotations page all of a sudden the entire bar is missing, i cant locate Send email, confirm sale, print…
0
votes
0 answers

Using field without map to the database

I need to define a field that is not mapped to the database. What I did was: var1 = fields.Char() var2 = fields.Char() var3 = fields.Float(manual=True) As expected, it was only the mapped field var1 and var2. But my problem is the use of the var3…
pmcleite
  • 33
  • 1
  • 11
0
votes
2 answers

Change Filter privilege in Odoo 9.0

I am modifying leave management module in Odoo 9.0 and in that when i am creating the employee user i am unable to restrict the user to see the other employees leave . so in my case they are able to see every employees leave so what kind of…
0
votes
1 answer

How to store default entered value in custom field of quantity on Hand.?

Need to store default value on qty in M.sqr and square meter like quantity on hand showing default entered value. when i click on update button of quantity on Hand from product inventory page then it should show me a previous entered value. class…
0
votes
0 answers

Odoo using new api how to update a many2many id using @api.onchange

Using odoo new api the @api.onchange and @api.depends how can i update a field in a many2many , where the field is updated by another field not in the many2many ... i.e class rates(model.Model): _name = 'rates' a =…
danielmwai
  • 305
  • 1
  • 6
  • 24
0
votes
2 answers

Odoo MissingError One of the documents you are trying to access has been deleted, please try again after refreshing

Odoo Warning, MissingError One of the documents you are trying to access has been deleted, please try again after refreshing. Am accessing this button action_four_weeks_schedule_form which is shown below on .
danielmwai
  • 305
  • 1
  • 6
  • 24
0
votes
1 answer

Odoo how to dynamically create a weekly schedule mod-fri and mon-fri depending on a field inter value

I have a task that has been giving head ache , kindly really appreciate some help . TASK : Model A to Model B have a many2many relation . In Model B which has a many2many relation,i have a Integer field. If the field …
danielmwai
  • 305
  • 1
  • 6
  • 24
0
votes
4 answers

Odoo 8.0. Creating slave records in code

I have 2 tables with the one2many relation. I want to create a set of records in the slave table after changing a name value in master table. But I have an error: File "C:\odoo80\openerp\addons-custom\att\agreement.py", line 18, in …
atimtim
  • 1
  • 5
-1
votes
1 answer

no changes in menu items after updating this code trying to remove the some of them

enter image description here highlighted are the submenu item i want to hide in a custom module. here are some changes that i have done on backend side but it does not effect the UI side adding menu in static please click to see i have added in…
-1
votes
1 answer

Unsupported file type: False warning in Odoo-10? how should I solve it? please tell me where I am making mess. Here's my code

I am trying to upload and import a csv file. When I chose file I'm getting warning/ error of file_type False. When Iam debugging the code I'm getting file content in binary, file_name also, but getting file_type field as false. this is the…
-1
votes
1 answer

Unable to download excel in odoo

I am trying to download a excel file on click of a button. But i am facing error IOERROR : [ERRNO13] Permission Denied on "Test.xlsx" Here is what i am trying to do.
-1
votes
3 answers

How to Remove Save and New from one2many form view in odoo 10?

how to hide save and new button from one2many form view in odoo 10?
Lakshminarayanan
  • 320
  • 4
  • 18
-1
votes
3 answers

How to send message notifications when a state is changed in odoo 10?

In the vendor bills, when a customer invoice has been created,there will be a message_ids field which creates and sends messages to the concerned persons who are all listed in the followers list. By default,this works like when an invoice is created…
Navi
  • 1,000
  • 1
  • 14
  • 44
-1
votes
3 answers

Odoo 10 Change form view Many2one res.partner

I have a custom odoo app. In my model I have a Many2One form the type res.partner. If I display the field in a form view, I get the name, address, city and country. How can I…
wim_til
  • 140
  • 10
1 2 3
19
20