
Search In
If you want to make tree view in OpenERP(Odoo) follow the below mentioned code and paste it in your .xml file: -
<tree string="Idea list">
<field name="name">
<field name="inventor_id">
</field></field></tre
Api.model will convert old API calls to decorated function to new API signature. It allows to be polite when
migrating code.
The below code you can use in your .py file .
@api.model
def afun(self):
pass
Note- Model.api will automatically convert it
In PHP, we can list files with no sub-directories. To understand this we will take a example. Suppose we have a directory demo whose files we want to list inside a drop down box. We will take a form then open the directory whose files we want to disp
If you want to import the customer data through csv file in OpenERP(Odoo) follow the below mentioned steps:-
Step-1 Go to Sales Menu and Click it.
Step-2 Go to Customer button and Click it.
Step-3 Click on Import Button and file will be uploaded to
Method to open zip file
-(void)unZipImages:(NSArray*)arguments
{
NSTask *unzipTask = [[NSTask alloc] init];
[unzipTask setLaunchPath:@"/user/bin/unzip"]; //this is where the unzip application is on the system.
[unzipTask setCurrentDirec
CodeIgniter can be installed in four easy steps on your ubuntu system:
1- Download CodeIgniter package and Unzip. Download link http://www.codeigniter.com/download
2-Upload the CodeIgniter folders and files to your server. Normally the index.php fi
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to use opendir() function in php ?
The opendir() function is used to open a directory handle.
The opendir() function always returns a directory handle resource on succes and re
AppResolver
Introduction :-
AppResolver library is designed for resolving the needs of opening links to their respective application.
Uses :-
This Library can be used for opening different app links and webpages to their respective application.
C
To add a separator line separator string is used, below us the way to do this.
Go to .xml file and use the below code .
<separator string="Session" colspan="4"/>
<field name="session" nolabel="1">
<tree>
<field name="name"/>
If you want to get access right in OpenERP(Odoo) follow the below mentioned code and paste it in your model.py file: →
class test_partner_firstname(common.TransactionCase):
def setUp(self):
super(test_partner_firstname, self).setUp()
self.user_mode