Questions tagged [odoo-11]

Odoo is a suite of open-source business apps written in Python and released under the LGPL license since version 9 (previously AGPL). It is used by 2 million users worldwide to manage companies of all different sizes. The main Odoo components are the server, 260 core modules (also called official modules) and around 4000 community modules.

                     Odoo was formerly known as OpenERP

enter image description here

Odoo was known as OpenERP until May 2014. It was rebranded because version 8 of the software included apps such as a 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 licence of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing and files. Some application logic (i.e. workflows 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 and purchase
  • Marketing apps: mass mailing, lead automation, events, survey, forum, live chat
  • Human Resources apps: employee directory, enterprise social network, leaves management, timesheet, fleet management
  • Productivity apps: business intelligence, instant messaging, notes

The software is actively programmed, supported, and organized by Odoo 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 500 official partners.

Internal Links:

947 questions
-1
votes
2 answers

Odoo 11 How to override compute_all() method?

I am developping a module to use a custom formula for the amount calculation method in invoices and sales orders. The line amount formula should be : nbJours * price_unit * quantity instead of the default formula : price_unit * quantity I added a…
SuperMalang
  • 74
  • 1
  • 8
-1
votes
1 answer

Sale Order Line And Manufacturing Order BOM Creation Process

I need to know that , after the confirmation of sale order how to generate and also process and the function in bill of materials field in manufacturing order? Thank You!
-1
votes
1 answer

How to change the domain of the Many2one field by inheritance?

What I mean is that; Model with name "stock.return.picking" has "location_id" field. When I click on the return button , I want to see all the location_id. But location_id has domain: location_id = fields.Many2one( …
Barış ERDOĞAN
  • 109
  • 2
  • 12
-1
votes
1 answer

How to automatically reinstall module in Odoo

I have a setup Odoo on our local system In Odoo 11 whenever I customized or made changes in module then I have to Reinstall the app. Is there any other way by which I do not have to reinstall every time?
-1
votes
1 answer

How to programmatically cancel sale.order in Odoo 11

I'd like to delete all Sales Order/Quotations in Odoo 11. For quotations, I was using the Odoo GUI to batch delete them. But for Sale Orders, I must firstly cancel them before deleting. This is time-consuming by the GUI way (because we cannot mass…
Vinh VO
  • 705
  • 1
  • 7
  • 28
-1
votes
3 answers

Unable to fetch date object at salary rules using Odoo 11

I am trying to define a salary rule which will calculate the salary of employee on the base of date_to and date_from But in these object. I am only able get days. By using days I can get worked days from them. I am unable to get month year there.…
Hassan ALi
  • 1,313
  • 1
  • 23
  • 51
-1
votes
2 answers

There is a error to run odoo11 using python2.7

I run odoo11 (Community Edition) using python3 on Windows and Ubuntu. I get the source from github. There is a error when I run odoo11 using python2. I have installed all packages in requirements.txt. How can I solve the error? 2017-12-15…
Alan Sue
  • 1
  • 1
-2
votes
1 answer

Inserting bulk data into odoo.com. using python

hello i am new to odoo platform. I have few scripts which extracting data from some websites and i want to modify all by adding functionality that data will be directly uploaded to odoo shop or odoo website. i want to know that is there any way by…
Yagnesh
  • 3
  • 5
-2
votes
1 answer

Why when sharing Link from my site ON SOCIAL MEDIA it display local ip address?

Why when sharing Link from my site ON SOCIAL MEDIA it display local ip address? I am hosting odoo11 flatform of my local computer OS- Windows 10, IIS, reverse proxy it appears like this appears like this see image here
-2
votes
1 answer

Odoo 11 sales order confirm button override

I tried overriding the sales order confirm button with the below code: class sale_order(models.Model): _inherit = 'sale.order' @api.multi def action_confirm(self): _logger = logging.getLogger(__name__) rec =…
tahaasadullah
  • 67
  • 1
  • 5
-2
votes
1 answer

Best Server to install Odoo

Which local server and OS should I choose if I want to host Odoo on it. Which will be more efficient and quick Linux or Windows. Thanks
Dhruv
  • 1
  • 1
-2
votes
1 answer

Error Element '' cannot be located in parent view

Why I am getting this error: Element '' cannot be located in parent view Error context: View `account.register.payments.wizard.from.invoices.inherited` [view_id: 660, xml_id:…
-2
votes
2 answers

What with_context() exectly do ? which method it call when i pass with_context?

can anyone tell me that what exactly with_context do in odoo? if suppose i want to get price from price list i do code like this. product = self.product_id.with_context( lang=self.order_id.partner_id.lang, …
Alpesh Valaki
  • 1,611
  • 1
  • 16
  • 36
-3
votes
1 answer

How to extract data using odoo python api?

I am currently running odoo 11 and want to extract the data using its python API so I can transfer it to AWS database. I have the API but not sure about the code.
-3
votes
1 answer

how show a preview of binary.fields in odoo 11

I am beginner, my questions is... how show a binary.fields preview in new tab or pop-up?, my version is odoo-11, the files is any upload (docs, image, etc..) i see in module mail something but i not understand code. i see more question for this, but…
Ismael
  • 13
  • 2
1 2 3
63
64