Questions tagged [odoo-10]

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:

2146 questions
0
votes
1 answer

Odoo 10: How do I disable Click on Base Tree View

I'm attempting to disable the click to form view on a base level tree view (not from an x2many field) Is there a way to do this? here is my tree view code.
Cristin Meravi
  • 343
  • 2
  • 12
0
votes
0 answers

Odoo 11 - update modules using windows cmd

I have recently installed my custom CSS module and added a javascript file that broke odoo and now I can only see my logo and top bar. web.assets_backend.js:2632 Could not get content for /mymocule/static/src/js/mymodule-main.js defined in bundle…
Void
  • 83
  • 1
  • 11
0
votes
2 answers

how to automatically fill a One2many

I am currently using the native module of odoo [Sales] -sales orders and I want to pass the registration of a One2many field at the moment of pressing the button that redirects me to another new formula that I have created and has a field…
jpozzo
  • 141
  • 10
0
votes
0 answers

Odoo 10 How to get to propagate variables to load in all routes?

I'm working into a new theme so I've created some variables I need to load into a web template everywhere, so I've put them into a custom route. My trouble now is that they're shown only at my custom route (where my template is), and not a homepage…
alec vinent
  • 99
  • 1
  • 4
0
votes
1 answer

One2Many get value in Odoo

I have a question. I created a one2many which is a replica of a one2many budget field of the sales module. Well I want to obey the summation of all the values ​​of the field that is inside the one2many example : This is my one2many: order_line =…
jpozzo
  • 141
  • 10
0
votes
0 answers

How to upload zip file in odoo ir.attachment model through coding?

I'm working on a custom module where I first need to generate a zip file (containing 3-4 CSV files) on the disk. Once it is done I want to upload that zip file into Odoo sales module as an attachment (ir.attachment) inside the related sales order.…
Parul R
  • 1
  • 1
0
votes
1 answer

Bill button is not working when reprint receipt button is true in pos in odoo11

I am using odoo11. In pos module when I open the session, I can click `reprint receipt`, `bill`, `split` etc. buttons. When I click the `bill` button it is not showing the preview window if `reprint receipt` (backed name…
0
votes
1 answer

How to get the standard price field value in odoo?

I have problem. The standard_price is computed field and not stored product_template, product_product table. How to get the standard price field value in odoo xlsx report? The error is: Record does not exist or has been deleted.: None Help, I…
0
votes
1 answer

Model Not Found Error in already excisting model

There shows Model not found: staff.transfer.While installing this module always showing this error recursively. Hope someone can help ! staff_transfer.py from datetime import datetime, timedelta from odoo import models, fields, _ class…
0
votes
1 answer

odoo 10 hiding create/edit buttons for a particluar security group

Ok, so, I"m working in Odoo 10 and am trying to manage attendances using hr_attendances. I'm trying to hid the create and edit buttons in only the tree view and form view, however the Manual Attendances security group must have create and write…
Cristin Meravi
  • 343
  • 2
  • 12
0
votes
0 answers

How to change base.ir.ir_ui_view field definition

I want to change definition of field of class View residing in addons/base/ir/ir_ui_view.py. Found solution for odoo 8, but it no longer works. What the approach to do the same operation in odoo 10 (11). Thanks in advance!
Juriy
  • 565
  • 1
  • 5
  • 17
0
votes
0 answers