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

How to solve error Invalid model in action definition

I'm trying to add a new submenu with my custom module at the bottom of the "hr.contract" menus but it shows an error. Then I tried to run the example shown in the odoo documentation, the same error is displayed. I do not understand why or how it…
Dhouha
  • 661
  • 1
  • 8
  • 27
0
votes
0 answers

invalid module names, ignored: multi_company_account

my path multi_company_account/branches/9.0 openerp.py(and openerp with double underscores) i'm getting a strange warning and can't figure out where is a problem: Error: openerp.modules.loading: invalid module names, ignored: …
Chaban33
  • 1,362
  • 11
  • 38
0
votes
0 answers

Field in invoice line "price_by_pricelist"

I want to have a field in the invoice line that will show the price that is product getting from product.pricelist. Can I make a related field? or do I need to do it another way? class AccountInvoice(models.Model): _inherit =…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Odoo 8 qweb report style modification

I am trying to modify my qweb report contents in Oddo 8 I am using div position. I want to hide fax field on print view. How can i do? It is not working.I am trying to css like display none. Here below is my code this is my final…
0
votes
2 answers

Add lines to stock picking move lines

In my method, I delete lines from stock.pickings and want to add different lines from my model. but i get an error AttributeError: 'stock.move' object has no attribute 'get' @api.multi def _action_procurement_create(self): res…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
0 answers

How to avoid payments getting updated for multiple Customer invoices in Odoo 8?

Here are the steps to reproduce: I created a customer invoice say EX001 and name of the customer is Ted and trying to register payment against this invoice as amount of Rs 10000/-. But when I try to register payment against this invoice, the payment…
Shravy
  • 656
  • 1
  • 23
  • 61
0
votes
1 answer

More than 1 product to dict

Here I adding product_id to vals dict but problem is that if there is more than 1 product, how can I add product_id of each line to this dict vals. Probably I need to make a list of product_ids and then add it to dict but struggling a…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Qty available by location (again)

I know this was discussed before but it's not really working for me. How can i get qty available for location or warehouse my product is now. (Most of the answers are in old API and this one not really working for me) class…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Odoo 8 - How to make the enter key work as tab key in form view?

I can't figure out how to make enter key work instead of tab key to navigate between fields in form view in odoo v8,i have followed this post already https://www.odoo.com/forum/help-1/question/how-to-make-the-enter-key-work-as-tab-key-1310 But the…
0
votes
1 answer

Calling invoice from wizard

class InvoiceWizard(models.TransientModel): _name = "pos.order.invoice.wizard" date_order = fields.Datetime(string='Date Order', readonly=True) partner_id = fields.Many2one('res.partner', string='Partner') @api.multi def…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Error with recursion

I'm getting RuntimeError: maximum recursion depth exceeded error and it's because of the line "'account_id','not in'" what can i do about it? @api.multi def to_invoice(self): pos_order =…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
1 answer

TypeError: initial_value must be str or None, not _io.BytesIO

haii everyone... i have one module in odoo8 version its contain Import the products and quantity in inventory adjustment in that read the file code is there import cStringIO data = base64.b64decode(self.data) self.data contain the file…
0
votes
1 answer

Report missing translation because of Xpath

original report is this one and i want to override it with my new one.