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

How can I edit bank account type in odoo

I tried to edit res_partner_data.xml file and I made the following : Normal Bank Account
Basem
  • 3
  • 3
0
votes
1 answer

odoo call a method on button from anthor class

Hello everyone i want to call a method from another object but i can't how to fix that to call a method this is my code xml i'm using an record to inherit button to create a button call my method
Caludio
  • 135
  • 11
0
votes
1 answer

Update context in old api

This is the original method but I want to call it with super and ad my context to it, but it's old API and I'm kinda confused here. After move_scrap write method should be called, but nothing happens and write is not called and with_context of…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
0 answers

Add to cart with select option with opernep Odoo 8

I created a select option that gives the user the choice of either: 1) - Add to Cart and continue shopping. Here the customer will add the product to the cart and will be authentically directed to the store. 2) - Add to cart and finalize your…
0
votes
1 answer

Odoo Get common records between two models

I have two models, one is hr.employee which has a one-to-many relation with a new custom module called, hr.family where the employee declares all their family members. On the other side, I have another model called hr.form.home. where an employee…
0
votes
1 answer

How can i get a specific item of a Selection field. Odoo 8

I need help in something what i want to achieve in Odoo 8. I have 2 selection. A and B. Depending on the value chosen in the selection A i need to show a specific value in the selection B. A piece of code for more clarify: selection_A =…
Osmani
  • 35
  • 8
0
votes
0 answers

How to clear pending open balances of Journals in Odoo 8?

I was manually reconciling old invoice balances in odoo 8. Now there are few journal entries that show journals having opening balance like the one in the image Whenever i try to register a payment for an invoices, the payment amount allocates it…
Shravy
  • 656
  • 1
  • 23
  • 61
0
votes
1 answer

Change state in multiply SO

I made this report that is called from an action in a tree view of SO. So i can select few reports and print them out. The thing is that i want to change state in Sale Orders that I selected and printed out the reports. State should change from…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Odoo make response file download corrupted

I'm trying to make response file download in Odoo 8. The code below worked on Linux. But in Windows OS the file download corrupted. filecontent = None with open("C:\\report_media\\output\\" + output, "r") as f: if f.mode == 'r': …
strike_noir
  • 4,080
  • 11
  • 57
  • 100
0
votes
1 answer

How to update invoice.line quantity ?

I am trying to create button in Invoice that will update certain field in inovoice lines. I've found how to update field in account.invoice but I am strugling to find right way how to update it in account.invoice.line. class…
0
votes
1 answer

how to update quotation state while send email odoo 8

By default, state is updated as 'sent' after quotation sent through email. I would like to use email function to send notification email and update states other than 'sent' like 'approval required', 'verified' etc. By default Quotation (draft) ->…
Lekha
  • 11
  • 4
0
votes
1 answer

Override many2one with many2many

I try to override many2one field with many2many property_product_pricelist = fields.Many2many('product.pricelist', string="Sale Pricelist", …
Chaban33
  • 1,362
  • 11
  • 38
0
votes
1 answer

TypeError: 'bool' object has no attribute '__getitem__' Odoo

What is wrong with my code? I trying to do a search on product.pricelist and find all pricelists with priority boolean checked. class ProductPricelist(models.Model): _inherit = 'product.pricelist' priority =…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
1 answer

I can't find my module in Odoo8

it must create my module on addons of odoo ? or in back of my project because when I add the project on add ons of odoo it be show on local module but when i remove from addons he doesn't I'm using odoo V8 with pycharm 2017 python 2.7 NB:odoo is…
Caludio
  • 135
  • 11
0
votes
1 answer

Make filter in Sale Oder based on other models field state

I want to add a filter to search view of sale order. It should filter order based on SO picking state. For example, I want to filter SO that have pickings and pickings state is 'confirmed' what are my options? I did try to add a relation to field…
Chaban33
  • 1,362
  • 11
  • 38