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
4
votes
1 answer

Odoo 10 - Display Field From One2many in Standard Tree and Calendar Views

Thanks to the help of smart people on this site, I now have a nice One2many field in my module that allows me to add multiple order lines just like in the sales module. It works quite well, but now for convenience, I would like to be able to see a…
Colinito
  • 115
  • 2
  • 10
4
votes
1 answer

Odoo 10: Change datetime picker options for a field

This is with Odoo 10 and the default bootstrap-datetimepicker. I have a field in my view that has a "Start of event" datetime. I'd like the date picker that shows up to work in 5 minute intervals (minuteStepping: 5) and to show the time picker along…
MatsLindh
  • 49,529
  • 4
  • 53
  • 84
4
votes
2 answers

How upgrading of a Odoo module works?

I have two databases in odoo DB1 and DB2. I made some changes to existing modules(say module1 and module2) in DB1 through GUI(web client). All those changes were stored to DB1 and were working correctly when I am logged in through DB1. Now, I made…
Sankalp Kataria
  • 479
  • 7
  • 24
4
votes
1 answer

odoo 10 - "Overwriting" Javascript Code from old module

I'm trying to make changes to some javascript in a new module, but I can't for the life of me understand what I'm doing incorrectly. https://github.com/odoo/odoo/blob/10.0/addons/hr_attendance/static/src/js/kiosk_confirm.js This is the code I'm…
Mettasomie
  • 43
  • 4
4
votes
0 answers

How to customize tree view loading time?

I am working with the TreeView in OpenERP. But my tree view takes a long time to load. How can customize that? I have defined a Many2many field in the product.product model. product_ids = fields.Many2many( comodel_name='product.product', …
Harshit Trivedi
  • 764
  • 9
  • 33
4
votes
1 answer

How to remove implied ids from group in odoo?

I am trying to remove implied ids of purchase user group. This is actual group in purchase order Manager
code_explorer
  • 472
  • 6
  • 18
4
votes
1 answer

How to make field depends on lst_price of product.product but can be editable

I want to make the field in the same model product.product let's say A which is depends on lst_price of product.product. if user not set value of A then its take lst_price but if User will set the value of A then its set as it is. Also A field…
4
votes
2 answers

Odoo 10 - Adding an Order Line Tree Field to Custom Module

I would like to add an order line field with a tree view much like those found in the Sales and Repairs modules. In those modules, there is a nice section at the bottom of the form that allows you to enter products and prices in a list. I believe…
Colinito
  • 115
  • 2
  • 10
4
votes
3 answers

How can I change the value of a selection field on create function?

I wanna change the value of status once I click save. status is a selection field [('ok', 'Ok'),('tobe', 'Not Ok')] status = fields.Selection( readonly=False, default='tobe', related= 'name.status' ) …
Borealis
  • 1,059
  • 2
  • 18
  • 37
4
votes
3 answers

Odoo 10: Open a form view in an editable tree view

I am creating a new model in Odoo 10. This model is accessed through a menu item which launches tree view. Tree view is editable but I would like to be able to launch form view for the specific record user is editing if user wants to. Is there any…
M.E.
  • 4,955
  • 4
  • 49
  • 128
4
votes
1 answer

How to solve the error when clicking the button for open new form in odoo10?

def create_file(self): opportunity_id = self.convert_to_file() return self.env['trademark.process'].view_file(opportunity_id) I used convert file function to pass some values of current model to trademark.process def convert_to_file(self,…
code_explorer
  • 472
  • 6
  • 18
4
votes
2 answers

Not getting records which created in One2many field on onchange in transient model

I am trying to create records in one2many field in one of my transient model on onchange of boolean field. Eg. Models class test_model(models.TransientModel): _name ="test.model" is_okay = fields.Boolean("Okay?") lines =…
4
votes
1 answer

How to add POS Restaurant notes for every items into POS Restaurant reciept?

I manage to change the template for POS receipt on /addons/point_of_sale/static/src/xml/pos.xml which lies within : But how to change the detail on PosTicket ? .....
Galvion
  • 1,353
  • 7
  • 23
  • 35
4
votes
2 answers

How can we get login user in ir.action.act.window in odoo v10?

We are getting login user in self.env.user, but i want to access login user in ir.action.act.window. Closed
4
votes
1 answer

I am working on leave conditions and i want to display the leave types according to gender in odoo

The condition is if the employee in hr.employee is female then display the leave type which can be allocated only to female employee and same as for the male employee Gender specific leave will be saved from hr_leave_rules.leave_rules code provided…
Ujjwal Singh Baghel
  • 393
  • 2
  • 6
  • 23