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

python yaml error on odoo11 stock module installation. yaml.constructor.ConstructorError: could not determine a constructor for the tag '!python'

I have setup a odoo11 database and trying to install stock module but it will generate python yaml error. Error logs: 2019-04-09 12:21:06,147 15820 INFO sicpa_db odoo.modules.loading: loading stock/views/stock_template.xml 2019-04-09 12:21:06,391…
2
votes
1 answer

How to add new fields to POS Receipt / How to inherit a js file

I want to add new fields to POS Receipt.I want to do it by inheriting the js file in my custom module.I don't know js so I don't know how to inherit it.In odoo's file point of sale > static > src > js > pos.js model: 'res.company', fields: […
vbt
  • 795
  • 7
  • 31
2
votes
2 answers

How do I create a computed field on an invoice in Odoo 11 using Python?

Our company pays commissions based on the discount given on a line by line basis. I am trying to show this commission amount on the invoice copy we send to the sales rep. I am using Odoo studio in v12.0 and created a field x_studio_field_dakHb…
2
votes
1 answer

odoo 11 @api.onchange() not working on price_unit field in purchase.order.line

odoo 11 onchange not working on price_unit in purchase.order.line, while it is working on the discount field. Below is my code which I copied from Odoo onchange not working correctly and then modified: @api.onchange('product_id') def…
2
votes
2 answers

How to call a function every interval time Odoo 11

i know we can create automatic action using cron in odoo but I want something a different in the mass mailing of odoo i want to add a repetion option of mail mass mailings Example in the Form view_mail_mass_mailing_form > Options page I added a…
Boubaker
  • 427
  • 1
  • 7
  • 24
2
votes
1 answer

How to update any view from python code, before rendering completion, in Odoo?

I have a problem with passing value for colors argument in my view element. So i have my model which has a function to return colors: class MyTask(models.Model): _inherit = "project.task" is_special=fields.Boolean() @api.model …
K.Maj
  • 200
  • 1
  • 1
  • 9
2
votes
1 answer

Print current date in English language

In Odoo, I'd like to print current date in English in QWeb report: The expected behavior is : 20 January 2019 The current behavior is: 20 janvier 2019 What should I do to display the…
rma_bjr
  • 35
  • 1
  • 8
2
votes
1 answer

Error "Cannot read property 'tag' of undefined"

I have odoo11 installed on AWS. I am trying to add fields in "kanban view" but I get the error "Uncaught TypeError: Cannot read property 'tag' of undefined" when trying to define kanban view. So how to solve this issue? or what is the correct way…
2
votes
1 answer

odoo - How to show context in view?

it should be simple I think. all I want is just to show a context into a field. ex: the active_id is {context.get('active_id', false)} or
Jacky Supit
  • 469
  • 3
  • 15
2
votes
1 answer

Cannot import name 'wrap_module'

Im setting up an odoo community server and after adding and removing an addon, i am getting an error. I have tried copying the odoo addons files back to the default install ones with no success. Exception in thread odoo.service.cron.cron0: Traceback…
2
votes
1 answer

Build a new view or a model based on a SQL query on Odoo 11

I'm working on a Odoo module. I want my module to be a "report" of most purchased products (by customer). I have created a view on Odoo, but now, I need to "filter" these view by customer. The code are here: class…
Sakura Kinomoto
  • 1,784
  • 2
  • 21
  • 30
2
votes
1 answer

Call or add function in act_window xml in odoo

I was try to add a new label on report button on tree. The button will display after choose the one of tree data. I did it. And i build a function for executed after click the button. The problem is, i don't how to call the function inside…
Stefani Johnsson
  • 381
  • 1
  • 5
  • 18
2
votes
1 answer

Why is the account module upgrade unlinking records on some tables?

I just wanted to make sure that upgrading the base or account module everything works fine, because if I pull new changes to the module I want to upgrade the database in a future. I have created new records manually on the model account.acount.type.…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
2
votes
3 answers

Odoo Error, a partner cannot follow twice the same object

I have receiving this odoo error when I try to duplicate a set of record. I have inherited ['mail.thread', 'ir.needaction_mixin'] in the current class. I didn't found any solution online or myself or from odoo. Still stuck here around four…
Pablo Escobar
  • 679
  • 4
  • 20
2
votes
1 answer

How to override update function of a custom model in Odoo 11

I want to create a customer_number in the format of cust (For example, cust001, cust004,.. ) using the id. When I use the create() function it returns the id of the record. So I decided to update the record with my customer_number using the id…
Hariharan AR
  • 1,386
  • 11
  • 20