
Search In
To make Unit of Measure (UOM) in OpenERP (Odoo) is not a difficult, you can do this in just two steps which are provided below, follow both the steps and it's done.
Step-1 Go to sales modules->Configuration ->Unit of Measure->Create
As show
If you want to make an Appraisal Plan in OpenERP (Odoo) follow the below mentioned steps:-
Step-1 Install Human Resources(HR) and Employee Appraisals Module.
Step-2 Go to Human Resources menu->Configuration->Appraisal Plan->Create
Step-3
Step-1 Install multi_search module.
Step-2 inherit = 'product.product' class in .py(Python file) in multi_search module.
In below example, I have custmozied .py file. You can directly copy the below python code in multi_search module -
class prod
Hello all,
In C#, we use delegates, which are nothing but the type safe function pointer which means that a delegate points to a function and whenever we invoke the delegate, it will call the function for which it holds the reference.
The signature
Use of array_fill() function in php.
The array_fill() function is basically used for filling an array with values.
Syntax of array_fill() function: array_fill(index,number,value)
According to above syntax, there are three main Parameter of arra
You have to follow below Steps to install JDK (java developement kit) on Ubuntu
Step 1: Installation of JDK
sudo apt-get install openjdk-7-jdk
Step 2: After the installation, Use command.
apt-cache search jdk
Step 3: Setting the Environmen
To implement "OR" feature on the query we need to merge two queries.
First, create a list of queries and add the queries that you want to implement.
And then ParseQuery.or() methods to make a final query.
Below is the code
ParseQuery myQuery1 =
Command Line Argument
1.Command line argument is a parameter supplied to the program when it is invoked.
2.Command line argument is an important concept in C programming.
3.It is mostly used when you need to control your program from outside.
A Switch is a control statement that allows value to change control of execution.
These are the fact about the switch statement.
Switch case statement expressions must be of integral type (int,char and enum). Any other type of expressions used in s
As we all know that routes plays an important role in any MVC framework. In Laravel we will define our routes in routes.php. Using Laravel 4.x we have the option to pass multiple optional parameters using Laravel 4.x.
By using example it can be easi
