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

How to hide a row in tree view?

I want to hide a row based on a condition.The tree view is one2many field.If the od_state = cancel,then the row should be invisible code:
HVH
  • 249
  • 6
  • 14
0
votes
1 answer

How to pass many2one field from Form view to wizard in odoo 10?

I need to pass many2one field drop down option to wizard view to display records based on that passed option.
majid
  • 271
  • 1
  • 5
  • 22
0
votes
2 answers

Odoo chatter open by default with "Log internal note" opened

In chatter "New message" is rarely used by our users. The user opens form where a chatter is but has to click "Log internal note" every time (because "New message" is rarely used). How to make so that when user opens form (which contains chatter)…
0
votes
1 answer

How to convert action from Quotation to Sales order when sale confirm For odoo 10

I am entering data in Quotation screen and i want that when i confirm sale for this Quotation than screen should be move to Sales Order menu. Firstly i got the action id for both action(Quotation and Sales order). But i facing problem that how to…
Pawan Kumar Sharma
  • 1,168
  • 8
  • 30
0
votes
2 answers

Copying attachment from one2many field to another one2many odoo 10

I tired to copy attachment from one2many field to another one2many based on id. Does write command work ??? The following code doesn't work properly. existing_documents = self.env['document.product.verify'].search([('docs_id', '=',…
NinjaBat
  • 370
  • 4
  • 20
0
votes
1 answer

hide lock button on sale order form based on state & condition in odoo10

I'am using Odoo10 community, and I'am trying to inherit the sale order form and edit lock button, to make it visible only where state = sale and my own condition (based on an other field value ('Costum_field','=', 'Value1')). The originale code from…
khelili miliana
  • 3,730
  • 2
  • 15
  • 28
0
votes
1 answer

Odoo Email template render error

I'm sending email from module @override create method here is my method @api.model def create(self, values): res = super(licenses, self).create(values) template = self.env.ref('licenses.license_create_email_template', False) # Send out…
Umar Iqbal
  • 47
  • 1
  • 1
  • 8
0
votes
1 answer

difference between curent record and previous record odoo 11

In odoo 10, I'd like to calculate difference between a field from current record and same field from previous record calcul difference between 2 record So I use this code km_parcouru = fields.Float('KM Parcouru', compute='get_km_parcouru',…
rma_bjr
  • 35
  • 1
  • 8
0
votes
1 answer

bool object has no attribute in odoo 10

Error: AttributeError: 'bool' object has no attribute 'split' Error to render compiling AST AttributeError: 'bool' object has no attribute 'split' Template: 549 Path: /templates/t/t/div/table/tr/td[1]/t Node:
0
votes
1 answer

How to get current record ID?

I have a compute field and function : When I click on res.partner list view or kanban view, the current record id's data should get calculated and display in smart button, am facing problem in getting the current ID. account_info =…
iam supreeth
  • 497
  • 4
  • 16
0
votes
0 answers

Dynamic Page name in odoo 10

I have six pages in my form which can be deleted/created by user. Is it possible to change the page name dynamically in Odoo forms? For example if the page strings are Page 1, Page 2 and so on.... If user deletes Page 1, Page 2's name should be…
NinjaBat
  • 370
  • 4
  • 20
0
votes
1 answer

How to add custom Filter in website odoo10, instead using of website category filter?

I am created a custom field on product form , which is selection field (product for sale or rent ). i want this in my website filter in dropdown menu . what is the easiest way to create a custom filter n showing its result ? i dont want to add this…
0
votes
1 answer

How to print tax amount in invoice line in odoo 11

I would like to add custom field as tax amount and i need to print the tax amount of that order line in account invoice line in odoo11 Thanks, Anand
anand raj
  • 227
  • 3
  • 13
0
votes
1 answer

Balance is showing 00.0 when I imported the entries through a sql query in a Journal Entry. oddo10

What I have done is, I entered Opening Balances in journal Entry through a sql query mentioned below. insert into account_move_line (move_id,journal_id, company_id, account_id, operating_unit_id, partner_id, name, currency_id, debit, credit,…
DonFeraRRi
  • 13
  • 5
0
votes
2 answers

[ODOO]:Override private method of another class

UPLOADED MODULE TO GIT --> https://github.com/Kushikime/Invoice_currency_changer I want to change the _create_invoice() method in sale.advance.payment.inv model. This method is called from another method of the same class create_invoices() I was…
KushiNii
  • 7
  • 8
1 2 3
99
100