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

Why do these rules have this behaviour in Odoo 11?

As always, problems with rules. I thought I had finally understood them, but not. I am looking the behaviour of model accesses and rules in the module hr_attendance of Odoo 11. THE CODE They create three groups: group_hr_attendance (Manual…
forvas
  • 9,801
  • 7
  • 62
  • 158
2
votes
0 answers

Auto update module not working after change version in odoo sh

I change the version of my custom module I want that it should be update automatically so that my fields get upgraded because when I open my server it gave me error of field is not present. I just need to automatically update my module after pushing…
Akshay
  • 639
  • 3
  • 8
2
votes
1 answer

Call action(Function) on List View Button for odoo 11

I've added a button on list view near create and import button. Now I want to apply action on that button but function not calling on that button. The button is visible on the list view and also file called, I tested with alert. First alert working…
Pawan Kumar Sharma
  • 1,168
  • 8
  • 30
2
votes
2 answers

How to get a sorted list of filtered values of records in Odoo using filtered() function

How can I filter and return a sorted list from a set of records choosing which field to sort from using filter() and sort() function in Odoo?
Severus Snape
  • 55
  • 1
  • 5
2
votes
1 answer

Odoo Tab Index is not working for Wizard Buttons

I have one Print button in my Wizard.I can focus on other fields by using tab.But for the Print button it is not possible.I want to focus to Print button and when I click Enter , I need to press the button. I tried like this : First Try XML …
vbt
  • 795
  • 7
  • 31
2
votes
0 answers

Odoo AJAX attachment or images creation into client-side (frontend)

What i know In a modal creation object i know how add an attachment or image because all are inside a form and when user click the submit button the form action trigger the controller that manage inputs data. For Example:
Dario
  • 732
  • 7
  • 30
2
votes
1 answer

How can create and send a mail by python code without creating a mail template in xml in odoo

Is it possible to send an email without a mail template ? I need to send an email from python code without creating the mail template by xml.
user11572603
2
votes
1 answer

How can i open a form always in Edit mode , for a particular model

I have a model say 'my.attendance' , also have a form view for this which contains some attendance details.What i need is when i open this form view it should always open in Edit mode.So i can directly enter the attendance without clicking Edit…
user11567402
2
votes
1 answer

Odoo Security Access rule

I have created a security file as that the user who is logged in can only able to see his data. The domain force is correct and working. But from some users, while creating any lead in the crm_lead model, I am finding such error: The requested…
2
votes
1 answer

Odoo 9.0 email notifications are not automatically fired

Odoo 9.0 email notifications are not automatically fired. I had to manually send one by one. Please see attachment. Could anyone guide me to what need to changed in order to fire these pending emails automatically?
Zoya
  • 282
  • 3
  • 12
2
votes
1 answer

Odoo 11 add different action menu in two different area for the same model

In Odoo 11 I want two different action menu with two different functionality. In the hr payroll I wanted to add email payslip link thats why I used this code to add the email payslip action menu
NewUser
  • 12,713
  • 39
  • 142
  • 236
2
votes
2 answers

Deleted the default user, how to get it back

I accidentally deleted the default user. It does not work in other add-ons connected to it. Payroll, purchase, fingerprint scanner etc. Will I correct the database if I create user information that I deleted? Or how to solve it with other…
Bahri Can
  • 21
  • 1
2
votes
2 answers

how to add icon to a module on the menu of application?

i'm using odoo 11 and i have installed open HRMS core which install a specific theme. After that i have installed another module which named overtime (bt_hr_overtime_automatic) to satisfy my needs but the problem is in the menu of the apps the new…
Dhouha
  • 661
  • 1
  • 8
  • 27
2
votes
1 answer

Unexpected behaviour of inverse_name in Odoo 11

You know about inverse_name parameter, available for One2many fields. It just tells Odoo which is the mandatory Many2one field in the related comodel to know the records to show. In standard module account, in account.invoice model, there is a…
forvas
  • 9,801
  • 7
  • 62
  • 158
2
votes
1 answer

How to search by odoo computed field?

I can't search by computed field I override the name field in product.template to be computed so I need to search by name about the product class autopart(models.Model): _inherit = 'product.template' @api.multi @api.depends('item', 'car', 'model',…
Mohamed Fouad
  • 476
  • 9
  • 27