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

Automated action to update the qty in hand instead of forecast qty

We are working on several Sales Platform (e.g. Prime Minister, Ebay) that generate an excel to import in our Odoo 11 SAAS server. As there are hundred of orders, we created an automated action to update the quote to sale after importing from…
Wilson Ho
  • 1
  • 2
0
votes
1 answer

How to display product category name on product.supplierinfo.tree.view on Odoo?

I want to display related product category name in product.supplierinfo.tree.view on Odoo ? Here is a Vendor Price lists capture :
0
votes
1 answer

Where can i find Contacts Module in Odoo 11

Im trying to do a module like Contacts, but not exactly... what i want is localize the Contacts module in the Odoo 11 path and see how they do some of the thinks the show up in the module. So please can anybody tell where can i find the module in…
Osmani
  • 35
  • 8
0
votes
1 answer

Run odoo in Virtual Environment

I've tried to run odoo 11 in Virtual Environment (virtualenv), then I've got this error: ImportError: No module named 'PyPDF2' However it works correctly when running service instead of virtual environment. Can you help me?
bjr_tlb
  • 23
  • 6
0
votes
1 answer

The access rules for wizards doesn't works in Odoo 11

I define access rules, that don't permit read. But it remained readable! So object-level permissions don't work for Transient Model?
0
votes
1 answer

How to hide header and footer or only header from last page in odoo qweb report (Odoo V11)?

I need a help. I want to remove both header and footer or only header from last page in qweb-report. Because I will put different information to last page. Header and footer mustn't become in last page. How can I do this ? Is it possible ?
Barış ERDOĞAN
  • 109
  • 2
  • 12
0
votes
2 answers

Odoo triggering a function

I have a module what lock the Sale Order. I want to do auto-triggering this function when a Field in settings is True. Because at this moment it's call the function only when i hit a button. There is how i check if a field value is…
KushiNii
  • 7
  • 8
0
votes
0 answers

Add a button after Create and Import in odoo v11

I search a lot in the web, read the odoo docs, but I can't figure it out how to add a button before "Create" and "Import" buttons. I found many solutions in other versions (v8, v9 and v10) but none works. The result should look like this. And the…
0
votes
2 answers

How to display external information on Odoo 11?

I'm working on Weather application using Odoo11, I have a Python script that fetches weather information from this API: https://openweathermap.org/api The script works fine but I have no idea how to integrate it with Odoo. Can you give guidelines…
M.Lamine Lalmi
  • 78
  • 1
  • 2
  • 12
0
votes
1 answer

How to create boolean field that check the current user in odoo V11?

I'm working on Employee directory module in Odoo 11 and I want to create a compute field that check for each employee if it's related user is equivalent to the current user (logged user). I create the compute function but it allways return…
M.Lamine Lalmi
  • 78
  • 1
  • 2
  • 12
0
votes
2 answers

How to create opportunity from an incoming mail in Odoo 11?

In odoo 9 we can create opportunity from an incoming mail, but this feature is not available in Odoo 11, Any idea how can i achieve this functionality in Odoo 11.
0
votes
0 answers

Odoo11 - How i get opening stock datewise?

I would like to get opening stock on particular date. to print in PDF report in odoo 11. Thanks, Anand.
anand raj
  • 227
  • 3
  • 13
0
votes
1 answer

Odoo Discuss: add button to message

I try to add a function to message in Inbox - send message to lead. Ok, I've made like it is made by Odoo("dive into"): added a button near to "Mark as read" /addons/mail/static/src/xml/thread.xml: added new with class="fa fa-book o_thread_icon…
SkiBY
  • 63
  • 1
  • 7
0
votes
1 answer

Creating a new sales.order with Python API

I spent more than three hours trying to understand how to create an order using Odoo 11 and Python with no luck. The smallest example I came to is this: uid = common.authenticate(db, username, password, {}) models =…
Leonardo Ramé
  • 143
  • 1
  • 8
0
votes
1 answer

I want to rename odoo field name

I create a field with a type when I create a model: wrong_field = fields.Char('Wrong') now, I want to correct this field and migrate date to the new field. I found keywords "oldname" in odoo docs. so I change my field like this: right_field =…
Yuhui Wang
  • 49
  • 2
  • 8