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

Odoo 11: when I modify the schedule action Email Queue Manager any field that changes is set to 0 and does not take the value that I put

I modified two planned actions that come by default: Mail: Email Queue Manager Mass Mailing: Process queue I set them changing the interval to 5 minutes and after saved, my change was saved as an interval of 0 minutes. When I modify some other…
2
votes
1 answer

odoo/openerp server configuration option "--load"

I wondered what exactly --load option does in odoo in server "help" i able to find only this line which doesn't explains fully about option, --load=SERVER_WIDE_MODULES(Comma-separated list of server-wide modules.) and what are server-wide…
DexJ
  • 1,264
  • 13
  • 24
1
vote
1 answer

Possible risks of lowering 'limit_request' in Odoo 11 due to high memory usage?

I'm using Odoo 11 and have properly configured my server with thoses values: limit_memory_hard = 20132659200 limit_memory_soft = 16777216000 limit_request = 8192 limit_time_cpu = 3600 limit_time_real = 600 limit_time_real_cron =…
1
vote
0 answers

How to change amount decimal digit numbers based on another field record

How to change quantity field decimal number based on field decimal_digit record class AccountAnalyticInvoiceLine(models.Model): _inherit = 'account.analytic.invoice.line' quantity = fields.Float(digits=(16, 2) class…
1
vote
1 answer

How to show float number without decimal points in odoo

As I am using Odoo online, the ways can be used maybe limited. I have tried using widget="integer" but seems it doesn't work on float type field. I have tried digits = "[12,0]" but it doens't seem to work either. The field is quantity in…
Ryan
  • 51
  • 1
  • 3
1
vote
1 answer

Odoo create stock.move.line

when i try to create stock move line in transfer with automation with the following code, error pop up saying "psycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block". The…
Ryan
  • 51
  • 1
  • 3
1
vote
2 answers

odoo 11 Is there any difference if we take dump from Postgres and from Odoo Backup?

In odoo 11 which will be suggested backup and restore process, Dump and restore from postgresql or using Odoo to take backup and restore it. I want to know, which process will give complete data including attachments?
1
vote
1 answer

Odoo 11.0 Inventory module customization problem?

I have added a 'back to draft' option on a customized stock_picking. When back in draft state, if any move is modified and save is called then picking successfully moves to 'ready' state. Issue occurs if a combined move is edited, in this case the…
MBM_1607
  • 31
  • 1
  • 6
1
vote
1 answer

override javascript methods in mail/static/src/js/chat_manager.js of Odoo 11

I am trying to override 2 Javascript functions in the Odoo 11 under mail/static/src/js/chat_manager.js The first one is make_message function make_message (data) { var msg = { id: data.id, author_id: data.author_id, …
vancouverde
  • 37
  • 2
  • 9
1
vote
0 answers

Trying to Inherit web Export in odoo 11

I'm having trouble inheriting the CSVExport class in web.controller.main. I want to apply this in my module but I have no idea how to properly inherit the CSVExport class. here's my code so far. # main.py import io from odoo import http from…
user9523333
  • 187
  • 18
1
vote
0 answers

select earliest time in the same day ODOO

so, i have attendance of student that have 3 session with different time. if 1 student is absent at 7 am, the next class should automatically set that student to absent. the problem is when teacher in the early class forgot to do attendance and the…
hengky
  • 23
  • 3
1
vote
0 answers

Image in email is broken and not displayed in body odoo11

I have a issue related to adding image in email. I have added image in mail template and it is showing me in preview but while sending mail it is showing me broken image. When i am using it with base64 encoding then it is showing me in attachment…
Gautam Bothra
  • 565
  • 1
  • 8
  • 23
1
vote
1 answer

Send mail with some delay time in odoo11

I have to send a mail when stage changes with a delay of some specific time. For example, in my case, I have to send mail after 10 minutes of stage changes. The time should be configurable. I have try to achieve this by making force parameter to…
Gautam Bothra
  • 565
  • 1
  • 8
  • 23
1
vote
1 answer

Odoo 11 : Write method is called in loop

Here my code: @api.multi def _upgrading_balance(self): ......... self.write({ 'balance_initial': new_balance_initial }) ......... @api.multi def write(self, vals): result = super(InheritedHoranetPackageLine,…
PseudoWithK
  • 321
  • 1
  • 19
1
vote
1 answer

Odoo v11.0 testing

I am new to odoo. I am using odoo v11.00 I am trying to test a model of my custom module. Here is the file structure course_management |-- ... `-- tests |-- __init__.py |-- test_course_management_course.py Here is the the content of…