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
1 answer

Odoo How to add a editable tree view inside a new page?

I want to display the fields as editable in tree view inside a new tab in the sale.order? My code does not make any errors, but shows the fields in form view rather than tree view. How to correct it? .xml
DGL
  • 53
  • 9
0
votes
1 answer

How do I create a method with a dict of fuel types and corresponding default unit prices integer values and make them appear in a form in Odoo

How do I make it possible when the user selects the Fuel Type in the form , the Unit Price will automatically display the integer unit value for corresponding fuel type chosen. For example when user selects petroleum the value of 0.87(currency is in…
Philip Mutua
  • 6,016
  • 12
  • 41
  • 84
0
votes
1 answer

How to get value of one model to another model?

I created a custom module to add fields project and contract_no in the sale.order and contract_num and rel_sale_order in the purchase module. Now When choosing the “rel_sales_order” in PO, automatically pass the “contract_no” from SO to PO. How to…
DGL
  • 53
  • 9
0
votes
1 answer

avoid repeating records in many2many in odoo8

everybody. I dont know how I can only add the record once in the field many2many. for example: I have 2 record, in one I add the record A in m2m. I want in the 2nd record not appear the record A in the options. Any idea?
limfit
  • 37
  • 8
0
votes
1 answer

How to do inventory adjustments for more than 50k products?

I want to do inventory adjustment for more then 50k > products. But odoo not able to do. Every time show error time exceeds. It take too much time, any way to do speedy. Thanks for help
user1576199
  • 3,217
  • 3
  • 20
  • 32
0
votes
1 answer

odoo 8 xmlrpc can't write whole text

I use python-docx to parse docx file, then use xmlrpc to write content to odoo res.partner. Here is my code: # -*- coding: utf-8 -*- from os import listdir from os.path import isfile, join from docx import Document import xmlrpclib username =…
ITGeeker
  • 3
  • 4
0
votes
0 answers

How to change the size of the column of my tree

how i can add width for all fields of my tree
Taha
  • 101
  • 10
0
votes
1 answer

How can I get a variable from a JavaScript promises (python calls), avoiding the pending state in Odoo?

Original code from the Point of Sale module In the point_of_sale module there is a list of objects as the following module.PosModel = Backbone.Model.extend({ models: { // [...] { model: 'pos.session', …
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
0
votes
1 answer

How do I add a button with function to export the report as either .pdf,.xls or .csv formats in ODOO 8?

I am using odoo 8.0 and I'm making a report for asset list. So far I have created the asset list report: How do I add a button with function to export the report as either .pdf,.xls or .csv formats? Here is a snippet code I have for the report…
Philip Mutua
  • 6,016
  • 12
  • 41
  • 84
0
votes
1 answer

Domain for on field based on another

In task templates form i can add group_id. I want to make a domain that will add task templates depending in what group they belong but kinda have no clue now. class ProjectTaskGroup(models.Model): _name = 'project.task.group' _inherit =…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
1 answer

Update Tax Amount on saving invoice

When I save an invoice after adding new invoice lines with products under VAT, the total VAT amount is not automatically updated. Is there a way to compute automatically the amount tax when the invoice is saved ? Why it is not native behavior ? Any…
0
votes
1 answer

How to update external_id for partners/companies and Where is default external_id is generating in odoo?

I want to update all the external ids of res.partner in system while creating partners using create() method. Also, I am not getting the functionality where the default external id name(res_partner_id) is generating. Example : Default generated…
Nitin Kantak
  • 168
  • 9
0
votes
1 answer

AttributeError: 'res.partner' object has no attribute 'journal_id' - Odoo v8

I have this method: @api.multi @api.depends('order_picking', 'order_picking.isbn', 'contract_worksheet', 'state') def accounting_scenarios(self): for record in self: if not len(record.transporter): raise Warning('Please Enter…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
0
votes
1 answer

Why am I getting the error: 'int' object has no attribute 'create'?

code: @api.multi def open_second_class(self): ac = self.env['ir.model.data'].xmlid_to_res_id('account.invoice_form', raise_if_not_found=True) write_obj = ac.create({'partner_id': self.name_id}) accountant = False …
0
votes
2 answers

Adding products to a new sales quote through the Odoo API (Java)

I'm creating new sales quotes programatically through the Odoo API like so: final Object orderLineItem = asList((Object[]) models.execute("execute_kw", asList( db, uid, password, "sale.order.line", "search", asList(asList()), new…
Tiocrash
  • 347
  • 5
  • 16