
Search In
To Create Access Control List in openerp below is the process
The Access control lists determine the general permissions (read, write, create, delete) on each object.
By default the superuser has all permissions on all objects.
If admin provide righ
The default superuser for PostgreSQL is called postgres. You may need to login as this user first.
Than use this commond in terminal
openerp@ubuntu:/$ sudo su postgres
password: XXXXXXXXXX
Now create PostgreSQL user openerp using the following com
In openerp first install board module and inherit object and views in board module and check the current users id values and dictionary values for every fields and then create new record in board module in openerp.
you can use this function as given
Step 1. Build your server
you can install the openssh-server during the install procedure or install subsequently depending on your preference.
<pre>sudo apt-get install openssh-server denyhosts</pre>
Now make sure you are running all
The easiest solution to create backup and restoring you database in OpenERP is itself provided by OpenERP.
To create backup and restore for your OpenERP database, you have two options: 1.) PostgreSQL 2.) OpenERP.
The first one is simple and very co
Step-1 Go to Settings menu
Step-2 Select submenu -> Users -> User
Step-3 Selcet Administrator -> Create
Step-4 Select Access Rights -> Technical Settings
Step-5 Select -> Multi Companies -> Technical Features
To create new project and attach documents in project module in openerp7 follow the step mentioned below-
Step1 - install project module in openerp
Step2 - Then Go to Project -> Projects ->Create Projects
Step3- Then Go to Project -> Proj
If you want to use model reference in OpenERP(Odoo) follow the below mentioned code and paste it in your (Python).py file: →
class openerp.models.Model(pool, cr)
class user(Model):
Note-Above code are created by inheriting from this clas
To create department in Human Resources module openerp follow these step given below:-
Step1- Install Human Resources module in openerp
Step2- create department in Human Resources module in openerp
and then go to Configuration -> Departments ->
If you want to create a model in OpenERP use like below code -
from openerp.osv import fields, osv
class course(osv.osv):
_name='course'
_columns= {
'name':fields.char("Name",size=128,domain=[('name', '=',2)]),