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

Open a specific tree

How can I open a specific tree when I select a record of another tree ? for example if I click on Sales department instead of openning its form I need to open the sales tree (just an example)
Borealis
  • 1,059
  • 2
  • 18
  • 37
3
votes
2 answers

Odoo - Changing user group id just right after signup (ecommerce)

I'm using Odoo 10. After a new user sign up (through localhost:8069/web/signup) i want him to be automatically allocated inside a group i created on my very own custom module (the user will need authentication from an admin later on so he can be…
3
votes
1 answer

Apply check-box condition for only one row value else show warning in Odoo10

I have a One2many field. In this field i have check box field. And, I already applied a validation for check-box selection. And function work very well. Now, When i selected check then value is returning and if not selected then no problem. But, now…
Pawan Kumar Sharma
  • 1,168
  • 8
  • 30
3
votes
0 answers

odoo js error Cannot read property 'include' of undefined while include function to base calendar

i want modification the base_calendar.js with new custom function like below CalendarNotification = require('base_calendar.base_calendar'); console.log("Masuk sini bawah"); CalendarNotification.include({ 'click .link2showed': function() { …
3
votes
1 answer

How can I add From date to To date to print a set of records in report in odoo 10?

I am creating a Bank module, where the customers can buy loans from the bank. In that I want to print a report statement. Before printing the records of a particular customer, i want to filter the dates. I want to filter it by giving From date to…
Navi
  • 1,000
  • 1
  • 14
  • 44
3
votes
3 answers

How to hide "Create And Edit" button in all form odoo And also "Search More" Button in every line

I want to hide "Create and Edit" button in all form and also I want to show "Search More" button in all form Currently Im using odoo 10. Let's see this addons https://apps.openerp.com/apps/modules/9.0/web_m2x_options/ I have tried to using that…
Kode Kite
  • 328
  • 5
  • 15
3
votes
2 answers

Odoo How to hide edit button based on User Group?

I want to hide edit button based on user group. However I don't want to edit ir.model.access.csv, because some process in my system flow must be able some user group to write the model by code. Are there some way to hide edit button from some group…
ReiiYuki
  • 365
  • 5
  • 19
3
votes
3 answers

Alter Odoo XmlRPC context to use a specific language

I need to get the translated data from odoo with a specific language using XMLRPC by default odoo sends data in the default language which is English api.execute_kw(db, uid, pwd, 'res.country', 'search_read', [[]], {'fields': ['name']}) how to add…
rachid el kedmiri
  • 2,376
  • 2
  • 18
  • 40
3
votes
3 answers

How to make dropdown for groups instead of checkboxes in Odoo?

I have made some groups A,B,C,D through GUI in Odoo v10. These groups are shown as check-boxes on the user page. I want that instead of these check-boxes a dropdown must be shown so that user can be assigned to only a single group i.e. a user can…
Sankalp Kataria
  • 479
  • 7
  • 24
3
votes
1 answer

QWeb pdf report odoo 10

I am new in odoo I want to make a report pdf to my model, I have try all tuto I have find in net youtube, google but no one work for me please give me an advice. there is my model : # modelx.py file from openerp import models, fields, api class…
Walid Bousseta
  • 1,329
  • 2
  • 18
  • 33
3
votes
0 answers

How to connect to bluetooth thermal printer in Odoo

I just configured Odoo application (POS) for a client! And he intends to use it in a tablet! The issue I am facing is that how could we connect odoo pos to a Bluetooth thermal printer! I heard of POSBox, but how can we achieve this without POSBox! I…
user6761138
3
votes
2 answers

Odoo - Filter users with specific group in many2one

I am trying to create a drop-down in my custom module form where i want to show users from a specific group fields.Many2one('res.user',string="Admins", domain=[('groups_id','=',12)]) this is what i tried, adding a domain but it is not working. I…
Ancient
  • 3,007
  • 14
  • 55
  • 104
3
votes
2 answers

Odoo 10 selection fields value

How can i get selection fields value in odoo 10? def compute_default_value(self): return self.get_value("field") I tried this, def compute_default_value(self): return dict(self._fields['field'].selection).get(self.type) Also tried…
Serdar Eren
  • 165
  • 2
  • 16
3
votes
1 answer

Odoo How to insert account.move.line to account.move by code?

I have the problem when I insert account.move.line to account.move by code. It always said 'Cannot create unbalanced journal entry.'. Are there someway to add account.move.line to account.move by code by code? ps. debit_line and credit_line have the…
ReiiYuki
  • 365
  • 5
  • 19
3
votes
2 answers

Inputmask widget doesnt work on odoo 10 c

I am trying using input mask widget on my Odoo 10c. I have created char fields on my python files, and then I tried to call it on my .xml like this: But the mask does not show…