
Search In
If you want to Setup New Chart of Accounts in an Existing OpenERP Configuration in Odoo-9 follow below mentioned steps.
1. Change Deferral method to None of all Account Types
2. Rename code of existing Account Types.
3. Import your new Account
Parsing values in .NET
While converting or parsing values we need to provide the variable to convert and datatype to be converted into String
We will see here the difference between
1 Convert.ToString()
2 .ToString()
While handling null values
Hello Reader's If you have some arguments that you want to pass into function and elements of that array you pass will then be received by your function as distinct parameters.
For instance, if you have this function :
function test() {
var_dump(
If you want to edit __openerp_.py in odoo-9 ,for example you can use below code.
{
'name':'Tutorial theme',
'description': 'A description for your theme.',
'version':'1.0',
'author':'Your name',
'data': [
],
'category': 'Theme/Creativ
Hello Guys,
If you are looking to change your website URLs on SEO friendly mode URL rewriting with .htaccess file is a good practice to do same. Suppose you want to change your website URL like
htttp://www.abc.com/prodDetail.php?prodID=15&catID
In my previous blog How to use Limit clause in MySQL Query, there is explanation of LIMIT clause and its use with SELECT statement. This article explains the use of LIMIT with ORDER BY clause to get 'n' number of Highest and Lowest records in MySQL.
Hello Reader's if you need to list out the dates between two given dates then you can use the JS code as written below:-
Date.prototype.addDays = function(days) {
var dat = new Date(this.valueOf())
dat.setDate(dat.getDate() + days);
retu
Hello Guys,
If you are looking to set flash messages in Zend framework please follow the below process::
1) Open your controller and set below line under init()
$this->_flashMessenger = $this->_helper->getHelper('FlashMessenger'); // De
If you want to create dynamic view in Odoo-9 me have to move on .xml file and In dynamic view we can manage view from xml.file in Odoo module, for example you can see below code .
<record model="ir.ui.view" id="session_tree">
<
Hello Guys,
We generally need paging in all the listing pages in website. To set paging in Zend Framework, please follow the below code::
// you need to set the below code in your controller
$select = $db->select()->from('posts')->order(
