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

how to filter tree view with dynamic field odoo-10

i added 'location_id' field to res.user to connect user to a certain location class ResUser(models.Model): _inherit='res.users' current_location_id=fields.Many2one('physical.location',string="Current…
4
votes
1 answer

I want to show leave duration in float value

I created the field half_day_allowed in hr_leave_rules.py from odoo import models, fields, api, _ class HRLeaveRules(models.Model): _name = 'hr_leave_rules.leave_rules' half_day_allowed = fields.Selection([ ('yes',"Yes"), …
4
votes
1 answer

I want to compare date of duration of leaves with the current date in odoo python

Here is the program which i wrote and inherited from hr.holidays that if the selected date is before the current date then it should provide an error message. Code- from datetime import date if self.date_from <= date.today(): print…
Ujjwal Singh Baghel
  • 393
  • 2
  • 6
  • 23
4
votes
2 answers

Odoo v10 display amount in company currency in purchase tree and form view

I am using Odoo v10 . As we know in purchase.order, there is a base (Monetary) field amount_total which contains value of total amount of a Purchase Order based on (self) currency_id . Now, I create a new float field home_currency_amount_total in…
cyliinhk
  • 75
  • 8
4
votes
1 answer

auto create record of another model while creating a record in one form - Odoo 10

I have two model in my orm i.e. _service & _apple. What I want is I want to create record of _apple with some fields written automatically. As an example, from sale order we can create invoice and when invoice is created, some of the fields of…
4
votes
2 answers

Odoo 10 Dashboard Module icon issue

I am using Odoo 10e on my server. I am facing issue for image icon for app the modules. Is there any suggestion to resolve it ?
Naitik
  • 796
  • 11
  • 32
4
votes
1 answer

Image upload in Odoo

I'm trying to add o image widget in odoo screeen, I have used the field as below , image = fields.Binary("Image", attachment=True, help="This field holds the image used as avatar for \ this contact, limited to…
US-1234
  • 1,519
  • 4
  • 24
  • 61
4
votes
3 answers

Get data from different model odoo 9

Is it possible in one tree view load data from eg. (Project Task, Project Issue, Purchase Order) where create date = Today. Example: Any simple solution?
Pointer
  • 2,123
  • 3
  • 32
  • 59
4
votes
3 answers

Odoo 10 : Call a confirmation form (Yes / No) from Wizard

I want to add to my purchase order a 'cancel' button. This button will change the state of my record to 'canceled'. When the user click on this button the script verify all the purchase inquiries and provider orders if there is any one not done or…
Zied Hf
  • 491
  • 3
  • 10
  • 30
4
votes
2 answers

Odoo - How to translate strings in javascript file

I'm struggling with the lack of understanding on doing Javascript. The Odoo documentation is painfully poor and I have another question on this topic without an answer here: Odoo10 - How to do javascript I hope I'll have more luck with this…
user568021
  • 1,426
  • 5
  • 28
  • 55
4
votes
1 answer

Update odoo custom module using docker-compose

I'm running an Odoo instance in my server using docker-compose. I created a docker-compose.yml file as described here: version: '2' services: web: image: odoo:10.0 depends_on: - db ports: - "8069:8069" volumes: -…
damores
  • 2,251
  • 2
  • 18
  • 31
4
votes
1 answer

Nginx - How to run multiple instance of Odoo with different subdomain names

I'd like to run two instance of Odoo v10 on different links. the 1st instance will include multiple databases for our testing purposes running on this link mydoamin.com And for the second instance will be holding demo databases for our clients to…
youta
  • 391
  • 7
  • 23
4
votes
1 answer

Odoo 10: Mail Delivery Failed (error: 111)

I am trying to send emails from my Odoo 10 installation. For this I have configured the outgoing mail server with Gmail SMTP as follows: SMTP Server: smtp.gmail.com SMTP Port: 465 Priority: 10 Connection Security: SSL/TLS I have also configured my…
sunwarr10r
  • 4,420
  • 8
  • 54
  • 109
4
votes
1 answer

Can we able to inherit and change the noupdate="1" in odoo?

Is it possible to inherit from one xml and to change its updatable. I tried to inherit "Check Action Rules" to change the "interval_number" from 4 to 1 hours. To make it run every single hour. I don't think it may work because of noupdate="1".…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
4
votes
1 answer

How to add a button on a tree inside a form in Odoo 10?

I want to add a button to the order_line tree in the sale form, I added like this: