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

Odoo 11 customize wizard function

i want to customize a wizard button to allow the selected items and change the done(Boolean) to True once i click the button. This is the sample view and the wizard button i had created. And this is my code below in the view file:
3
votes
3 answers

Save value from readonly field in odoo

I have 3 fields on form field sum is readonly. After click on Save data from readonly field is not store in database. Example: class myClass(models.Model): number_1 = fields.Integer(store=True,default=0) number_2 =…
Pointer
  • 2,123
  • 3
  • 32
  • 59
3
votes
1 answer

Odoo _check_concurrency never triggered?

With our team, we would like to implement a feature where the user is warned whenever the record he/she is updating have also been updated by one of his collegue since he/she opened the record. We dug into the source code because we did not find any…
Anwar
  • 4,162
  • 4
  • 41
  • 62
3
votes
3 answers

Enable developer mode with --dev=all?

I tried to start Odoo 11 directly in developer mode by using the arg --dev=all without having to pass by Settings then Activate the developer mode but it doesn't works. I've also a Warning about the Watchdog module which is missing but I can't find…
snoob dogg
  • 2,491
  • 3
  • 31
  • 54
3
votes
0 answers

Calendar View in X2Many from field

I have a form with a many2manyfield, the field is related to model (say x.y) at which I have defined both kanban and calendar view I can successfully see both views of model x.y when I open records of this model But when I look form view of an other…
Sami
  • 8,168
  • 9
  • 66
  • 99
3
votes
1 answer

How to store company_dependent field in odoo?

I want to store standard_price field of prodct.product table to use this field value in sql query. Code is here: # -*- coding: utf-8 -*- from odoo import fields, models from odoo.addons import decimal_precision as dp class…
Ketan Chauhan
  • 153
  • 1
  • 8
3
votes
1 answer

Unique constraints cause error when duplicating record in Odoo 11

I have an unique constraint for my code field. When I click on the 'duplicate' option in the dropdown action I'm getting the validate error. Is there any way to use 'duplicate' even if the field code is unique? class sample(models.Model): _name…
3
votes
3 answers

Odoo logged user data dont update for a login user

Please I need help with some custom rules configurations in Odoo 11. Currently I'm doing a rule that allow an user only access to a certains product categories, for that I have a Many2many field which specify those categories: product_category_ids =…
3
votes
1 answer

Why have workflows been removed in Odoo v11?

I have a module that works very well when I use it in Odoo 10. But, in Odoo 11, the part of the workflows doesn't work. I am new using Odoo 11 and I can't find information about workflows. What are the differences in workflows between Odoo 10 and…
Muhsin k
  • 77
  • 1
  • 7
3
votes
1 answer

Increase volume decimal accuracy or change unit in Odoo 11

I want to either increase the number of decimals that are shown in the product volume field or change the unit to something smaller. By default it's m^3 and of course that is to high for my product sizes. I tried looking in the Technical tab but…
Trody
  • 403
  • 5
  • 17
3
votes
1 answer

How to create editable list view divided into different number of months in Odoo?

I want to create budgets module divided into months in Odoo. Something like this: Requirements: Editable in place, like in Excel. I've used List View and Editable parameter so it is done. I want to have dynamic number of months. Different budgets…
Daniel
  • 31
  • 1
3
votes
1 answer

Duplicate record missing many2one field issue

I have my products with extra fields that come from a custom module. I'm trying to rewrite the copy function because otherwise when I try to duplicate the product some values don't duplicate. So, in this copy function I manage to add those fields…
Trody
  • 403
  • 5
  • 17
2
votes
1 answer

Cant figure out how to import one2many and many2one models

Here's the code of a custom model i made, the first class is a model of stocks and general information. The second class contains the daily prices of each of the stocks in the first class for 10 days. The relational field that connects the two is…
Adam778
  • 23
  • 3
2
votes
1 answer

Call qweb template inside odoo data template

I am trying to make an OTP service for login and registration. So I made a module for otp service that is working fine. But here for UI, I made and template that should be called inside the login page to visible the otp box and otp send button.…
Almabud
  • 152
  • 2
  • 9
2
votes
1 answer

List view remains blank even after creating a record in odoo

I have been working with odoo for quite sometimes and I have never experienced this issue before, The tree view of a model is not displaying records even after they have been created. This is my model: class PayrollStructureByJob(models.Model): …
A.Sasori
  • 385
  • 3
  • 20