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

Search In

How to make the onchange function in OpenERP(Odoo) ?

In onchange function first we have to go in .py file (python file) After that we have to decide where you want to give onchange function and then give attribute on_change to that field. Like below python code in py file : def onchange_func

How to add a Podfile in your Project

Below is the step-wise process for integrating a Podfile easily in your Application. Open Terminal Change the directory in Terminal to the location where your Xcode project resides. When you reach to the desired project location in which you want

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 a test.py

How to Use Javadoc tool to create documentation API

Creating a documentation of a Java source file is not a big task, it can be done in just 3 steps which are explained below. We use Javadoc tool to create documentation API for a java source file. Let's create a file with class name Documenttool

Basic Authentication with Apache

Sometimes we have some sensitive information on our website or an information which is intended for only a small group of people, we need a way to authenticate the users visiting that particular information. Authentication is any process by which you

Odoo: Javascript Options

If you want to Javascript Options in OpenERP(Odoo) follow the below mentioned code in your Static->SRC->JS file: - <div data-js="snippet_testimonial_options" data-selector=".snippet_testimonial"> [...] </div> (function() { '

Storing data in Odoo

If you want to storing data in OpenERP(Odoo) follow the below mentioned step. Step-1 first you have to difine the data model Step-2 imported from __init__.py  for loded the file. Step-3 academy/models.py Step-4 academy/__openerp__.py Ste

URLs and routing in Odoo

Hello Friends, If you want to use urls and routing in OpenERP(Odoo) paste the below mentioned code in your .controllers.py file: - 'Url': url.search([]) }) @http.route('/academy//', auth='public', website=True) def teacher(s

Relations between models in Odoo

If you want to make relations between models in OpenERP(Odoo) follow the below mentioned code and paste it in your model.py file: - <pre>name = fields.Char(string="Title", required=True) description = fields.Text() class Session(models.Model)

How to use api.onchange in OpenERP(Odoo)?

Api.onchange will trigger the call to the decorated function if any of the fields specified in the decorator is changed in the form: In below code you can use in your .py file. @api.onchange('fieldx') def do_stuff(self): if self.fieldx == x: self.fi

1 18 129
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: