Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

How Odoo ERP Implementation can Optimize Sales and Revenue

Businesses are facing dense competition in the market to overpower their competitors. To stay ahead, it is necessary for an organization to comprehend every action of business successfully and efficiently. The advent of ERP software has simplifie...

Learn 3 Steps to Activate Developer Mode in OpenERP Odoo 10

Developer mode is used by developer to develop the application. In this mode all the hidden functionality of Odoo fields gets displayed which developer needs while development, these fields are kept hidden for other uses. To use that fields first...

Install OpenERP-10 (Odoo-10) in Windows 7, 8 and 10 - 9 Easy Steps

OpenERP is free enterprise resource planning software having various modules for sales, purchase, CRM, HRM, Accounting/finance, E-commerec etc. Later in may 2014 it has been rebranded as Odoo. Odoo stands for On Demand Open Object means that it i...

SAP Vs OpenERP Odoo: Which Software to Choose for Enterprise?

  From past many years SAP has ruled the enterprise software market with its amazing products called ERP software. But the rise of open source software a decade ago had to have it’s inevitable impact on the enterprise softw...

How to create digital signature in OpenERP/Odoo?

Below example will helps you to add the digital signature in OpenERP/Odoo, you just have to follow the steps mentioned below:   Step-1 Install the web_digital_sign module from Odoo apps to addons Step-2 After installation you have t...

Is Angular JS Compatible with Odoo

Odoo-7 and Odoo-8 support the angularjs using Odoo Web Services but Odoo-9 and Odoo-10 does not supports angular js, the reason is that Odoo-9 and Odoo-10 supports back-bone.js.   Below are few steps how Odoo-7...

How to each product partial reconciliation in OpenERP(Odoo)

In OpenERP first, create custom module and than override the function in .py file in custom module  and pass this file to the __init__.py file. Then get the correct line residual amount  and pass this line in account invoice. using...

How to set the partner's sale currency in OpenERP (Odoo) ?

In below example I have written Python script to the partner's sale currency . Use below python code in .py file : for order in self.pool.get('pos.order').browse(cr, uid, ids, context=context): if order.invoice_id: ...

Returns the default price unity in Odoo/OpenERP

In res.partner method we can returns the default price unity on run time and we can access the default price unity in Odoo server. For example you can see below code. from openerp import api from openerp.osv import osv, fields from openerp...

Reflect the change on accounts in Odoo/OpenERP

In accounts method we can reflect the change on accounts on run time and we can access the account method in Odoo server. For example you can see below code. from openerp import fields, models, api, _ from datetime import timedelta cla...

How to amount residual in account module in OpenERP(Odoo-8)?

In OpenERP first we create custom module and module name is account_demo and then create four file like as __init__.py, __openerp__.py, account_demo.py, account_demo.xml file in your module and create function and function name like accoutss_resi...

How to change product id in your account module in OpenERP(Odoo-8)?

In OpenERP, create a custom module like: demo and then create file like: demo.py file in your demo module and demo.py file pass in your other file __init__.py file. And then create other file demo.xml file and pass this file in your other file li...

onchange quantity sequence in account module in OpenERP(Odoo-8)

In OpenERP first, we will manage all file and create module and then inherits to the account.invoice object in your .py file. Follow these step given below Step1- First, we create custom module like as a test module and put this test m...

How to call and create parent class in account module in OpenERP(Odoo)?

In OpenERP first, we create custom module and then create function in your existing module and pass parameter in function name is MaterialsRecursive. In below example I have written Python script to Include only parent level class. Like given ...

How to update fields in text fields in product module OpenERP(Odoo)

In OpenERP first create custom module and inherits the hr module in your existing module.   Follow these step given below Step1- First create existing module like as test and than create .py file in your own module like as a test.py...

How to invoke mails in account module in OpenERP(Odoo)?

In OpenERP first create custom module and inherit the email_template object in your own module. Then create templates in .xml file.   Follow these step given below: Step1- First, create module like: test and then create .py file lik...

How to visible and invisible fields of the basis of selection fields in OpenERP(Odoo-8)?

In OpenERP first, create custom module and then create object in your own module and put your own module in your OpenERP server.   Follow these step given below Step1- First create module like as a test and then create file like as ...

How to send mail in next level in workflow in OpenERP(Odoo-8)?

In OpenERP, first, create custom module and then configure your incoming and outgoing mail in your server an then relate it to the function. Follow these step given below: Step1- First, create module like as a test module and then creat...

How to create PDF report using python script in OpenERP(Odoo-8)

In OpenERP first, create existing module and then inherits the account.invoice object in your own module and also create report file in your own module. Follow these step given belowas Step1- First create module like, test then create file ...

How to catches all keyboard events in OpenERP(Odoo)

In OpenERP first create custom module and inherits the Scanner object in your own module and pass all the barcode fields and map it to the object. Then this barcode will start a loop that catches all keyboard events in Odoo. And by using the ...

How to call product form to using of button in purchase module in OpenERP(Odoo-8)?

In OpenERP first, create your custom module and inherits the purchase module object like purchase.order object in your own module. Than add button in the purchase form. Follow these step given below Step1- First create module and than file ...

How to set the default begin date in OpenERP(Odoo)?

In below example I have written Python script to Include the default begin date in OpenERP.  You can directly use the below sales module in your addons and run in Odoo server.   from openerp.osv import fields, osv from open...

How to check access and use superuser in OpenERP(Odoo)?

Step-1 Install sales module. Step-2 After that sales module. In below example, I have customized sales module. You can directly use the below sales module in your addons and run in Odoo server. from openerp.osv import fields, osv fr...

How to make payment and inherits account invoice object in OpenERP(Odoo-8)

In Odoo first we create existing own module and inherits the account invoice object in your own module. Than fetch all object like as a account.move , account.journal, account.period in your own module and update the account.journal and also invo...

How to write python script for credit card payment in OpenERP(Odoo)?

Step-1 Install partner_res module. Step-2 After that, install partner_res module. In below example, I have customised partner_report module. You can directly use the below partner_res module in your addons and run in Odoo server. impor...

How to make base report design in OpenERP(Odoo)?

Step-1 Install base report module. Step-2 After that customize base report module. In below example, I have customised base report module. You can directly use the below base report module in your addons and run in Odoo server. d...

OpenERP-8:Use amount booked in the company currency on basis of the conversion into the voucher currency

Step-1 Install the account_voucher module and base module is also. Step-2 After that customize account_voucher module and sales module: In below example, I have customized account_voucher module. You can directly use the below account_vouch...

How to generate the barcode for product in OpenERP-7?

If you want to generate the barcode for product in openERP .Then you will need the following kind of python code declaration in your .py file and run in Odoo server. from openerp.osv import fields, orm from openerp.tools.translate import _...

Migrate the code from odoo7 to odoo 8 or 9 to include parent level class in OpenERP-7

When we migrate the code from odoo7 to odoo 8 or 9 then we change only few import classes and some specifics field, rest will remain same, this will helps to migrate code successfully.   In below example I have written Python script to...

How to make sure the invoice due date should contain due date,entered by user when there is no payment term defined i...

If you want make sure the invoice due date should contain due date ,entered by user when there is no payment term defined in Odoo you have to customized .py file in account.invoice module.For example you can see below code . import itertools...

Select product and add product in your sale order line on button click in Odoo-8

In Odoo first, we create custom module and also create function and pass this function in button. And when we open the form we will select the product and this product will show in sale order line. Follow these step given below Step1- First...

Send email in PHP with HTML Template

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to send email in PHP. In web applications sending email is a very important feature.  PHP provides a built-in mail() function for creating and sending emails to...

How to change email templates in OpenERP(Odoo-9)?

In OpenERP first, create a database and then install the sale module and account module with mapping your country currency and account module. Then install the mass mailing module in your database and thenconfirme your email templates in mass mai...

How to manage and configure outgoing email in Openerp(Odoo-9)

In Odoo, first, create database on server then install like: sale and account module and mapping with country account like as united state currency is $ then install module: United States – Accounting install. And If users want to send an ...

How to inherit delegation and view in OpenERP(Odoo)

In OpenERP first, we create a module and then inherits to the delegation and views both in your own module. Follow these step shown below Step1- First we create a module like as: test and then create a test.y file in an own module and pass ...

How to create function Compute fields using API in Odoo-9

In OpenERP first, we create existing module and then creates an object in own module and then creates fields and function in module and relate it to the fields, this fields computes all related records and saves it in a database. Here computed...

How to show submenus in Sale module in OpenERP(Odoo)

In OpenERP first, create custom module than inherits the sale menu and pass the view_mode in your menu file, follow these steps show below Step1- The first step is to create a module i.e test and then create a file test.py and in this file, cr...

How to show the customer payment Total in fields in OpenERP?

In OpenERP first, create a custom module and then inherits the account.payment object in your own module like module name test. Follow these steps given below Step1- First create the __init__.py file in your test module and use this code g...

OpenERP/Odoo Life Cycle

The life cycle of the Information system showcases a number of stages through which the development of project and use of information systems passes. Traditionally, the life cycle of Information system revolves around system study, project defini...

How to add penalty in customer invoice in OpenERP-6.1?

In OpenERP first, install the account module and then create the own module and relate it to the fields payment term in account module. Follow these steps given below: Step1- First create add_penalty.py file in your own module and pass this...

How to transfer bill from one customer to another customer in OpenERP-6.1?

In OpenERP first, install the sale and account module so that users can transfer one bill to another bill. Follow these step given below: Step1- First create own module and then create file like as merge.py file and pass this file in your _...

How to merge partner in OpenERP-6.1?

In OpenERP first, install the sale and account module and then create the own module. Follow these step given below: Step1- Create your own module and then create merge_partner file and then pass this file in __init__.py file in your own mo...

How to find BoM for particular product and product_uom in Odoo?

In Odoo first, we have to create own modules and then create a function to find the BOM in our own modules. After this, we will search product on the basis of the product_tmpl_id and relate it to the BOM.  Here, product_uom is the Uni...

How to add value form account invoice line and store in customer form in Odoo-9?

In Odoo first install the accounting module and then if users want all customer related account invoice to be added only to the product price and the quantity of the product calculated and stored in the fields in res.partner, for this follow the ...

How to resize and save image in Odoo-8?

In Odoo first create the modules and then create a new field that saves images. Now to upload them correctly in your database and to resize images automatically and store them in database you can use the below function or steps I have mentioned: ...

How to inherits views and replace any fields in views in Odoo?

In Odoo first, we create existing modules and then we inherits the views in modules. Like first, we install the accounting modules in database and then inherits the account modules. Object is the account.invoice in existing modules and if user wa...

How to create PDF report for account module in Odoo-9?

In Odoo-9 first we install the accounting module and then create new module and inherits the account.invoice object in account module to own your module and give type is pdf in module. Follow these step show below: Step1:- First we create n...

How to functional field is replaced by computed field Odoo-8?

In Odoo-8 first, we create the own module and then create fields and make these fields a functional fields. Ones we create functional fields after this the functional field is replaced by computed field. Like, first create a computed field and...

How to calculate fields with total in account invoice line in Odoo-9?

In Odoo first, you have to install accounting module and in our system add existing fields and inherit the accounting module in our own module. We will follow these step given below:   Step1- First we create our own module and inher...

How to show a menu badge in OpenERP/Odoo?

If you want to show a menu badge in OpenERP/Odoo then you should follow the below code:   class Shiva(models.Model): _name = 'Shiva' _inherit = ['ir.needaction_mixin'] STATES = [ ('healthy', "Healthy Sh...
prev 1 3 13
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: