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

Can i get warehouse_id from location_id in odoo 10,11

Is it possible to get warehouse_id from location_id in odoo. thanks.
Alpesh Valaki
  • 1,611
  • 1
  • 16
  • 36
2
votes
0 answers

ODOO 11 : Modify Invoice look

In odoo 11, we have the choice between 4 layout when it comes to create invoices. When trying to modify one (not only the css but also the content), I started to modify the external_layout_clean, as a first test before writing my own. The…
T.Nel
  • 1,540
  • 2
  • 18
  • 34
2
votes
2 answers

Store odoo images into filesystem

Hope all stack members are alright .I am able to fetch binary data of Product image using code p_ids=self.env.context.get('active_ids') produtc_templates = self.env['product.template'] for p_id in p_ids: binaryData =…
Hassan ALi
  • 1,313
  • 1
  • 23
  • 51
2
votes
2 answers

how to confirm all the payslips of paybatches in odoo 11

I am working on Odoo 11 and I have generated payslips of all employees and now I want to compute and confirm all the payslips of batch at once. Is there any option in Odoo 11 ? I search a lot but i did not found any thing. Is it possible or not in…
2
votes
1 answer

Custom Header and Footer not displayed in odoo11

I'm creating a report in odoo 11 where i want to print repeatable headers and footers. Below is my code to do the same. Header Code
Footer Code
sibi
  • 81
  • 1
  • 8
2
votes
2 answers

Odoo 11 QWeb Report: xpath tag "replace" not replacing

I'm trying to customize the invoice report in Odoo 11. Problem is, xpath tag "replace" isn't working properly. Odoo 11 documentation says, and I quote: "[replace:] the content of the inheritance spec replaces the matched node. Any text node…
SlyK
  • 175
  • 2
  • 14
2
votes
2 answers

How to get the current (logged) user in XML Odoo V11?

I'm working on Employee Directory module in odoo11 and I want to set a notebook page invisible to the current user (Logged user) if he is different to the related user. I tried to use user.id in XML but it does not work. Here is my code :
M.Lamine Lalmi
  • 78
  • 1
  • 2
  • 12
2
votes
2 answers

odoo bug after restoring database

I'm using odoo 11 on localhost and recently i did database restore from PgAdmin 4 and from there it completed successfully. But when i chose it from odoo login screen the screen get blank and not responds. find pic attached. I tried this to reset…
Btashi
  • 37
  • 12
2
votes
3 answers

How to customize reports in Odoo 11 in Qweb? How to send data from other model to the qweb report?

Does someone know a way to change the source of docs in a custom report? I need to load dataset from a view inherited from my model. Columns are the same than the model, it's just a data filter.
negstek
  • 615
  • 8
  • 29
2
votes
1 answer

'request.website_multilang' causes AttributeError in Odoo 11

I'm migrating Odoo module from version 10 to version 11. I have website template with following code:
2
votes
2 answers

External ID not found in the system

I have a Odoo 10 cron xml, which looks like this: Saas portal - suspend expired clients
wasd
  • 1,532
  • 3
  • 28
  • 40
2
votes
1 answer

Odoo 11 rewrite copy function to add extra fields

I made custom modules that add fields to the product.template form view (products in the inventory, sales, warehouse) and those fields are not been duplicated with the product when I try to. Therefore, I'm trying to inherit and rewrite the function…
Trody
  • 403
  • 5
  • 17
2
votes
1 answer

Odoo doesn't show the field label in xpath

I'm adding a custom string field (stock_value) to the 'product.supplierinfo' module in Odoo enterprise 11 but I can't get it to display the label correctly. I inherited the module and then added a new field to the module and to the view trough…
Trody
  • 403
  • 5
  • 17
2
votes
0 answers

Odoo v11, Error: "res.users, Operation: read None", while creating a new user and assign to new company

I have a problem creating a new user on Odoo and assign to a company that I created v. 11. First on companies I created a new company name "XXXX". Then I created a new user "YYY" and on the multicompany field I assigned on "allowed companies" the…
RosMyster
  • 31
  • 3
2
votes
1 answer

Odoo 11 Web JS Framework doesn't initialize my module and thus doesn't register my client action

I'm following the Building Interface Extensions guide with Odoo 11. In the guide, it is stated that In Odoo web, modules are declared as functions set on the global odoo variable. The function's name must be the same as the addon (in this case…
Victor Silva
  • 564
  • 4
  • 13