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
9
votes
2 answers

Odoo - add custom field attribute?

Is there a way to add custom field attribute in Odoo? For example every field has attribute help where you can enter message explaining the field for the user. So I want to add custom attribute, so that would change the way field acts for all types…
Andrius
  • 19,658
  • 37
  • 143
  • 243
9
votes
4 answers

Why are some items not translated in Odoo?

I have a problem with translations in Project module. Some menu items are not translated. What could be the problem? Here project_view.xml
Danila Ganchar
  • 10,266
  • 13
  • 49
  • 75
9
votes
2 answers

odoo - display name of many2one field combination of 2 fields

In my module i have the following many2one field: 'xx_insurance_type': fields.many2one('xx.insurance.type', string='Insurance') where xx.insurance.type is the following: class InsuranceType(osv.Model): _name='xx.insurance.type' _columns =…
ThomasS
  • 705
  • 1
  • 11
  • 30
8
votes
3 answers

Why my pdf report is not taking the CSS styles well in Odoo?

I am using Odoo 10 in Ubuntu Server. I am trying to print my quotation report in pdf format using wkhtmltopdf. But the design doesn't look nice. It looks like the CSS is not working I have tried to change some XML file inside mypath/addons but it…
Samoox
  • 176
  • 1
  • 2
  • 9
8
votes
2 answers

Exception:bus.bus unavailable in Odoo

I having some error in the server that is File "/home/odoo/odoo/odoo_8_test/addons/bus/bus.py", line 188, in poll raise Exception("bus.Bus unavailable") Exception: bus.Bus unavailable Because of this I lost the context value and some variable…
Jeenit khatri
  • 318
  • 4
  • 19
8
votes
2 answers

binary field download link use in treeview or listview inside one2many field in Odoo

I'm using Odoo 8 version. I have created a new model called enquiry_customer_date In that model, I have set following four fields. partner_id (many2one), enquiry_date (date), file_name (char) and excel_file (binary) I have given mention model…
Bhavesh Odedra
  • 10,990
  • 12
  • 33
  • 58
8
votes
3 answers

Creating New Groups in Odoo

I have created a new Groups which is a Personnel Group, But in the View Metadata the new Group I've created has no XML ID, where can I find the XML ID or add the XML ID of the new groups even in the external ID menu I cannot find the ID.
Black and White
  • 452
  • 1
  • 9
  • 32
8
votes
1 answer

In Odoo 8 ORM api , how to get results in reverse order using search()?

I try to use search() to fetch data from a table in a http controller. x = obj.search(cr, uid, criteria, offset=0,limit=36,order=sortBy) It returns an array containing the ids of the top 36 items ordered by sortBy but always in increasing order.…
Nathan
  • 157
  • 1
  • 1
  • 11
8
votes
1 answer

How to add css files to a custom module in Odoo?

How can I add css files to my custom module to change xml views? I found this post but the solution is not working. I want modify all the elements from my module, such as forms, lists, inputs, etc.
aispobla
  • 143
  • 1
  • 1
  • 8
8
votes
1 answer

How do I update other fields or another models from inside compute function?

There are 3 classes, sync.test.subject.a which has many2many relation with sync.test.subject.b which is inherited by sync.test.subject.c. sync.test.subject.b's separated_chars field is populated through a compute function called…
William Wino
  • 3,599
  • 7
  • 38
  • 61
8
votes
2 answers

I cannot duplicate or drop database from the Odoo interface because there are sessions using the database. How to fix it permanently?

Every time I try to duplicate or drop databases from the interface I always get this error, even if all the users are logged out: ERROR: source database "database_name" is being accessed by other users DETAIL: There are 5 other sessions using the…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
7
votes
1 answer

How odoo POS Working

I want to know how odoo pos working in offline. I checked other resources but i cant found anything.I cant find anything in their official site or nothing found in any other site.
Thameem
  • 109
  • 7
7
votes
2 answers

How to get products available quantity (Odoo v8 and v9)

I need to get products available quantity from odoo stock. There are several models I stock_quant, stock_move, stock_location. What I am trying to achieve are two things: Products total available quantity Products available quantity based on…
Tanzil Khan
  • 942
  • 1
  • 9
  • 20
7
votes
2 answers

How to extract data from SQL query and assign it to Odoo class columns?

I have been trying to extract data from a .mdb database and get it into Odoo 8 class columns. This is my .py file class attendance_biometric(osv.Model): _name="attendance.biometric" _rec_name='name' _columns={ …
Shravy
  • 656
  • 1
  • 23
  • 61
7
votes
3 answers

How to install wkhtmltopdf patched qt without compiling?

I'm using google cloud instance for host Odoo, somo reports print to pdf ok, but other with custom paperformat get the following error: "The switch --header-spacing, is not support using unpatched qt, and will be ignored.The switch --header-html, is…
Mariano DAngelo
  • 920
  • 5
  • 18
  • 39