
Search In
If you want to get the outstanding residual value in invoice currency in Odoo then follow the following code in your .py file.
# -*- coding: utf-8 -*-
import json
from lxml import etree
from datetime import datetime
from dateutil.relativedelta imp
PHP has given some useful environment variable that are there in the phpinfo.php page that was used to setup the PHP environment.The best environment variables set by PHP is HTTP_USER_AGENT which identifies the user's browser and operating system
Server is like a service provider which will provide you the response as per as your request.
Types of Servers
Server Platform
It is like a base over which the entire things suppose to run. It is like an interface based on whic
Hi All,
This log will help you to bind data to dropdown/html select control using AngularJS. Data is populated using webmethod.
<select ng-options="Country.CountryName for Country in CountryList" ng-model="selectedCountry">
</select>
For binding data we can have data that contains single records while fetching with the data source or multiple rows.
If we have single row the fetching and display is very simple , but if the number of records are multiple then we have to pa
For working in gridview you can use either the jquery or the predefined template for displaying the data in the grid.
First i will create the model class that is used to display the details in the gridview.
public enum getstatus
While binding records or details with the gridview you need to perform several operations into it.
One of these operation is to insert the details for the model which we have made the action and the view.
For doing that the primary
Simple code to fetch selected data from database table in excelsheet in cakephp:
Step 1: To achieve this we will use csvHelper class. Now make a file named as CsvHelper.php in your app/View/Helper directory, then add the following code written below
In MVC while embedding the Jquery grid we will have to also perfrom the Crude operations like Insert Update Delete.
For doing that in MVC we need to made actions for it and for each action we need a view .
But in cas
While working on the MVC we have implemented the JQuery grid that is use for the Crude operations.
Then after this we will define a method from which the insertion and the updation is being done on the same method.
First we
