Questions tagged [odoo-8]

Odoo S.A. is the software vendor of the Odoo Apps (formerly OpenERP).

                     Odoo (formerly known as OpenERP)

enter image description here

Odoo was formerly known as OpenERP until May 2014. It was re-branded because version 8 of the software included apps including website builder, e-commerce, point of sale and business intelligence. The software conforms to standard expectations of ERP systems, while providing additional modules beyond the coverage of traditional ERP systems.

Odoo S.A. provides a web site referencing the officially supported modules as well as community modules. Community modules can be referenced for free as long as they respect the open source license of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing Python and XML files. Some application logic (i.e. work-flows and data structure) can be changed through the client interface using a developer mode.

The official Odoo apps are organized in 6 groups:

  • Front-end apps: Website builder, Blog, E-Commerce
  • Sales management apps: CRM, Point of Sales, Quotation builder
  • Business operations apps: Project management, Inventory, Manufacturing, Accounting, Purchase
  • Marketing apps: Mass mailing, Lead automation, Events, Survey, Forum, Live chat, Live support
  • Human Resources apps: Employee directory, Enterprise social network, Leave management, Timesheet, Payroll management, Fleet management
  • Productivity apps: Business intelligence, Instant messaging, Notes

The software is actively programmed, supported, and organized by OpenERP S.A. Odoo is similar to many open source projects where customized programming, support, and other services are also provided by an active global community and a network of more than 500 official partners.

Internal Links:

2300 questions
0
votes
0 answers

how to fix Unread Messages not working in odoo 11?

i want to know how Unread Messages work in odoo 11. In v8 it give all unread messages when i apply New Mail Filter but in v11 i am not getting same result when i apply Unread Messages filter.
Jack Sparrow
  • 628
  • 8
  • 20
0
votes
1 answer

Odoo ghost record

When I do model search in Odoo, I randomly encounter extra record which does not exist in the database. For example: Supposedly this search statement only returns one record mytable = self.env["my.table"] mydata = mytable.search([('something_uid',…
strike_noir
  • 4,080
  • 11
  • 57
  • 100
0
votes
1 answer

How to export data from any model without adding a new tree view and menuitem? How to show the default tree view of any model?

Normally, if you want to export data to a CSV withing the Odoo interface, you will need to follow these steps: Go to the "tree" (or called "list" in new versions) view of the model you want to export some data Select some records to export them to…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
0
votes
1 answer

how to pass values from a one2many field to another field in different model of same form? form view image given below (ial)

ial one2many field name: survey_request_ids model of one2many field : hr_evaluation.evaluation Field name of 'Interviewer' inside one2many : user_id model of 'Interviewer' inside one2many : hr.evaluation.interview I want to create a new field…
Afthab
  • 13
  • 5
0
votes
1 answer

Dump and Zip file can not resore odoo 8, how to solve it?

**File "/odoo/odoo-server/addons/web/controllers/main.py", line 757, in restore data = base64.b64encode(db_file.read()) File "/usr/lib/python2.7/base64.py", line 54, in b64encode # Strip off the trailing newline MemoryErrorline MemoryError**
Lakshminarayanan
  • 320
  • 4
  • 18
0
votes
1 answer

Error installing Gdata on Ubuntu for Odoo 8 (404 Not Found)

I'm trying to install Odoo 8 on Ubuntu 16.04 but i also seem to need to download and install Gdata module for that, according to a toturial found in this website: https://www.getopenerp.com/easy-odoo8-installation/ While typing this command…
H.tay
  • 77
  • 2
  • 2
  • 10
0
votes
1 answer

fill an field with values of list

I have a field on my object have a relation with res.users when I use the administrator session to connect the field user_id dropdown shows me a list of users but when I was contacted by another user the dropdown empty I have created access to group…
Caludio
  • 135
  • 11
0
votes
1 answer

Odoo extended menu item on parent won't appear

I'm using odoo8, and create new menu on purchases. I'm making a new class that inherit purchses.order.line class: class PurchaseOrderLine(models.Model): _inherit = 'purchase.order.line' order_name = fields.Char(string='PO Number',…
user2265229
  • 141
  • 1
  • 2
  • 8
0
votes
1 answer

Odoo 8 - Mass Edit and Field Domains

I have a model in a custom plugin that I'm developing with a field that I want to restrict to a particular domain. My model looks something like: from openerp.osv import fields, osv class MyModel(osv.Model): _name = 'mymodel' _columns = { …
rcv
  • 6,078
  • 9
  • 43
  • 63
0
votes
1 answer

hide button Edit , Create on odoo xml

I want to hide the edit and create button on the form view for a specific user I use this code but the button not showing at all i just want to hide buttons just for only group
Caludio
  • 135
  • 11
0
votes
2 answers

model not found odoo v8

I want to make a report in purchase requisition module.So here this is by far i have done. purchase_requisition_report.py from odoo import models, fields, api class purchase_requisition_report(models.Model): _name =…
Hashi
  • 68
  • 7
0
votes
1 answer

how to make condition to a specific groups

I want to add a condition to one group access to no open and no create_edit just for normal people, but when I use the code below the admin have no access to edit I give to him all access right to file security
Caludio
  • 135
  • 11
0
votes
1 answer

send upload_file to email

hello i have a method send an email but i want to send a file how to do that class a(models.Model): _inherit = 'b' upload_file = fields.Binary(string="Upload File") file_name = fields.Char(string="File Name") @api.multi def send_email(self): …
Caludio
  • 135
  • 11
0
votes
0 answers

Value field object inherits empty odoo8

I have an object a that inherits from object b class b(models.Model): x = fields.Char(string="x") y = fields.Char(string="y") class a(models.Model): _inherit = ['b'] @api.model def method(self, cr, uid, context=None): …
Caludio
  • 135
  • 11
0
votes
1 answer

Sql constraint on boolean field

Is there is a possibility to make SQL constraint for the boolean field? I want to make a constraint that will check all record and only 1 record can have boolean field checked
Chaban33
  • 1,362
  • 11
  • 38