This commit is contained in:
saravanakumar_kandasami 2017-06-26 19:09:41 +05:30
parent e930953631
commit c9df45fc9d
2306 changed files with 0 additions and 668761 deletions

View File

@ -1 +0,0 @@
Deny from all

View File

@ -1 +0,0 @@
Deny from all

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,116 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| AUTO-LOADER
| -------------------------------------------------------------------
| This file specifies which systems should be loaded by default.
|
| In order to keep the framework as light-weight as possible only the
| absolute minimal resources are loaded by default. For example,
| the database is not connected to automatically since no assumption
| is made regarding whether you intend to use it. This file lets
| you globally define which systems you would like loaded with every
| request.
|
| -------------------------------------------------------------------
| Instructions
| -------------------------------------------------------------------
|
| These are the things you can load automatically:
|
| 1. Packages
| 2. Libraries
| 3. Helper files
| 4. Custom config files
| 5. Language files
| 6. Models
|
*/
/*
| -------------------------------------------------------------------
| Auto-load Packges
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
*/
$autoload['packages'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in the system/libraries folder
| or in your application/libraries folder.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
$autoload['libraries'] = array('database', 'session');
/*
| -------------------------------------------------------------------
| Auto-load Helper Files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = array('url', 'file','cias_helper');
/*
| -------------------------------------------------------------------
| Auto-load Config files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['config'] = array('config1', 'config2');
|
| NOTE: This item is intended for use ONLY if you have created custom
| config files. Otherwise, leave it blank.
|
*/
$autoload['config'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Language files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['language'] = array('lang1', 'lang2');
|
| NOTE: Do not include the "_lang" part of your file. For example
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
*/
$autoload['language'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Models
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['model'] = array('model1', 'model2');
|
*/
$autoload['model'] = array();
/* End of file autoload.php */
/* Location: ./application/config/autoload.php */

View File

@ -1,366 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
| If this is not set then CodeIgniter will try to guess the protocol, domain
| and path to your installation. However, you should always configure this
| explicitly and never rely on auto-guessing, especially in production
| environments.
|
*/
$base = "http://".$_SERVER['HTTP_HOST'];
$base .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
$config['base_url'] = $base;
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'AUTO' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = 'AUTO';
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/urls.html
*/
$config['url_suffix'] = '';
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| This determines which set of language files should be used. Make sure
| there is an available translation if you intend to use something other
| than english.
|
*/
$config['language'] = 'english';
/*
|--------------------------------------------------------------------------
| Default Character Set
|--------------------------------------------------------------------------
|
| This determines which character set is used by default in various methods
| that require a character set to be provided.
|
*/
$config['charset'] = 'UTF-8';
/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the 'hooks' feature you must enable it by
| setting this variable to TRUE (boolean). See the user guide for details.
|
*/
$config['enable_hooks'] = FALSE;
/*
|--------------------------------------------------------------------------
| Class Extension Prefix
|--------------------------------------------------------------------------
|
| This item allows you to set the filename/classname prefix when extending
| native libraries. For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/core_classes.html
| http://codeigniter.com/user_guide/general/creating_libraries.html
|
*/
$config['subclass_prefix'] = 'MY_';
/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify with a regular expression which characters are permitted
| within your URLs. When someone tries to submit a URL with disallowed
| characters they will get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
| Leave blank to allow all characters -- but only if you are insane.
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
/*
|--------------------------------------------------------------------------
| Enable Query Strings
|--------------------------------------------------------------------------
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
| example.com/who/what/where/
|
| By default CodeIgniter enables access to the $_GET array. If for some
| reason you would like to disable it, set 'allow_get_array' to FALSE.
|
| You can optionally enable standard query string based URLs:
| example.com?who=me&what=something&where=here
|
| Options are: TRUE or FALSE (boolean)
|
| The other items let you set the query string 'words' that will
| invoke your controllers and its functions:
| example.com/index.php?c=controller&m=function
|
| Please note that some of the helpers won't work as expected when
| this feature is enabled, since CodeIgniter is designed primarily to
| use segment based URLs.
|
*/
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use
/*
|--------------------------------------------------------------------------
| Error Logging Threshold
|--------------------------------------------------------------------------
|
| If you have enabled error logging, you can set an error threshold to
| determine what gets logged. Threshold options are:
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging, Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
| your log files will fill up very fast.
|
*/
$config['log_threshold'] = 1;
/*
|--------------------------------------------------------------------------
| Error Logging Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| application/logs/ folder. Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';
/*
|--------------------------------------------------------------------------
| Date Format for Logs
|--------------------------------------------------------------------------
|
| Each item that is logged has an associated date. You can use PHP date
| codes to set your own date formatting
|
*/
$config['log_date_format'] = 'Y-m-d H:i:s';
/*
|--------------------------------------------------------------------------
| Cache Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| system/cache/ folder. Use a full server path with trailing slash.
|
*/
$config['cache_path'] = '';
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| If you use the Encryption class or the Session class you
| MUST set an encryption key. See the user guide for info.
|
*/
$config['encryption_key'] = 'asjkrue*$djasfl134213';
/*
|--------------------------------------------------------------------------
| Session Variables
|--------------------------------------------------------------------------
|
| 'sess_cookie_name' = the name you want for the cookie
| 'sess_expiration' = the number of SECONDS you want the session to last.
| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
| 'sess_expire_on_close' = Whether to cause the session to expire automatically
| when the browser window is closed
| 'sess_encrypt_cookie' = Whether to encrypt the cookie
| 'sess_use_database' = Whether to save the session data to a database
| 'sess_table_name' = The name of the session database table
| 'sess_match_ip' = Whether to match the user's IP address when reading the session data
| 'sess_match_useragent' = Whether to match the User Agent when reading the session data
| 'sess_time_to_update' = how many seconds between CI refreshing Session Information
|
*/
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
/*
|--------------------------------------------------------------------------
| Cookie Related Variables
|--------------------------------------------------------------------------
|
| 'cookie_prefix' = Set a prefix if you need to avoid collisions
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
| 'cookie_path' = Typically will be a forward slash
| 'cookie_secure' = Cookies will only be set if a secure HTTPS connection exists.
|
*/
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;
/*
|--------------------------------------------------------------------------
| Global XSS Filtering
|--------------------------------------------------------------------------
|
| Determines whether the XSS filter is always active when GET, POST or
| COOKIE data is encountered
|
*/
$config['global_xss_filtering'] = FALSE;
/*
|--------------------------------------------------------------------------
| Cross Site Request Forgery
|--------------------------------------------------------------------------
| Enables a CSRF cookie token to be set. When set to TRUE, token will be
| checked on a submitted form. If you are accepting user data, it is strongly
| recommended CSRF protection be enabled.
|
| 'csrf_token_name' = The token name
| 'csrf_cookie_name' = The cookie name
| 'csrf_expire' = The number in seconds the token should expire.
*/
$config['csrf_protection'] = FALSE;
$config['csrf_token_name'] = 'csrf_test_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_expire'] = 7200;
/*
|--------------------------------------------------------------------------
| Output Compression
|--------------------------------------------------------------------------
|
| Enables Gzip output compression for faster page loads. When enabled,
| the output class will test whether your server supports Gzip.
| Even if it does, however, not all browsers support compression
| so enable only if you are reasonably sure your visitors can handle it.
|
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
| means you are prematurely outputting something to your browser. It could
| even be a line of whitespace at the end of one of your scripts. For
| compression to work, nothing can be sent before the output buffer is called
| by the output class. Do not 'echo' any values with compression enabled.
|
*/
$config['compress_output'] = FALSE;
/*
|--------------------------------------------------------------------------
| Master Time Reference
|--------------------------------------------------------------------------
|
| Options are 'local' or 'gmt'. This pref tells the system whether to use
| your server's local time as the master 'now' reference, or convert it to
| GMT. See the 'date helper' page of the user guide for information
| regarding date handling.
|
*/
$config['time_reference'] = 'local';
/*
|--------------------------------------------------------------------------
| Rewrite PHP Short Tags
|--------------------------------------------------------------------------
|
| If your PHP installation does not have short tag support enabled CI
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
| in your view files. Options are TRUE or FALSE (boolean)
|
*/
$config['rewrite_short_tags'] = FALSE;
/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy IP
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
| header in order to properly identify the visitor's IP address.
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
*/
$config['proxy_ips'] = '';
/* End of file config.php */
/* Location: ./application/config/config.php */

View File

@ -1,204 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
define('FILE_READ_MODE', 0644);
define('FILE_WRITE_MODE', 0666);
define('DIR_READ_MODE', 0755);
define('DIR_WRITE_MODE', 0777);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
define('FOPEN_READ', 'rb');
define('FOPEN_READ_WRITE', 'r+b');
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
define('FOPEN_WRITE_CREATE', 'ab');
define('FOPEN_READ_WRITE_CREATE', 'a+b');
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
/**** USER DEFINED CONSTANTS **********/
define('ROLE_ADMIN', '1');
define('ROLE_MANAGER', '2');
define('ROLE_EMPLOYEE', '3');
/*define('ROLE_PRODUCTION', '4');
define('ROLE_QUALITY', '5');
define('ROLE_SECURITY', '6');
define('ROLE_SALES', '7');
define('ROLE_ACCOUNTS', '8');*/
define('SEGMENT', 2);
/************** Requistion Status code */
define('REQ_DRAFT', 'ST001');
define('REQ_PENDING_APPROVAL', 'ST002');
define('REQITEM_NEW', 'ST003');
define('REQ_APPROVED', 'ST004');
define('REQ_PO_CREATED' , 'ST005');
define('REQ_REJECTED', 'ST006');
define('REQ_CLOSED', 'ST007');
define('REQ_ONHOLD', 'ST008');
define('REQITEM_ONHOLD', 'ST009');
define('REQITEM_PARTIALLY_DELIVERED', 'ST010');
define('REQITEM_DELIVERED', 'ST011');
define('REQ_DELETED', 'ST013');
define('REQITEM_POCREATED', 'ST022');
define('REQITEM_PARTIALLY_PO_CREATED', 'ST023');
define('REQITEM_Emergency_PO_CREATED', 'ST024');
/*IGR Status */
define('IGR_CREATED', 'ST027');
define('IGR_CLOSED', 'ST028');
define('IGR_CANCELLED', 'ST029');
/*IGR Status*/
define('REQUISTSTATUS', '0');
define('REQUISTITEMSTATUS', '1');
/* Purchase Order Status */
define('PO_DRAFT', 'ST014');
define('PO_CREATED', 'ST015');
define('PO_INPROGRESS', 'ST016');
define('PO_DISPATCHED', 'ST017');
define('PO_DELIVERED', 'ST018');
define('PO_CANCELLED', 'ST019');
define('PO_ONHOLD', 'ST020');
define('PO_CLOSED', 'ST021');
/* Department Code */
define('ADMIN', 'DEP01');
define('QUALITY', 'DEP02');
define('STORE', 'DEP03');
define('SALES', 'DEP04');
define('PRODUCTION', 'DEP05');
define('DELIVERY', 'DEP06');
define('TRP', 'DEP07');
define('COATING', 'DEP08');
define('MAINTENANANCE', 'DEP09');
define('FINANCE', 'DEP10');
define('PURCHASE', 'DEP11');
define('MANAGEMENT', 'DEP12');
/* PO Type */
define('REVENUE', 'REVENUE');
define('SERVICE', 'SERVICE');
define('IMPORT', 'IMPORT');
define('CAPITAL', 'CAPITAL');
// Tax Type
define('PERCENTAGE', 'PERCENTAGE');
define('LUMPSUM', 'LUMP SUM');
define('NILTYPE', 'NIL');
// Freight Type
define('PERUOM', 'PER UOM');
define('PERTRIP', 'PER TRIP');
/* Formula for Tax calculation */
/* Discount*/
define('DIS_PERCENTAGE', '((Discountval/100) * basicValue)');
define('DIS_LUMPSUM', 'Discountval');
// Packaging
define('PACKAGING_PERCENTAGE_BYDISCOUNTVALUE', '((Packagingvalue/100) * (basicValue-AfterDiscount))');
define('PACKAGING_PERCENTAGE_BYBASICVALUE', '(Packagingvalue/100) * basicValue');
define('PACKAGING_LUMPSUM_BYDISCOUNTVALUE', 'Packagingvalue');
define('PACKAGING_LUMPSUM_BYBASICVALUE', 'Packagingvalue');
//Excise
define('EXCISE_ONBASICVALUE', '((ExciseDuty/100) * basicValue)');
define('EXCISE_ONBASIC_DISCOUNT', '((ExciseDuty/100) * (basicValue-AfterDiscount))');
define('EXCISE_ONBASIC_DISCOUNT_PACKAGING', '((ExciseDuty/100) * ((basicValue-AfterDiscount)+ AfterPackaging))');
define('EXCISE_ONBASIC_PACKAGING', '((ExciseDuty/100) * (basicValue + AfterPackaging))');
//Vat
define('VAT_ONBASICVALUE', '((vatValue/100) * basicValue)');
//define('VAT_ONEXICSEVALUE', '((vatValue/100) * (basicValue+ExciseDuty))');
define('VAT_ONEXICSEVALUE', '(((basicValue - discountValue) + (packageValue + ExciseDuty)) * (vatValue/100))');
//CST
define('CST_ONBASICVALUE', '((CSTValue/100) * basicValue)');
//define('CST_ONEXICSEVALUE', '((CSTValue/100) * (basicValue+ExciseDuty))');
define('CST_ONEXICSEVALUE', '(((basicValue - discountValue) + (packageValue + ExciseDuty)) * (CSTValue/100))');
//GST
define('GSTTAX', '((GSTValue/100) * basicValue)');
//Other Tax
define('OTHERTAX', '((OtherTaxValue/100) * basicValue)');
//Freight Tax
define('FREIGHT_PERCENTAGE', '((FreightValue/100) * basicValue)');
define('FREIGHT_LUMPSUM', 'FreightValue');
define('FREIGHT_PERUOM', 'FreightValue * Quantity');
define('FREIGHT_PERTRIP', 'FreightValue');
/* SERVICE PO VARIABLES */
define('SERVICETAX_SERVICETAX_14PERCENT', '((14/100) * basicValue)');
define('SERVICETAX_EDUCESS_2PERCENT', '((2/100) * ServiceTaxAmount)');
define('SERVICETAX_HIGHEREDUCESS_1PERCENT', '((1/100) * ServiceTaxAmount)');
define('SERVICETAX_KRISHIKALYAN', '(((.5)/100) * basicValue)');
define('SERVICETAX_SWACHHBHARAT', '(((.5)/100) * basicValue)');
/*IMPORT PO CALCULATIONS*/
define('LOADING_CHARGE', '(txtlanding*txtbasicprice/100)');
define('HIGHSEAS_SALES', '(totalhighsess*highsesspercentage/100)');
define('CUSTOM_DUTY', '(sumcustom*txtcustompercentage)/100');
define('EXCISE_DUTY', '(txtexcisesum*txtpercentage)/100');
define('EXCISE_ED', '(txtexcise*txtexcisepercentage)/100');
define('EXCISE_SH', '(excisetxt*exciseshcess)/100');
define('CUSTOM_ED', '(totalval*txtedcesspercentage)/100');
define('CUSTOM_SH', '(totcustomsh*txtshpercentage)/100');
define('ADDTNL_EXCISEDUTY', '(totaddtnlexcise*addtnpercentage)/100');
define('GROSS_EXP', '(txtgrossdutypayable-txtmodvat)');
define('AVL_MODVAT', 'txtexciseduty1+txtexciseedcess+txtexciseshcess+txtaddtnlexcise');
define('GROSS_DUTY', 'landingcha+highsesssalless+customcha+excisecha+exciseedcha+exciseshcha+customed+customsh+txtaddtnexciseduty');
define('PURCHASE_RATE', 'txtbasicinrprice/txtCtablequantity');
define('CUSTOMDUTY_EXP', 'txtgrossexp/txtCtablequantity');
define('RMC_CAL', 'txtpurchaserate+txtcustomdutyexp');
define('CALCULATE_TOTAL', '(txtrmc*quantity)+basicprice');
/* Capital Po Calculations */
define('Capital_Landing_Charge', 'basicPrice*(landCharge/100)');
define('Capital_Highseas_Charge', '((highSeas/100) * (basicPrice+afterLandingCharge))');
define('Capital_Customduty_Charge', '((Customduty/100) * (basicPrice+afterLandingCharge+afterHighseas))');
define('Capital_Excise_Charge', '((Excise/100) * (basicPrice+afterLandingCharge+afterHighseas+afterCustomduty))');
define('Capital_ExciseEDcess_Charge', '(ExciseEDcessCharge/100) * ExciseDuty');
define('Capital_ExciseSHcess_Charge', '(ExciseSHcessCharge/100) * ExciseDuty');
define('Capital_CustomEDcess_Charge', '((CustomEDcess/100) * (afterLandingCharge+AfterHighseas+AfterCustomduty+AfterExcisedutyTax+AfterExcisedutyEDcess+AfterExcisedutySHcess))');
define('Capital_CustomSHcess_Charge', '((CustomSHcess/100) * (afterLandingCharge+AfterHighseas+AfterCustomduty+AfterExcisedutyTax+AfterExcisedutyEDcess+AfterExcisedutySHcess))');
define('Capital_AdditionalExciseduty_Charge', '((AdditionalExciseduty/100) * (basicPrices+afterLandingCharge+AfterHighseas+AfterCustomduty+AfterExcisedutyTax+AfterExcisedutyEDcess+AfterExcisedutySHcess+AfterCustomEDcess+AfterCustomSHcess))');
define('Capital_Grossdutypayable_Charge', '(AfterAdditionalExciseduty+afterLandingCharge+AfterHighseas+AfterCustomduty+AfterExcisedutyTax+AfterExcisedutyEDcess+AfterExcisedutySHcess+AfterCustomEDcess+AfterCustomSHcess)');
define('Capital_ModvatCharge_Charge', '(AfterExcisedutyTax+AfterExcisedutyEDcess+AfterExcisedutySHcess+AfterAdditionalExciseduty)');
define('Capital_Grossexpenses_Charge', '(Grossdutypayable-AvailableModvat)');
define('Capital_purchaserate_Charge', '(AfterBasicPriceTax/PurQuantity)');
define('Capital_CustomDutyExpenses_Charge', '(Grossexpenses/PurQuantity)');
define('Capital_RMCIncludingCustomers_Charge', '(purchaserate+CustomDutyExpenses)');
/* End of file constants.php */
/* Location: ./application/config/constants.php */

View File

@ -1,70 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database type. ie: mysql. Currently supported:
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Active Record class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| NOTE: For MySQL and MySQLi databases, this setting is only used
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
| (and in table creation queries made with DB Forge).
| There is an incompatibility in PHP with mysql_real_escape_string() which
| can make your site vulnerable to SQL injection if you are using a
| multi-byte character set and are running versions lower than these.
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['autoinit'] Whether or not to automatically initialize the database.
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
| The $active_record variables lets you determine whether or not to load
| the active record class
*/
$active_group = 'default';
$active_record = TRUE;
$db['default']['hostname'] = 'sidharthindustries.com';
//$db['default']['username'] = 'kasiram9_prod';
$db['default']['username'] = 'kasiram9_Siddh';
$db['default']['password'] = 'sidh@1234';
//$db['default']['database'] = 'kasiram9_SiddharthIndustriesProd';
$db['default']['database'] = 'kasiram9_SiddharthIndustries';
$db['default']['dbdriver'] = 'mysqli';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
/* End of file database.php */
/* Location: ./application/config/database.php */

View File

@ -1,15 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$_doctypes = array(
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
'html5' => '<!DOCTYPE html>',
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'
);
/* End of file doctypes.php */
/* Location: ./application/config/doctypes.php */

View File

@ -1,64 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| Foreign Characters
| -------------------------------------------------------------------
| This file contains an array of foreign characters for transliteration
| conversion used by the Text helper
|
*/
$foreign_characters = array(
'/ä|æ|ǽ/' => 'ae',
'/ö|œ/' => 'oe',
'/ü/' => 'ue',
'/Ä/' => 'Ae',
'/Ü/' => 'Ue',
'/Ö/' => 'Oe',
'/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A',
'/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a',
'/Ç|Ć|Ĉ|Ċ|Č/' => 'C',
'/ç|ć|ĉ|ċ|č/' => 'c',
'/Ð|Ď|Đ/' => 'D',
'/ð|ď|đ/' => 'd',
'/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E',
'/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e',
'/Ĝ|Ğ|Ġ|Ģ/' => 'G',
'/ĝ|ğ|ġ|ģ/' => 'g',
'/Ĥ|Ħ/' => 'H',
'/ĥ|ħ/' => 'h',
'/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I',
'/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i',
'/Ĵ/' => 'J',
'/ĵ/' => 'j',
'/Ķ/' => 'K',
'/ķ/' => 'k',
'/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L',
'/ĺ|ļ|ľ|ŀ|ł/' => 'l',
'/Ñ|Ń|Ņ|Ň/' => 'N',
'/ñ|ń|ņ|ň|ʼn/' => 'n',
'/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O',
'/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o',
'/Ŕ|Ŗ|Ř/' => 'R',
'/ŕ|ŗ|ř/' => 'r',
'/Ś|Ŝ|Ş|Š/' => 'S',
'/ś|ŝ|ş|š|ſ/' => 's',
'/Ţ|Ť|Ŧ/' => 'T',
'/ţ|ť|ŧ/' => 't',
'/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U',
'/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u',
'/Ý|Ÿ|Ŷ/' => 'Y',
'/ý|ÿ|ŷ/' => 'y',
'/Ŵ/' => 'W',
'/ŵ/' => 'w',
'/Ź|Ż|Ž/' => 'Z',
'/ź|ż|ž/' => 'z',
'/Æ|Ǽ/' => 'AE',
'/ß/'=> 'ss',
'/IJ/' => 'IJ',
'/ij/' => 'ij',
'/Œ/' => 'OE',
'/ƒ/' => 'f'
);
/* End of file foreign_chars.php */
/* Location: ./application/config/foreign_chars.php */

View File

@ -1,39 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
// For view all the languages go to the folder assets/grocery_crud/languages/
$config['grocery_crud_default_language'] = 'english';
// There are only three choices: "uk-date" (dd/mm/yyyy), "us-date" (mm/dd/yyyy) or "sql-date" (yyyy-mm-dd)
$config['grocery_crud_date_format'] = 'uk-date';
// The default per page when a user firstly see a list page
$config['grocery_crud_default_per_page'] = 10;
$config['grocery_crud_file_upload_allow_file_types'] = 'gif|jpeg|jpg|png|tiff|doc|docx|txt|odt|xls|xlsx|pdf|ppt|pptx|pps|ppsx|mp3|m4a|ogg|wav|mp4|m4v|mov|wmv|flv|avi|mpg|ogv|3gp|3g2';
$config['grocery_crud_file_upload_max_file_size'] = '20MB'; //ex. '10MB' (Mega Bytes), '1067KB' (Kilo Bytes), '5000B' (Bytes)
// You can choose 'ckeditor','tinymce' or 'markitup'
$config['grocery_crud_default_text_editor'] = 'ckeditor';
// You can choose 'minimal' or 'full'
$config['grocery_crud_text_editor_type'] = 'full';
// The character limiter at the list page, zero(0) value if you don't want character limiter at your list page
$config['grocery_crud_character_limiter'] = 30;
// All the forms are opening with dialog forms without refreshing the page once again.
// IMPORTANT: PLease be aware that this functionality is still in BETA phase and it is
// not suggested to use this in production mode
$config['grocery_crud_dialog_forms'] = false;
// Having some options at the list paging. This is the default one that all the websites are using.
// Make sure that the number of grocery_crud_default_per_page variable is included to this array.
$config['grocery_crud_paging_options'] = array('10','25','50','100');
// Default theme for grocery CRUD
$config['grocery_crud_default_theme'] = 'flexigrid';
// The environment is important so we can have specific configurations for specific environments
$config['grocery_crud_environment'] = 'production';
// Turn XSS clean into true in case you are exposing your CRUD into public. Please be aware that this is
// stripping all the HTML and do not just trim the extra javascript
$config['grocery_crud_xss_clean'] = false;

View File

@ -1,16 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files. Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/hooks.html
|
*/
/* End of file hooks.php */
/* Location: ./application/config/hooks.php */

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,41 +0,0 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Enable/Disable Migrations
|--------------------------------------------------------------------------
|
| Migrations are disabled by default but should be enabled
| whenever you intend to do a schema migration.
|
*/
$config['migration_enabled'] = FALSE;
/*
|--------------------------------------------------------------------------
| Migrations version
|--------------------------------------------------------------------------
|
| This is used to set migration version that the file system should be on.
| If you run $this->migration->latest() this is the version that schema will
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 0;
/*
|--------------------------------------------------------------------------
| Migrations Path
|--------------------------------------------------------------------------
|
| Path to your migrations folder.
| Typically, it will be within your application path.
| Also, writing permission is required within the migrations path.
|
*/
$config['migration_path'] = APPPATH . 'migrations/';
/* End of file migration.php */
/* Location: ./application/config/migration.php */

View File

@ -1,106 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| MIME TYPES
| -------------------------------------------------------------------
| This file contains an array of mime types. It is used by the
| Upload class to help identify allowed file types.
|
*/
$mimes = array( 'hqx' => 'application/mac-binhex40',
'cpt' => 'application/mac-compactpro',
'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel'),
'bin' => 'application/macbinary',
'dms' => 'application/octet-stream',
'lha' => 'application/octet-stream',
'lzh' => 'application/octet-stream',
'exe' => array('application/octet-stream', 'application/x-msdownload'),
'class' => 'application/octet-stream',
'psd' => 'application/x-photoshop',
'so' => 'application/octet-stream',
'sea' => 'application/octet-stream',
'dll' => 'application/octet-stream',
'oda' => 'application/oda',
'pdf' => array('application/pdf', 'application/x-download'),
'ai' => 'application/postscript',
'eps' => 'application/postscript',
'ps' => 'application/postscript',
'smi' => 'application/smil',
'smil' => 'application/smil',
'mif' => 'application/vnd.mif',
'xls' => array('application/excel', 'application/vnd.ms-excel', 'application/msexcel'),
'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint'),
'wbxml' => 'application/wbxml',
'wmlc' => 'application/wmlc',
'dcr' => 'application/x-director',
'dir' => 'application/x-director',
'dxr' => 'application/x-director',
'dvi' => 'application/x-dvi',
'gtar' => 'application/x-gtar',
'gz' => 'application/x-gzip',
'php' => 'application/x-httpd-php',
'php4' => 'application/x-httpd-php',
'php3' => 'application/x-httpd-php',
'phtml' => 'application/x-httpd-php',
'phps' => 'application/x-httpd-php-source',
'js' => 'application/x-javascript',
'swf' => 'application/x-shockwave-flash',
'sit' => 'application/x-stuffit',
'tar' => 'application/x-tar',
'tgz' => array('application/x-tar', 'application/x-gzip-compressed'),
'xhtml' => 'application/xhtml+xml',
'xht' => 'application/xhtml+xml',
'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed'),
'mid' => 'audio/midi',
'midi' => 'audio/midi',
'mpga' => 'audio/mpeg',
'mp2' => 'audio/mpeg',
'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'),
'aif' => 'audio/x-aiff',
'aiff' => 'audio/x-aiff',
'aifc' => 'audio/x-aiff',
'ram' => 'audio/x-pn-realaudio',
'rm' => 'audio/x-pn-realaudio',
'rpm' => 'audio/x-pn-realaudio-plugin',
'ra' => 'audio/x-realaudio',
'rv' => 'video/vnd.rn-realvideo',
'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'),
'bmp' => array('image/bmp', 'image/x-windows-bmp'),
'gif' => 'image/gif',
'jpeg' => array('image/jpeg', 'image/pjpeg'),
'jpg' => array('image/jpeg', 'image/pjpeg'),
'jpe' => array('image/jpeg', 'image/pjpeg'),
'png' => array('image/png', 'image/x-png'),
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'css' => 'text/css',
'html' => 'text/html',
'htm' => 'text/html',
'shtml' => 'text/html',
'txt' => 'text/plain',
'text' => 'text/plain',
'log' => array('text/plain', 'text/x-log'),
'rtx' => 'text/richtext',
'rtf' => 'text/rtf',
'xml' => 'text/xml',
'xsl' => 'text/xml',
'mpeg' => 'video/mpeg',
'mpg' => 'video/mpeg',
'mpe' => 'video/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'avi' => 'video/x-msvideo',
'movie' => 'video/x-sgi-movie',
'doc' => 'application/msword',
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip'),
'word' => array('application/msword', 'application/octet-stream'),
'xl' => 'application/excel',
'eml' => 'message/rfc822',
'json' => array('application/json', 'text/json')
);
/* End of file mimes.php */
/* Location: ./application/config/mimes.php */

View File

@ -1,17 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Profiler Sections
| -------------------------------------------------------------------------
| This file lets you determine whether or not various sections of Profiler
| data are displayed when the Profiler is enabled.
| Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/profiling.html
|
*/
/* End of file profiler.php */
/* Location: ./application/config/profiler.php */

View File

@ -1,177 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| http://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There area two reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router what URI segments to use if those provided
| in the URL cannot be matched to a valid route.
|
*/
$route['default_controller'] = "login";
$route['404_override'] = 'error';
/*********** Siddharth DEFINED ROUTES *******************/
$route['loginMe'] = 'login/loginMe';
$route['dashboard'] = 'user';
$route['logout'] = 'user/logout';
//<-----------Application listing Routes------------>
$route['userListing'] = 'user/userListing';
$route['userListing/(:num)'] = "user/userListing/$1";
//$route['purchaseorderListing'] = 'purchaseorder/purchaseorderListing';
//$route['purchaseorderListing/(:num)'] = "purchaseorder/purchaseorderListing/$1";
$route['supplierListing'] = 'supplier/supplierListing';
$route['supplierListing/(:num)'] = "supplier/supplierListing/$1";
$route['rawmaterialListing'] = 'rawmaterialdetails/rawmaterialListing';
$route['rawmaterialListing/(:num)'] = "rawmaterialdetails/rawmaterialListing/$1";
$route['costListing'] = 'CostCenter/costListing';
$route['costListing/(:num)'] = "CostCenter/costListing/$1";
$route['assetListing'] = 'assetdetails/assetListing';
$route['assetListing/(:num)'] = "assetdetails/assetListing/$1";
$route['employeeListing'] = 'employeedetails/employeeListing';
$route['employeeListing/(:num)'] = "employeedetails/employeeListing/$1";
$route['monthlyListings'] = 'monthlypay/monthlyListing';
$route['monthlyListings/(:num)'] = "monthlypay/monthlyListing/$1";
$route['emppayListings'] = 'emppaydate/emppayListing';
$route['emppayListings/(:num)'] = 'emppaydate/emppayListing/$1';
//<-----------Application Add Routes------------>
$route['addNew'] = "user/addNew";
$route['addNewUser'] = "user/addNewUser";
$route['addPO'] = "purchaseorder/addPO";
$route['addNewPO'] = "purchaseorder/addNewPO";
$route['addsupplier'] = "supplier/addsupplier";
$route['addNewsupplier'] = "supplier/addNewsupplier";
$route['addcost'] = "CostCenter/addCost";
$route['addNewcost'] = "CostCenter/addNewCost";
$route['addasset'] = "assetdetails/addasset";
$route['addNewasset'] = "assetdetails/addNewasset";
$route['addemployee'] = "employeedetails/addemployee";
$route['addNewemployee'] = "employeedetils/addNewemployee";
$route['addRawmaterial'] = "rawmaterialdetails/addRawMaterial";
$route['addNewRawmaterial'] = "rawmaterialdetails/addNewRawMaterial";
//<-----------Application Edit Routes------------>
$route['editOld'] = "user/editOld";
$route['editOld/(:num)'] = "user/editOld/$1";
$route['editUser'] = "user/editUser";
$route['editOldPO'] = "purchaseorder/editOldPO";
$route['editOldPO/(:num)'] = "purchaseorder/editOldPO/$1";
//$route['editPO'] = "purchaseorder/editPO";
$route['editOldsupplier'] = "supplier/editOldsupplier";
$route['editOldsupplier/(:num)'] = "supplier/editOldsupplier/$1";
$route['editsupplier'] = "supplier/editsupplier";
$route['editOldcost'] = "CostCenter/editOldcost";
$route['editOldcost/(:num)'] = "CostCenter/editOldcost/$1";
$route['editcost'] = "CostCenter/editcost";
$route['editOldasset'] = "assetdetails/editOldasset";
$route['editOldasset/(:num)'] = "assetdetails/editOldasset/$1";
$route['editasset'] = "assetdetails/editasset";
$route['editOldemployee'] = "employeedetails/editOldemployee";
$route['editOldemployee/(:num)'] = "employeedetails/editOldemployee/$1";
$route['editemployee'] = "employeedetils/editemployee";
$route['editOldRawmaterial/(:num)'] = "rawmaterialdetails/editOldRawmaterial/$1";
$route['editOldRawmaterial'] = "rawmaterialdetails/editOldRawmaterial";
$route['editrawmaterial'] = "rawmaterialdetails/editemployee";
//<-----------Application Delete Routes------------>
$route['deleteUser'] = "user/deleteUser";
$route['deletecost'] = "CostCenter/deletecost";
//<-----------Application User Change Password Routes------------>
$route['loadChangePass'] = "user/loadChangePass";
$route['changePassword'] = "user/changePassword";
//<-----------Application Page Not Found Routes------------>
$route['pageNotFound'] = "user/pageNotFound";
//<-----------Application Email & ForgetPassword Routes------------>
$route['checkEmailExists'] = "user/checkEmailExists";
$route['forgotPassword'] = "login/forgotPassword";
$route['ExcelUpload'] = "payslip/viewUpload";
$route['ExcelUpload2'] = "payslip/viewUpload2";
$route['FileUpload'] = "payslip/uploadExcel";
$route['FileUpload2'] = "payslip/uploadExcel2";
$route['PrintPdf'] = "payslip/PrintPdf";
$route['ViewPay'] = "payslip/viewGenerator";
//<-----------Application Requistion Flow Routes------------>
$route['Requisition'] = "requisitionform/requisitionlisting";
$route['RequisitionForm'] = "requisitionform/requisition";
$route['ApproveRequisition'] = "requisitionform/requisitionlistApproval";
$route['EditRequisition'] = "requisitionform/EditRequistionForm";
//<-----------PO Flow------------>
$route['CreatePO'] = "purchaseorder/requisition";
$route['PurchaseOrder'] = "purchaseorder/CreatePurchaseOrder";
$route['purchaseorderListing'] = "purchaseorder/PurchaseOrderList";
$route['EditPO'] = "purchaseorder/EditPurchaseOrder";
$route['EmergencyPO'] = "emergencypurchaseorder/CreateEmergencyPO";
//<-------------IGR page----------------->
$route['Addigr'] = "inwardgateregister/addinwardgateregister";
$route['Viewigr'] = "inwardgateregister/viewinwardgateregister";
/* End of file routes.php */
/* Location: ./application/config/routes.php */

View File

@ -1,66 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| SMILEYS
| -------------------------------------------------------------------
| This file contains an array of smileys for use with the emoticon helper.
| Individual images can be used to replace multiple simileys. For example:
| :-) and :) use the same image replacement.
|
| Please see user guide for more info:
| http://codeigniter.com/user_guide/helpers/smiley_helper.html
|
*/
$smileys = array(
// smiley image name width height alt
':-)' => array('grin.gif', '19', '19', 'grin'),
':lol:' => array('lol.gif', '19', '19', 'LOL'),
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
':)' => array('smile.gif', '19', '19', 'smile'),
';-)' => array('wink.gif', '19', '19', 'wink'),
';)' => array('wink.gif', '19', '19', 'wink'),
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
':-S' => array('confused.gif', '19', '19', 'confused'),
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
':P' => array('raspberry.gif', '19', '19', 'raspberry'),
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
':long:' => array('longface.gif', '19', '19', 'long face'),
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
':down:' => array('downer.gif', '19', '19', 'downer'),
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
':sick:' => array('sick.gif', '19', '19', 'sick'),
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
'>:(' => array('mad.gif', '19', '19', 'mad'),
':mad:' => array('mad.gif', '19', '19', 'mad'),
'>:-(' => array('angry.gif', '19', '19', 'angry'),
':angry:' => array('angry.gif', '19', '19', 'angry'),
':zip:' => array('zip.gif', '19', '19', 'zipper'),
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
':snake:' => array('snake.gif', '19', '19', 'snake'),
':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
);
/* End of file smileys.php */
/* Location: ./application/config/smileys.php */

View File

@ -1,178 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| USER AGENT TYPES
| -------------------------------------------------------------------
| This file contains four arrays of user agent data. It is used by the
| User Agent Class to help identify browser, platform, robot, and
| mobile device data. The array keys are used to identify the device
| and the array values are used to set the actual name of the item.
|
*/
$platforms = array (
'windows nt 6.0' => 'Windows Longhorn',
'windows nt 5.2' => 'Windows 2003',
'windows nt 5.0' => 'Windows 2000',
'windows nt 5.1' => 'Windows XP',
'windows nt 4.0' => 'Windows NT 4.0',
'winnt4.0' => 'Windows NT 4.0',
'winnt 4.0' => 'Windows NT',
'winnt' => 'Windows NT',
'windows 98' => 'Windows 98',
'win98' => 'Windows 98',
'windows 95' => 'Windows 95',
'win95' => 'Windows 95',
'windows' => 'Unknown Windows OS',
'os x' => 'Mac OS X',
'ppc mac' => 'Power PC Mac',
'freebsd' => 'FreeBSD',
'ppc' => 'Macintosh',
'linux' => 'Linux',
'debian' => 'Debian',
'sunos' => 'Sun Solaris',
'beos' => 'BeOS',
'apachebench' => 'ApacheBench',
'aix' => 'AIX',
'irix' => 'Irix',
'osf' => 'DEC OSF',
'hp-ux' => 'HP-UX',
'netbsd' => 'NetBSD',
'bsdi' => 'BSDi',
'openbsd' => 'OpenBSD',
'gnu' => 'GNU/Linux',
'unix' => 'Unknown Unix OS'
);
// The order of this array should NOT be changed. Many browsers return
// multiple browser types so we want to identify the sub-type first.
$browsers = array(
'Flock' => 'Flock',
'Chrome' => 'Chrome',
'Opera' => 'Opera',
'MSIE' => 'Internet Explorer',
'Internet Explorer' => 'Internet Explorer',
'Shiira' => 'Shiira',
'Firefox' => 'Firefox',
'Chimera' => 'Chimera',
'Phoenix' => 'Phoenix',
'Firebird' => 'Firebird',
'Camino' => 'Camino',
'Netscape' => 'Netscape',
'OmniWeb' => 'OmniWeb',
'Safari' => 'Safari',
'Mozilla' => 'Mozilla',
'Konqueror' => 'Konqueror',
'icab' => 'iCab',
'Lynx' => 'Lynx',
'Links' => 'Links',
'hotjava' => 'HotJava',
'amaya' => 'Amaya',
'IBrowse' => 'IBrowse'
);
$mobiles = array(
// legacy array, old values commented out
'mobileexplorer' => 'Mobile Explorer',
// 'openwave' => 'Open Wave',
// 'opera mini' => 'Opera Mini',
// 'operamini' => 'Opera Mini',
// 'elaine' => 'Palm',
'palmsource' => 'Palm',
// 'digital paths' => 'Palm',
// 'avantgo' => 'Avantgo',
// 'xiino' => 'Xiino',
'palmscape' => 'Palmscape',
// 'nokia' => 'Nokia',
// 'ericsson' => 'Ericsson',
// 'blackberry' => 'BlackBerry',
// 'motorola' => 'Motorola'
// Phones and Manufacturers
'motorola' => "Motorola",
'nokia' => "Nokia",
'palm' => "Palm",
'iphone' => "Apple iPhone",
'ipad' => "iPad",
'ipod' => "Apple iPod Touch",
'sony' => "Sony Ericsson",
'ericsson' => "Sony Ericsson",
'blackberry' => "BlackBerry",
'cocoon' => "O2 Cocoon",
'blazer' => "Treo",
'lg' => "LG",
'amoi' => "Amoi",
'xda' => "XDA",
'mda' => "MDA",
'vario' => "Vario",
'htc' => "HTC",
'samsung' => "Samsung",
'sharp' => "Sharp",
'sie-' => "Siemens",
'alcatel' => "Alcatel",
'benq' => "BenQ",
'ipaq' => "HP iPaq",
'mot-' => "Motorola",
'playstation portable' => "PlayStation Portable",
'hiptop' => "Danger Hiptop",
'nec-' => "NEC",
'panasonic' => "Panasonic",
'philips' => "Philips",
'sagem' => "Sagem",
'sanyo' => "Sanyo",
'spv' => "SPV",
'zte' => "ZTE",
'sendo' => "Sendo",
// Operating Systems
'symbian' => "Symbian",
'SymbianOS' => "SymbianOS",
'elaine' => "Palm",
'palm' => "Palm",
'series60' => "Symbian S60",
'windows ce' => "Windows CE",
// Browsers
'obigo' => "Obigo",
'netfront' => "Netfront Browser",
'openwave' => "Openwave Browser",
'mobilexplorer' => "Mobile Explorer",
'operamini' => "Opera Mini",
'opera mini' => "Opera Mini",
// Other
'digital paths' => "Digital Paths",
'avantgo' => "AvantGo",
'xiino' => "Xiino",
'novarra' => "Novarra Transcoder",
'vodafone' => "Vodafone",
'docomo' => "NTT DoCoMo",
'o2' => "O2",
// Fallback
'mobile' => "Generic Mobile",
'wireless' => "Generic Mobile",
'j2me' => "Generic Mobile",
'midp' => "Generic Mobile",
'cldc' => "Generic Mobile",
'up.link' => "Generic Mobile",
'up.browser' => "Generic Mobile",
'smartphone' => "Generic Mobile",
'cellphone' => "Generic Mobile"
);
// There are hundreds of bots but these are the most common.
$robots = array(
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'askjeeves' => 'AskJeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos'
);
/* End of file user_agents.php */
/* Location: ./application/config/user_agents.php */

View File

@ -1,266 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Controller extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->database();
$this->load->helper('url');
$this->load->library('grocery_CRUD');
}
/* This function used to show the main page of the screen */
public function _controller_output($output = null)
{
$this->load->view('AssetDetails',(array)$output);
}
public function home($ouput =null)
{
$this->config->load('grocery_crud');
$crud = new grocery_CRUD();
$crud->set_table('T_PurchaseOrderDetails');
$crud->required_fields('PONO');
$crud->columns('PONO','POType','PODate','SpecialOrder','UserID');
$crud->unset_add();
$crud->unset_read();
$crud->unset_edit();
$crud->unset_delete();
$crud->unset_export();
$crud->unset_print();
$output = $crud->render();
$this->_controller_output($output);
}
public function offices()
{
$output = $this->grocery_crud->render();
$this->_controller_output($output);
}
public function index()
{
$this->_controller_output((object)array('output' => '' , 'js_files' => array() , 'css_files' => array()));
}
public function purchase_order()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_PurchaseOrderDetails');
$crud->set_subject('Purchase Order');
$crud->required_fields('PONO');
$crud->columns('PONO','POType','PODate','SpecialOrder','UserID', 'RequesterEmail','RequesterPh','RequestedDate','BudgetManager','BudgetManagerDepartment','PurchasingCategory','PurchasingJustification','OrderValue','DiscountType','DiscountValue','PackagingType','PackagingValue','ExciseDuty','Vat','Freight','CreatedOn','Create_By');
/* These functions to hide add , view(read) ,edit , delete in form */
$crud->unset_add();
$crud->unset_read();
$crud->unset_edit();
$crud->unset_delete();
$crud->unset_export();
$crud->unset_print();
$output = $crud->render();
if($crud->getState() != 'list') {
$this->_controller_output($output);
} else {
return $output;
}
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function purchase_order2()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_PurchaseOrderDetails');
$crud->set_subject('Purchase Order');
$crud->required_fields('PONO');
$crud->columns('PONO','POType','PODate','SpecialOrder','UserID', 'RequesterEmail','RequesterPh','RequestedDate','BudgetManager','BudgetManagerDepartment','PurchasingCategory','PurchasingJustification','OrderValue','DiscountType','DiscountValue','PackagingType','PackagingValue','ExciseDuty','Vat','Freight','CreatedOn','Create_By');
$output = $crud->render();
$this->_controller_output($output);
}
catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function Purchase_Order_Line_Item()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_PurchaseOrderLineItem');
$crud->set_subject('Purchase Order Line Item');
$crud->required_fields('POLine');
$crud->columns('POLineNo','PONO','Material_ID','UOM','Quantity','UnitPrice','ModifiedOn');
$output = $crud->render();
if($crud->getState() != 'list') {
//$this->_controller_output($output);
$this->load->view('Mainpage.php',(array)$output);
} else {
return $output;
}
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function Supplier_Details()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_SupplierDetails');
$crud->set_subject('Supplier Details');
$crud->required_fields('Supplierid');
$crud->columns('SupplierID','SupplierName','Address','Contactnumber','AlternateContactNumber','EmailAddress','TIN','PAN');
/* These functions to hide add , view(read) ,edit , delete in form */
$crud->unset_add();
$crud->unset_read();
$crud->unset_edit();
$crud->unset_delete();
$crud->unset_export();
$crud->unset_print();
$output = $crud->render();
/* if else should be use , if we are using the same function in many screen*/
if($crud->getState() != 'list') {
$this->_controller_output($output);
} else {
return $output;
}
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function Supplier_Details2()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_SupplierDetails');
$crud->set_subject('Supplier Details');
$crud->required_fields('Supplierid');
$crud->columns('SupplierID','SupplierName','Address','Contactnumber','AlternateContactNumber','EmailAddress','TIN','PAN');
$output = $crud->render();
$this->_controller_output($output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function RawMaterial()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_RawMaterialDetails');
$crud->set_subject('RawMaterialDetails');
$crud->required_fields('Metarial_ID');
$crud->columns('Metarial_ID','Material_Name','Material_Type','SuplierID','Create_date');
/* These functions to hide add , view(read) ,edit , delete in form */
$crud->unset_add();
$crud->unset_read();
$crud->unset_edit();
$crud->unset_delete();
$crud->unset_export();
$crud->unset_print();
$output = $crud->render();
if($crud->getState() != 'list') {
$this->_controller_output($output);
} else {
return $output;
}
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function RawMaterial2()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_RawMaterialDetails');
$crud->set_subject('RawMaterialDetails');
$crud->required_fields('Metarial_ID');
$crud->columns('Metarial_ID','Material_Name','Material_Type','SuplierID','Create_date');
$output = $crud->render();
$this->_controller_output($output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
/* To call AssetDetail details */
public function AssetDetails()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_AssetDetails');
$crud->set_subject('AssetDetails');
$crud->required_fields('Asset_Code');
$crud->columns('Asset_Code','Asset_Name','Description','Department','Location','AssetOwner','SupplierName','DateOfPurchase','DateOfCommissioning','SupportVendor','SupportFrom','SupportTo','Created_date');
$output = $crud->render();
$this->_controller_output($output);
// $this->load->view('AssetDetails.php',(array)$output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
}

View File

@ -1,469 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Cost Center (Cost Center Controller)
* User Class to control all user related operations.
* @author : VenbaMail Mali
* @version : 1.1
* @since : 15 Feb 2016
*/
class CostCenter extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('costcenter_model');
//$this->load->library('session');
$this->load->library('form_validation');
$this->load->library('pagination');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Cost';
$this->loadViews("costListing", $this->global, NULL , NULL);
}
/**
* This function is used to load the Cost list
*/
function CostListing()
{
$data['userRecords'] = $this->costcenter_model->CostListing();
$this->global['pageTitle'] = 'Siddharth : Cost List';
$this->loadViews("costListing", $this->global, $data, NULL);
}
/**
* This function is used to load the add new cost Center */
function addCostCenter()
{
$data['Department'] = $this->costcenter_model->getDepartment();
$data['BudgetType'] = $this->costcenter_model->getConfigValue('C004');
$data['Approver'] = $this->costcenter_model->getApproverName();
$this->global['pageTitle'] = 'siddharth : Add Cost Center';
$this->loadViews("addCostCenter", $this->global,$data, NULL);
}
function Dep_SelectedDepartment($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if(strlen($SelectedDepartment) <= 0 )
{
$this->form_validation->set_message('Dep_SelectedDepartment', 'Please Select Department.');
return false;
}
else // user picked something
{
return true;
}
}
/**
* This function is used to add new Cost to the system
*/
function addNewcost()
{
$this->form_validation->set_rules('CostCode','CostCode','trim|required');
$this->form_validation->set_rules('CostName','CostName','trim|required');
if($this->form_validation->run() == FALSE)
{
$this->addCostCenter();
}
else
{
$CostCode = strtoupper(trim($this->input->post('CostCode')));
$CostName = strtoupper(trim($this->input->post('CostName')));
$CreateBy = $this->session->userdata ( 'userId' );
$SelectedDepartment = $this->input->post('txtSelectedDepartment');
$ApproverName = $this->input->post('ApprovedBy');
$comma_separated = explode(':', $SelectedDepartment);
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$createddt = $dt->format('Y-m-d H:i:s');
$CodeExists = $this->costcenter_model->checkCostDetailsExists( $CostCode);
if(count($CodeExists) == 0)
{
$Cost = array('CostCenterCode'=>$CostCode, 'CostCenterName'=>$CostName,'ApprovedBy'=>$ApproverName,'CreatedBy'=>$CreateBy,'createdDate'=>$createddt);
$this->costcenter_model->addNewcost($Cost);
}
for ($j = 0; $j < count($comma_separated); $j++)
{
$DeptCode = $comma_separated[$j];
$this->costcenter_model->DeleteDepartment( $DeptCode,$CostCode);
$Dept = array('CostCenterCode'=>$CostCode, 'DEPCode'=>$DeptCode,'CreatedBy'=>$CreateBy,'createdDate'=>$createddt);
$this->costcenter_model->addCostCenterDepartment($Dept);
}
$RowCount = $this->input->post('txtRowCount');
for ($i = 1; $i <= $RowCount; $i++)
{
$BudgetType = $this->input->post('BudgetType'.$i);
$BudgetYear = $this->input->post('BudgetYear'.$i);
$BudgetAmount = $this->input->post('BudgetAmount'.$i);
$Remarks = $this->input->post('Remarks'.$i);
$this->costcenter_model->DeleteBudget( $BudgetType,$BudgetYear,$CostCode);
$Budget = array('CostCenterCode'=>$CostCode, 'BudgetType'=>$BudgetType,'BudgetYear'=>$BudgetYear,'BudgetAmount'=>$BudgetAmount,'Remarks'=>$Remarks,'CreatedBy'=>$CreateBy,'createdDate'=>$createddt);
$this->costcenter_model->addBudget($Budget);
}
Print_r('Successfully Created Cost details');
}
}
/**
* This function is used load user edit information
* @param number $userId : Optional : This is user id
*/
function editOldcost($CostCode = NULL)
{
if($CostCode == '')
{
$CostCenterID = $_GET['CostCode'];
}
else
{
$CostCenterID = $CostCode;
}
$data['CostMaster'] = $this->costcenter_model->GetCostCenterMaster($CostCenterID);
$data['CostDepts'] = $this->costcenter_model->GetCostCenterDepartment($CostCenterID);
$data['CostBudget'] = $this->costcenter_model->GetCostCenterBudget($CostCenterID);
$data['DeptList'] = $this->costcenter_model->GetDepartmentNotinCostCenter($CostCenterID);
$data['BudType'] = $this->costcenter_model->GetBudgetTypeNotinCostCenter($CostCenterID,'C004');
$data['BudYear'] = $this->costcenter_model->GetBudgetYear($CostCenterID);
//print_r(count($data['BudType']));
$this->global['pageTitle'] = 'Siddharth : Edit Cost';
$this->loadViews("editOldcost", $this->global, $data,NULL);
}
function GetBudgetForYear()
{
//$id = $this->input->post('id');
$BudYear = $_GET['BudYear'];
$CostCenterID = $_GET['CostCode'];
$result = $this->costcenter_model->GetCostCenterBudgetByYear($CostCenterID, $BudYear);
$BudList = $this->costcenter_model->GetCostBudgetTypeByYear($CostCenterID,'C004', $BudYear);
$HTML="";
$HTML2="";
$index = 1;
// $HTML2 = $BudList[0]['ConfigValue'];
//if($BudList->num_rows() > 0){
for ($j = 0; $j < count($BudList); $j++)
{
$ConfigValue = $BudList[$j]['ConfigValue'];
$HTML2.="<option value='".$ConfigValue."'>".$ConfigValue."</option>";
}
for ($i = 0; $i < count($result); $i++)
{
$BudgetType = $result[$i]['BudgetType'];
$BudgetYear = $result[$i]['BudgetYear'];
$BudgetAmount = $result[$i]['BudgetAmount'];
$Remarks = $result[$i]['Remarks'];
$HTML.="<tr id='".$index."'>
<td align='left'>". $BudgetType."</td>
<input type='hidden' name='BudgetType".$index."' id='BudgetType".$index."' value='". $BudgetType."'/>
<input type='hidden' name='BudgetYear".$index."' id='BudgetYear".$index."' value='". $BudgetYear."'/>
<input type='hidden' name='BudgetAmount".$index."' id='BudgetAmount".$index."' value='". $BudgetAmount."'/>
<input type='hidden' name='Remarks".$index."' id='Remarks".$index."' value='". $Remarks."'/>
<td align='left'>".$BudgetYear."</td>
<td align='left'>".$BudgetAmount."</td>
<td align='left'>".$Remarks."</td>
<td>
<a data-target='#Edit' data-id=".$index." data-userid=".$index." data-toggle='modal' href='#Edit'><i class='fa fa-pencil' data-toggle='tooltip' title='Click here to view/Edit the ".$BudgetType." Budget details'></i>&nbsp;&nbsp;&nbsp;</a> </td></tr>
";
$index = $index + 1;
}
$HTML.="<input type='hidden' name='txtRowCount' id='txtRowCount' value='".$index ."'/>";
die(json_encode(array('Html' => $HTML,'BudYear' => $HTML2)));
// echo $HTML2;
}
/**
* This function is used to edit the user information
*/
function editcost()
{
$this->form_validation->set_rules('CostCode','CostCode','trim|required');
$this->form_validation->set_rules('CostName','CostName','trim|required');
if($this->form_validation->run() == FALSE)
{
$this->addCostCenter();
}
else
{
$CostCode = strtoupper(trim($this->input->post('CostCode')));
$CostName = strtoupper(trim($this->input->post('CostName')));
$updatedBy = $this->session->userdata ( 'userId' );
$SelectedDepartment = $this->input->post('txtSelectedDepartment');
$ApproverName = $this->input->post('ApprovedBy');
$comma_separated = "";
//print_r(strlen($SelectedDepartment));
if(strlen($SelectedDepartment)>0)
{
$comma_separated = explode(':', $SelectedDepartment);
}
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$updateddt = $dt->format('Y-m-d H:i:s');
$CodeExists = $this->costcenter_model->checkCostDetailsExists($CostCode);
//print_r(count($CodeExists));
if(count($CodeExists) > 0)
{
$Cost = array( 'CostCenterName'=>$CostName,'ApprovedBy'=>$ApproverName,'UpdatedBy'=>$updatedBy,'UpdatedDate'=>$updateddt);
$this->costcenter_model->EditCost($Cost,$CostCode);
}
//echo count($comma_separated);
if(count($comma_separated)> 1)
{
for ($j = 0; $j < count($comma_separated); $j++)
{
$DeptCode = $comma_separated[$j];
$this->costcenter_model->DeleteDepartment( $DeptCode,$CostCode);
$Dept = array('CostCenterCode'=>$CostCode, 'DEPCode'=>$DeptCode,'CreatedBy'=>$updatedBy,'createdDate'=>$updateddt,'UpdatedBy'=>$updatedBy,'UpdatedDate'=>$updateddt);
$this->costcenter_model->addCostCenterDepartment($Dept);
}
}
$RowCount = $this->input->post('txtRowCount');
//$BudgetType = $this->input->post('BudgetType2');
//echo $BudgetType;
for ($i = 1; $i <= $RowCount; $i++)
{
$BudgetType = $this->input->post('BudgetType'.$i);
$BudgetYear = $this->input->post('BudgetYear'.$i);
$BudgetAmount = $this->input->post('BudgetAmount'.$i);
$Remarks = $this->input->post('Remarks'.$i);
$this->costcenter_model->DeleteBudget( $BudgetType,$BudgetYear,$CostCode);
$Budget = array('CostCenterCode'=>$CostCode, 'BudgetType'=>$BudgetType,'BudgetYear'=>$BudgetYear,'BudgetAmount'=>$BudgetAmount,'Remarks'=>$Remarks,'CreatedBy'=>$updatedBy,'createdDate'=>$updateddt,'UpdatedBy'=>$updatedBy,'UpdatedDate'=>$updateddt);
$this->costcenter_model->addBudget($Budget);
print_r( $BudgetType );
}
echo('Successfully Updated Cost details');
}
}
function viewcost($CostCenterID = NULL)
{
if($CostCenterID == null)
{
redirect('costListing');
}
$data['Cost'] = $this->costcenter_model->getuserinfo($CostCenterID);
//$data['users'] = $this->purchaseorder_model->getusers();
$this->global['pageTitle'] = 'Siddharth : View Cost';
$this->loadViews("viewcost", $this->global, $data,NULL);
}
/**
* This function is used to delete the user using userId
* @return boolean $result : TRUE / FALSE
*/
function deletecost()
{
if($this->isAdmin() == TRUE)
{
echo(json_encode(array('status'=>'access')));
}
else
{
$CostCenterID = $this->input->Costst('CostCentreID');
$cost = array('CreateDate'=>date('Y-m-d H:i:sa'));
$result = $this->costcenter_model->deletecost($Cost, $CostCenterID);
if ($result > 0) { echo(json_encode(array('status'=>TRUE))); }
else { echo(json_encode(array('status'=>FALSE))); }
}
}
function export_cost(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('G3:M3');
$this->excel->setActiveSheetIndex(0)->getStyle('G3')->getAlignment()->applyFromArray(
array('horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,)
);
$this->excel->getActiveSheet()->setTitle('Cost Master');
$this->excel->getActiveSheet()->setCellValue('G3', 'SIDDHARTH INDUSTRIES Cost Master');
$this->excel->getActiveSheet()->setCellValue('B5', 'S.No');
$this->excel->getActiveSheet()->setCellValue('C5', 'CostCenterCode');
$this->excel->getActiveSheet()->setCellValue('D5', 'CostCenterName');
$this->excel->getActiveSheet()->setCellValue('E5', 'CAPITAL');
$this->excel->getActiveSheet()->setCellValue('F5', 'REVENUE');
$this->excel->getActiveSheet()->setCellValue('G5', 'IMPORT');
$this->excel->getActiveSheet()->setCellValue('H5', 'SERVICE');
$this->excel->getActiveSheet()->setCellValue('I5', 'BudgetYear');
$this->excel->getActiveSheet()->setCellValue('J5', 'DEPName');
$this->excel->getActiveSheet()->setCellValue('K5', 'IsActive');
$this->excel->getActiveSheet()->setCellValue('L5', 'Remarks');
$this->excel->getActiveSheet()->setCellValue('M5', 'CreatedBy');
$this->excel->getActiveSheet()->setCellValue('N5', 'UpdatedBy');
$this->excel->getActiveSheet()->setCellValue('O5', 'IsApproved');
$this->excel->getActiveSheet()->setCellValue('P5', 'ApprovedBy');
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true);
$exportData = $this->costcenter_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('B'. $i,$s);
//$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['AssetCode']);
$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['CostCenterCode']);
$this->excel->getActiveSheet()->setCellValue('D'. $i,$data['CostCenterName']);
$this->excel->getActiveSheet()->setCellValue('E'. $i,$data['capital']);
$this->excel->getActiveSheet()->setCellValue('F'. $i,$data['revenue']);
$this->excel->getActiveSheet()->setCellValue('G'. $i,$data['import']);
$this->excel->getActiveSheet()->setCellValue('H'. $i,$data['service']);
$this->excel->getActiveSheet()->setCellValue('I'. $i,$data['BudgetYear']);
$this->excel->getActiveSheet()->setCellValue('J'. $i,$data['DepartmentName']);
$this->excel->getActiveSheet()->setCellValue('K'. $i,$data['IsActive']);
$this->excel->getActiveSheet()->setCellValue('L'. $i,$data['Remarks']);
$this->excel->getActiveSheet()->setCellValue('M'. $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('N'. $i,$data['Updated_By']);
$this->excel->getActiveSheet()->setCellValue('O'. $i,$data['IsApproved']);
$this->excel->getActiveSheet()->setCellValue('P'. $i,$data['firstname']);
$i++;
$s++;
}
}
$filename = 'Cost_Master' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,441 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : purchaseorder (PurchaseorderController)
* User Class to control all user related operations.
* @author : VenbaMail Mali
* @version : 1.1
* @since : 15 Feb 2016
*/
class assetdetails extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('assetdetails_model');
$this->load->library('form_validation');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Asset Details';
$this->loadViews("assetListing", $this->global, NULL , NULL);
}
/**
* This function is used to load the Supplier list
*/
function assetListing()
{
$this->load->model('assetdetails_model');
$data['userRecords'] = $this->assetdetails_model->assetListing();
$this->global['pageTitle'] = 'Siddharth : Asset List';
$this->loadViews("assetListing", $this->global, $data, NULL);
}
/**
* This function is used to load the add new supplier */
function addasset()
{
$data['SupplierList'] = $this->assetdetails_model->getSupplierName();
$data['DepartmentList'] = $this->assetdetails_model->getDepartment();
$data['AssetStatus'] = $this->assetdetails_model->getConfigValue('C015');
$this->global['pageTitle'] = 'siddharth : Add Asset';
$this->loadViews("addasset", $this->global, $data, NULL);
}
/* Validation for Department Dropdown
*/
function Department_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Department_validate', 'Please Select Department.');
return false;
}
else // user picked something
{
return true;
}
}
/* Validation for Supplier Dropdown
*/
function Supplier_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Supplier_validate', 'Please Select Supplier.');
return false;
}
else // user picked something
{
return true;
}
}
/* Validation for Supplier Dropdown
*/
function Asset_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Asset_validate', 'Please Select Asset Status.');
return false;
}
else // user picked something
{
return true;
}
}
/**
* This function is used to add new user to the system
*/
function addNewasset()
{
$this->form_validation->set_rules('AssetName','AssetName','trim|required');
$this->form_validation->set_rules('Description','Description','trim|required');
$this->form_validation->set_rules('Department','Department','trim|callback_Department_validate');
$this->form_validation->set_rules('Location','Location','trim|required');
$this->form_validation->set_rules('User','User','trim|required');
$this->form_validation->set_rules('SupplierName','SupplierName','trim|callback_Supplier_validate');
$this->form_validation->set_rules('DateOfPurchase','DateOfPurchase','trim|required');
$this->form_validation->set_rules('DateOfCommission','DateOfCommission','trim|required');
$this->form_validation->set_rules('Assetvalue','Assetvalue','trim|required');
$this->form_validation->set_rules('AssetStatus','AssetStatus','trim|callback_Asset_validate');
if($this->form_validation->run() == FALSE)
{
$this->addasset();
}
else
{
$AssetName = strtoupper($this->input->post('AssetName'));
$Description = $this->input->post('Description');
$Department = $this->input->post('Department');
$Location = $this->input->post('Location');
$User = $this->input->post('User');
$SupplierName = $this->input->post('SupplierName');
$DateOfPurchase = $this->input->post('DateOfPurchase');
$DateOfCommission = $this->input->post('DateOfCommission');
$CreatedBy = $this->session->userdata('userId');
$AssetValue = $this->input->post('Assetvalue');
$DOPurchase = $this->getDateformat($DateOfPurchase);
$DOCommission= $this->getDateformat($DateOfCommission);
$AssetStatus = $this->input->post('AssetStatus');
$Remarks = $this->input->post('Remarks');
$chked = $this->input->post('isactive');
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
$asset = array();
$asset = array('AssetName'=>$AssetName, 'Description'=>$Description,'DEPCode'=>$Department,'Location'=>$Location,'UserName'=>$User,'SupplierCode'=>$SupplierName,'DateOfPurchase'=>$DOPurchase,'DateOfCommison'=>$DOCommission,'AssetValue'=>$AssetValue,'AssetStatus'=>$AssetStatus,'IsActive'=>$IsActive,'Remarks'=>$Remarks,'CreatedBy'=>$CreatedBy);
$result = $this->assetdetails_model->addNewasset($asset);
if($result > 0)
{
// $this->session->set_flashdata('success', 'New Asset created successfully');
redirect('assetListing','refresh');
echo "<script>alert('Asset Created successfully!');</script>";
}
else
{
redirect('assetListing','refresh');
echo "<script>alert('Asset Not Created!');</script>";
}
}
}
/**
* This function is used load user edit information
* @param number $userId : Optional : This is user id
function ech(){
echo $this->input->post('Asset_Code');
}*/
function editOldasset($AssetCode = '')
{
$SupplierName = $this->input->post('SupplierName');
$AssetStatus = $this->input->post('AssetStatus');
$Department = $this->input->post('Department');
if($AssetCode == '')
{
$AssetID = $_GET['AssetID'];
}
else
{
$AssetID = $AssetCode;
}
//echo $AssetID;
$data['assetList'] = $this->assetdetails_model->getAssetDetails($AssetID);
$data['SupplierList'] = $this->assetdetails_model->getSupplierName($SupplierName);
$data['DepartmentList'] = $this->assetdetails_model->getDepartment($Department);
$data['AssetStatusList'] = $this->assetdetails_model->getConfigValue('C015');
$this->global['pageTitle'] = 'Siddharth : Edit Asset';
$this->loadViews("editOldasset", $this->global, $data,NULL);
}
/**
* This function is used to edit the user information
*/
function editasset()
{
$Asset_Code = $this->input->post('AssetCode');
$this->form_validation->set_rules('AssetName','AssetName','trim|required');
$this->form_validation->set_rules('Description','Description','trim|required');
$this->form_validation->set_rules('Department','Department','trim|callback_Department_validate');
$this->form_validation->set_rules('Location','Location','trim|required');
$this->form_validation->set_rules('User','User','trim|required');
$this->form_validation->set_rules('SupplierName','SupplierName','trim|callback_Supplier_validate');
$this->form_validation->set_rules('DateOfPurchase','DateOfPurchase','trim|required');
$this->form_validation->set_rules('DateOfCommission','DateOfCommission','trim|required');
$this->form_validation->set_rules('Assetvalue','Assetvalue','trim|required');
$this->form_validation->set_rules('AssetStatus','AssetStatus','trim|callback_Asset_validate');
if($this->form_validation->run() == FALSE)
{
$this->editOldasset($Asset_Code);
}
else
{
$Asset_Code = $this->input->post('AssetCode');
$AssetName = strtoupper( $this->input->post('AssetName'));
$Description = $this->input->post('Description');
$Department = $this->input->post('Department');
$Location = $this->input->post('Location');
$User = $this->input->post('User');
$SupplierName = $this->input->post('SupplierName');
$DateOfPurchase = $this->input->post('DateOfPurchase');
$DateOfCommission = $this->input->post('DateOfCommission');
$UpdatedBy = $this->session->userdata('userId');
$AssetValue = $this->input->post('Assetvalue');
$DOPurchase = $this->getDateformat($DateOfPurchase);
$DOCommission= $this->getDateformat($DateOfCommission);
$AssetStatus = $this->input->post('AssetStatus');
$Remarks = $this->input->post('Remarks');
$chked = $this->input->post('isactive');
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
$asset = array();
$asset = array('AssetName'=>$AssetName, 'Description'=>$Description,'DEPCode'=>$Department,'Location'=>$Location,'UserName'=>$User,'SupplierCode'=>$SupplierName,'DateOfPurchase'=>$DOPurchase,'DateOfCommison'=>$DOCommission,'AssetValue'=>$AssetValue,'AssetStatus'=>$AssetStatus,'IsActive'=>$IsActive,'Remarks'=>$Remarks,'UpdatedBy'=>$UpdatedBy);
$result = $this->assetdetails_model->editasset($asset, $Asset_Code);
if($result == true)
{
redirect('assetListing','refresh');
echo "<script>alert('Asset updated successfully!');</script>";
}
else
{
redirect('assetListing','refresh');
echo "<script>alert('Asset Not updated !');</script>";
}
}
}
function getDateformat($Val)
{
$date = new DateTime($Val);
$retDate = $date->format('Y-m-d H:i:s');
return $retDate;
}
function export_asset(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('G3:M3');
$this->excel->setActiveSheetIndex(0)->getStyle('G3')->getAlignment()->applyFromArray(
array('horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,)
);
$this->excel->getActiveSheet()->setTitle('Asset Details');
$this->excel->getActiveSheet()->setCellValue('G3', 'SIDDHARTH INDUSTRIES Asset Details');
$this->excel->getActiveSheet()->setCellValue('C5', 'AssetCode');
$this->excel->getActiveSheet()->setCellValue('D5', 'AssetName');
$this->excel->getActiveSheet()->setCellValue('E5', 'Description');
$this->excel->getActiveSheet()->setCellValue('F5', 'DEPCode');
$this->excel->getActiveSheet()->setCellValue('G5', 'Location');
$this->excel->getActiveSheet()->setCellValue('H5', 'UserName');
$this->excel->getActiveSheet()->setCellValue('I5', 'SupplierCode');
$this->excel->getActiveSheet()->setCellValue('J5', 'DateOfPurchase');
$this->excel->getActiveSheet()->setCellValue('K5', 'DateOfCommison');
$this->excel->getActiveSheet()->setCellValue('L5', 'AssetValue');
$this->excel->getActiveSheet()->setCellValue('M5', 'AssetStatus');
$this->excel->getActiveSheet()->setCellValue('N5', 'IsActive');
$this->excel->getActiveSheet()->setCellValue('O5', 'Remarks');
$this->excel->getActiveSheet()->setCellValue('P5', 'CreatedBy');
$this->excel->getActiveSheet()->setCellValue('Q5', 'UpdatedBy');
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true);
$exportData = $this->assetdetails_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['AssetCode']);
$this->excel->getActiveSheet()->setCellValue('D'. $i,$data[ 'AssetName']);
$this->excel->getActiveSheet()->setCellValue('E'. $i,$data[ 'Description']);
$this->excel->getActiveSheet()->setCellValue('F'. $i,$data[ 'DEPCode']);
$this->excel->getActiveSheet()->setCellValue('G'. $i,$data[ 'Location']);
$this->excel->getActiveSheet()->setCellValue('H'. $i,$data[ 'UserName']);
$this->excel->getActiveSheet()->setCellValue('I'. $i,$data[ 'SupplierCode']);
$this->excel->getActiveSheet()->setCellValue('J'. $i,$data[ 'DateOfPurchase']);
$this->excel->getActiveSheet()->setCellValue('K'. $i,$data[ 'DateOfCommison']);
$this->excel->getActiveSheet()->setCellValue('L'. $i,$data[ 'AssetValue']);
$this->excel->getActiveSheet()->setCellValue('M'. $i,$data[ 'AssetStatus']);
$this->excel->getActiveSheet()->setCellValue('N'. $i,$data[ 'IsActive']);
$this->excel->getActiveSheet()->setCellValue('O'. $i,$data[ 'Remarks']);
$this->excel->getActiveSheet()->setCellValue('P'. $i,$data[ 'firstname']);
$this->excel->getActiveSheet()->setCellValue('Q'. $i,$data[ 'Updated_By']);
$i++;
$s++;
}
}
$filename = 'Asset_details' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,51 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
class C_test extends BaseController {
function __construct()
{
parent::__construct();
$this->load->model('purchaseorder_model');
$this->load->library('session');
$this->isLoggedIn();
//$this->load->library('grocery_CRUD');
}
public function create_pdf() {
// Load all views as normal
$PONO = $_GET['PO'];
$data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO);
$data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO);
//$this->global['pageTitle'] = 'Purchase Order Report';
// Add header to pdf
$this->load->view('includes/pdfheader');
// Load the pdf page with multiviews
$this->load->View("create_pdf", $data, NULL);
// Add header to pdf
$this->load->view('includes/pdffooter');
// Get output html
$php = $this->output->get_output();
// Load library
$this->load->library('dompdf_gen');
// Convert to PDF
$this->dompdf->load_html($php);
$this->dompdf->render();
$data['Attachment'] = FALSE;
$this->dompdf->stream("PurchaseOrderreport.pdf",$data,$php);
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,755 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Employee (Employee Controller)
* User Class to control all user related operations.
* @author : Gandhimathi
* @version : 1.1
* @since : 07 Apr 2017
*/
class employeedetails extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('employeedetails_model');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Employee Details';
$this->loadViews("employeeListing", $this->global, NULL , NULL);
}
/**
* This function is used to load the Employee details
*/
function employeeListing()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$this->load->model('employeedetails_model');
$data['userRecords'] = $this->employeedetails_model->employeeListing();
$this->global['pageTitle'] = 'Siddharth : Employee Listing';
$this->loadViews("employeeListing", $this->global, $data, NULL);
}
}
/*
Validation for Gender status Dropdown
*/
function Gender_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Gender_validate', 'Please Select Gender.');
return false;
}
else // user picked something
{
return true;
}
}
/*
Validation for Martial status Dropdown
*/
function Martial_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Martial_validate', 'Please Select Martial status.');
return false;
}
else // user picked something
{
return true;
}
}
/*
Validation for BloodGroup Dropdown
*/
function Blood_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Blood_validate', 'Please Select Blood Group.');
return false;
}
else // user picked something
{
return true;
}
}
/*
Validation for Qualification Dropdown
*/
function select_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('select_validate', 'Please Select Educational Qualification.');
return false;
}
else // user picked something
{
return true;
}
}
/*
Validation for Department Dropdown
*/
function Dep_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Dep_validate', 'Please Select Department.');
return false;
}
else // user picked something
{
return true;
}
}
/*
Validation for Desigination Dropdown
*/
function Des_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Des_validate', 'Please Select Desigination.');
return false;
}
else // user picked something
{
return true;
}
}
/**
* This function is used to save the new Employee form in the database
*/
function AddNewEmployee()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$this->load->library('form_validation');
$this->form_validation->set_rules('ContactNumber', 'ContactNumber', 'trim|required|min_length[10]|max_length[10]');
$this->form_validation->set_rules('emailid', 'emailid', 'trim|required|valid_email');
$this->form_validation->set_rules('gender', 'gender', 'callback_Gender_validate');
$this->form_validation->set_rules('MartialStatus', 'MartialStatus', 'callback_Martial_validate');
$this->form_validation->set_rules('bloodgroup', 'bloodgroup', 'callback_Blood_validate');
$this->form_validation->set_rules('emergencycontactnumber', 'emergencycontactnumber', 'trim|required|min_length[10]|max_length[10]');
$this->form_validation->set_rules('desigination', 'Desigination', 'callback_Des_validate');
$this->form_validation->set_rules('departmentname', 'departmentname', 'callback_Dep_validate');
$this->form_validation->set_rules('eduqualifaction', 'eduqualifaction', 'callback_select_validate');
$this->form_validation->set_rules('referrercontno', 'referrercontno', 'trim|min_length[10]|max_length[10]');
$this->form_validation->set_rules('aadharno', 'aadharno', 'trim|min_length[12]|max_length[12]');
$this->form_validation->set_rules('panno', 'panno', 'trim|min_length[10]|max_length[10]');
$this->form_validation->set_rules('passportno', 'passportno', 'trim|min_length[8]|max_length[8]');
$this->form_validation->set_rules('accountno', 'accountno', 'trim|min_length[10]|max_length[20]');
if($this->form_validation->run() == FALSE)
{
$this->addemployee();
//echo 'Validate method called';
}
else
{
//echo 'Validate not method called';
$Picture = $this->add();
$FirstName = $this->input->post('FirstName');
$LastName = $this->input->post('LastName');
$FatherName = $this->input->post('FatherName');
$DateofBirth = $this->input->post('DateofBirth');
$ContactNumber = $this->input->post('ContactNumber');
$EmailId = $this->input->post('emailid');
$Gender = $this->input->post('gender');
$MartialStatus = $this->input->post('MartialStatus');
$BloodGroup = $this->input->post('bloodgroup');
$CurrentAddress = $this->input->post('currentaddress');
$permanentaddress = $this->input->post('permanentaddress');
$emergencycontactname = $this->input->post('emergencycontactname');
$emergencycontactnumber = $this->input->post('emergencycontactnumber');
$desigination = $this->input->post('desigination');
$departmentCode = $this->input->post('departmentname');
$dateofjoining = $this->input->post('dateofjoining');
$Previousexperience = $this->input->post('Previousexperience');
$eduqualifaction = $this->input->post('eduqualifaction');
$addqualification = $this->input->post('addqualification');
$referredby = $this->input->post('referredby');
$referrercontno = $this->input->post('referrercontno');
$accountno = $this->input->post('accountno');
$ifsccode = $this->input->post('ifsccode');
$bankbranchname = $this->input->post('bankbranchname');
$bankaddress = $this->input->post('bankaddress');
$aadharno = $this->input->post('aadharno');
$panno = $this->input->post('panno');
$passportno = $this->input->post('passportno');
$ValidTill = $this->input->post('ValidTill');
$addinfo = $this->input->post('addinfo');
$IsActive = '1';
$createdby = $this->session->userdata ( 'userId' );
$DOB = $this->getDateformat($DateofBirth);
$DOJ = $this->getDateformat($dateofjoining);
if($ValidTill != '')
{
$Valid = $this->getDateformat($ValidTill);
}
else
{
$Valid = null;
}
//echo $DOB;
$Employee = array('FirstName'=>$FirstName, 'LastName'=>$LastName,'FatherName'=>$FatherName,'Gender'=>$Gender,'DateofBirth'=>$DOB,'ContactNumber'=>$ContactNumber,'EmailId'=>$EmailId,'BloodGroup'=>$BloodGroup,'MartialStatus'=>$MartialStatus,'DateofJoining'=>$DOJ,'PreviousYearsOfExp'=>$Previousexperience,'Designation'=>$desigination,'Departmentcode'=>$departmentCode,'PresentAddress'=>$CurrentAddress,'PermanentAddress'=>$permanentaddress,'EmergencyContactName'=>$emergencycontactname,'EmergencyContactNumber'=>$emergencycontactnumber,'Edu_Qualification'=>$eduqualifaction,'Additional_Qualification'=>$addqualification,'AadharNo'=>$aadharno,'PANNo'=>$panno,'BankAccountNo'=>$accountno,'IFSCCode'=>$ifsccode,'BankBranchName'=>$bankbranchname,'BankAddress'=>$bankaddress,'PassportNo'=>$passportno,'Passport_Valid_till'=>$Valid,'IsActive'=>$IsActive,'ProfilePic'=>$Picture,'Reference_Name'=>$referredby,'Reference_ContactNumber'=>$referrercontno,'Remarks'=>$addinfo,'CreatedBy'=>$createdby);
$this->load->model('employeedetails_model');
$result = $this->employeedetails_model->addNewemployee($Employee);
if($result > 0)
{
// $this->session->set_flashdata('Success', 'New Employee created successfully!');
redirect('employeeListing','refresh');
echo "<script>alert('New Employee Created successfully!');</script>";
}
else
{
$this->session->set_flashdata('Error', 'New Employee details not saved');
redirect('employeeListing','refresh');
echo "<script>alert('Record Not Saved!');</script>";
}
}
}
}
function getDateformat($Val)
{
$date = new DateTime($Val);
$retDate = $date->format('Y-m-d H:i:s');
return $retDate;
}
/**
* This function is used to load the add new Employee form with dropdown values */
function addemployee()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$this->load->model('employeedetails_model');
$GenderConfigID = 'C013';
$MartialConfigID = 'C012';
$QualificationConfigID = 'C014';
$DesignationConfigID = 'C010';
$BloodGroupConfigID = 'C011';
$data['Gender'] = $this->employeedetails_model->getConfigValue($GenderConfigID);
$data['Martial'] = $this->employeedetails_model->getConfigValue($MartialConfigID);
$data['Qualification'] = $this->employeedetails_model->getConfigValue($QualificationConfigID);
$data['Designation'] = $this->employeedetails_model->getConfigValue($DesignationConfigID);
$data['BloodGroup'] = $this->employeedetails_model->getConfigValue($BloodGroupConfigID);
$data['Department'] = $this->employeedetails_model->getDepartment();
$this->global['pageTitle'] = 'Siddharth : Add New Employee';
$this->loadViews("addemployee", $this->global, $data, NULL);
}
}
/**
* This function is used to check whether the Employee is existing in the database or not */
function CheckEmail()
{
$id = $this->input->post('id');
$this->load->model('employeedetails_model');
$query = $this->employeedetails_model->checkMailExists($id );
$query = $query[0]['EmailId'];
print_r($query);
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
function add(){
$picture = '';
//Check whether user upload picture
if(!empty($_FILES['photo']['name']))
{
$config['upload_path'] = 'uploads/images/';
$config['allowed_types'] = 'jpg|jpeg|png|gif';
$config['file_name'] = $_FILES['photo']['name'];
//Load upload library and initialize configuration
$this->load->library('upload',$config);
$this->upload->initialize($config);
if($this->upload->do_upload('photo'))
{
$uploadData = $this->upload->data();
$picture = $uploadData['file_name'];
}
else
{
$error = array('error' => $this->upload->display_errors());
$picture = '';
}
}
else
{
$picture = '';
}
return $picture ;
}
function ViewEmployee($EmpNO='')
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
if($EmpNO == '')
{
$EmpID = $_GET['EmpID'];
}
else
{
$EmpID = $EmpNO; }
$GenderConfigID = 'C013';
$MartialConfigID = 'C012';
$QualificationConfigID = 'C014';
$DesignationConfigID = 'C010';
$BloodGroupConfigID = 'C011';
$this->load->model('employeedetails_model');
$data['GenderList'] = $this->employeedetails_model->getConfigValue($GenderConfigID);
$data['MartialList'] = $this->employeedetails_model->getConfigValue($MartialConfigID);
$data['QualificationList'] = $this->employeedetails_model->getConfigValue($QualificationConfigID);
$data['DesignationList'] = $this->employeedetails_model->getConfigValue($DesignationConfigID);
$data['BloodGroupList'] = $this->employeedetails_model->getConfigValue($BloodGroupConfigID);
$data['DepartmentList'] = $this->employeedetails_model->getDepartment();
$data['EmpDetails'] = $this->employeedetails_model->viewemployee($EmpID);
$this->global['pageTitle'] = 'Siddharth : View Employee';
$this->loadViews("editEmployee", $this->global, $data, NULL);
}
}
/* To Check the email exists in the database or not for the employee*/
function checkMailEmp()
{
$Empid = $this->input->post('employeeid');
$EmailId = $this->input->post('emailid');
$this->load->model('employeedetails_model');
$query = $this->employeedetails_model->checkMailExists($EmailId, $Empid);
if (count($query)> 0)
{
$this->form_validation->set_message('checkMailEmp', 'The Entered Email id is exists in the Database.');
return false;
}
else
{
return true;
}
}
/* To Update the employee details*/
function UpdateEmployee()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$EmpId = $this->input->post('employeeid');
$this->load->library('form_validation');
$this->form_validation->set_rules('ContactNumber', 'ContactNumber', 'trim|required|min_length[10]|max_length[10]');
$this->form_validation->set_rules('emailid', 'emailid', 'trim|required|valid_email|callback_checkMailEmp');
$this->form_validation->set_rules('gender', 'gender', 'callback_Gender_validate');
$this->form_validation->set_rules('MartialStatus', 'MartialStatus', 'callback_Martial_validate');
$this->form_validation->set_rules('bloodgroup', 'bloodgroup', 'callback_Blood_validate');
$this->form_validation->set_rules('emergencycontactnumber', 'emergencycontactnumber', 'trim|required|min_length[10]|max_length[10]');
$this->form_validation->set_rules('desigination', 'Desigination', 'callback_Des_validate');
$this->form_validation->set_rules('departmentname', 'departmentname', 'callback_Dep_validate');
$this->form_validation->set_rules('eduqualifaction', 'eduqualifaction', 'callback_select_validate');
$this->form_validation->set_rules('referrercontno', 'referrercontno', 'trim|min_length[10]|max_length[10]');
$this->form_validation->set_rules('aadharno', 'aadharno', 'trim|min_length[12]|max_length[12]');
$this->form_validation->set_rules('panno', 'panno', 'trim|min_length[10]|max_length[10]');
$this->form_validation->set_rules('passportno', 'passportno', 'trim|min_length[8]|max_length[8]');
$this->form_validation->set_rules('accountno', 'accountno', 'trim|min_length[10]|max_length[20]');
if($this->form_validation->run() == FALSE)
{
$this->ViewEmployee($EmpId);
}
else
{
$this->load->model('employeedetails_model');
$EmpId = $this->input->post('employeeid');
$PictureName = $this->input->post('Image');
if ($PictureName != '')
{
//echo 'Exists';
$Picture = $PictureName;
}
else
{
//echo 'Not Exists';
$Picture = $this->add();
}
//echo $Picture;
$FirstName = $this->input->post('FirstName');
$LastName = $this->input->post('LastName');
$FatherName = $this->input->post('FatherName');
$DateofBirth = $this->input->post('DateofBirth');
$ContactNumber = $this->input->post('ContactNumber');
$EmailId = $this->input->post('emailid');
$Gender = $this->input->post('gender');
$MartialStatus = $this->input->post('MartialStatus');
$BloodGroup = $this->input->post('bloodgroup');
$CurrentAddress = $this->input->post('currentaddress');
$permanentaddress = $this->input->post('permanentaddress');
$emergencycontactname = $this->input->post('emergencycontactname');
$emergencycontactnumber = $this->input->post('emergencycontactnumber');
$desigination = $this->input->post('desigination');
$departmentCode = $this->input->post('departmentname');
$dateofjoining = $this->input->post('dateofjoining');
$Previousexperience = $this->input->post('Previousexperience');
$eduqualifaction = $this->input->post('eduqualifaction');
$addqualification = $this->input->post('addqualification');
$referredby = $this->input->post('referredby');
$referrercontno = $this->input->post('referrercontno');
$accountno = $this->input->post('accountno');
$ifsccode = $this->input->post('ifsccode');
$bankbranchname = $this->input->post('bankbranchname');
$bankaddress = $this->input->post('bankaddress');
$aadharno = $this->input->post('aadharno');
$panno = $this->input->post('panno');
$passportno = $this->input->post('passportno');
$ValidTill = $this->input->post('ValidTill');
$addinfo = $this->input->post('addinfo');
$chked = $this->input->post('isactive');
// echo 'chkvalue'. $chked ;
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
// echo 'chkvalue'. $IsActive ;
$UpdatedBY = $this->session->userdata ( 'userId' );
$DOB = $this->getDateformat($DateofBirth);
$DOJ = $this->getDateformat($dateofjoining);
if($ValidTill != '')
{
$Valid = $this->getDateformat($ValidTill);
}
else
{
$Valid = null;
}
//echo $DOB;
$Employee = array('FirstName'=>$FirstName, 'LastName'=>$LastName,'FatherName'=>$FatherName,'Gender'=>$Gender,'DateofBirth'=>$DOB,'ContactNumber'=>$ContactNumber,'EmailId'=>$EmailId,'BloodGroup'=>$BloodGroup,'MartialStatus'=>$MartialStatus,'DateofJoining'=>$DOJ,'PreviousYearsOfExp'=>$Previousexperience,'Designation'=>$desigination,'Departmentcode'=>$departmentCode,'PresentAddress'=>$CurrentAddress,'PermanentAddress'=>$permanentaddress,'EmergencyContactName'=>$emergencycontactname,'EmergencyContactNumber'=>$emergencycontactnumber,'Edu_Qualification'=>$eduqualifaction,'Additional_Qualification'=>$addqualification,'AadharNo'=>$aadharno,'PANNo'=>$panno,'BankAccountNo'=>$accountno,'IFSCCode'=>$ifsccode,'BankBranchName'=>$bankbranchname,'BankAddress'=>$bankaddress,'PassportNo'=>$passportno,'Passport_Valid_till'=>$Valid,'IsActive'=>$IsActive,'ProfilePic'=>$Picture,'Reference_Name'=>$referredby,'Reference_ContactNumber'=>$referrercontno,'Remarks'=>$addinfo,'UpdatedBY'=>$UpdatedBY);
$result = $this->employeedetails_model->UpdateEmployee($Employee,$EmpId);
if($result > 0)
{
// $this->session->set_flashdata('Success', $EmpId.'Employee Updated successfully!');
redirect('employeeListing','refresh');
echo "<script>alert('You Have Successfully updated the Employee Record!');</script>";
}
else
{
$this->session->set_flashdata('Error', $EmpId.'Employee details not saved');
redirect('employeeListing','refresh');
echo "<script>alert('Record Not Updated!');</script>";
}
// redirect('employeeListing');
}
}
}
/** this function can be use for excel report **/
function export_employee(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('L3:S3');
$this->excel->getActiveSheet()->setTitle('Employee details');
$this->excel->getActiveSheet()->setCellValue('L3', 'SIDDHARTH INDUSTRIES Employee Details');
$this->excel->getActiveSheet()->setCellValue('A5', 'EmpID');
$this->excel->getActiveSheet()->setCellValue('B5', 'FirstName-LastName');
$this->excel->getActiveSheet()->setCellValue('c5', 'FatherName');
$this->excel->getActiveSheet()->setCellValue('d5', 'Gender');
$this->excel->getActiveSheet()->setCellValue('E5', 'ContactNumber');
$this->excel->getActiveSheet()->setCellValue('F5', 'EmailId');
$this->excel->getActiveSheet()->setCellValue('G5', 'BloodGroup');
$this->excel->getActiveSheet()->setCellValue('H5', 'MartialStatus');
$this->excel->getActiveSheet()->setCellValue('I5', 'DateofJoining');
$this->excel->getActiveSheet()->setCellValue('J5', 'PreviousYearsOfExp');
$this->excel->getActiveSheet()->setCellValue('K5', 'Designation');
$this->excel->getActiveSheet()->setCellValue('L5', 'Departmentcode');
$this->excel->getActiveSheet()->setCellValue('M5', 'PresentAddress');
$this->excel->getActiveSheet()->setCellValue('N5', 'PermanentAddress');
$this->excel->getActiveSheet()->setCellValue('O5', 'EmergencyContactName');
$this->excel->getActiveSheet()->setCellValue('P5', 'EmergencyContactNumber');
$this->excel->getActiveSheet()->setCellValue('Q5', 'Edu_Qualification');
$this->excel->getActiveSheet()->setCellValue('R5', 'Additional_Qualification');
$this->excel->getActiveSheet()->setCellValue('S5', 'AadharNo');
$this->excel->getActiveSheet()->setCellValue('T5', 'PANNo');
$this->excel->getActiveSheet()->setCellValue('U5', 'BankStatemant');
$this->excel->getActiveSheet()->setCellValue('V5', 'PassportNo');
$this->excel->getActiveSheet()->setCellValue('W5', 'Passport_Valid_till');
$this->excel->getActiveSheet()->setCellValue('X5', 'IsActive');
$this->excel->getActiveSheet()->setCellValue('Y5', 'Reference_Name');
$this->excel->getActiveSheet()->setCellValue('Z5', 'Reference_ContactNumber');
$this->excel->getActiveSheet()->setCellValue('AA5', 'PFNO');
$this->excel->getActiveSheet()->setCellValue('AB5', 'ESI');
$this->excel->getActiveSheet()->setCellValue('AC5', 'UANO');
$this->excel->getActiveSheet()->setCellValue('AD5', 'Remarks');
$this->excel->getActiveSheet()->setCellValue('AE5', 'Reference_Name');
$this->excel->getActiveSheet()->setCellValue('AF5', 'Reference_Name');
$this->excel->getActiveSheet()->setCellValue('AG5', 'CreatedBy');
$this->excel->getActiveSheet()->setCellValue('AH5', 'UpdatedBY');
$this->excel->getActiveSheet()->setCellValue('AI5', 'PF_Balance');
$this->excel->getActiveSheet()->setCellValue('AJ5', 'PF_Bal_On');
$this->excel->getActiveSheet()->getStyle('L3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('L3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('A5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('A5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('R5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('R5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('S5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('S5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('T5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('T5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('U5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('U5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('V5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('V5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('W5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('W5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('X5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Y5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Y5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Z5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Z5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AA5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AA5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AB5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AB5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AC5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AC5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AD5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AD5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AE5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AE5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AF5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AF5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AG5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AG5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AH5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AH5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AI5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AI5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AJ5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AJ5')->getFont()->setBold(true);
$exportData = $this->employeedetails_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('A'. $i,$data['EmpID']);
$this->excel->getActiveSheet()->setCellValue('B'. $i,$data['FirstName'].'-'.$data['LastName']);
$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['FatherName']);
$this->excel->getActiveSheet()->setCellValue('D'. $i,$data['Gender']);
$this->excel->getActiveSheet()->setCellValue('E'. $i,$data['ContactNumber']);
$this->excel->getActiveSheet()->setCellValue('F'. $i,$data['EmailId']);
$this->excel->getActiveSheet()->setCellValue('G'. $i,$data['BloodGroup']);
$this->excel->getActiveSheet()->setCellValue('H'. $i,$data['MartialStatus']);
$this->excel->getActiveSheet()->setCellValue('I'. $i,$data['DateofJoining']);
$this->excel->getActiveSheet()->setCellValue('J'. $i,$data['PreviousYearsOfExp']);
$this->excel->getActiveSheet()->setCellValue('K'. $i,$data['Designation']);
$this->excel->getActiveSheet()->setCellValue('L'. $i,$data['Departmentcode']);
$this->excel->getActiveSheet()->setCellValue('M'. $i,$data['PresentAddress']);
$this->excel->getActiveSheet()->setCellValue('N'. $i,$data['PermanentAddress']);
$this->excel->getActiveSheet()->setCellValue('O'. $i,$data['EmergencyContactName']);
$this->excel->getActiveSheet()->setCellValue('P'. $i,$data['EmergencyContactNumber']);
$this->excel->getActiveSheet()->setCellValue('Q'. $i,$data['Edu_Qualification']);
$this->excel->getActiveSheet()->setCellValue('R'. $i,$data['Additional_Qualification']);
$this->excel->getActiveSheet()->setCellValue('S'. $i,$data['AadharNo']);
$this->excel->getActiveSheet()->setCellValue('T'. $i,$data['PANNo']);
$this->excel->getActiveSheet()->setCellValue('U'. $i,$data['BankAccountNo'].'-'.$data['IFSCCode'].'-'.$data['BankBranchName'].$data['BankAddress']);
$this->excel->getActiveSheet()->setCellValue('V'. $i,$data['PassportNo']);
$this->excel->getActiveSheet()->setCellValue('W'. $i,$data['Passport_Valid_till']);
$this->excel->getActiveSheet()->setCellValue('X'. $i,$data['IsActive']);
$this->excel->getActiveSheet()->setCellValue('Y'. $i,$data['Reference_Name']);
$this->excel->getActiveSheet()->setCellValue('Z'. $i,$data['Reference_ContactNumber']);
$this->excel->getActiveSheet()->setCellValue('AA'. $i,$data['PFNO']);
$this->excel->getActiveSheet()->setCellValue('AB'. $i,$data['ESI']);
$this->excel->getActiveSheet()->setCellValue('AC'. $i,$data['UANO']);
$this->excel->getActiveSheet()->setCellValue('AD'. $i,$data['Remarks']);
$this->excel->getActiveSheet()->setCellValue('AE'. $i,$data['Reference_Name']);
$this->excel->getActiveSheet()->setCellValue('AF'. $i,$data['Reference_Name']);
$this->excel->getActiveSheet()->setCellValue('AG'. $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('AH'. $i,$data['UpdatedBY']);
$this->excel->getActiveSheet()->setCellValue('AI'. $i,$data['PF_Balance']);
$this->excel->getActiveSheet()->setCellValue('AJ'. $i,$data['PF_Bal_On']);
$i++;
$s++;
}
}
$filename = 'Employee_Details' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
}
?>

View File

@ -1,401 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Cost Center (Cost Center Controller)
* User Class to control all user related operations.
* @author : VenbaMail Mali
* @version : 1.1
* @since : 15 Feb 2016
*/
class emppaydate extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('emppaydate_model');
$this->load->library('session');
$this->load->library('form_validation');
//$this->load->library('pagination');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Employee Pay Details';
$this->loadViews("emppayListing", $this->global);
}
/**
* This function is used to load the payment list for a employee.
*/
function emppayListing()
{
$this->load->model('emppaydate_model');
$searchText = $this->input->post('searchText');
$data['searchText'] = $searchText;
$this->load->library('pagination');
$count = $this->emppaydate_model->emppayListingCount($searchText);
$returns = $this->paginationCompress ( "emppayListing", $count ,5);
$data['userRecords'] = $this->emppaydate_model->emppayListing($searchText, $returns["page"], $returns["segment"]);
$this->global['pageTitle'] = 'Siddharth : Employee Pay List';
$this->loadViews("emppayListing", $this->global, $data, NULL);
}
/**
* This function is used to load the add new payment for an employee.
*/
function addemppaydate()
{
$q="addemppaydate";
$this->load->model('payroll_model');
$result['empdetails'] = $this->payroll_model->getEmpID($q);
//$data['emp_id'] = $this->monthlypay_model->getmonthlypay();
$this->global['pageTitle'] = 'Siddharth : Add Employee Pay';
$this->loadViews("addemppaydate", $this->global,$result);
}
function addNewemppay()
{
$this->load->library('form_validation');
$this->form_validation->set_rules('EmpID','EmpID','required');
$this->form_validation->set_rules('Basic_Pay','Basic_Pay','trim|required');
$this->form_validation->set_rules('HRA_Rate','HRA_Rate','trim|required');
$this->form_validation->set_rules('OT_Rate','OT_Rate','trim|required');
$this->form_validation->set_rules('Allowances','Allowances','trim|required');
$this->form_validation->set_rules('PF_Rate','PF_Rate','trim|required');
$this->form_validation->set_rules('ESI_Rate','ESI_Rate','trim|required');
$this->form_validation->set_rules('Food_Allowances','Food_Allowances','requried');
if($this->form_validation->run() == FALSE)
{
$this->addemppaydate();
}
else
{
$Pay_Data_ID=$this->input->post('Pay_Data_ID');
$EmpID = $this->input->post('EmpID');
$Basic_Pay=$this->input->post('Basic_Pay');
$HRA_Rate=$this->input->post('HRA_Rate');
$OT_Rate=$this->input->post('OT_Rate');
$Allowances=$this->input->post('Allowances');
$PF_Rate=$this->input->post('PF_Rate');
$ESI_Rate=$this->input->post('ESI_Rate');
$Food_Allowances=$this->input->post('Food_Allowances');
//$All = $this->input->post('All');
$CreateBy = $this->session->userdata ( 'userId' );
$chked = $this->input->post('is_Active');
$IsActive = '1';
// if(EmpID == -1)
// {
// // $this->session->set_flashdata('success', 'New Asset created successfully');
// redirect('emppaydate/addemppaydate','refresh');
// echo "<script>alert('Employee Must be select!');</script>";
// }
//else{
//$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
//$createddt = $dt->format('Y-m-d H:i:s');
// $emppayExists = $this->emppaydate_model->( $emppay);
$emppay = array();
$emppay = array('EmpID'=>$EmpID, 'Basic_Pay'=>$Basic_Pay, 'HRA_Rate'=>$HRA_Rate, 'OT_Rate'=>$OT_Rate, 'Allowances'=>$Allowances, 'PF_Rate'=>$PF_Rate, 'ESI_Rate'=>$ESI_Rate ,'Food_Allowances'=>$Food_Allowances,'is_Active'=>$IsActive,'Created_By'=>$CreateBy);
//print_r($monthdata);
$result = $this->emppaydate_model->addNewemppay($emppay);
if($result > 0)
{
// $this->session->set_flashdata('success', 'New Asset created successfully');
redirect('emppaydate/emppayListing','refresh');
echo "<script>alert('Employee Pay List Created successfully!');</script>";
}
else
{
redirect('emppaydate/emppayListing','refresh');
echo "<script>alert('Employee Pay List Not Created!');</script>";
}
//}
}
}
/**
* This function is used for editing purpose and it has oldest values only.
*/
function editOldemppay($paydataid= NULL)
{
$data['emppay'] = $this->emppaydate_model->getUserInfo($paydataid);
// print_r($data);
//$data['monthly_pay_inputs'] = $this->monthlylisting_model->getUserInfo($employeeid);
$this->global['pageTitle'] = 'Siddharth : Edit Employee Pay Monthly Details ';
$this->loadViews("editOldemppay", $this->global, $data,NULL);
}
/**
* This function is used for stored new values after editing.
*/
function editemppay()
{
$this->load->library('form_validation');
$Pay_Data_ID= $this->input->post('Pay_Data_ID');
$this->form_validation->set_rules('Pay_Data_ID','Pay_Data_ID','trim|required');
$this->form_validation->set_rules('EmpID','EmpID','trim|required');
$this->form_validation->set_rules('Basic_Pay','Basic_Pay','trim|required');
$this->form_validation->set_rules('HRA_Rate','HRA_Rate','trim|required');
$this->form_validation->set_rules('OT_Rate','OT_Rate','trim|required');
$this->form_validation->set_rules('Allowances','Allowances','trim|required');
$this->form_validation->set_rules('PF_Rate','PF_Rate','trim|required');
$this->form_validation->set_rules('ESI_Rate','ESI_Rate','trim|required');
$this->form_validation->set_rules('Food_Allowances','Food_Allowances','trim|requried');
if($this->form_validation->run() == FALSE)
{
$this->editOldemppay();
}
else
{
$Pay_Data_ID=$this->input->post('Pay_Data_ID');
$EmpID = $this->input->post('EmpID');
$Basic_Pay=$this->input->post('Basic_Pay');
$HRA_Rate=$this->input->post('HRA_Rate');
$OT_Rate=$this->input->post('OT_Rate');
$Allowances=$this->input->post('Allowances');
$PF_Rate=$this->input->post('PF_Rate');
$ESI_Rate=$this->input->post('ESI_Rate');
$is_Active=$this->input->post('is_Active');
$Last_Mod_By=$this->input->post('Last_Mod_By');
$Last_Mod_Time=$this->input->post('Last_Mod_Time');
$Food_Allowances=$this->input->post('Food_Allowances');
$chked = $this->input->post('is_Active');
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
$emppaydatas = array();
$emppaydatas = array('Pay_Data_ID'=>$Pay_Data_ID, 'EmpID'=>$EmpID, 'Basic_Pay'=>$Basic_Pay, 'HRA_Rate'=>$HRA_Rate, 'OT_Rate'=>$OT_Rate, 'Allowances'=>$Allowances, 'PF_Rate'=>$PF_Rate, 'ESI_Rate'=>$ESI_Rate,'Food_Allowances'=>$Food_Allowances, 'Last_Mod_By'=>$Last_Mod_By, 'Last_Mod_Time'=>$Last_Mod_Time, 'is_Active'=>$IsActive);
$result = $this->emppaydate_model->editemppay($emppaydatas);
if($result == true)
{
$this->session->set_flashdata('success', 'updated successfully');
}
else
{
$this->session->set_flashdata('error', 'updation failed');
}
redirect('emppaydate/emppayListing');
}
}
/**
* This function is used load user edit information
* @param number $userId : Optional : This is user id
*/
/*function editOldcost($CostCode = NULL)
{
if($CostCode == '')
{
$CostCenterID = $_GET['CostCode'];
}
else
{
$CostCenterID = $CostCode; }
$data['CostMaster'] = $this->costcenter_model->GetCostCenterMaster($CostCenterID);
$data['CostDepts'] = $this->costcenter_model->GetCostCenterDepartment($CostCenterID);
$data['CostBudget'] = $this->costcenter_model->GetCostCenterBudget($CostCenterID);
// $data['DeptList'] = $this->costcenter_model->GetDepartmentNotinCostCenter($CostCenterID);
$this->global['pageTitle'] = 'Siddharth : Edit Cost';
$this->loadViews("editOldcost", $this->global, $data,NULL);
}
function ech()
{
echo $this->input->post('CostCentreID');
echo $this->input->post('CostName');
echo $this->input->post('Description');
}
/**
* This function is used to edit the user information
function editcost()
{
$this->load->library('form_validation');
$CostCenterID = $this->input->post('CostCentreID');
$this->form_validation->set_rules('CostName','Cost Name','trim|required|');
$this->form_validation->set_rules('Description','Description','trim|required|');
if($this->form_validation->run() == FALSE)
{
$this->editcost($CostCenterID);
}
else
{
$CostCenterID = $this->input->post('CostCentreID');
$CostName = ucwords(strtolower($this->input->post('CostName')));
$Description = $this->input->post('Description');
//$this->costcenter_model->editcost($Cost);
$cost = array();
$Cost = array('CostCentreID'=>$CostCenterID,'CostName'=>$CostName, 'Description'=>$Description,'createdDate'=>date('Y-m-d H:i:sa'));
$result = $this->costcenter_model->editcost($Cost, $CostCenterID);
if($result == true)
{
$this->session->set_flashdata('success', 'Cost updated successfully');
}
else
{
$this->session->set_flashdata('error', 'Cost updation failed');
}
redirect('costListing');
}
}
function viewcost($CostCenterID = NULL)
{
if($CostCenterID == null)
{
redirect('costListing');
}
$data['Cost'] = $this->costcenter_model->getuserinfo($CostCenterID);
//$data['users'] = $this->purchaseorder_model->getusers();
$this->global['pageTitle'] = 'Siddharth : View Cost';
$this->loadViews("viewcost", $this->global, $data,NULL);
}
/**
* This function is used to delete the user using userId
* @return boolean $result : TRUE / FALSE
function deletecost()
{
if($this->isAdmin() == TRUE)
{
echo(json_encode(array('status'=>'access')));
}
else
{
$CostCenterID = $this->input->Costst('CostCentreID');
$cost = array('CreateDate'=>date('Y-m-d H:i:sa'));
$result = $this->costcenter_model->deletecost($Cost, $CostCenterID);
if ($result > 0) { echo(json_encode(array('status'=>TRUE))); }
else { echo(json_encode(array('status'=>FALSE))); }
}
}
*/
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,46 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
/**
* Class : Login (LoginController)
* Login class to control to authenticate user credentials and starts user's session.
* @author : Kishor Mali
* @version : 1.1
* @since : 15 November 2016
*/
class Error extends CI_Controller
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
}
/**
* Index Page for this controller.
*/
public function index()
{
$this->isLoggedIn();
}
/**
* This function used to check the user is logged in or not
*/
function isLoggedIn()
{
$isLoggedIn = $this->session->userdata('isLoggedIn');
if(!isset($isLoggedIn) || $isLoggedIn != TRUE)
{
$this->load->view('login');
}
else
{
redirect('pageNotFound');
}
}
}
?>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,198 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Inward Gate Register Controller (security)
* User Class to control all user related operations.
* @author : Saravana kumar
* @version : 1.1
* @since : 8 Jun 2017
*/
class inwardgateregister extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('inwardgateregister_model');
$this->load->library('session');
$this->load->library('form_validation');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Inward Gate Register';
$this->loadViews("viewinwardgateregister", $this->global,NULL , NULL);
}
function viewinwardgateregister($IGRNO='',$IGR='')
{
$this->load->model('inwardgateregister_model');
$this->global['pageTitle'] = 'Siddharth : Inward Gate Register';
$data['IGR']= $this->inwardgateregister_model->igrListing($IGRNO,$IGR);
$this->loadViews("viewinwardgateregister",$this->global,$data,NULL);
}
function addinwardgateregister($pono='',$IGRNO='',$IGR='')
{
$this->load->model('inwardgateregister_model');
$this->global['pageTitle'] = 'Siddharth : Add Inward Gate Register';
//$data['IGR']=$this->inwardgateregister_model->igrListing($IGRNO,$IGR);
$data['PO_NO'] = $this->inwardgateregister_model->getpurchaseorder($pono);
//print_r($data);
$this->loadViews("inwardgateregister", $this->global, $data, NULL);
}
function getDateformat($Val)
{
$date = new DateTime($Val,new DateTimeZone('Asia/Kolkata'));
// print_r($date);
$retDate = $date->format('Y-m-d H:i:s');
return $retDate;
}
function IGRITEM($PO='')
{
$PO = $this->input->post('id');
$data = $this->inwardgateregister_model->viewpurchaseorder($PO);
//$result = $this->inwardgateregister_model->viewpurchaseorder($PO);
/*$HTML="";
for ($i = 0; $i < count($data); $i++)
{
$SNo = $i + 1;
$MaterialCode = $result[$i]['MaterialCode'];
$MaterialName = $result[$i]['MaterialName'];
$UOM = $result[$i]['UOM'];
$Quantity = $result[$i]['Quantity'];
$HTML.="<tr id='".$i."'>
<td align='left'>".$SNo."</td>
<td align='left'>". $MaterialCode."</td>
<td align='left'>".$MaterialName."</td>
<td align='left'>".$UOM."</td>
<td align='left'>".$Quantity."</td>
</tr>";
//$index = $index + 1;
}*/
echo json_encode($data);
//$this->load->view('sample',$data,NULL);
}
function addNewigr()
{
$PONO = $this->input->post('PONO');
//$igr = $this->input->post('igr');
$DeliveryChellanOrInvoiceNo = $this->input->post('InvoiceNo');
$DeliveryChellan = $this->input->post('InvoiceDate');
$DeliveryChellanDate = $this->getDateformat($DeliveryChellan);
$VehicleNo = $this->input->post('VehicleNo');
$CourierNo = $this->input->post('CourierNo');
$CreatedBy = $this->session->userdata('userId');
//$Remarks = $this->input->post('Remarks');
$RowCount = $this->input->post('txtRowCount');
//echo $RowCount;
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$createddt = $dt->format('Y-m-d H:i:s');
$IGRStatus = IGR_CREATED;
//echo $RowCount;
$igr = array();
$igr = array('PONO'=>$PONO,'VehicleNo'=>$VehicleNo,'DeliveryChellanOrInvoiceNo'=>$DeliveryChellanOrInvoiceNo,'DeliveryChellanDate'=>$DeliveryChellanDate,'CourierNo'=>$CourierNo,'IGRStatus'=>$IGRStatus,'CreatedBy'=>$CreatedBy,'CreatedDate' =>$createddt);
//print_r($igr);
$igrM = $this->inwardgateregister_model->addigrM($igr);
$IGRNO = '';
if(count($igrM)>0)
{
$IGRNO = $igrM[0]['IGRNO'];
}
//echo $IGRNO;
$IGRItemStatus = REQITEM_NEW;
//echo ("success");
//print_r($RowCount);
for ($i = 1; $i <= $RowCount; $i++)
{
//echo i;
//echo $IGRNO ;
$MaterialCode = $this->input->post('MaterialCode'.$i);
$QuantityAsPerInvoice = $this->input->post('ReceivedQuantity'.$i);
$Remarks = $this->input->post('Remarks'.$i);
//$Remarks = $this->input->post('Remarks');
$CreatedBy = $this->session->userdata('userId');
$igrDetails = array('IGRNO'=>$IGRNO,'MaterialCode'=>$MaterialCode,'QuantityAsPerInvoice'=>$QuantityAsPerInvoice,'Remarks'=>$Remarks,'IGRItemStatus'=>$IGRItemStatus,'CreatedBy'=>$CreatedBy,'CreatedDate'=>$createddt);
//print_r($igrDetails);
$igrD = $this->inwardgateregister_model->addigrD($igrDetails);
}
}
function ViewIGR($IGRNO='')
{
$IGRNO= $this->input->post('id');
//print_r($IGRNO);
$data = $this->inwardgateregister_model->viewigr($IGRNO);
//print_r( $data);
echo json_encode($data);
}
function pageNotFound()
{
$this->global['pageTitle'] = 'Siddharth : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,255 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
/**
* Class : Login (LoginController)
* Login class to control to authenticate user credentials and starts user's session.
* @author : Kishor Mali
* @version : 1.1
* @since : 15 November 2016
*/
class Login extends CI_Controller
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('login_model');
}
/**
* Index Page for this controller.
*/
public function index()
{
$this->isLoggedIn();
}
/**
* This function used to check the user is logged in or not
*/
function isLoggedIn()
{
$isLoggedIn = $this->session->userdata('isLoggedIn');
if(!isset($isLoggedIn) || $isLoggedIn != TRUE)
{
$this->load->view('login');
}
else
{
redirect('/dashboard');
}
}
/**
* This function used to logged in user
*/
public function loginMe()
{
$this->load->library('form_validation');
$this->form_validation->set_rules('email', 'Email', 'required|valid_email|max_length[128]|xss_clean|trim');
$this->form_validation->set_rules('password', 'Password', 'required|max_length[32]|');
if($this->form_validation->run() == FALSE)
{
$this->index();
}
else
{
$email = $this->input->post('email');
$password = $this->input->post('password');
$result = $this->login_model->loginMe($email, $password);
if(count($result) > 0)
{
foreach ($result as $res)
{
$sessionArray = array('userId'=>$res->userId,
'role'=>$res->roleId,
'roleText'=>$res->role,
'name'=>$res->FirstName,
'Designation'=>$res->Designation,
'DEPCode'=>$res->DEPCode,
'HeadDept'=>$res->HeadDept,
'DepartmentName'=>$res->DepartmentName,
'EmpID' => $res->EmpID,
'isLoggedIn' => TRUE
);
$this->session->set_userdata($sessionArray);
}
redirect('dashboard');
}
else
{
redirect('login');
$this->session->set_flashdata('error', 'Email or password mismatch');
}
}
}
/**
* This function used to load forgot password view
*/
function forgotPassword()
{
$this->load->view('forgotPassword');
}
/**
* This function used to generate reset password request link
*/
function resetPasswordUser()
{
$status = '';
$this->load->library('form_validation');
$this->form_validation->set_rules('login_email','Email','trim|required|valid_email|xss_clean');
if($this->form_validation->run() == FALSE)
{
$this->forgetPasswordUser();
}
else
{
$email = $this->input->post('login_email');
if($this->user_model->checkEmailExist($email))
{
$encoded_email = urlencode($email);
$this->load->helper('string');
$data['email'] = $email;
$data['activation_id'] = random_string('alnum',15);
$data['created_dtm'] = date('Y-m-d H:i:s');
$data['agent'] = $this->getBrowserAgent();
$data['client_ip'] = $this->input->ip_address();
$save = $this->user_model->resetPasswordUser($data);
if($save)
{
$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'UTF-8';
$config['wordwrap'] = TRUE;
$config['mailtype'] = 'html';
$this->load->library('email', $config);
$data1['reset_link'] = base_url() . "resetPasswordConfirmUser/" . $data['activation_id'] . "/" . $encoded_email;
$data1['info'] = $this->user_model->getCustomerInfoByEmail($email);
$this->email->from(ADMIN_EMAIL_ID, WEBSITE);
$this->email->to($email);
$this->email->subject(RESET_PASSWORD_EMAIL_SUBJECT);
$this->email->message($this->load->view('email', $data1, TRUE));
if ($this->email->send())
{
$status = 'send';
}
else
{
$status = 'notsend';
}
}
else
{
$status = 'unable';
}
}
else
{
$status = 'invalid';
}
echo json_encode(array('status'=>$status));
}
}
// This function used to reset the password
function resetPasswordConfirmUser()
{
// Get email and activation code from URL values at index 3-4
$email = urldecode($this->uri->segment(3));
$activation_id = $this->uri->segment(2);
// Check activation id in database
$is_correct = $this->user_model->checkActivationDetails($email, $activation_id);
$data['email'] = $email;
$data['activation_code'] = $activation_id;
if ($is_correct == 1)
{
$this->load->view('includes/header');
$this->load->view('new_password', $data);
$this->load->view('includes/footer');
}
else
{
redirect('user');
}
}
// This function used to create new password
function createPasswordUser()
{
$status = '';
$message = '';
$this->load->library('form_validation');
$this->form_validation->set_rules('password','New Password','required|max_length[20]');
$this->form_validation->set_rules('cpassword','New Re-Password','trim|required|matches[password]|max_length[20]');
if($this->form_validation->run() == FALSE)
{
echo json_encode(array('status' => 'validation', 'message' => 'Please validate the fields'));
}
else
{
$password = $this->input->post('password');
$cpassword = $this->input->post('cpassword');
$email = $this->input->post('email');
$activation_id = $this->input->post('activation_id');
// Check activation id in database
$is_correct = $this->user_model->checkActivationDetails($email, $activation_id);
if(($is_correct == 1) && ($password == $cpassword))
{
$data = array('email_id'=>$email, 'password'=>$password);
$this->user_model->createPasswordUser($data);
$status = 'success';
$message = 'Password changed successfully';
}
else
{
$status = 'error';
$message = 'Password changed failed';
}
echo json_encode(array('status'=>$status, 'message'=>$message));
}
}
}
?>

View File

@ -1,241 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Cost Center (Cost Center Controller)
* User Class to control all user related operations.
* @author : VenbaMail Mali
* @version : 1.1
* @since : 15 Feb 2016
*/
class monthlypay extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('monthlypay_model');
$this->load->library('session');
$this->load->library('form_validation');
// $this->load->library('pagination');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Monthly Pay Details';
$this->loadviews('monthlyListing',$this->global);
}
/**
* This function is used to load the monthly list
*/
function monthlyListing()
{
$this->load->model('monthlypay_model');
$searchText = $this->input->post('searchText');
$data['searchText'] = $searchText;
$this->load->library('pagination');
$count = $this->monthlypay_model->monthlyListingCount($searchText);
$returns = $this->paginationCompress ( "monthlyListing", $count ,5);
$data['userRecords'] = $this->monthlypay_model->monthlyListing($searchText, $returns["page"], $returns["segment"]);
$this->global['pageTitle'] = 'Siddharth : Monthly Pay List';
$this->loadViews("monthlyListing", $this->global, $data, NULL);
}
/**
* This function is used to load the filtering monthly list
*/
/**
* This function is used to load the add new monthlypay
*/
function addmonthly()
{
//$data['emp_id'] = $this->monthlypay_model->getmonthlypay();
$this->global['pageTitle'] = 'siddharth : Add Monthly Pay';
$this->loadviews('addMontly',$this->global, NULL);
}
function addNewmonthly()
{
$this->form_validation->set_rules('Month_Year','month_year','trim|required');
$this->form_validation->set_rules('EmpID','emp_id','trim|required');
$this->form_validation->set_rules('LOP_days','LOP_days','trim|required');
$this->form_validation->set_rules('OT_Hrs_Worked','OT_Hrs_Worked','trim|required');
$this->form_validation->set_rules('Loan_Recovered','Loan_Recovered','trim|required');
$this->form_validation->set_rules('Loan_Balance','Loan_Balance','trim|required');
$this->form_validation->set_rules('Incentives','Incentives','trim|required');
$this->form_validation->set_rules('Other_Deductions','Other_Deductions','trim|required');
if($this->form_validation->run() == FALSE)
{
$this->addmonthly();
}
else
{
$month_year = $this->input->post('month_year');
$emp_id = $this->input->post('emp_id');
$LOP_days = $this->input->post('LOP_days');
$OT_Hrs_Worked = $this->input->post('OT_Hrs_Worked');
$Loan_Recovered = $this->input->post('Loan_Recovered');
$Loan_Balance = $this->input->post('Loan_Balance');
$Incentives = $this->input->post('Incentives');
$Other_Deductions = $this->input->post('Other_Deductions');
$CreateBy = $this->session->userdata ( 'userId' );
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$createddt = $dt->format('Y-m-d H:i:s');
$monthlypayExists = $this->monthlypay_model->checkmonthlypayExists( $monthlypay);
if(count($CodeExists) == 0)
{
$montlypay = array('month_year'=>$month_year, 'emp_id'=>$emp_id,'LOP_days'=>$LOP_days,'OT_Hrs_Worked'=>$Loan_Recovered,'Loan_Balance'=>$Loan_Balance,'Incentives'=>$Incentives,'Other_Deductions'=>$Other_Deductions,'CreatedBy'=>$CreateBy,'createdDate'=>$createddt);
$this->monthlypay_model->addNewmonthly($monthlypay);
}
Print_r('Successfully Created Monthly pay details');
}
}
/**
* This function is used for editing purpose and it has oldest values.
*/
function editOldmonthly($EmpID='',$month_year='')
{
/*if($employeeid == null)
{
redirect('monthlypay/monthlyListing');
}*/
$data['monthly'] = $this->monthlypay_model->getUserInfo($EmpID,$month_year);
//$data['monthly_pay_inputs'] = $this->monthlylisting_model->getUserInfo($employeeid);
$this->global['pageTitle'] = 'Siddharth : Edit Monthly Listing';
$this->loadViews("editOldmonthly", $this->global, $data,NULL);
}
/**
* This function is used for stored new values after editing.
*/
function editmonthly()
{
$this->load->library('form_validation');
$EmpID= $this->input->post('EmpID');
$month_year = $this->input->post('Month_Year');
$this->form_validation->set_rules('Month_Year','month_year','trim|required');
$this->form_validation->set_rules('EmpID','EmpID','trim|required');
$this->form_validation->set_rules('LOP_Days','LOP_Days','trim|required');
$this->form_validation->set_rules('OT_Hrs_Worked','OT_Hrs_Worked','trim|required');
$this->form_validation->set_rules('Loan_Recovered','Loan_Recovered','trim|required');
$this->form_validation->set_rules('Loan_Balance','Loan_Balance','trim|required');
$this->form_validation->set_rules('Incentives','Incentives','trim|required');
$this->form_validation->set_rules('Other_Deductions','Other_Deductions','trim|required');
if($this->form_validation->run() == FALSE)
{
$this->editOldmonthly($EmpID,$month_year);
}
else
{
$month_year = $this->input->post('Month_Year');
$EmpID = $this->input->post('EmpID');
$LOP_Days =$this->input->post('LOP_Days');
$OT_Hrs_Worked = $this->input->post('OT_Hrs_Worked');
$Loan_Recovered = $this->input->post('Loan_Recovered');
$Loan_Balance = $this->input->post('Loan_Balance');
$Incentives = $this->input->post('Incentives');
$Other_Deductions = $this->input->post('Other_Deductions');
$LastModBy = $this->session->userdata ( 'userId' );
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$LastModTime = $dt->format('Y-m-d H:i:s');
$monthdata = array();
$monthdata = array('Month_Year'=>$month_year,'EmpID'=>$EmpID,'LOP_Days'=>$LOP_Days,'OT_Hrs_Worked'=>$OT_Hrs_Worked,'Loan_Recovered'=>$Loan_Recovered,'Loan_Balance'=>$Loan_Balance,'Incentives'=>$Incentives,'Other_Deductions'=>$Other_Deductions,'Last_Mod_By'=>$LastModBy,'Last_Mod_Time'=>$LastModTime);
$result = $this->monthlypay_model->editmonth($monthdata,$EmpID);
if($result == true)
{
$this->session->set_flashdata('success', 'updated successfully');
}
else
{
$this->session->set_flashdata('error', 'updation failed');
}
//echo success;
redirect('monthlyListings');
}
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,161 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
class pages extends BaseController {
public function __construct()
{
parent::__construct();
// $this->load->database();
// $this->load->helper('url');
$this->isLoggedIn();
$this->load->library('grocery_CRUD');
}
/* This function used to show the main page of the screen */
public function _controller_output($output = null)
{ $this->load->view('includes/header');
$this->load->view('Mainpage',(array)$output);
$this->load->view('includes/footer');
}
public function index()
{
$this->_controller_output((object)array('output' => '' , 'js_files' => array() , 'css_files' => array()));
}
public function SupplierDetails()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_SupplierDetailsN');
$crud->set_subject('Supplier Details');
$crud->required_fields('SupplierName','Address','Contactnumber','AlternateContactNumber','EmailAddress','TIN','PAN');
$crud->columns('SupplierID','SupplierName','Address','Contactnumber','AlternateContactNumber','EmailAddress','TIN','PAN','CreatedDate');
$crud->field_type('CreatedDate','hidden', date("Y-m-d H:i:s"));
$crud->field_type('SupplierID','hidden');
$output = $crud->render();
$this->_controller_output($output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
function RawMaterial()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$this->load->model('Grocery_crud_model');
//$data['SupplierName'] = $this->Grocery_crud_model->getSupplierName();
//$data['users'] = $this->purchaseorder_model->getusers();
$this->global['pageTitle'] = 'siddharth : Add New PO';
$this->loadViews("Mainpage", $this->global, $data, NULL);
}
try{
$crud = new grocery_CRUD();
$crud->set_table('T_RawMaterialDetailsN');
$crud->set_subject('RawMaterialDetails');
$crud->required_fields('MaterialName','MaterialType','SupplierID');
$crud->columns('MaterialCode','MaterialName','MaterialType','SupplierID','CreatedDate');
$crud->field_type('CreatedDate','hidden', date("Y-m-d H:i:s"));
$crud->field_type('MaterialCode','hidden');
$output = $crud->render();
$this->_controller_output($output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function AssetDetails()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$this->load->model('Grocery_crud_model');
//$data['SupplierName'] = $this->Grocery_crud_model->getSupplierName();
//$data['users'] = $this->purchaseorder_model->getusers();
$this->global['pageTitle'] = 'siddharth : Add New PO';
$this->loadViews("Mainpage", $this->global, NULL);
}
try{
$crud = new grocery_CRUD();
$now = new DateTime();
echo $now->format('Y-m-d H:i:s');
echo $now->getTimestamp();
$crud->set_table('T_AssetDetails');
$crud->set_subject('AssetDetails');
$crud->required_fields('Asset_Name','Description','Department','Location','AssetOwner','SupplierName','DateOfPurchase','DateOfCommission','SupportVendor','SupportFrom','SupportTo','CreatedDate');
$crud->columns('Asset_Code','Asset_Name','Description','Department','Location','AssetOwner','SupplierName','DateOfPurchase','DateOfCommission','SupportVendor','SupportFrom','SupportTo','CreatedDate');
$crud->field_type('CreatedDate','hidden', date("Y-m-d H:i:s"));
$crud->field_type('Asset_Code','hidden');
$output = $crud->render();
$this->_controller_output($output);
// $this->load->view('AssetDetails.php',(array)$output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
public function CostDetails()
{
try{
$crud = new grocery_CRUD();
$crud->set_table('T_CostCentre');
$crud->set_subject('CostDetails');
$crud->required_fields('CostName','Description');
$crud->columns('CostCentreID','CostName','Description','CreatedDate');
$crud->field_type('CostCentreID','hidden');
$crud->field_type('CreatedDate','hidden', date("Y-m-d H:i:s"));
$output = $crud->render();
$this->_controller_output($output);
// $this->load->view('AssetDetails.php',(array)$output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
}

View File

@ -1,588 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Employee (Employee Controller)
* User Class to control all user related operations.
* @author : Gandhimathi
* @version : 1.1
* @since : 07 Apr 2017
*/
class payslip extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('payroll_model');
$this->load->library('form_validation');
$this->isLoggedIn();
}
/**
* This function used to call stored procedure named with final_payroll_data()
*/
public function callsp(){
$payon = $this->input->post('payon');
$employee = $this->input->post('employee');
$result = $this->payroll_model->model_sp($payon,$employee);
// $result = $this->db->last_query();
return $result;
//$this->db->call_function('model_sp');
}
/**
* This function used to load the first screen of the user
*/
public function viewUpload()
{
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
$this->loadViews("payslipupload", $this->global, null , NULL);
}
/**
* This function used to load the first screen of the user
*/
public function viewUpload2()
{
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload2';
$this->loadViews("payslipupload2", $this->global, null , NULL);
}
/**
* This function used to load the first screen of the user
*/
public function viewGenerator()
{
//echo 'inside funtion';
$Data['Payon'] = $this->payroll_model->getPayOn();
//$Data['Emplist'] = $this->payroll_model->getEmployeelist();
$this->global['pageTitle'] = 'Siddharth : Payroll Generater';
$this->loadViews("payslipgenerate", $this->global, $Data , NULL);
}
/* Validation for Employee Dropdown
*/
function Employee_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('Employee_validate', 'Please Select Employee.');
return false;
}
else // user picked something
{
return true;
}
}
function getEmployee()
{
$id = $this->input->post('id1');
$result = $this->payroll_model->getEmployeelist2($id );
$HTML="";
if($result->num_rows() > 0){
foreach($result->result() as $list){
$HTML.="<option value='".$list->EmpId."'>".$list->EmpId."-".$list->Fname."</option>";
}
}
echo $HTML;
}
/* Validation for PayOn Dropdown
*/
function PayOn_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('PayOn_validate', 'Please Select PayOn.');
return false;
}
else // user picked something
{
return true;
}
}
/**
* This function used to load the first screen of the user
*/
public function PrintPdf()
{
$All = $this->input->post('All');
if($All == '')
{
$this->form_validation->set_rules('Employee','Employee','trim|callback_Employee_validate');
}
$this->form_validation->set_rules('PayOn','PayOn','trim|callback_PayOn_validate');
if($this->form_validation->run() == FALSE)
{
$this->viewGenerator();
}
else
{
$Payon = $this->input->post('PayOn');
if($All != '')
{
$result = $this->payroll_model->getEmpAll($Payon);
if($result > 0 )
{
for($i=0;$i <count($result) ;$i++ )
{
$EmpID = $result[$i]['EmpId'];
$Data['PayDetails'] = $this->payroll_model->GetPayslipdata($Payon,$EmpID);
$Data['Count'] = $i;
$this->load->View("payslipgenerateprint", $Data );
}
}
}
else
{
$EmpID = $this->input->post('Employee');
$Data['PayDetails'] = $this->payroll_model->GetPayslipdata($Payon,$EmpID);
$this->load->View("payslipgenerateprint", $Data );
}
$php = $this->output->get_output();
// Load library
$this->load->library('dompdf_gen');
if($All != '')
{
$filename = 'Payslip-'.$Payon.'.pdf' ;
}
else
{
$filename = 'Payslip-'.$EmpID . '-' .$Payon.'.pdf' ;
}
require_once(APPPATH .'third_party/dompdf/dompdf_config.inc.php');
$dompdf = new DOMPDF();
$dompdf->set_paper('A4', 'portrait');
$dompdf->load_html($php);
$dompdf->render();
// add the header
$canvas = $dompdf->get_canvas();
$font = Font_Metrics::get_font("helvetica", "bold");
// the same call as in my previous example
$canvas->page_text(72, 18, "Page: {PAGE_NUM} of {PAGE_COUNT}",
$font, 6, array(0,0,0));
$dompdf->stream($filename);
}
}
/**
* This function used to upload the Excel file Details
*/
function uploadExcel(){
$PayrollFileName = '';
//Check whether user upload picture
if(!empty($_FILES['userfile']['name']))
{
//echo 'inside if';
$pathinfo = pathinfo($_FILES['userfile']['name']);
$config['upload_path'] = 'uploads/files/';
$config['allowed_types'] = 'xls|xlsx|csv';
$config['file_name'] = $_FILES['userfile']['name'];
$config['overwrite'] = true;
//Load upload library and initialize configuration
$this->load->library('upload',$config);
$this->upload->initialize($config);
if (($pathinfo['extension'] == 'xlsx' || $pathinfo['extension'] == 'xls')
&& $_FILES['userfile']['size'] > 0 )
{
if($this->upload->do_upload('userfile'))
{
$uploadData = $this->upload->data();
$PayrollFileName = $uploadData['file_name'];
}
else
{
$error = array('error' => $this->upload->display_errors());
$PayrollFileName = '';
}
$inputFileName = $_FILES['userfile']['tmp_name'];
require_once APPPATH .'third_party/PHPExcel/IOFactory.php';
$objTpl = PHPExcel_IOFactory::load($inputFileName);
$sheet = $objTpl->getActiveSheet(0) ;//->toArray(null, NULL, True, True);
$highestRow = $sheet->getHighestRow();
$highestColumn = $sheet->getHighestColumn();
$i = 8;
$dt = $sheet->getCell('PayOn')->getValue();
$stringDate = PHPExcel_Style_NumberFormat::toFormattedString($dt, 'YYYY-MM-DD');
$date = new DateTime($stringDate);
$PayOn = $date->format('m-Y');
$createdby = $this->session->userdata ( 'userId' );
$Totaldays = $sheet->getCell('I'.$i)->getValue();
$FileExists = $this->payroll_model->checkFileDetailsExists($PayOn);
if (count($FileExists)== 0)
{
$FileDetails = array('PayOn'=>$PayOn,'TotalNoofDays'=>$Totaldays,'FileName'=>$PayrollFileName,'CreatedBy'=>$createdby);
$result = $this->payroll_model->UploadFileName($FileDetails);
}
else
{
$FileDetailsupdate = array('TotalNoofDays'=>$Totaldays,'FileName'=>$PayrollFileName,'CreatedBy'=>$createdby);
$result = $this->payroll_model->UpdateFileName($FileDetailsupdate,$PayOn);
$this->payroll_model->deleteFileData($PayOn);
}
for($x=8; $x <= $highestRow; $x++)
{
$EmpId = $sheet->getCell('C'.$x)->getValue();
$BankAccountnumber = $sheet->getCell('E'.$x)->getValue();
$PFnumber = $sheet->getCell('F'.$x)->getValue();
$ESInumber = $sheet->getCell('G'.$x)->getValue();
$UAnumber = $sheet->getCell('H'.$x)->getValue();
$NoOfWorkingdays = $sheet->getCell('J'.$x)->getValue();
$LOP = $sheet->getCell('K'.$x)->getCalculatedValue();
$ActualSalary = $sheet->getCell('L'.$x)->getValue();
$PerDaySalary = $sheet->getCell('M'.$x)->getCalculatedValue();
$WorkedSalary =$sheet->getCell('N'.$x)->getCalculatedValue();
$BasicAndDA =$sheet->getCell('O'.$x)->getCalculatedValue();
$HRA =$sheet->getCell('P'.$x)->getCalculatedValue();
$OTWages = $sheet->getCell('Q'.$x)->getValue();
$OTPerHours =$sheet->getCell('R'.$x)->getValue();
$OTSalary =$sheet->getCell('S'.$x)->getCalculatedValue();
$GrosssSalary =$sheet->getCell('T'.$x)->getCalculatedValue();
$ESI = $sheet->getCell('U'.$x)->getCalculatedValue();
$PF =$sheet->getCell('V'.$x)->getCalculatedValue();
$ESIAndPF = $sheet->getCell('W'.$x)->getCalculatedValue();
$SalaryAsPerPF =$sheet->getCell('X'.$x)->getCalculatedValue();
$FoodAllowance = $sheet->getCell('Y'.$x)->getCalculatedValue();
$Incentive =$sheet->getCell('Z'.$x)->getValue();
$TotalSalary = $sheet->getCell('AA'.$x)->getCalculatedValue();
$Advance =$sheet->getCell('AB'.$x)->getValue();
$BalanceAdvance = $sheet->getCell('AC'.$x)->getValue();
$LessAdvance = $sheet->getCell('AD'.$x)->getCalculatedValue();
$Signature = $sheet->getCell('AE'.$x)->getValue();
//echo $EmpId ;
if( $EmpId != '')
{
$FileData = array('PayOn'=>$PayOn,'EmpID'=>$EmpId,'NoofDaysWorked'=>$NoOfWorkingdays,'ActualSalary'=>$ActualSalary,'PerDaySalary'=>$PerDaySalary,'WorkedSalary'=>$WorkedSalary,'BasicPlusDA'=>$BasicAndDA,'HRA'=>$HRA,'OTWages'=>$OTWages,'OTperHours'=>$OTPerHours,'OTSalary'=>$OTSalary,'ESIGrossSalary'=>$GrosssSalary,'EmployeeESI'=>$ESI,'PF'=>$PF,'TotalDeduction'=>$ESIAndPF,'SalaryAsPerPF'=>$SalaryAsPerPF,'FoodAllowance'=>$FoodAllowance,'Incentive'=>$Incentive,'TotalSalary'=>$TotalSalary,'Advance'=>$Advance,'BalanceAdvance'=>$BalanceAdvance,'LessAdvance'=>$LessAdvance,'Remarks'=>$Signature,'BankAccountNumber'=>$BankAccountnumber,'PFNumber'=>$PFnumber,'ESINumber'=>$ESInumber,'UANNO'=>$UAnumber,'LOP'=>$LOP);
$result = $this->payroll_model->UploadFileData($FileData);
}
}
$data['Success'] = "<script>alert('File Uploaded Successfully!');</script>";
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
$this->loadViews("payslipupload", $this->global, $data , NULL);
}
else
{
$data['Fail'] = "<script>alert('Please select valid Excel file to Upload!');</script>";
//echo "<script>alert('Please select valid Excel file to Upload!');</script>";
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
$this->loadViews("payslipupload", $this->global, $data , NULL);
}
}
else
{
$data['Fail'] = "<script>alert('Please select Excel file to Upload!');</script>";
//echo "<script>alert('Please select Excel file to Upload!');</script>";
$PayrollFileName = '';
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
$this->loadViews("payslipupload", $this->global, NULL , NULL);
}
}
/**
* This function used to upload the Excel file Details2
*/
function uploadExcel2(){
$PayrollFileName = '';
//Check whether user upload picture
if(!empty($_FILES['userfile']['name']))
{
//echo 'inside if';
$pathinfo = pathinfo($_FILES['userfile']['name']);
$config['upload_path'] = 'uploads/files/';
$config['allowed_types'] = 'xls|xlsx|csv';
$config['file_name'] = $_FILES['userfile']['name'];
$config['overwrite'] = true;
//Load upload library and initialize configuration
$this->load->library('upload',$config);
$this->upload->initialize($config);
if (($pathinfo['extension'] == 'xlsx' || $pathinfo['extension'] == 'xls')
&& $_FILES['userfile']['size'] > 0 )
{
if($this->upload->do_upload('userfile'))
{
$uploadData = $this->upload->data();
$PayrollFileName = $uploadData['file_name'];
}
else
{
$error = array('error' => $this->upload->display_errors());
$PayrollFileName = '';
}
$inputFileName = $_FILES['userfile']['tmp_name'];
require_once APPPATH .'third_party/PHPExcel/IOFactory.php';
$objTpl = PHPExcel_IOFactory::load($inputFileName);
$sheet = $objTpl->getActiveSheet(0) ;//->toArray(null, NULL, True, True);
$highestRow = $sheet->getHighestRow();
$highestColumn = $sheet->getHighestColumn();
$x = 8;
$month=$this->input->post('mon');
$year=$this->input->post('yr');
$PayOn= $month . "-" . $year;
$createdby = $this->session->userdata ( 'userId' );
if($month=='01' || $month=='03' || $month=='05' || $month=='07' || $month=='08' || $month=='10' || $month=='12')
{
$Totaldays = 31;
}
else if($month=='04' || $month=='06' || $month=='09' || $month=='11'){
$Totaldays = 30;
}
else{
$Totaldays = 28;
}
// $Totaldays = 0;
//echo $highestRow;
$FileDetails = array('PayOn'=>$PayOn,'TotalNoofDays'=>$Totaldays,'FileName'=> $config['file_name'],'CreatedBy'=>$createdby);
$result = $this->payroll_model->UploadFileName($FileDetails);
$emplid=$this->payroll_model->getEmpID($q='');
$Unknowncount=0;
$Unknown="";
$row="";
$d=array("-1"=>"");
$fail=0;
$success=0;
for($x=8;$x<=$highestRow;$x++){
$EmpId = $sheet->getCell('A'.$x)->getValue();
//echo $EmpId;
$flag=0;
foreach($emplid as $e){
if(strtoupper($EmpId) == $e->EmpID){
$flag++;
// echo "<br>".$myvar.":- is valid empid";
}
}
if($flag==0){
//echo "<br>".$myvar.":- not a valid empid";
$Unknowncount++;
$Unknown.='-'.$EmpId;
$row.='-'.$x;
//$d.=$EmpId;
}
$FileDataExists = $this->payroll_model->checkFileDetailsExists2($PayOn,$EmpId);
//echo $FileExists;
//die();
//echo $FileDataExists;
//die();
if ($FileDataExists=='' || $FileDataExists==0)
{
//$FileDetails = array('PayOn'=>$PayOn,'TotalNoofDays'=>$Totaldays,'FileName'=>$PayrollFileName,'CreatedBy'=>$createdby);
// $result = $this->payroll_model->UploadFileName($FileDetails);
//for($x=8; $x <= $highestRow; $x++)
//{
$EmpId = $sheet->getCell('A'.$x)->getValue();
$EmpId=strtoupper($EmpId);
$LOPDays = $sheet->getCell('B'.$x)->getValue();
$OTHoursWorked =$sheet->getCell('C'.$x)->getValue();
$loanRecovered=$sheet->getCell('D'.$x)->getValue();
$loanBalance=$sheet->getCell('E'.$x)->getValue();
$Incentive =$sheet->getCell('F'.$x)->getValue();
$Other_Deductions =$sheet->getCell('G'.$x)->getValue();
if( $EmpId != '')
{
foreach($emplid as $e){
if($EmpId == $e->EmpID){
$FileData = array('Month_Year'=>$PayOn,'EmpID'=>$EmpId,'LOP_Days'=>$LOPDays,'OT_Hrs_Worked'=>$OTHoursWorked,'Loan_Recovered'=>$loanRecovered,'Loan_Balance'=>$loanBalance,'Incentives'=>$Incentive,'Other_Deductions'=>$Other_Deductions,'Created_By'=>$createdby,'Created_Time'=>date("Y-m-d h:i:sa"));
$result = $this->payroll_model->UploadFileData2($FileData);
$success++;
}
}
// $data['Success'] = "<script>alert('File Uploaded Successfully!');</script>";
// $this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
// $this->loadViews("payslipupload2", $this->global, $data , NULL);
}
else{
$fail++;
// $data['Fail'] = "<script>alert('Duplicate Data Found!');</script>";
// $this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
// $this->loadViews("payslipupload2", $this->global, $data , NULL);
}
}
} //End of For Loop
// echo $success;
//echo $fail;
//$data['success'] = "<script>alert($fail + 'Duplicate Data Found!');</script>";
echo "<script> alert($success +' Data Uploaded sucessfully and ' + $fail + ' Duplicate Data Found'); </script>";
echo "<script>alert($Unknowncount+'-data invalid, and data are'+'$Unknown'+'found at rows'+'$row');</script>";
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload';
$this->loadViews("payslipupload2", $this->global , NULL);
//redirect('monthlyListings');
} else
{
$data['Fail'] = "<script>alert('Please select valid Excel file to Upload!');</script>";
//echo "<script>alert('Please select valid Excel file to Upload!');</script>";
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload2';
//$this->loadViews("payslipupload2", $this->global, $data , NULL);
}
}
else
{
$data['Fail'] = "<script>alert('Please select Excel file to Upload!');</script>";
//echo "<script>alert('Please select Excel file to Upload!');</script>";
$PayrollFileName = '';
$this->global['pageTitle'] = 'Siddharth : Payroll Data Upload2';
$this->loadViews("payslipupload2", $this->global, NULL , NULL);
}
}
function updatepayroll()
{
$this->global['pageTitle'] = 'Update Payroll';
$this->loadViews("payslipeditable", $this->global, NULL , NULL);
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

File diff suppressed because it is too large Load Diff

View File

@ -1,325 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : RawMaterial (PurchaseorderController)
* User Class to control all user related operations.
* @author : Gandhimathi
* @version : 1.1
* @since : 12 Apr 2017
*/
class rawmaterialdetails extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('rawmaterialdetails_model');
$this->load->library('pagination');
$this->load->library('form_validation');
$this->load->library('Excel');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : RawMaterialDetails';
$this->loadViews("rawmaterialListing", $this->global, NULL , NULL);
}
/**
* This function is used to load the RawMaterialDetails list
*/
function rawmaterialListing()
{
$this->load->model('rawmaterialdetails_model');
$data['userRecords'] = $this->rawmaterialdetails_model->rawmaterialListing();
$this->global['pageTitle'] = 'Siddharth : RawMaterial Listing';
$this->loadViews("rawmaterialListing", $this->global, $data, NULL);
}
/**
* This function is used to load the add new cost */
function addRawMaterial()
{
$this->load->model('rawmaterialdetails_model');
$data['material'] = $this->rawmaterialdetails_model->getmaterialType();
$data['UOM'] = $this->rawmaterialdetails_model->getUOM();
$this->global['pageTitle'] = 'siddharth : AddNew RawMaterial';
$this->loadViews("addRawMaterial", $this->global, $data, NULL);
}
/*
Validation for Material Type Dropdown
*/
function MaterialType_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('MaterialType_validate', 'Please Select Material Type.');
return false;
}
else // user picked something
{
return true;
}
}
/*
Validation for Material Type Dropdown
*/
function UOM_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '-1')
{
$this->form_validation->set_message('UOM_validate', 'Please Select UOM.');
return false;
}
else // user picked something
{
return true;
}
}
/* This function is used to add new Cost to the system
*/
function addNewRawMaterial()
{
$this->form_validation->set_rules('MaterialName','Material Name','trim|required|');
$this->form_validation->set_rules('MaterialType','MaterialType','trim|callback_MaterialType_validate');
$this->form_validation->set_rules('UOM','UOM','trim|callback_UOM_validate');
if($this->form_validation->run() == FALSE)
{
$this->addRawMaterial();
}
else
{
$MaterialName = $this->input->post('MaterialName');
$MaterialType = $this->input->post('MaterialType');
$UOM = $this->input->post('UOM');
$CreatedBy = $this->session->userdata('userId');
$chked = $this->input->post('isactive');
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
$RawMaterial = array('MaterialName'=>$MaterialName, 'MaterialType'=>$MaterialType, 'UOM'=>$UOM,'CreatedBy'=>$CreatedBy,'IsActive' => $IsActive);
$result = $this->rawmaterialdetails_model->addNewRawMaterial($RawMaterial);
if($result > 0)
{
redirect('rawmaterialListing','refresh');
echo "<script>alert('RawMaterial Created successfully!');</script>";
}
else
{
redirect('rawmaterialListing','refresh');
echo "<script>alert('RawMaterial Not Created!');</script>";
}
}
}
function viewRawmaterial($RID= '')
{
$MaterialType = '';
$UOM = '';
if($RID == '')
{
$RawMaterialID = $_GET['RID'];
$MaterialType = $_GET['MType'];
$UOM = $_GET['UOM'];
}
else
{
$RawMaterialID = $RID;
}
$data['materialDetails'] = $this->rawmaterialdetails_model->getMaterialDetails($RawMaterialID);
$data['materialType'] = $this->rawmaterialdetails_model->getmaterialType($MaterialType );
$data['UOMList'] = $this->rawmaterialdetails_model->getUOM($UOM);
$this->global['pageTitle'] = 'Siddharth : Edit Material Master';
$this->loadViews("editOldRawmaterial", $this->global,$data, NULL);
}
/**
* This function is used to edit the user information
*/
function editRawmaterial()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$RawmaterialID = $this->input->post('MaterialCode');
$this->form_validation->set_rules('MaterialName','Material Name','trim|required|');
$this->form_validation->set_rules('MaterialType','MaterialType','trim');
$this->form_validation->set_rules('UOM','UOM','trim');
if($this->form_validation->run() == FALSE)
{
$this->viewRawmaterial($RawmaterialID);
}
else
{
$MaterialCode = $this->input->post('MaterialCode');
$MaterialName = $this->input->post('MaterialName');
$MaterialType = $this->input->post('MaterialType');
$UOM = $this->input->post('UOM');
$UpdatedBy = $this->session->userdata ('userId');
$chked = $this->input->post('isactive');
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
$RawMaterial = array();
$RawMaterial = array('MaterialName'=>$MaterialName,'MaterialType'=>$MaterialType,'UpdatedBy'=>$UpdatedBy, 'UOM'=>$UOM,'IsActive' => $IsActive);
$result = $this->rawmaterialdetails_model->editRawmaterial($RawMaterial, $MaterialCode);
if($result == true)
{
redirect('rawmaterialListing','refresh');
echo "<script>alert('RawMaterial Updated successfully!');</script>";
}
else
{
redirect('rawmaterialListing','refresh');
echo "<script>alert('RawMaterial Record Not updated!');</script>";
}
}
}
}
/** this function can be use for excel report **/
function export_material(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('D3:J3');
$this->excel->getActiveSheet()->setTitle('Material Master');
$this->excel->getActiveSheet()->setCellValue('D3', 'SIDDHARTH INDUSTRIES Raw Material');
$this->excel->getActiveSheet()->setCellValue('C5', 'MaterialCode');
$this->excel->getActiveSheet()->setCellValue('D5', 'MaterialName');
$this->excel->getActiveSheet()->setCellValue('E5', 'MaterialType');
$this->excel->getActiveSheet()->setCellValue('F5', 'UOM');
$this->excel->getActiveSheet()->setCellValue('G5', 'Created by');
$this->excel->getActiveSheet()->setCellValue('H5', 'Updated By');
$this->excel->getActiveSheet()->setCellValue('I5', 'IsActive');
$this->excel->getActiveSheet()->getStyle('D3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('D3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$exportData = $this->rawmaterialdetails_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('C' . $i,$data['MaterialCode']);
$this->excel->getActiveSheet()->setCellValue('D' . $i,$data['MaterialName']);
$this->excel->getActiveSheet()->setCellValue('E' . $i,$data['MaterialType']);
$this->excel->getActiveSheet()->setCellValue('F' . $i,$data['UOM']);
$this->excel->getActiveSheet()->setCellValue('G' . $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('H' . $i,$data['Updated_By']);
$this->excel->getActiveSheet()->setCellValue('I' . $i,$data['IsActive']);
$i++;
$s++;
}
}
$filename = 'RawMaterial' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{
$this->global['pageTitle'] = 'Siddharth : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,541 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : requisitionform (requisitionformController)
* User Class to control all user related operations.
* @author : VenbaMail Mali
* @version : 1.1
* @since : 15 Feb 2016
*/
class requisitionform extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('requistion_model');
$this->load->library('session');
$this->load->library('form_validation');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the Requistion
*/
function requisitionlisting()
{
$this->global['pageTitle'] = 'Siddharth : Requisition Listing';
$userID = $this->session->userdata ( 'userId' );
// $data['ReqList'] = $this->requistion_model->getRequistListUserID($userID);
$data['Status'] = $this->requistion_model->CheckDraftStatus($userID);
$data['TotNoOfLine'] =$this->requistion_model->getRequistionList($userID);
$this->loadViews("requisitionlisting", $this->global, $data, NULL);
}
/**
* This function used to load the first screen of the requisition Form
*/
function requisition()
{
$this->global['pageTitle'] = 'Siddharth : Raise Requisition';
$data['RequestType'] = $this->requistion_model->getConfigValue('C004');
$data['EmpList'] = $this->requistion_model->getAllEmployees();
$userID = $this->session->userdata ( 'userId' );
$data['Emp'] = $this->requistion_model->getEmpIdByUserID($userID);
$data['CostCenter'] = $this->requistion_model->getCostCenterUserID($userID);
$this->loadViews("requisitionform", $this->global, $data,null);
}
/**
* This function used to load the first screen of the Requistion List Approval Screen
*/
function requisitionlistApproval()
{
$this->global['pageTitle'] = 'Siddharth : Requisition Approval';
$data['Status']= $this->requistion_model->getStatus();
$userID = $this->session->userdata ( 'userId' );
$data['AppList'] = $this->requistion_model->getApproverRequistList($userID);
$this->loadViews("requisitionlistapproval", $this->global, $data, NULL);
}
/**
* This function used to load the Edit Requistion Form
*/
function EditRequistionForm()
{
$this->global['pageTitle'] = 'Siddharth : Edit Requisition';
$ReqNo= $_GET['ReqNo'];
$ReqType= $_GET['ReqType'];
$userID = $this->session->userdata ( 'userId' );
$data['ReqDetails'] = $this->requistion_model->getRequistDetails($ReqNo,'Yes');
$data['LineItem'] = $this->requistion_model->getEditRequistItemList($ReqNo);
$data['CostCenter'] = $this->requistion_model->getCostCenterUserID($userID);
$data['MaterialCode'] = $this->requistion_model->EditMaterialCode($ReqNo, $ReqType);
$this->loadViews("editrequisitionform", $this->global, $data, NULL);
}
/**
* This function used to load the Delete the Requistion Items
*/
function DeleteRequistionForm()
{
$ReqList= $this->input->post('id');
$ReqNo ='';
$MaterialCode = '';
if(count($ReqList) > 0)
{
$ReqNo = $ReqList[0];
$MaterialCode = $ReqList[1];
}
$this->requistion_model->DeleteRequistionLineItem( $ReqNo,$MaterialCode);
echo "Successfully Deleted the Line item".$ReqNo;
}
/**
* This function used to load the Delete the Requistion Items
*/
function DeleteReqNo()
{
$ReqNo= $this->input->post('id');
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$updateddt = $dt->format('Y-m-d H:i:s');
$Request = array('Status'=>REQ_DELETED,'updatedOn'=>$updateddt);
$this->requistion_model->UpdateRequistion( $Request,$ReqNo);
echo "Successfully Deleted the ".$ReqNo;
}
function SearchRequistList()
{
$userID = $this->session->userdata ( 'userId' );
$ReqValue = $this->input->post('SearchDate');
$Dt = explode("-",$ReqValue);
$FromDate ='';
$ToDate = '';
$Status= '';
if(count( $Dt)>1)
{
$FDate = $Dt[0]."-".$Dt[1]."-".$Dt[2];
$TDate = $Dt[3]."-".$Dt[4]."-".$Dt[5];
$FromDate = $this->getDateformat($FDate);
$ToDate = $this->getDateformat($TDate);
}
$St = $this->input->post('RequisitionStatus');
if($St == "-1")
{
$Status = '';
}
else
{
$Status = $St;
}
$data['AppList'] = $this->requistion_model->getApproverRequistList($userID,$Status,$FromDate, $ToDate);
$this->global['pageTitle'] = 'Siddharth : Requisition Approval';
$data['Status']= $this->requistion_model->getStatus();
$this->loadViews("requisitionlistapproval", $this->global, $data, NULL);
}
function getDateformat($Val)
{
$date = new DateTime($Val);
$retDate = $date->format('Y-m-d H:i:s');
return $retDate;
}
/**
* This function used to load the Employee details based on the EmpID selection
*/
function GetSelectedEmpDetails()
{
$ReqType = $_GET['ReqType'];
$EmpID = $this->input->post('id');
$empDetails = $this->requistion_model->GetEmployeeDetails( $EmpID );
$DeptCode = $empDetails[0]['DEPCode'];
$CostList = $this->requistion_model->GetCostCenterByDept( $DeptCode);
$HTML = "<option value='-1'>Select Cost center</option>";
$BudAmount = "";
if(count($CostList) > 0)
{
for ($j = 0; $j < count($CostList); $j++)
{
$Code = $CostList[$j]['CostCenterCode'];
$Name = $CostList[$j]['CostCenterName'];
$HTML .="<option value='".$Code."'>".$Code."-".$Name."</option>";
}
}
if(count($CostList) == 1)
{
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$Year = $dt->format('Y');
$CostCode = $CostList[0]['CostCenterCode'];
$Cost = $this->requistion_model->GetAvailableBudgetAmount( $CostCode,$Year,$ReqType);
if(count($Cost) >0)
{
$BudAmount = $Cost[0]['BudgetAmount'];
}
}
die(json_encode(array('emp' => $empDetails,'Cost' => $HTML,'AvlAmount' => $BudAmount)));
}
function getAvailableBudAmount()
{
$ReqType = $_GET['ReqType'];
$CostCode= $this->input->post('id');
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$Year = $dt->format('Y');
$Cost = $this->requistion_model->GetAvailableBudgetAmount( $CostCode,$Year,$ReqType);
die(json_encode(array('Cost' =>$Cost)));
}
// To get the Material code based on the Request type
function getMaterialCode()
{
$ReqType= $this->input->post('id');
$MaterialCode = $this->requistion_model->GetMaterialCode( $ReqType);
$MaterialName = "";
$UOM = "";
$HTML = "<option value='-1'>Select Material Type</option>";
if(count($MaterialCode) > 0)
{
for ($j = 0; $j < count($MaterialCode); $j++)
{
$Code = $MaterialCode[$j]['MaterialCode'];
$Name = $MaterialCode[$j]['MaterialName'];
$HTML .="<option value='".$Code."'>".$Code."-".$Name."</option>";
}
$MaterialName = $MaterialCode[0]['MaterialName'];
$UOM = $MaterialCode[0]['UOM'];
}
die(json_encode(array('Material' =>$HTML,'MaterialName'=>$MaterialName,'UOM'=>$UOM)));
}
// To get the Material value based on the MaterialCode
function getMaterialDetails()
{
$Material= $this->input->post('id');
$MaterialDetails = $this->requistion_model->getRawMaterialList($Material);
die(json_encode(array('MatDetail' =>$MaterialDetails)));
}
/*
To Insert the Requistion Details to Database
*/
/**
* This function is used to add new Cost to the system
*/
function addNewRequistion()
{
$this->form_validation->set_rules('RequestType','RequestType','trim|required');
$this->form_validation->set_rules('EmpID','EmpID','trim|required');
if($this->form_validation->run() == FALSE)
{
$this->requisition();
}
else
{
$Status= $_GET['ID'];
$RequestType = strtoupper(trim($this->input->post('RequestType')));
$Requestedby = strtoupper(trim($this->input->post('EmpID')));
$CostCenter = $this->input->post('CostCenter');
$CreateBy = $this->session->userdata ( 'userId' );
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$createddt = $dt->format('Y-m-d H:i:s');
$DeletedRow = $this->input->post('txtDeletedRow');
$RowCount = $this->input->post('txtRowCount');
$comma_separated = explode(':', $DeletedRow);
$IsExists = $this->requistion_model->RequistionIsExists($Requestedby);
// print_r($IsExists);
if(count( $IsExists) == 0)
{
//echo 'Not Exists';
$Request = array('ReqType'=>$RequestType, 'Requestedby'=>$Requestedby,'ReqDate'=>$createddt,'CostCenterCode'=>$CostCenter,'Status'=>$Status,'CreatedDate'=>$createddt,'CreatedBy'=>$CreateBy);
//print_r($Request);
$Req = $this->requistion_model->addRequistion($Request);
}
else
{
//echo 'Exists';
$Request = array('ReqType'=>$RequestType, 'Requestedby'=>$Requestedby,'ReqDate'=>$createddt,'Status'=>$Status,'CreatedDate'=>$createddt,'CreatedBy'=>$CreateBy,'CostCenterCode'=>$CostCenter);
$UpdateReq = $this->requistion_model->UpdateRequistion($Request,$IsExists[0]['ReqNo']);
}
$ReqNumber = '';
if(count($Req)>0)
{
$ReqNumber = $Req[0]['ReqNo'];
}
else
{
$ReqNumber = $IsExists[0]['ReqNo'];
}
$SkipInsert = False;
for ($i = 1; $i <= $RowCount; $i++)
{
$SkipInsert = "False";
if( count($comma_separated) > 0)
{
for($j = 1; $j < count($comma_separated); $j++)
{
$deletedRow = $comma_separated[$j] ;
if($deletedRow == $i )
{
$SkipInsert = "True";
break;
}
}
}
if($SkipInsert == "False")
{
$MaterialCode = $this->input->post('MaterialCode'.$i);
$Quantity = $this->input->post('Quantity'.$i);
$ReqDetails = array('ReqNo'=>$ReqNumber, 'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity);
$this->requistion_model->addRequistionDetails($ReqDetails);
}
}
if($Status == REQ_DRAFT)
{
echo 'Successfully Saved the Requistion details';
}
else
{
echo 'Successfully Created the Requistion details';
}
}
}
function EditRequistion()
{
$Status = $this->input->post('txtStatus');
$ReqNumber = $this->input->post('txtReqNo');
$CostCenter = $this->input->post('CostCenter');
$UpdatedBy = $this->session->userdata ( 'userId' );
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$updatedDate = $dt->format('Y-m-d H:i:s');
$DeletedRow = $this->input->post('txtDeletedRow');
$RowCount = $this->input->post('txtRowCount');
if(strlen($Status) > 1)
{
$Request = array( 'Status'=>$Status,'CreatedDate'=>$updatedDate,'CreatedBy'=>$UpdatedBy,'CostCenterCode'=>$CostCenter);
$UpdateReq = $this->requistion_model->UpdateRequistion($Request, $ReqNumber);
}
else
{
$Request = array( 'Status'=>REQ_PENDING_APPROVAL,'updatedOn'=>$updatedDate,'CostCenterCode'=>$CostCenter);
$UpdateReq = $this->requistion_model->UpdateRequistion($Request, $ReqNumber);
}
$comma_separated = explode(':', $DeletedRow);
/* Table value update and Insert in the table */
//echo "RowCOunt:" .$RowCount;
$SkipInsert = False;
for ($i = 1; $i <= $RowCount; $i++)
{
$SkipInsert = "False";
if( count($comma_separated) > 0)
{
for($j = 1; $j < count($comma_separated); $j++)
{
$deletedRow = $comma_separated[$j] ;
if($deletedRow == $i )
{
$SkipInsert = "True";
break;
}
}
}
if($SkipInsert == "False")
{
$MaterialCode = $this->input->post('MaterialCode'.$i);
$Quantity = $this->input->post('Quantity'.$i);
$IsExists = $this->requistion_model->LineItemIsExists($ReqNumber,$MaterialCode);
if(count( $IsExists) == 0)
{
$ReqDetails = array('ReqNo'=>$ReqNumber, 'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'UpdatedBy'=>$UpdatedBy,'UpdatedOn'=>$updatedDate);
$this->requistion_model->addRequistionDetails($ReqDetails);
}
else
{
$ReqDetails = array('ReqNo'=>$ReqNumber, 'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'UpdatedBy'=>$UpdatedBy,'UpdatedOn'=>$updatedDate);
$this->requistion_model->UpdateRequistionLineItem($ReqDetails,$ReqNumber,$MaterialCode);
}
}
}
echo 'Successfully updated the Requistion details';
// $this->requisitionlisting();
}
/* To Edit the request*/
function ViewRequest()
{
$ReqNo= $this->input->post('id');
$result = $this->requistion_model->getRequistItemList($ReqNo);
$ReqList = $this->requistion_model->getRequistDetails($ReqNo);
$DepNo = $ReqList[0]['DEPCode'];
//$CostList = $this->requistion_model->GetCostCenterByDept($DepNo);
$HTML="";
for ($i = 0; $i < count($result); $i++)
{
$SNo = $i + 1;
$MaterialCode = $result[$i]['MaterialCode'];
$MaterialName = $result[$i]['MaterialName'];
$UOM = $result[$i]['UOM'];
$Quantity = $result[$i]['Quantity'];
$Quantity = $result[$i]['Quantity'];
$POQTY = $result[$i]['POQTY'];
$StatusName= $result[$i]['StatusName'];
$HTML.="<tr id='".$i."'>
<td align='left'>".$SNo."</td>
<td align='left'>". $MaterialCode."</td>
<td align='left'>".$MaterialName."</td>
<td align='left'>".$UOM."</td>
<td align='left'>".$Quantity."</td>
<td align='left'>".$POQTY."</td>
<td align='left'>".$StatusName."</td>
</tr>";
//$index = $index + 1;
}
$CostCode = '';
$ReqType = '';
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$Year = $dt->format('Y');
if(count($ReqList)>0)
{
$ReqType = $ReqList[0]['ReqType'];
$CostCode = $ReqList[0]['CostCenterCode'];
}
$this->load->model('purchaseorder_model');
$AvlBudget = $this->purchaseorder_model->GetAvailableBudgetAmount($CostCode,$Year,$ReqType);
//print_r($result);
$AvilBudAmt = '0';
if(count($AvlBudget)>0)
{
$AvilBudAmt = $AvlBudget[0]['BudgetAmount'] - $AvlBudget[0]['Totalvalue'];
}
//echo $AvilBudAmt;
die(json_encode(array('Items' =>$HTML,'Requist'=>$ReqList,'AvilBudAmount'=>number_format($AvilBudAmt,2))));
}
function ApproveRequest()
{
$Status= Trim($_GET['Status']);
$ReqNo= $_GET['ReqNo'];
$Remarks = trim($this->input->post('id'));
$ApprovedBy = $this->session->userdata ( 'userId' );
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$ApprovedDate = $dt->format('Y-m-d H:i:s');
$Request = array('Status'=>$Status,'Comments'=>$Remarks,'ApprovedOn'=>$ApprovedDate,'Approvedby'=>$ApprovedBy);
$this->requistion_model->UpdateRequistion($Request,$ReqNo);
echo "Successfully Updated the Requistion No: ".$ReqNo;
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,301 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : purchaseorder (PurchaseorderController)
* User Class to control all user related operations.
* @author : VenbaMail Mali
* @version : 1.1
* @since : 15 Feb 2016
*/
class servicepurchaseorder extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('purchaseorder_model');
$this->load->library('session');
$this->load->library('form_validation');
$this->load->model('requistion_model');
$this->isLoggedIn();
}
// To get the available Budget Amount
function AvilBudgetAmount()
{
// echo 'Controller called';
$CostCode = $this->input->post('id');
$ReqType = $_GET['ReqType'];
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$Year = $dt->format('Y');
$this->load->model('purchaseorder_model');
$result = $this->purchaseorder_model->GetAvailableBudgetAmount($CostCode,$Year,$ReqType);
//print_r($result);
$AvilBudAmt = '0';
if(count($result)>0)
{
$AvilBudAmt = $result[0]['BudgetAmount'] - $result[0]['Totalvalue'];
}
// echo 'Test';
print_r($AvilBudAmt);
//die(json_encode(array('Cost' => $AvilBudAmt)));
}
function getDateformat($Val)
{
$date = new DateTime($Val,new DateTimeZone('Asia/Kolkata'));
// print_r($date);
$retDate = $date->format('Y-m-d H:i:s');
return $retDate;
}
//This used to Create Service Purchase Order
function addNewServicePurchaseOrder()
{
$POdt =$this->input->post('PODate');
$PODate = $this->getDateformat($POdt);
$SupplierID = $this->input->post('drpSupplier');
$DeliveryAddr = $this->input->post('DeliveryAddr');
$dt = $this->input->post('Deliverydt');
//$Deliverydt = $this->getDateformat($dt);
$DeliveryOption = $this->input->post('DateRange');
if($DeliveryOption==1){
$Deliverydt = '';
$DeliverySchedule = $this->input->post('Scheduleby');
}
else{
$Deliverydt = $this->getDateformat($dt);
$DeliverySchedule = '';
}
$POType = $this->input->post('POType');
$SpcialInstruction = $this->input->post('txtSpcialInstruction');
$TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary');
$POStatus = $this->input->post('txtStatus');
$CreateBy = $this->session->userdata ( 'userId' );
$RowCount = $this->input->post('txtRowCount');
$DeletedRow = $this->input->post('txtDeletedRow');
$comma_separated = explode(':', $DeletedRow);
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$createddt = $dt->format('Y-m-d H:i:s');
// PO Master
$POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus, 'DeliverySchedule'=>$DeliverySchedule,'DeliveryOption'=>$DeliveryOption, 'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt );
$POMaster = $this->purchaseorder_model->addPOMaster($POList);
$PONO = '';
if(count($POMaster)>0)
{
$PONO = $POMaster[0]['PONO'];
}
// PO Line Items
$LineItemStatus = REQITEM_NEW;
for ($i = 1; $i <= $RowCount; $i++)
{
$MaterialCode = $this->input->post('materialCode'.$i);
$Quantity = $this->input->post('quantity'.$i);
$Reqnumber = $this->input->post('Reqnumber'.$i);
$itemRate = $this->input->post('itemRate'.$i);
$ServiceTax = $this->input->post('ServiceTax'.$i);
$EduCess = $this->input->post('EduCess'.$i);
$SecHighTax = $this->input->post('SecHighTax'.$i);
$KrishiTax = $this->input->post('KrishiTax'.$i);
$SwachhTax = $this->input->post('SwachhTax'.$i);
$CostCenter = $this->input->post('costCode'.$i);
$TotalOrderValue = $this->input->post('TotalOrderValue'.$i);
$SkipInsert = "False";
if( count($comma_separated) > 0)
{
for($j = 1; $j < count($comma_separated); $j++)
{
$deletedRow = $comma_separated[$j] ;
if($deletedRow == $i )
{
$SkipInsert = "True";
break;
}
}
}
if($SkipInsert == "False")
{
$POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter);
$POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList);
$LineItemNo = '';
if(count($POLineItem)>0)
{
$LineItemNo = $POLineItem[0]['LineItemNo'];
}
//echo $LineItemNo;
if(trim($POType) == SERVICE )
{
// echo 'Success';
$ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt);
$ServiceTax = $this->purchaseorder_model->addServiceTax($ServiceTaxList);
}
}
}
echo 'Service Purchase Order Created Successfully!The PO NO Is: '.$PONO;
}
function UpdateServicePurchaseOrder()
{
$PONO =$this->input->post('txtPONO');
//echo $PONO;
$POdt =$this->input->post('PODate');
$PODate = $this->getDateformat($POdt);
$SupplierID = $this->input->post('drpSupplier');
$DeliveryAddr = $this->input->post('txtDeliveryAddress');
$dt = $this->input->post('Deliverydt');
$DeliveryOption = $this->input->post('DateRange');
if($DeliveryOption==1){
$Deliverydt = '';
$DeliverySchedule = $this->input->post('Scheduleby');
}
else{
$Deliverydt = $this->getDateformat($dt);
$DeliverySchedule = '';
}
$POType = $this->input->post('POType');
$SpcialInstruction = $this->input->post('SpcialInstruction');
$TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary');
$POStatus = $this->input->post('txtStatus');
$updatedBy = $this->session->userdata ( 'userId' );
$RowCount = $this->input->post('txtRowCount');
$DeletedRow = $this->input->post('txtDeletedRow');
$comma_separated = explode(':', $DeletedRow);
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$updateddt = $dt->format('Y-m-d H:i:s');
// PO Master
$POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'DeliverySchedule'=>$DeliverySchedule,'DeliveryOption'=>$DeliveryOption,'ServiceDescription'=>$SpcialInstruction,'UpdateBY'=>$updatedBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'UpdatedOn'=>$updateddt );
$POMaster = $this->purchaseorder_model->updatePOMaster($PONO,$POList);
$LineItemStatus = REQITEM_NEW;
for ($i = 1; $i <= $RowCount; $i++)
{
$MaterialCode = $this->input->post('materialCode'.$i);
$Quantity = $this->input->post('quantity'.$i);
$Reqnumber = $this->input->post('Reqnumber'.$i);
$itemRate = $this->input->post('itemRate'.$i);
$ServiceTax = $this->input->post('ServiceTax'.$i);
$EduCess = $this->input->post('EduCess'.$i);
$SecHighTax = $this->input->post('SecHighTax'.$i);
$KrishiTax = $this->input->post('KrishiTax'.$i);
$SwachhTax = $this->input->post('SwachhTax'.$i);
$CostCenter = $this->input->post('costCode'.$i);
$POLineItemNo = $this->input->post('LineItemNo'.$i);
$TotalOrderValue = $this->input->post('TotalOrderValue'.$i);
$POLineItem = array();
$LineItemNo = '';
$SkipInsert = "False";
if( count($comma_separated) > 0)
{
for($j = 1; $j < count($comma_separated); $j++)
{
$deletedRow = $comma_separated[$j] ;
if($deletedRow == $i )
{
$SkipInsert = "True";
break;
}
}
}
if($SkipInsert == "False")
{
if(strlen($POLineItemNo) == 0)
{
$POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt,'CostCenterCode'=>$CostCenter);
$POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList);
if(count($POLineItem)>0)
{
$LineItemNo = $POLineItem[0]['LineItemNo'];
}
}
else
{
$LineItemNo = $POLineItemNo;
$POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt,'CostCenterCode'=>$CostCenter);
$POLineItem = $this->purchaseorder_model->updatePOLineItem($PONO,$POLineItemNo,$POLineItemList);
}
if(trim($POType) == SERVICE )
{
$isExists = $this->purchaseorder_model->LineItemExists($LineItemNo);
if(count($isExists) == 0)
{
$ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt);
$this->purchaseorder_model->addServiceTax($ServiceTaxList);
}
else
{
$ServiceTaxList1 = array('ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt);
$this->purchaseorder_model->updateServiceTax($LineItemNo,$ServiceTaxList1);
}
}
}
}
echo 'Successfully updated the Service Purchase Order';
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,439 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Supplier Controller (supplier)
* User Class to control all user related operations.
* @author : Gandhimathi
* @version : 1.1
* @since : 12 Apr 2017
*/
class supplier extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('supplier_model');
$this->load->library('form_validation');
$this->load->library('pagination');
$this->load->library('Excel');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Supplier';
$this->loadViews("supplierListing", $this->global, NULL , NULL);
}
/**
* This function is used to load the Supplier list
*/
function supplierListing()
{
$this->load->model('supplier_model');
$data['userRecords'] = $this->supplier_model->supplierListing();
$this->global['pageTitle'] = 'Siddharth Industries : Supplier Listing';
$this->loadViews("supplierListing", $this->global, $data, NULL);
}
/**
* This function is used to load the add new supplier */
function addsupplier()
{
$data['payment'] = $this->supplier_model->getpayment();
//$data['users'] = $this->purchaseorder_model->getusers();
$this->global['pageTitle'] = 'siddharth : AddNew Supplier';
$this->loadViews("addsupplier", $this->global,$data, NULL);
}
/**
* This function is used to check whether PAN already exist or not
*/
function CheckPAN()
{
$id = $this->input->post('id');
$query = $this->supplier_model->checkPAN($id );
$query = $query[0]['PAN'];
print_r($query);
}
/* To Check the Pan Number is exists in the database or not for the selected Supplier */
function checkPanValidateSupplier() {
$SupplierID = $this->input->post('SupplierID');
$PanNo = $this->input->post('panno');
// echo 'Sup'. $SupplierID ;
$query = $this->supplier_model->checkPAN($PanNo,$SupplierID);
if (count($query)> 0)
{
$this->form_validation->set_message('checkPanValidateSupplier', 'The Entered PAN Number is already exists in the Database.');
return false;
}
else
{
return true;
}
}
/* To Check the Pan Number is exists in the database or not */
function checkPanValidate()
{
$PanNo = $this->input->post('panno');
$query = $this->supplier_model->checkPAN($PanNo);
if (count($query)> 0)
{
$this->form_validation->set_message('checkPanValidate', 'The Entered PAN Number is already exists in the Database.');
return false;
}
else
{
return true;
}
}
/**
* This function is used to add new Supplier to the system
*/
function addNewsupplier()
{
$this->form_validation->set_rules('SupplierName','Supplier Name','trim|required');
$this->form_validation->set_rules('Address','Address','trim|required|');
$this->form_validation->set_rules('ContactNumber','Contact Number','trim|required|numeric|max_length[10]');
$this->form_validation->set_rules('AlternateContactNumber','Alternate Contact Number','trim|numeric|max_length[10]');
$this->form_validation->set_rules('emailid','emailid', 'valid_email|max_length[128]|required');
$this->form_validation->set_rules('TIN','TIN','trim|required|max_length[11]');
$this->form_validation->set_rules('panno', 'panno', 'trim|required|max_length[10]|callback_checkPanValidate');
if($this->form_validation->run() == FALSE)
{
$this->addsupplier();
}
else
{
$SupplierName = $this->input->post('SupplierName');
$Address = $this->input->post('Address');
$ContactNumber = $this->input->post('ContactNumber');
$AlternateContactNumber = $this->input->post('AlternateContactNumber');
$EmailAddress = $this->input->post('emailid');
$Exiseregistration = $this->input->post('Exciseregistration');
$TIN = $this->input->post('TIN');
$PAN = $this->input->post('panno');
$GSTNo = $this->input->post('GSTNo');
$GSTRange = $this->input->post('GSTRange');
$CollectrateAddress = $this->input->post('CollectrateAddress');
$UANumber = $this->input->post('UANumber');
$PaymentTerms = $this->input->post('PaymentTerms');
$Payment = $this->input->post('Payment');
$PayableAT = $this->input->post('PayableAT');
$CSTNo = $this->input->post('CSTNo');
$CSTDt = $this->input->post('dateofCST');
if($CSTDt != '')
{
$CSTDate = $this->getDateformat($CSTDt);
}
else
{
$CSTDate = null;
}
$Createdby = $this->session->userdata ( 'userId' );
$supplier = array('SupplierName'=>$SupplierName, 'Address'=>$Address, 'ContactNumber'=>$ContactNumber, 'AlternateContactNumber'=> $AlternateContactNumber,'EmailAddress'=>$EmailAddress,'Exiseregistration'=>$Exiseregistration,'TIN'=>$TIN,'PAN'=>$PAN,'GSTNo'=>$GSTNo,'GSTRange'=>$GSTRange,'CollectrateAddress'=>$CollectrateAddress,'UANumber'=>$UANumber,'PaymentTerms'=>$PaymentTerms,'PaymentDays'=>$Payment,'PayableAT'=>$PayableAT,'CSTNo'=>$CSTNo,'CSTDate'=>$CSTDate,'Createdby'=>$Createdby);
$result = $this->supplier_model->addNewsupplier($supplier);
if($result > 0)
{
redirect('supplierListing','refresh');
echo "<script>alert('New Supplier Created successfully!');</script>";
}
else
{
redirect('supplierListing','refresh');
echo "<script>alert('Supplier Record Not Created!');</script>";
}
}
}
function getDateformat($Val)
{
$date = new DateTime($Val);
$retDate = $date->format('Y-m-d H:i:s');
return $retDate;
}
/**
* This function is used to edit the Supplier information
*/
function editsupplier()
{
$this->form_validation->set_rules('SupplierName','Supplier Name','trim|required');
$this->form_validation->set_rules('Address','Address','trim|required|');
$supplierID = $this->input->post('SupplierID');
//echo 'supID' . $supplierID ;
$this->form_validation->set_rules('ContactNumber','Contact Number','trim|required|numeric|max_length[10]');
$this->form_validation->set_rules('AlternateContactNumber','Alternate Contact Number','trim|numeric|max_length[10]');
$this->form_validation->set_rules('emailid','emailid','valid_email|max_length[128]|required');
$this->form_validation->set_rules('TIN','TIN','trim|required|max_length[11]');
$this->form_validation->set_rules('panno', 'panno', 'trim|required|max_length[10]|callback_checkPanValidateSupplier');
if($this->form_validation->run() == FALSE)
{
$this->viewsupplier($supplierID);
}
else
{
$SupplierName = $this->input->post('SupplierName');
$Address = $this->input->post('Address');
$ContactNumber = $this->input->post('ContactNumber');
$AlternateContactNumber = $this->input->post('AlternateContactNumber');
$EmailAddress = $this->input->post('emailid');
$Exiseregistration = $this->input->post('Exciseregistration');
$TIN = $this->input->post('TIN');
$PAN = $this->input->post('panno');
$GSTNo = $this->input->post('GSTNo');
$GSTRange = $this->input->post('GSTRange');
$CollectrateAddress = $this->input->post('CollectrateAddress');
$UANumber = $this->input->post('UANumber');
$PaymentTerms = $this->input->post('PaymentTerms');
$Payment = $this->input->post('Payment');
$PayableAT = $this->input->post('PayableAT');
$UpdatedBy = $this->session->userdata ( 'userId' );
$chked = $this->input->post('isactive');
if( $chked != '')
{
$IsActive = '1';
}
else
{
$IsActive = '0';
}
$CSTNo = $this->input->post('CSTNo');
$CSTDt = $this->input->post('dateofCST');
if($CSTDt != '')
{
$CSTDate = $this->getDateformat($CSTDt);
}
else
{
$CSTDate = null;
}
$supplier = array();
$supplier = array('SupplierName'=>$SupplierName, 'Address'=>$Address, 'ContactNumber'=>$ContactNumber, 'AlternateContactNumber'=> $AlternateContactNumber,'EmailAddress'=>$EmailAddress,'Exiseregistration'=>$Exiseregistration,'TIN'=>$TIN,'PAN'=>$PAN,'GSTNo'=>$GSTNo,'GSTRange'=>$GSTRange,'CollectrateAddress'=>$CollectrateAddress,'UANumber'=>$UANumber,'PaymentTerms'=>$PaymentTerms,'PaymentDays'=>$Payment,'PayableAT'=>$PayableAT,'UpdatedBy'=>$UpdatedBy,'IsActive'=>$IsActive,'CSTNo'=>$CSTNo,'CSTDate'=>$CSTDate);
$result = $this->supplier_model->UpdateSupplier($supplier, $supplierID);
if($result == True)
{
redirect('supplierListing','refresh');
echo "<script>alert('Supplier updated successfully!');</script>";
}
else
{
redirect('supplierListing','refresh');
echo "<script>alert('Supplier Record Not updated!');</script>";
}
}
}
function viewsupplier($SID = '')
{
$Payment = '';
if($SID == '')
{
$supplierID = $_GET['SID'];
$Payment = $_GET['Payment'];
}
else
{
$supplierID = $SID;
}
$data['supplier'] = $this->supplier_model->getSupplierInfo($supplierID);
$data['payment'] = $this->supplier_model->getpayment($Payment );
$this->global['pageTitle'] = 'Siddharth : Edit Supplier';
$this->loadViews("editSupplier", $this->global,$data, NULL);
}
/** this function can be use for excel report **/
function export_supplierdetails(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0);
$this->excel->getActiveSheet()->setTitle('supplier details');
$this->excel->getActiveSheet()->setCellValue('A1', 'SupplierID');
$this->excel->getActiveSheet()->setCellValue('B1', 'SupplierName');
$this->excel->getActiveSheet()->setCellValue('C1', 'Address');
$this->excel->getActiveSheet()->setCellValue('D1', 'ContactNumber');
$this->excel->getActiveSheet()->setCellValue('E1', 'AlternateContactNumber');
$this->excel->getActiveSheet()->setCellValue('F1', 'EmailAddress');
$this->excel->getActiveSheet()->setCellValue('G1', 'Exiseregistration');
$this->excel->getActiveSheet()->setCellValue('H1', 'TIN');
$this->excel->getActiveSheet()->setCellValue('I1', 'PAN');
$this->excel->getActiveSheet()->setCellValue('J1', 'CSTNO');
$this->excel->getActiveSheet()->setCellValue('K1', 'CST Date');
$this->excel->getActiveSheet()->setCellValue('L1', 'GST NO');
$this->excel->getActiveSheet()->setCellValue('M1', 'GST Range');
$this->excel->getActiveSheet()->setCellValue('N1', 'Collectrate Address');
$this->excel->getActiveSheet()->setCellValue('O1', 'UANumber');
$this->excel->getActiveSheet()->setCellValue('P1', 'PaymentTerms');
$this->excel->getActiveSheet()->setCellValue('Q1', 'PaymentDays');
$this->excel->getActiveSheet()->setCellValue('R1', 'PayableAT');
$this->excel->getActiveSheet()->setCellValue('S1', 'Createdby');
$this->excel->getActiveSheet()->setCellValue('T1', 'UpdatedBy');
$this->excel->getActiveSheet()->setCellValue('U1', 'IsActive');
$this->excel->getActiveSheet()->getStyle('A1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('A1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('B1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('B1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('R1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('R1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('S1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('S1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('T1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('T1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('U1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('U1')->getFont()->setBold(true);
$exportData = $this->supplier_model->export_excel();
if ($exportData) {
$i = 2;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('A' . $i,$data['SupplierID']);
$this->excel->getActiveSheet()->setCellValue('B' . $i,$data['SupplierName']);
$this->excel->getActiveSheet()->setCellValue('C' . $i,$data['Address']);
$this->excel->getActiveSheet()->setCellValue('D' . $i,$data['ContactNumber']);
$this->excel->getActiveSheet()->setCellValue('E' . $i,$data['AlternateContactNumber']);
$this->excel->getActiveSheet()->setCellValue('F' . $i,$data['EmailAddress']);
$this->excel->getActiveSheet()->setCellValue('G' . $i,$data['Exiseregistration']);
$this->excel->getActiveSheet()->setCellValue('H' . $i,$data['TIN']);
$this->excel->getActiveSheet()->setCellValue('I' . $i,$data['PAN']);
$this->excel->getActiveSheet()->setCellValue('J' . $i,$data['CSTNO']);
$this->excel->getActiveSheet()->setCellValue('K' . $i,$data['CSTDate']);
$this->excel->getActiveSheet()->setCellValue('L' . $i,$data['GSTNO']);
$this->excel->getActiveSheet()->setCellValue('M' . $i,$data['GSTRange']);
$this->excel->getActiveSheet()->setCellValue('N' . $i,$data['CollectrateAddress']);
$this->excel->getActiveSheet()->setCellValue('O' . $i,$data['UANumber']);
$this->excel->getActiveSheet()->setCellValue('P' . $i,$data['PaymentTerms']);
$this->excel->getActiveSheet()->setCellValue('Q' . $i,$data['PaymentDays']);
$this->excel->getActiveSheet()->setCellValue('R' . $i,$data['PayableAT']);
$this->excel->getActiveSheet()->setCellValue('S' . $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('T' . $i,$data['Update_by']);
$this->excel->getActiveSheet()->setCellValue('U' . $i,$data['IsActive']);
$i++;
$s++;
}
}
$filename = 'supplierdetails' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{
$this->global['pageTitle'] = 'Siddharth : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,362 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : User (UserController)
* User Class to control all user related operations.
* @author : Kishor Mali
* @version : 1.1
* @since : 15 November 2016
*/
class user extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('user_model');
$this->load->library('form_validation');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Siddharth : Dashboard';
$this->load->model('employeedetails_model');
$data['EmpCount'] = $this->employeedetails_model->getEmployeeCount();
$this->loadViews("dashboard", $this->global, $data , NULL);
}
/**
* This function is used to load the user list
*/
function userListing()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$data['userRecords'] = $this->user_model->userListing();
$this->global['pageTitle'] = 'Siddharth : User Listing';
$this->loadViews("users", $this->global, $data, NULL);
}
}
/**
* This function is used to load the add new form
*/
function addNew()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$data['EmpList'] = $this->user_model->getAllEmployees();
$data['roles'] = $this->user_model->getUserRoles();
$this->global['pageTitle'] = 'Siddharth : Add New User';
$this->loadViews("addNew", $this->global, $data, NULL);
}
}
/**
* This function is used to check whether email already exist or not
*/
function checkEmailExists()
{
$userId = $this->input->post("userId");
$email = $this->input->post("email");
if(empty($userId)){
$result = $this->user_model->checkEmailExists($email);
} else {
$result = $this->user_model->checkEmailExists($email, $userId);
}
if(empty($result)){ echo("true"); }
else { echo("false"); }
}
/* Validation for Employee Dropdown
*/
function Employee_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '0')
{
$this->form_validation->set_message('Employee_validate', 'Please Select Employee.');
return false;
}
else // user picked something
{
return true;
}
}
/* Validation for Employee Dropdown
*/
function Role_validate($selectValue)
{
//echo 'select_validate method called';
// 'none' is the first option and the text says something like "-Choose one-"
if($selectValue == '0')
{
$this->form_validation->set_message('Role_validate', 'Please Select Role.');
return false;
}
else // user picked something
{
return true;
}
}
/**
* This function is used to add new user to the system
*/
function addNewUser()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$this->form_validation->set_rules('EmpList','EmpList','trim|callback_Employee_validateS');
$this->form_validation->set_rules('role','role','trim|callback_Role_validate');
$this->form_validation->set_rules('password','Password','required|max_length[20]');
$this->form_validation->set_rules('cpassword','Confirm Password','trim|required|matches[password]|max_length[20]');
if($this->form_validation->run() == FALSE)
{
$this->addNew();
}
else
{
$EmpID = $this->input->post('EmpList');
$roleId = $this->input->post('role');
$password = $this->input->post('password');
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$Createddt = $dt->format('Y-m-d H:i:s');
$email = $this->input->post('MailID');
$userInfo = array('email'=>$email,'EmpID'=>$EmpID,'password'=>getHashedPassword($password),'roleId'=>$roleId,'createdBy'=>$this->vendorId,'createdDtm'=>$Createddt);
$result = $this->user_model->addNewUser($userInfo);
if($result > 0)
{
redirect('userListing','refresh');
echo "<script>alert('New User Created successfully!');</script>";
}
else
{
redirect('userListing','refresh');
echo "<script>alert('Failiure User Creation!');</script>";
}
}
}
}
/**
* This function is used load user edit information
* @param number $userId : Optional : This is user id
*/
function editOld($UserId = '')
{
if($this->isAdmin() == TRUE )
{
$this->loadThis();
}
else
{
if($UserId == '')
{
// redirect('userListing');
}
$Uid = $_GET['UID'];
$data['roles'] = $this->user_model->getUserRoles();
//print_r($data);
$data['EmpList'] = $this->user_model->GetEmployeeDetails($Uid);
//print_r($data);
$data['EmpRole'] = $this->user_model->GetRoleNameByUserID($Uid);
// $data['userInfo'] = $this->user_model->getUserInfo($userId);
$this->global['pageTitle'] = 'Siddharth : Edit User';
$this->loadViews("editOld", $this->global, $data, NULL);
}
}
/**
* This function is used to edit the user information
*/
function editUser()
{
if($this->isAdmin() == TRUE)
{
$this->loadThis();
}
else
{
$userId = $this->input->post('EmpList');
$this->form_validation->set_rules('EmpList','EmpList','trim|callback_Employee_validateS');
$this->form_validation->set_rules('role','role','trim|callback_Role_validate');
$this->form_validation->set_rules('password','Password','required|max_length[20]');
$this->form_validation->set_rules('cpassword','Confirm Password','trim|required|matches[password]|max_length[20]');
if($this->form_validation->run() == FALSE)
{
$this->editOld($userId);
}
else
{
$EmpID = $this->input->post('EmpList');
$role = $this->input->post('role');
$password = $this->input->post('password');
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$updatedDate = $dt->format('Y-m-d H:i:s');
// echo $EmpID;
$userInfo = array();
$userInfo = array('password'=>getHashedPassword($password),'roleId'=>$role,'EmpId'=>$EmpID,'updatedDtm'=>$updatedDate);
$result = $this->user_model->editUser($userInfo, $EmpID);
if($result == true)
{
$this->session->set_flashdata('success', 'User updated successfully');
}
else
{
$this->session->set_flashdata('error', 'User updation failed');
}
redirect('userListing');
}
}
}
/**
* This function is used to delete the user using userId
* @return boolean $result : TRUE / FALSE
*/
function deleteUser()
{
echo 'Delete';
$Uid = $this->input->post('id');
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$updatedDate = $dt->format('Y-m-d H:i:s');
$userInfo = array('isDeleted'=>1,'updatedBy'=>$this->vendorId, 'updatedDtm'=>$updatedDate);
$result = $this->user_model->deleteUser($Uid, $userInfo);
echo 'Succssfully change the user status to InAcive';
}
/**
* This function is used to load the change password screen
*/
function loadChangePass()
{
$this->global['pageTitle'] = 'Siddharth : Change Password';
$this->loadViews("changePassword", $this->global, NULL, NULL);
}
/**
* This function is used to change the password of the user
*/
function changePassword()
{
$this->load->library('form_validation');
$this->form_validation->set_rules('oldPassword','Old password','required|max_length[20]');
$this->form_validation->set_rules('newPassword','New password','required|max_length[20]');
$this->form_validation->set_rules('cNewPassword','Confirm new password','required|matches[newPassword]|max_length[20]');
if($this->form_validation->run() == FALSE)
{
$this->loadChangePass();
}
else
{
$oldPassword = $this->input->post('oldPassword');
$newPassword = $this->input->post('newPassword');
$resultPas = $this->user_model->matchOldPassword($this->vendorId, $oldPassword);
if(empty($resultPas))
{
$this->session->set_flashdata('nomatch', 'Your old password not correct');
redirect('loadChangePass');
}
else
{
$usersData = array('password'=>getHashedPassword($newPassword), 'updatedBy'=>$this->vendorId,
'updatedDtm'=>date('Y-m-d H:i:sa'));
$result = $this->user_model->changePassword($this->vendorId, $usersData);
if($result > 0) { $this->session->set_flashdata('success', 'Password updation successful'); }
else { $this->session->set_flashdata('error', 'Password updation failed'); }
redirect('loadChangePass');
}
}
}
function pageNotFound()
{
$this->global['pageTitle'] = 'Siddharth : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,62 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page Not Found</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@ -1,62 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Database Error</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@ -1,62 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@ -1,10 +0,0 @@
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: <?php echo $severity; ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $filepath; ?></p>
<p>Line Number: <?php echo $line; ?></p>
</div>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,50 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
/**
* This function is used to print the content of any data
*/
function pre($data)
{
echo "<pre>";
print_r($data);
echo "</pre>";
}
/**
* This function used to get the CI instance
*/
if(!function_exists('get_instance'))
{
function get_instance()
{
$CI = &get_instance();
}
}
/**
* This function used to generate the hashed password
* @param {string} $plainPassword : This is plain text password
*/
if(!function_exists('getHashedPassword'))
{
function getHashedPassword($plainPassword)
{
return password_hash($plainPassword, PASSWORD_DEFAULT);
}
}
/**
* This function used to generate the hashed password
* @param {string} $plainPassword : This is plain text password
* @param {string} $hashedPassword : This is hashed password
*/
if(!function_exists('verifyHashedPassword'))
{
function verifyHashedPassword($plainPassword, $hashedPassword)
{
return password_verify($plainPassword, $hashedPassword) ? true : false;
}
}
?>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,159 +0,0 @@
<?php defined ( 'BASEPATH' ) or exit ( 'No direct script access allowed' );
/**
* Class : BaseController
* Base Class to control over all the classes
* @author : Kishor Mali
* @version : 1.1
* @since : 15 November 2016
*/
class BaseController extends CI_Controller {
protected $role = '';
protected $vendorId = '';
protected $name = '';
protected $Designation = '';
protected $DEPCode = '';
protected $HeadDept = '';
protected $DepartmentName = '';
protected $roleText = '';
protected $global = array ();
/**
* Takes mixed data and optionally a status code, then creates the response
*
* @access public
* @param array|NULL $data
* Data to output to the user
* running the script; otherwise, exit
*/
public function response($data = NULL) {
$this->output->set_status_header ( 200 )->set_content_type ( 'application/json', 'utf-8' )->set_output ( json_encode ( $data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES ) )->_display ();
exit ();
}
/**
* This function used to check the user is logged in or not
*/
function isLoggedIn() {
$isLoggedIn = $this->session->userdata ( 'isLoggedIn' );
if (! isset ( $isLoggedIn ) || $isLoggedIn != TRUE) {
redirect ( 'login' );
} else {
$this->role = $this->session->userdata ( 'role' );
$this->vendorId = $this->session->userdata ( 'userId' );
$this->name = $this->session->userdata ( 'name' );
$this->roleText = $this->session->userdata ( 'roleText' );
$this->Designation = $this->session->userdata ( 'Designation' );
$this->DEPCode = $this->session->userdata ( 'DEPCode' );
$this->HeadDept = $this->session->userdata ( 'HeadDept' );
$this->DepartmentName = $this->session->userdata ( 'DepartmentName' );
$this->EmpID = $this->session->userdata ( 'EmpID' );
$this->global ['name'] = $this->name;
$this->global ['role'] = $this->role;
$this->global ['role_text'] = $this->roleText;
$this->global ['DEPCode'] = $this->DEPCode;
}
}
/**
* This function is used to check the access
*/
function isAdmin() {
if ($this->role != ROLE_ADMIN) {
return true;
} else {
return false;
}
}
/**
* This function is used to check the access
*/
function isTicketter() {
if ($this->role != ROLE_ADMIN || $this->role != ROLE_MANAGER) {
return true;
} else {
return false;
}
}
/**
* This function is used to load the set of views
*/
function loadThis() {
$this->global ['pageTitle'] = 'CodeInsect : Access Denied';
$this->load->view ( 'includes/header', $this->global );
$this->load->view ( 'access' );
$this->load->view ( 'includes/footer' );
}
/**
* This function is used to logged out user from system
*/
function logout() {
$this->session->sess_destroy ();
redirect ( 'login' );
}
/**
* This function used to load views
* @param {string} $viewName : This is view name
* @param {mixed} $headerInfo : This is array of header information
* @param {mixed} $pageInfo : This is array of page information
* @param {mixed} $footerInfo : This is array of footer information
* @return {null} $result : null
*/
function loadViews($viewName = "", $headerInfo = NULL, $pageInfo = NULL, $footerInfo = NULL){
$this->load->view('includes/header', $headerInfo);
$this->load->view($viewName, $pageInfo);
$this->load->view('includes/footer', $footerInfo);
}
/**
* This function used provide the pagination resources
* @param {string} $link : This is page link
* @param {number} $count : This is page count
* @param {number} $perPage : This is records per page limit
* @return {mixed} $result : This is array of records and pagination data
*/
function paginationCompress($link, $count, $perPage = 10) {
$this->load->library ( 'pagination' );
$config ['base_url'] = base_url () . $link;
$config ['total_rows'] = $count;
$config ['uri_segment'] = SEGMENT;
$config ['per_page'] = $perPage;
$config ['num_links'] = 5;
$config ['full_tag_open'] = '<nav><ul class="pagination">';
$config ['full_tag_close'] = '</ul></nav>';
$config ['first_tag_open'] = '<li class="arrow">';
$config ['first_link'] = 'First';
$config ['first_tag_close'] = '</li>';
$config ['prev_link'] = 'Previous';
$config ['prev_tag_open'] = '<li class="arrow">';
$config ['prev_tag_close'] = '</li>';
$config ['next_link'] = 'Next';
$config ['next_tag_open'] = '<li class="arrow">';
$config ['next_tag_close'] = '</li>';
$config ['cur_tag_open'] = '<li class="active"><a href="#">';
$config ['cur_tag_close'] = '</a></li>';
$config ['num_tag_open'] = '<li>';
$config ['num_tag_close'] = '</li>';
$config ['last_tag_open'] = '<li class="arrow">';
$config ['last_link'] = 'Last';
$config ['last_tag_close'] = '</li>';
$this->pagination->initialize ( $config );
$page = $config ['per_page'];
$segment = $this->uri->segment ( SEGMENT );
return array (
"page" => $page,
"segment" => $segment
);
}
}

View File

@ -1,18 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
* =======================================
* Author : Muhammad Surya Ikhsanudin
* License : Protected
* Email : mutofiyah@gmail.com
*
* Dilarang merubah, mengganti dan mendistribusikan
* ulang tanpa sepengetahuan Author
* =======================================
*/
require_once APPPATH."third_party/PHPExcel.php";
class Excel extends PHPExcel {
public function __construct() {
parent::__construct();
}
}

View File

@ -1,18 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
* =======================================
* Author : Muhammad Surya Ikhsanudin
* License : Protected
* Email : mutofiyah@gmail.com
*
* Dilarang merubah, mengganti dan mendistribusikan
* ulang tanpa sepengetahuan Author
* =======================================
*/
require_once APPPATH."/third_party/PHPExcel.php";
class Excel extends PHPExcel {
public function __construct() {
parent::__construct();
}
}

View File

@ -1,34 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Name: DOMPDF
*
* Author: Jd Fiscus
* jdfiscus@gmail.com
* @iamfiscus
*
*
* Origin API Class: http://code.google.com/p/dompdf/
*
* Location: http://github.com/iamfiscus/Codeigniter-DOMPDF/
*
* Created: 06.22.2010
*
* Description: This is a Codeigniter library which allows you to convert HTML to PDF with the DOMPDF library
*
*/
class Dompdf_gen {
public function __construct() {
require_once APPPATH.'third_party/dompdf/dompdf_config.inc.php';
$pdf = new DOMPDF();
$CI =& get_instance();
$CI->dompdf = $pdf;
}
}

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,44 +0,0 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
* CodeIgniter PDF Library
*
* Generate PDF's in your CodeIgniter applications.
*
* @package CodeIgniter
* @subpackage Libraries
* @category Libraries
* @author Chris Harvey
* @license MIT License
* @link https://github.com/chrisnharvey/CodeIgniter-PDF-Generator-Library
*/
require_once(dirname(__FILE__) . '/dompdf/dompdf_config.inc.php');
class Pdf extends DOMPDF
{
/**
* Get an instance of CodeIgniter
*
* @access protected
* @return void
*/
protected function ci()
{
return get_instance();
}
/**
* Load a CodeIgniter view into domPDF
*
* @access public
* @param string $view The view to load
* @param array $data The view data
* @return void
*/
public function load_view($view, $data = array())
{
$html = $this->ci()->load->view($view, $data, TRUE);
$this->load_html($html);
}
}

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,361 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:51:08 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:41 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 12:59:41 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 12:59:42 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:07:12 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd1A1F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:09:24 --> Severity: Notice --> Undefined variable: PANNumber C:\xampp\htdocs\siddharth_application\application\views\payslipgenerateprint.php 309
ERROR - 2017-04-21 13:09:24 --> Severity: Notice --> Undefined variable: UANumber C:\xampp\htdocs\siddharth_application\application\views\payslipgenerateprint.php 315
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:15:48 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:16:13 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd5DE8.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:16:14 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd5F42.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:16:14 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd605D.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:16:14 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd6187.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:16:15 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd62F1.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:16:15 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd6526.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:16:16 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd668F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:16:16 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd67BA.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:28:34 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:34:17 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_E7CD.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:34:17 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:34:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE8A9.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:34:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE8B9.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:36:10 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_A002.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:36:10 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:36:10 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdA0A0.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:39:57 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:27 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:40:27 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:27 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:40:28 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:42:38 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd8C04.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:43:35 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_6995.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:43:35 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:43:35 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd6A42.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:44:46 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_7F5D.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:44:46 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:44:46 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd800A.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:45:15 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdF156.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:46:19 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_EBC8.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:46:19 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:47:11 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_B748.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:47:11 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:47:11 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\ca_B748.tmp): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 171
ERROR - 2017-04-21 13:47:12 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdB814.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:48:15 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:48:15 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:48:16 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:51:17 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd75A2.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:17 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7670.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:17 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7680.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:51:17 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd773D.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:17 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd78B8.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7966.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7A23.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7A34.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:51:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7B8E.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:18 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7C5C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:19 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7D19.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:19 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7E15.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:51:19 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7E26.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:52:57 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_FF77.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:57 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:57 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_FF98.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:57 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_FFC7.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_FFF7.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_18.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_47.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_68.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_88.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C7.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_E8.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:52:58 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd214.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:52:58 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd2EF.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:52:59 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4B8.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:52:59 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd5A5.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:52:59 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd672.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:52:59 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd673.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:52:59 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd72F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:00 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd81C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:00 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd958.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:00 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdA16.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:00 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdAD3.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:00 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdB82.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_BF85.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_BFB5.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_BFF5.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C025.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C054.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C084.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C0B4.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C0D4.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C104.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C134.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C154.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C184.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C1B4.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C1D4.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C204.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:53:47 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:53:47 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC2FF.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:48 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC3ED.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:53:48 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC4C8.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:48 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC4D9.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:53:48 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC5B5.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:48 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC6B1.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC7BC.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC8A9.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC986.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdC9A6.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCA53.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCB01.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:49 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCB11.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:53:50 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCBAE.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:50 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCBAF.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:53:50 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCC6C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:50 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCCFB.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:50 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCD99.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:53:50 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdCE37.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:54:39 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_8BFB.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:54:39 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:54:39 --> Severity: Warning --> rename(C:\Users\Venba Saravana\AppData\Local\Temp\ca_8C2B.tmp,C:\Users\Venba Saravana\AppData\Local\Temp\ca_8C2B.tmp.png): The process cannot access the file because it is being used by another process. (code: 32) C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 161
ERROR - 2017-04-21 13:54:40 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd8FCC.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:54:40 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd90A9.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:54:40 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd9272.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:54:41 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd94CA.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:54:42 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd96B4.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:54:42 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd9762.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:03 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:55:12 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_C86.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:55:12 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:55:12 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdD33.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:26 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_4491.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:55:26 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:55:26 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_44C1.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:55:26 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:55:26 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_44F1.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 13:55:26 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 13:55:26 --> Severity: Warning --> rename(C:\Users\Venba Saravana\AppData\Local\Temp\ca_4521.tmp,C:\Users\Venba Saravana\AppData\Local\Temp\ca_4521.tmp.png): The process cannot access the file because it is being used by another process. (code: 32) C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 161
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd465A.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4746.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4776.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4842.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd492F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4A1B.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4A2C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:55:28 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4D30.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4E2C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4F19.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4FE6.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:55:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd5142.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:57:43 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 13:59:23 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE3C4.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:59:24 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE4B0.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:59:24 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE57E.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:59:24 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE67B.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:59:24 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE776.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:59:25 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE910.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:59:25 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE920.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 13:59:26 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdEE6F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 50
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 50
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 13:59:50 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 53
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:11 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 81
ERROR - 2017-04-21 14:00:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdDE05.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 14:00:28 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE06C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:28 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE139.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE331.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE332.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 14:00:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE41D.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:29 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE4FA.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:30 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE723.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:30 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdE87F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 50
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 50
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:00:54 --> Severity: Notice --> Undefined index: Employee C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 78
ERROR - 2017-04-21 14:09:51 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_7697.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 14:09:51 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 14:09:51 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7744.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:09:51 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7764.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 14:12:56 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_49AF.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 14:12:56 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 14:12:56 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4A4C.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:12:56 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd4A5D.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 14:14:27 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_ADC9.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 14:14:27 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 14:14:27 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpdAE76.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:18:36 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_7AE2.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 14:18:36 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-21 14:18:36 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7B7F.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4285
ERROR - 2017-04-21 14:18:36 --> Severity: Warning --> unlink(C:\Users\Venba Saravana\AppData\Local\Temp\cpd7B90.tmp.png): Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\lib\class.pdf.php 4286
ERROR - 2017-04-21 14:31:27 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_3E32.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-21 14:31:27 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699

View File

@ -1,16 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-04-22 10:48:09 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-04-22 10:48:09 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-04-22 13:50:44 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-04-22 13:50:44 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-04-22 13:51:19 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-04-22 13:51:19 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-04-22 13:54:31 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 83
ERROR - 2017-04-22 13:54:32 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 83
ERROR - 2017-04-22 14:07:27 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 83
ERROR - 2017-04-22 14:07:27 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 83
ERROR - 2017-04-22 14:08:39 --> Severity: Warning --> file_put_contents(C:\Users\Venba Saravana\AppData\Local\Temp\ca_B9F7.tmp): failed to open stream: Permission denied C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\image_cache.cls.php 144
ERROR - 2017-04-22 14:08:39 --> Severity: Notice --> getimagesize(): Read error! C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\functions.inc.php 699
ERROR - 2017-04-22 14:28:14 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-22 14:28:14 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79

View File

@ -1,16 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-04-24 07:05:25 --> Severity: Notice --> Undefined property: stdClass::$userId C:\xampp\htdocs\siddharth_application\application\views\POlist.php 71
ERROR - 2017-04-24 07:14:24 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:14:24 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:14:25 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:31:29 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:31:29 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:31:29 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:57:35 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:57:35 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 07:57:35 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 08:42:59 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 08:42:59 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 08:42:59 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79
ERROR - 2017-04-24 08:42:59 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 79

View File

@ -1,3 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-04-26 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$userId C:\xampp\htdocs\siddharth_application\application\views\POlist.php 71

View File

@ -1,27 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-04-27 08:18:50 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:18:50 --> Unable to connect to the database
ERROR - 2017-04-27 08:32:06 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:32:06 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:32:07 --> Unable to connect to the database
ERROR - 2017-04-27 08:32:21 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:32:21 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:32:21 --> Unable to connect to the database
ERROR - 2017-04-27 08:36:41 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:36:41 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:36:41 --> Unable to connect to the database
ERROR - 2017-04-27 08:55:16 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 08:55:16 --> Unable to connect to the database
ERROR - 2017-04-27 08:55:23 --> Severity: Notice --> Undefined property: stdClass::$userId C:\xampp\htdocs\siddharth_application\application\views\POlist.php 71
ERROR - 2017-04-27 09:02:49 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'requisitionlist' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360
ERROR - 2017-04-27 09:03:35 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'requisitionlist' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360
ERROR - 2017-04-27 09:04:51 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'requisitionlist' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360
ERROR - 2017-04-27 09:05:05 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'requisitionlist' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360
ERROR - 2017-04-27 09:05:45 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'requisitionlist' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360
ERROR - 2017-04-27 09:06:27 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'requisitionlistapproval' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360
ERROR - 2017-04-27 09:13:15 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-04-27 09:13:15 --> Unable to connect to the database

View File

@ -1,4 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-04-28 11:01:14 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-04-28 11:01:17 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\siddharth_application\application\controllers\purchaseorderform.php 81

View File

@ -1,22 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-02 07:36:45 --> Severity: Notice --> Undefined variable: option C:\xampp\htdocs\siddharth_application\application\views\addCostCenter.php 86
ERROR - 2017-05-02 07:36:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 332
ERROR - 2017-05-02 08:23:39 --> Severity: Notice --> Undefined variable: option C:\xampp\htdocs\siddharth_application\application\views\addCostCenter.php 83
ERROR - 2017-05-02 08:23:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 332
ERROR - 2017-05-02 08:23:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 332
ERROR - 2017-05-02 09:14:57 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:14:57 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:14:57 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:20:20 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:20:20 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:20:20 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:20:46 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:20:46 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 09:20:46 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-02 11:46:41 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-02 11:46:41 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-02 11:46:41 --> Unable to connect to the database
ERROR - 2017-05-02 11:55:01 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-02 11:55:01 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-02 11:55:01 --> Unable to connect to the database

View File

@ -1,38 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-03 07:46:35 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 07:46:35 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 07:46:35 --> Unable to connect to the database
ERROR - 2017-05-03 07:57:57 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 07:57:57 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 07:57:57 --> Unable to connect to the database
ERROR - 2017-05-03 09:25:01 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 09:25:01 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 09:25:01 --> Unable to connect to the database
ERROR - 2017-05-03 11:04:12 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 11:04:12 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 11:04:12 --> Unable to connect to the database
ERROR - 2017-05-03 11:27:08 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 11:27:08 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 11:27:08 --> Unable to connect to the database
ERROR - 2017-05-03 12:24:58 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 12:24:58 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 12:24:58 --> Unable to connect to the database
ERROR - 2017-05-03 12:25:01 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 12:25:01 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 12:25:01 --> Unable to connect to the database
ERROR - 2017-05-03 12:25:05 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 12:25:05 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 12:25:05 --> Unable to connect to the database
ERROR - 2017-05-03 13:39:27 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:39:27 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:39:27 --> Unable to connect to the database
ERROR - 2017-05-03 13:39:32 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:39:32 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:39:32 --> Unable to connect to the database
ERROR - 2017-05-03 13:39:45 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:39:45 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:39:45 --> Unable to connect to the database
ERROR - 2017-05-03 13:40:03 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:40:03 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-03 13:40:03 --> Unable to connect to the database

View File

@ -1,23 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-04 12:39:43 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-04 12:39:43 --> Unable to connect to the database
ERROR - 2017-05-04 12:40:17 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:40:17 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:40:17 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:41:09 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-04 12:41:09 --> Unable to connect to the database
ERROR - 2017-05-04 12:42:33 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:33 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:33 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:37 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:37 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:37 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:50 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:50 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:42:50 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:49:04 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:49:04 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86
ERROR - 2017-05-04 12:49:04 --> Severity: Notice --> Undefined index: PayOn C:\xampp\htdocs\siddharth_application\application\views\payslipgenerate.php 86

View File

@ -1,7 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-08 13:15:24 --> Query error: Table 'kasiram9_SiddharthIndustries.T_CostCentre' doesn't exist
ERROR - 2017-05-08 13:15:31 --> Query error: Table 'kasiram9_SiddharthIndustries.T_CostCentre' doesn't exist
ERROR - 2017-05-08 13:15:38 --> Query error: Table 'kasiram9_SiddharthIndustries.T_CostCentre' doesn't exist
ERROR - 2017-05-08 13:30:54 --> Query error: Table 'kasiram9_SiddharthIndustries.T_CostCentre' doesn't exist
ERROR - 2017-05-08 13:35:54 --> Query error: Table 'kasiram9_SiddharthIndustries.T_CostCentre' doesn't exist

View File

@ -1,6 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-10 13:16:23 --> Severity: Notice --> Undefined variable: searchText C:\xampp\htdocs\siddharth_application\application\views\requisitionlisting.php 36
ERROR - 2017-05-10 13:17:54 --> Severity: Notice --> Undefined variable: searchText C:\xampp\htdocs\siddharth_application\application\views\requisitionlisting.php 36
ERROR - 2017-05-10 13:18:59 --> Severity: Notice --> Undefined variable: searchText C:\xampp\htdocs\siddharth_application\application\views\requisitionlisting.php 36
ERROR - 2017-05-10 13:19:59 --> Severity: Notice --> Undefined variable: searchText C:\xampp\htdocs\siddharth_application\application\views\requisitionlisting.php 36

View File

@ -1,32 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-12 13:11:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:28 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:28 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:28 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:28 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:11:28 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:13:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:13:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:13:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:13:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:13:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:13:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:22:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:22:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:22:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:22:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:22:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:22:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:31:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:31:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:31:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:31:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:31:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36
ERROR - 2017-05-12 13:31:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 36

View File

@ -1,21 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 09:01:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-19 13:04:43 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-19 13:04:43 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-19 13:04:43 --> Unable to connect to the database
ERROR - 2017-05-19 13:04:59 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-19 13:04:59 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-19 13:04:59 --> Unable to connect to the database
ERROR - 2017-05-19 13:30:35 --> Severity: Warning --> strpos() expects parameter 1 to be string, array given C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 286
ERROR - 2017-05-19 13:30:35 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 288
ERROR - 2017-05-19 13:34:12 --> Severity: Warning --> strpos() expects parameter 1 to be string, array given C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 286
ERROR - 2017-05-19 13:34:12 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 288
ERROR - 2017-05-19 13:45:11 --> Severity: Warning --> strpos() expects parameter 1 to be string, array given C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 286
ERROR - 2017-05-19 13:45:11 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\helpers\form_helper.php 288

View File

@ -1,66 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-22 09:44:17 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 10:01:18 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:01:18 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:01:18 --> Query error: Unknown column 'Array' in 'where clause'
ERROR - 2017-05-22 10:28:20 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:28:20 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:28:20 --> Query error: Unknown column 'Array' in 'where clause'
ERROR - 2017-05-22 10:30:46 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:30:46 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:30:46 --> Query error: Unknown column 'Array' in 'where clause'
ERROR - 2017-05-22 10:32:21 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:32:21 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:32:21 --> Query error: Unknown column 'Array' in 'where clause'
ERROR - 2017-05-22 10:38:35 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:38:35 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605
ERROR - 2017-05-22 10:38:35 --> Query error: Unknown column 'Array' in 'where clause'
ERROR - 2017-05-22 10:49:27 --> Severity: Notice --> Undefined index: Totalvalue C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 46
ERROR - 2017-05-22 10:50:22 --> Severity: Notice --> Undefined index: Totalvalue C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 46
ERROR - 2017-05-22 10:57:22 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 11:10:47 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 11:21:52 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 11:27:09 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 11:28:34 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 11:29:38 --> Query error: Column 'LineItemNo' cannot be null
ERROR - 2017-05-22 12:30:27 --> Query error: Unknown column 'ServiceTax' in 'field list'
ERROR - 2017-05-22 12:40:09 --> Query error: Unknown column 'ServiceTax' in 'field list'
ERROR - 2017-05-22 12:42:17 --> Query error: Unknown column 'ServiceTax' in 'field list'
ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Use of undefined constant i - assumed 'i' C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Undefined index: i C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Use of undefined constant i - assumed 'i' C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Undefined index: i C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Use of undefined constant i - assumed 'i' C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Undefined index: i C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:35 --> Severity: Notice --> Undefined offset: 1 C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:35 --> Severity: Notice --> Undefined offset: 2 C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:46:35 --> Severity: Notice --> Undefined offset: 3 C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231
ERROR - 2017-05-22 12:49:00 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437
ERROR - 2017-05-22 12:49:00 --> Query error: Unknown column 'TaxID' in 'where clause'
ERROR - 2017-05-22 12:50:30 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437
ERROR - 2017-05-22 12:50:30 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437
ERROR - 2017-05-22 12:50:31 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437
ERROR - 2017-05-22 14:09:06 --> Query error: Unknown column 'ST015' in 'where clause'
ERROR - 2017-05-22 14:14:05 --> Query error: Unknown column 'ST015' in 'where clause'
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37

View File

@ -1,127 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-23 07:29:37 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application_23mayServicePOcompl\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-23 07:29:37 --> Unable to connect to the database
ERROR - 2017-05-23 07:30:06 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application_23mayServicePOcompl\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-23 07:30:06 --> Unable to connect to the database
ERROR - 2017-05-23 07:30:40 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-23 07:30:40 --> Unable to connect to the database
ERROR - 2017-05-23 07:31:23 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-23 07:31:23 --> Unable to connect to the database
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-23 07:37:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 91
ERROR - 2017-05-23 07:37:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 96
ERROR - 2017-05-23 07:37:42 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5
ERROR - 2017-05-23 07:43:15 --> Severity: Notice --> Undefined variable: Selected C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 92
ERROR - 2017-05-23 07:43:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 92
ERROR - 2017-05-23 07:43:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 97
ERROR - 2017-05-23 07:43:15 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5
ERROR - 2017-05-23 07:44:28 --> Query error: Cannot add or update a child row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_PurchaseOrder_LineItem`, CONSTRAINT `T_Requestion_MasterReqNo` FOREIGN KEY (`ReqNo`) REFERENCES `T_Requestion_Master` (`ReqNo`) ON UPDATE CASCADE)
ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqBy C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1560
ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561
ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqBy C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1560
ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561
ERROR - 2017-05-23 16:14:19 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561
ERROR - 2017-05-23 16:14:19 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561
ERROR - 2017-05-23 16:36:46 --> Severity: Notice --> Undefined property: stdClass::$CostCenterCode C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 2637
ERROR - 2017-05-23 17:22:59 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-23 17:22:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:22:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 516
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494
ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494

File diff suppressed because it is too large Load Diff

View File

@ -1,227 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-25 07:47:31 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 07:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 88
ERROR - 2017-05-25 07:50:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 93
ERROR - 2017-05-25 07:50:59 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:00:48 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 08:09:12 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 08:09:42 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 08:10:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 08:46:24 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 08:50:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 08:51:50 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 09:18:37 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 09:20:44 --> Severity: Notice --> Undefined variable: query C:\xampp\htdocs\siddharth_application_23mayPO\application\models\purchaseorder_model.php 686
ERROR - 2017-05-25 09:21:42 --> Severity: Notice --> Undefined variable: result C:\xampp\htdocs\siddharth_application_23mayPO\application\models\purchaseorder_model.php 686
ERROR - 2017-05-25 09:24:51 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:35:36 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 11:36:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 11:37:49 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 11:46:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 12:46:54 --> Severity: Notice --> Use of undefined constant result - assumed 'result' C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 125
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:26 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 7
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:01:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 16:03:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:07 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:07 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:07 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:36:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-25 16:48:24 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-25 16:48:29 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464

View File

@ -1,108 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 09:59:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 11:26:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 11:28:43 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 11:34:19 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE)
ERROR - 2017-05-26 11:34:29 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE)
ERROR - 2017-05-26 11:37:08 --> Severity: Warning --> print_r() expects at least 1 parameter, 0 given C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 741
ERROR - 2017-05-26 11:38:36 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE)
ERROR - 2017-05-26 11:40:21 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE)
ERROR - 2017-05-26 12:43:04 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 12:46:56 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 12:48:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 12:49:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 12:52:45 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 12:53:10 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 13:12:25 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 13:15:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 13:40:46 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 14:54:23 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 14:55:03 --> Query error: Subquery returns more than 1 row
ERROR - 2017-05-26 14:55:15 --> Query error: Subquery returns more than 1 row
ERROR - 2017-05-26 14:55:40 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-26 14:57:40 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-26 15:38:54 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38

View File

@ -1,73 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-27 07:26:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 11:27:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:27:05 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:37:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:37:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:40:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:41:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-27 11:42:18 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 11:52:42 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 13:32:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:32:38 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-27 13:38:12 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 13:40:47 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-27 13:41:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38

View File

@ -1,217 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:00:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-29 12:12:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:14:04 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:34:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:35:17 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:38:56 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:39:57 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:46:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:46:36 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:53:08 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-29 12:53:15 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:41 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '*,CostCenterCode , POMaster.*,sup.SupplierName,sup.Address
FROM T_PurchaseOr' at line 5
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 171

View File

@ -1,418 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-30 08:16:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-30 08:20:46 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-30 09:25:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-30 09:34:58 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-30 09:35:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:16 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464
ERROR - 2017-05-30 10:17:50 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:17:50 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:17:50 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:17:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:17:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:17:51 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:19:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:22:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:23:46 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:23:46 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:26:06 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:26:06 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:26:38 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:26:39 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:26:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:26:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:26:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:26:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:27:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:27:09 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 11:04:14 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:05:23 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:06:46 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65
ERROR - 2017-05-30 11:06:46 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95
ERROR - 2017-05-30 11:06:46 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96
ERROR - 2017-05-30 11:06:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97
ERROR - 2017-05-30 11:06:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143
ERROR - 2017-05-30 11:06:47 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:08:28 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:08:28 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:12:35 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:20:42 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:21:17 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:21:17 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:21:17 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:32:45 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85
ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342
ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: SupAddress C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 970
ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191

View File

@ -1,75 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-05-31 08:49:00 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-31 08:49:00 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-31 08:49:00 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-31 08:49:00 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-31 08:49:00 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-31 09:01:13 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-31 09:01:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-31 09:01:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-31 09:01:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-31 09:01:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-31 09:25:06 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-31 09:25:06 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-31 09:25:06 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-31 09:25:06 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-31 09:25:06 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-31 09:45:10 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-31 09:45:10 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-31 09:45:10 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-31 09:45:10 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-31 09:45:10 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:47:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37
ERROR - 2017-05-31 09:51:25 --> Severity: Notice --> Undefined variable: CompanyAddress C:\xampp\htdocs\siddharth_application\application\views\importpo.php 98
ERROR - 2017-05-31 09:51:25 --> Severity: Notice --> Undefined variable: CurrentDate C:\xampp\htdocs\siddharth_application\application\views\importpo.php 109
ERROR - 2017-05-31 09:51:25 --> Severity: Notice --> Undefined variable: CurrentDate C:\xampp\htdocs\siddharth_application\application\views\importpo.php 118
ERROR - 2017-05-31 09:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:52:34 --> Severity: Notice --> Undefined variable: CompanyAddress C:\xampp\htdocs\siddharth_application\application\views\importpo.php 98
ERROR - 2017-05-31 09:52:34 --> Severity: Notice --> Undefined variable: CurrentDate C:\xampp\htdocs\siddharth_application\application\views\importpo.php 109
ERROR - 2017-05-31 09:52:34 --> Severity: Notice --> Undefined variable: CurrentDate C:\xampp\htdocs\siddharth_application\application\views\importpo.php 118
ERROR - 2017-05-31 09:52:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:52:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:52:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:54:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:54:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:54:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 201
ERROR - 2017-05-31 09:59:01 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-31 09:59:01 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-31 09:59:01 --> Unable to connect to the database
ERROR - 2017-05-31 09:59:06 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-31 09:59:06 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77
ERROR - 2017-05-31 09:59:06 --> Unable to connect to the database
ERROR - 2017-05-31 10:00:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 202
ERROR - 2017-05-31 10:00:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 202
ERROR - 2017-05-31 10:00:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 202
ERROR - 2017-05-31 10:02:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 212
ERROR - 2017-05-31 10:02:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 212
ERROR - 2017-05-31 10:02:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 212
ERROR - 2017-05-31 10:04:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 221
ERROR - 2017-05-31 10:04:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 221
ERROR - 2017-05-31 10:04:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 221
ERROR - 2017-05-31 10:05:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 221
ERROR - 2017-05-31 10:05:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 221
ERROR - 2017-05-31 10:05:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 221
ERROR - 2017-05-31 10:07:39 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115
ERROR - 2017-05-31 10:07:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116
ERROR - 2017-05-31 10:07:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117
ERROR - 2017-05-31 10:07:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163
ERROR - 2017-05-31 10:07:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191
ERROR - 2017-05-31 10:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 222
ERROR - 2017-05-31 10:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 222
ERROR - 2017-05-31 10:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 222
ERROR - 2017-05-31 14:27:45 --> Unable to load the requested class: phpreport
ERROR - 2017-05-31 14:28:00 --> Unable to load the requested class: phpreport
ERROR - 2017-05-31 14:33:42 --> Non-existent class: Excel
ERROR - 2017-05-31 14:34:08 --> Non-existent class: Excel2
ERROR - 2017-05-31 15:24:27 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_result.php 38

File diff suppressed because it is too large Load Diff

View File

@ -1,108 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-02 07:21:22 --> Severity: Notice --> Undefined variable: searchText C:\xampp\htdocs\siddharth_application\application\views\assetListing.php 35
ERROR - 2017-06-02 07:21:22 --> Severity: Notice --> Undefined property: CI_Loader::$pagination C:\xampp\htdocs\siddharth_application\application\views\assetListing.php 90
ERROR - 2017-06-02 08:28:41 --> Query error: Unknown column 'det.*dep.DepartmentName' in 'field list'
ERROR - 2017-06-02 15:00:10 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:10 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:16:51 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype=REVENUE, `budgetamount`, `0))` as revenue, sum(if(' at line 1

View File

@ -1,725 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-05 07:22:05 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype=REVENUE, `budgetamount`, `0))` as revenue, sum(if(' at line 1
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:02 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:02 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:36:02 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:36:02 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:37 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:37 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:37 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:37:37 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:37:37 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:37:48 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:37:48 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:39:29 --> Query error: Unknown column 'det.DEPCode' in 'on clause'
ERROR - 2017-06-05 07:43:48 --> Query error: Unknown column 'det.createdby' in 'on clause'
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:44:55 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:44:55 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:48:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:48:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 08:07:51 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype=REVENUE, `budgetamount`, `0))` as revenue, sum(if(' at line 1
ERROR - 2017-06-05 08:09:58 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype=`REVENUE`, `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:12:25 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype="REVENUE", `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:13:54 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.*, `part`.`DepartmentName`, sum(if(budgettype='CAPITAL', `budgetamount`, `0))` ' at line 1
ERROR - 2017-06-05 08:14:55 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype='REVENUE', `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:16:39 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital, sum(if(budgettype='REVENUE', `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:20:38 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital
FROM (`T_CostCenter_Master` as bud)
LEFT JOIN `T_CostCenter_Budget` a' at line 1
ERROR - 2017-06-05 08:31:36 --> Query error: Column 'CostCenterCode' in group statement is ambiguous
ERROR - 2017-06-05 08:33:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:35:12 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital
FROM (`T_CostCenter_Master` as bud)
LEFT JOIN `T_CostCenter_Budget` a' at line 1
ERROR - 2017-06-05 08:35:30 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as capital
FROM (`T_CostCenter_Master` as bud)
LEFT JOIN `T_CostCenter_Budget` a' at line 1
ERROR - 2017-06-05 08:36:20 --> Query error: Unknown column 'CAPITAL' in 'field list'
ERROR - 2017-06-05 08:36:34 --> Query error: Unknown column 'CAPITAL' in 'field list'
ERROR - 2017-06-05 08:36:54 --> Query error: Unknown column 'CAPITAL' in 'field list'
ERROR - 2017-06-05 08:37:03 --> Query error: Unknown column 'REVENUE' in 'field list'

View File

@ -1,88 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-14 16:45:01 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 16:45:01 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 16:45:01 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 141
ERROR - 2017-06-14 16:45:01 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 187
ERROR - 2017-06-14 16:45:01 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 215
ERROR - 2017-06-14 16:46:09 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 16:46:09 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 16:46:09 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 141
ERROR - 2017-06-14 16:46:09 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 187
ERROR - 2017-06-14 16:46:09 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 215
ERROR - 2017-06-14 16:54:24 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 16:54:24 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 16:54:24 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 16:54:24 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 16:54:24 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 16:59:24 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 16:59:24 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 16:59:24 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 16:59:24 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 16:59:24 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 16:59:26 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 16:59:26 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 16:59:26 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 16:59:26 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 16:59:26 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:03:59 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:03:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:03:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:03:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:03:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:22:59 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:22:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:22:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:22:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:22:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:24:27 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:24:27 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:24:27 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:24:27 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:24:27 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:25:44 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:26:22 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-14 17:26:22 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-14 17:26:22 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-14 17:26:22 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-14 17:26:22 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-14 17:26:59 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38

View File

@ -1,145 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-15 06:39:59 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 06:39:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 06:39:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 06:39:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 06:39:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 08:03:27 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 08:03:27 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 08:03:27 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 08:03:27 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 08:03:27 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 09:24:09 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 09:24:09 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 09:24:09 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 09:24:09 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 09:24:09 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 09:24:10 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 09:24:10 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 09:24:10 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 09:24:10 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 09:24:10 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 09:38:37 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 09:38:37 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 09:38:37 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 09:38:37 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 09:38:37 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 09:39:31 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-15 09:40:17 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 09:40:17 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 09:40:17 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 09:40:17 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 09:40:17 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:31:56 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:31:56 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:31:56 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:31:56 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:31:56 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:32:57 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:32:57 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:32:57 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:32:57 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:32:57 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:34:21 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-15 10:37:47 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:37:47 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:37:47 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:37:47 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:37:47 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:38:48 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:38:48 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:38:48 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:38:48 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:38:48 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:39:18 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:39:18 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:39:18 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:39:18 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:39:18 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:45:31 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:45:31 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:45:31 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:45:31 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:45:31 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:45:32 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:45:32 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:45:32 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:45:32 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:45:32 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 10:45:49 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 10:45:49 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 10:45:49 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 10:45:49 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 10:45:49 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:23:48 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:23:48 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:23:48 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:23:48 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:23:48 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:25:21 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:25:21 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:25:21 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:25:21 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:25:21 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:26:02 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:26:02 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:26:02 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:26:02 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:26:02 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:29:09 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:29:09 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:29:09 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:29:09 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:29:09 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:30:40 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:30:40 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:30:40 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:30:40 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:30:40 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:32:05 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:32:05 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:32:05 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:32:05 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:32:05 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:47:07 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:47:07 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:47:07 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:47:07 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:47:07 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:52:57 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:52:57 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:52:57 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:52:57 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:52:57 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:53:16 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:53:16 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:53:16 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:53:16 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:53:16 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:53:58 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:53:58 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:53:58 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:53:58 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:53:58 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:54:49 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:54:49 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:54:49 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:54:49 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:54:49 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:55:15 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:55:15 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:55:15 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:55:15 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:55:15 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 11:56:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-15 11:57:28 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 11:57:28 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 11:57:28 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 11:57:28 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 11:57:28 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-15 12:08:51 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-15 12:08:51 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-15 12:08:51 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-15 12:08:51 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-15 12:08:51 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214

View File

@ -1,7 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-19 13:18:05 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-19 13:18:05 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-19 13:18:05 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-19 13:18:05 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-19 13:18:05 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214

View File

@ -1,14 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-20 07:09:20 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-20 07:09:20 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-20 07:09:20 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-20 07:09:20 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-20 07:09:20 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-20 07:18:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-20 08:15:30 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-20 08:16:37 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-20 08:16:37 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-20 08:16:37 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-20 08:16:37 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-20 08:16:37 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/alterpurchaseorder.php 214

View File

@ -1,124 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-21 08:58:26 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 08:58:26 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 08:58:26 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 08:58:26 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 08:58:26 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:00:19 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:00:19 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:00:19 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:00:19 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:00:19 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:02:37 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:02:37 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:02:37 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:02:37 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:02:37 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:12:26 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:12:26 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:12:26 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:12:26 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:12:26 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:18:49 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:18:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:18:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:18:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:18:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:20:16 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:20:16 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:20:16 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:20:16 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:20:16 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:23:31 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:23:31 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:23:32 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:23:32 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:23:32 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:26:00 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:26:00 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:26:00 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:26:00 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:26:00 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:28:40 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 138
ERROR - 2017-06-21 09:28:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 139
ERROR - 2017-06-21 09:28:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 140
ERROR - 2017-06-21 09:28:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 186
ERROR - 2017-06-21 09:28:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 214
ERROR - 2017-06-21 09:37:17 --> Severity: Warning --> Missing argument 1 for purchaseorder::revenuepoprint(), called in C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php on line 360 and defined C:\xampp\htdocs\siddharth_application\application\controllers\purchaseorder.php 769
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: PONO C:\xampp\htdocs\siddharth_application\application\controllers\purchaseorder.php 777
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: SubTotalAmount C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 136
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterDiscount C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 141
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterExciseDuty C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 146
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterVAT C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 151
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterCST C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 156
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterGST C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 161
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterOtherTaxes C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 166
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: Insurance C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 171
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: AfterFreightValue C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 176
ERROR - 2017-06-21 09:37:17 --> Severity: Notice --> Undefined variable: OrderValue C:\xampp\htdocs\siddharth_application\application\views\revenuepopdf.php 181
ERROR - 2017-06-21 09:37:18 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:39:37 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:39:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:43:59 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:43:59 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:44:34 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:44:34 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:45:15 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:45:15 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:45:48 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:45:48 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:48:59 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:49:00 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:50:32 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 149
ERROR - 2017-06-21 09:50:32 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:51:10 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:51:10 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:54:23 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:54:23 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:54:48 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:54:48 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:57:29 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:57:29 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 09:58:08 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 09:58:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:00:19 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:00:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:01:41 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:01:41 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:05:04 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:05:04 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:05:35 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:05:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:06:14 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:06:14 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:06:47 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:06:47 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:07:13 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:07:13 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:07:42 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:07:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:08:02 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:08:02 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:13:11 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:13:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:18:19 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 109
ERROR - 2017-06-21 10:18:20 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:22:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-06-21 10:23:07 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt C:\xampp\htdocs\siddharth_application\application\views\editimportpo.php 1468
ERROR - 2017-06-21 10:27:58 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:28:34 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:34:57 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt C:\xampp\htdocs\siddharth_application\application\views\editimportpo.php 1468
ERROR - 2017-06-21 10:40:16 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 113
ERROR - 2017-06-21 10:40:16 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 10:40:44 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 113
ERROR - 2017-06-21 10:40:44 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 11:00:59 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 113
ERROR - 2017-06-21 11:01:00 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 11:01:05 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 113
ERROR - 2017-06-21 11:01:05 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 11:03:11 --> Severity: Notice --> Undefined variable: index C:\xampp\htdocs\siddharth_application\application\views\importpopdf.php 114
ERROR - 2017-06-21 11:03:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948
ERROR - 2017-06-21 11:15:46 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_result.php 38
ERROR - 2017-06-21 11:15:59 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt C:\xampp\htdocs\siddharth_application\application\views\editimportpo.php 1468
ERROR - 2017-06-21 11:17:40 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_result.php 38

View File

@ -1,760 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-22 08:00:58 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 08:01:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 08:01:52 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/editimportpo.php 1474
ERROR - 2017-06-22 01:21:07 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/login.php:2) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 689
ERROR - 2017-06-22 01:21:07 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/login.php:2) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 543
ERROR - 2017-06-22 01:22:05 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/models/login_model.php:21) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 689
ERROR - 2017-06-22 01:22:05 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/models/login_model.php:21) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 543
ERROR - 2017-06-22 01:24:24 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/user.php:2) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 433
ERROR - 2017-06-22 01:24:24 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/user.php:2) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 543
ERROR - 2017-06-22 01:30:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 01:30:48 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 01:36:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 01:38:26 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 01:39:38 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 01:49:06 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 541
ERROR - 2017-06-22 01:50:29 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 689
ERROR - 2017-06-22 01:50:29 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 541
ERROR - 2017-06-22 01:56:50 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 541
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:23:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 02:34:30 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 02:58:43 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 03:05:06 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 03:33:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 03:40:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 03:44:32 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 03:48:54 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 03:54:24 --> Query error: Commands out of sync; you can't run this command now
ERROR - 2017-06-22 03:55:17 --> Query error: Commands out of sync; you can't run this command now
ERROR - 2017-06-22 03:55:22 --> Query error: Commands out of sync; you can't run this command now
ERROR - 2017-06-22 03:57:34 --> Query error: Commands out of sync; you can't run this command now
ERROR - 2017-06-22 03:57:52 --> Query error: Commands out of sync; you can't run this command now
ERROR - 2017-06-22 03:58:45 --> Query error: Commands out of sync; you can't run this command now
ERROR - 2017-06-22 04:00:08 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:02:05 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 04:10:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:15:39 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:16:32 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:17:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:25:27 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:32:43 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 05:05:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 05:57:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:07:28 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:10:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:10:32 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 06:11:33 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 06:12:24 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:18:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:34:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:45:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:46:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 06:48:21 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 06:51:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 07:26:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 07:26:49 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 07:58:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:02:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 22:31:10 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 22:31:53 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 22:32:08 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 23:28:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:31:08 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:33:20 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:33:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 23:33:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 23:37:27 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:37:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 23:40:21 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 23:40:58 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 23:41:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 23:41:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-22 23:43:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:44:06 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-22 23:45:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 23:47:57 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:48:05 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 23:48:28 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-22 23:49:14 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:49:21 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-22 23:57:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38

View File

@ -1,101 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 00:35:12 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 00:36:53 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 00:38:10 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:25:30 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 01:26:29 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 01:33:09 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 01:35:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 01:35:17 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 01:53:56 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 01:54:26 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 01:58:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 01:58:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37
ERROR - 2017-06-23 02:22:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 02:22:16 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138
ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139
ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140
ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186
ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214
ERROR - 2017-06-23 02:52:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 02:57:58 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-23 02:58:06 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 02:59:49 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-23 06:18:40 --> Query error: Column 'LOP_Days' cannot be null
ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166
ERROR - 2017-06-23 08:00:50 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38

View File

@ -1,10 +0,0 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-26 04:07:26 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-26 04:07:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948
ERROR - 2017-06-26 04:15:31 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474
ERROR - 2017-06-26 04:19:04 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-26 04:40:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-26 04:42:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-26 06:25:28 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-06-26 06:31:23 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38

View File

@ -1,137 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class assetdetails_model extends CI_Model
{
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @param number $page : This is pagination offset
* @param number $segment : This is pagination limit
* @return array $result : This is result
*/
function assetListing()
{
$this->db->select('*');
$this->db->from('T_Asset_Details');
$query = $this->db->get();
$result = $query->result();
return $result;
}
function getDepartment($Department = '')
{
$this->db->select('DEPCode,DepartmentName');
$this->db->from('T_DepartmentDetails');
$this->db->where('IsActive',1 );
if($Department != '')
{
$this->db->where('DEPCode !=',$Department );
}
$query = $this->db->get();
return $query->result();
}
function getSupplierName($SupplierID = '')
{
$this->db->select('SupplierID, SupplierName');
$this->db->from('T_SupplierDetailsN');
$this->db->where('IsActive',1 );
if($SupplierID != '')
{
$this->db->where('SupplierID !=',$SupplierID );
}
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Config value from configuration table
* @return array $result : This is result of the query
*/
function getConfigValue($ConfigID ,$ConfigValue = '')
{
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
if($ConfigValue != '')
{
$this->db->where('ConfigValue != ',$ConfigValue );
}
$query = $this->db->get();
return $query->result();
}
/**
* This function used to get user information by id
* @param number $userId : This is user id
* @return array $result : This is user information
*/
function addNewasset($asset)
{
$this->db->trans_start();
$this->db->insert('T_Asset_Details', $asset);
$Asset_Code = $this->db->insert_id();
$this->db->trans_complete();
return $Asset_Code;
}
/**
* This function used to get Asset details by Asset Code
* @param number $Asset_Code : This is AssetCode
* @return array $result : This is Asset information
*/
function getAssetDetails($Asset_Code)
{
//echo $Asset_Code;
$this->db->select('Asset.*,Dep.DepartmentName as DepartmentName,Supp.SupplierName as SupplierName');
$this->db->from('T_Asset_Details Asset');
$this->db->join('T_DepartmentDetails Dep', 'Asset.DEPCode = Dep.DEPCode','left');
$this->db->join('T_SupplierDetailsN Supp', 'Asset.SupplierCode = Supp.SupplierID','left');
$this->db->where('Asset.AssetCode', $Asset_Code);
$query = $this->db->get();
// print_r($this->db->last_query());
return $query->result();
}
function editasset($asset, $Asset_Code)
{
$this->db->where('AssetCode', $Asset_Code);
$this->db->update('T_Asset_Details', $asset);
//print_r($this->db->last_query());
return TRUE;
}
function viewasset($asset, $Asset_Code)
{
$this->db->where('AssetCode', $Asset_Code);
$this->db->update('T_Asset_Details', $asset);
return TRUE;
}
function export_excel(){
$this->db->select('det.*,dep.DepartmentName as DEPCode,emp.firstname,emp1.firstname as Updated_By');
$this->db->join('tbl_users as tbl',' det.createdby = tbl.userid','left');
$this->db->join('T_DepartmentDetails as dep','dep.DEPCode=det.DEPCode');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' det.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_Asset_Details as det')->result_array();
}
}
?>

View File

@ -1,347 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class costcenter_model extends CI_Model
{
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @param number $page : This is pagination offset
* @param number $segment : This is pagination limit
* @return array $result : This is result
*/
function CostListing()
{
$this->db->select('Cost.CostCenterCode as code,Cost.CostCenterName as CostCenterName , Cost.ApprovedBy as ApprovedBy,Emp.FirstName as FirstName,Emp.Designation as Designation ');
$this->db->from('T_CostCenter_Master as Cost');
$this->db->join('T_Employee_Details as Emp', 'Emp.EmpID=Cost.ApprovedBy');
$query = $this->db->get();
$result = $query->result();
return $result;
}
/**
* This function used to get user information by id
* @param number $userId : This is user id
* @return array $result : This is user information
*/
function addNewcost($Cost)
{
$this->db->trans_start();
$this->db->insert('T_CostCenter_Master', $Cost);
$insert_id = $this->db->affected_rows();
$this->db->trans_complete();
return $insert_id;
}
function addCostCenterDepartment($Dept)
{
$this->db->trans_start();
$this->db->insert('T_CostCenter_Departments', $Dept);
$insert_id = $this->db->affected_rows();
$this->db->trans_complete();
// print_r( $this->db->last_query());
return $insert_id;
}
function addBudget($Budget)
{
$this->db->trans_start();
$this->db->insert('T_CostCenter_Budget', $Budget);
$insert_id = $this->db->affected_rows();
$this->db->trans_complete();
// print_r( $this->db->last_query());
return $insert_id;
}
function getApproverName()
{
$this->db->select('EmpID,FirstName,LastName,Designation');
$this->db->from('T_Employee_Details');
$this->db->where('Departmentcode ', 'DEP10');
$query = $this->db->get();
return $query->result();
}
/**
* This function used to get user information by id
* @param number $userId : This is user id
* @return array $result : This is user information
*/
function getuserInfo($CostCenterID)
{
$this->db->select('CostCentreID, CostName,Description,CreatedDate');
$this->db->from('T_CostCentre');
$this->db->where('CostCentreID', $CostCenterID);
$query = $this->db->get();
return $query->result();
}
/**
* This function used to get Cost center Master information by Cost center ID
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetCostCenterMaster($CostCenterCode)
{
$this->db->select('Cost.CostCenterCode,Cost.CostCenterName,Cost.ApprovedBy,emp.FirstName,emp.Designation,max(BudgetYear) as BudYear' );
$this->db->from('T_CostCenter_Master Cost');
$this->db->join('T_Employee_Details emp', 'emp.EmpID = Cost.ApprovedBy');
$this->db->join('T_CostCenter_Budget Bud', ' Bud.CostCenterCode = Cost.CostCenterCode');
$this->db->where('Cost.CostCenterCode', $CostCenterCode);
$query = $this->db->get();
return $query->result();
}
/**
* This function used to get Cost center Department information by Cost center ID
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetCostCenterDepartment($CostCenterCode)
{
$this->db->select('Dept.DEPCode,Det.DepartmentName');
$this->db->from('T_CostCenter_Departments Dept');
$this->db->join('T_DepartmentDetails Det', 'Det.DEPCode = Dept.DEPCode');
$this->db->where('Dept.CostCenterCode', $CostCenterCode);
$query = $this->db->get();
return $query->result();
}
/**
* This function used to get Cost center Budget information by Cost center ID
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetBudgetYear($CostCenterCode)
{
$subQuery = 'select BudgetYear from T_CostCenter_Budget where CostCenterCode=? ';
$query = $this->db->query($subQuery, array($CostCenterCode));
return $query->result();
}
/**
* This function used to get Cost center Budget information by Cost center ID
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetCostCenterBudget($CostCenterCode)
{
$subQuery = 'select BudgetType,BudgetYear,BudgetAmount,Remarks from T_CostCenter_Budget where CostCenterCode=? and
BudgetYear=(select max(BudgetYear) from T_CostCenter_Budget where CostCenterCode=?)';
$query = $this->db->query($subQuery, array($CostCenterCode,$CostCenterCode));
return $query->result();
}
/**
* This function used to get Cost center Budget information by Cost center ID
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetCostBudgetTypeByYear($CostCenterCode,$ConfigID,$Year)
{
$subQuery = 'select ConfigValue from T_ConfigDetails Bud where ConfigValue not in
(select BudgetType from T_CostCenter_Budget where CostCenterCode=? and BudgetYear=?) and Config_ID=? ';
$query = $this->db->query($subQuery, array($CostCenterCode,$Year,$ConfigID));
return $query->result_array();
}
/**
* This function used to get Cost center Budget information by Cost center ID
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetCostCenterBudgetByYear($CostCenterCode,$Year)
{
$subQuery = 'select BudgetType,BudgetYear,BudgetAmount,Remarks from T_CostCenter_Budget where CostCenterCode=? and
budgetyear=?';
$query = $this->db->query($subQuery, array($CostCenterCode,$Year));
return $query->result_array();
}
/**
* This function used to Department list which is not available in the Costcenter master
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetDepartmentNotinCostCenter($CostCenterCode)
{
$subQuery = 'select Dept.DEPCode,Dept.DepartmentName from T_DepartmentDetails Dept
where Dept.DEPCode not in
(select DEPCode from T_CostCenter_Departments where CostCenterCode=?) order by Dept.DEPCode asc';
$query = $this->db->query($subQuery, array($CostCenterCode));
return $query->result();
}
/**
* This function used to Department list which is not available in the Costcenter master
* @param number $CostCenterCode : CostCenterCode as Parameter
* @return array $result : This is user information
*/
function GetBudgetTypeNotinCostCenter($CostCenterCode,$ConfigID)
{
$subQuery = 'select ConfigValue from T_ConfigDetails Bud where ConfigValue not in
(select BudgetType from T_CostCenter_Budget where CostCenterCode=? and BudgetYear=(select max(BudgetYear) from T_CostCenter_Budget)) and Config_ID=?';
$query = $this->db->query($subQuery, array($CostCenterCode,$ConfigID));
// print_r($this->db->last_query());
return $query->result();
}
function EditCost($Cost,$CostCenterCode)
{
$this->db->where('CostCenterCode', $CostCenterCode);
$this->db->update('T_CostCenter_Master', $Cost);
return TRUE;
}
function EditBudget($Budget)
{
$this->db->trans_start();
$this->db->insert('T_CostCenter_Budget', $Budget);
$insert_id = $this->db->affected_rows();
$this->db->trans_complete();
// print_r( $this->db->last_query());
return $insert_id;
}
function DeleteBudget($BudgetType='',$BudgetYear='',$CostCenterCode ='')
{
$this->db->where("BudgetType", $BudgetType);
$this->db->where("BudgetYear", $BudgetYear);
$this->db->where("CostCenterCode", $CostCenterCode);
$this->db->delete('T_CostCenter_Budget');
//print_r( $this->db->last_query());
}
function DeleteDepartment($DepCode='',$CostCode='')
{
$this->db->where("DEPCode", $DepCode);
$this->db->where("CostCenterCode", $CostCode);
$this->db->delete('T_CostCenter_Departments');
//print_r( $this->db->last_query());
}
function checkDeptCostExists($DepCode='',$CostCode='')
{
$this->db->select('CostCenterCode,DEPCode');
$this->db->from('T_CostCenter_Departments');
$this->db->where('DEPCode',$DepCode);
$this->db->where('CostCenterCode',$CostCode);
$query = $this->db->get();
if ($query->num_rows > 0) {
return $query->result_array();
}
}
function checkCostDetailsExists($Code='',$CostName='')
{
$this->db->select('CostCenterCode');
$this->db->from('T_CostCenter_Master');
$this->db->where('CostCenterCode',$Code);
if ($CostName != '')
{
$this->db->where('CostCenterName !=',$CostName);
}
$query = $this->db->get();
if ($query->num_rows > 0) {
return $query->result_array();
}
}
/* *//**
* This function is used to get the Department details from T_DepartmentDetails
* @return array $result : This is result of the query
*/
function getDepartment()
{
$this->db->select('DEPCode, DepartmentName');
$this->db->from('T_DepartmentDetails');
$this->db->where('IsActive =', 1);
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Config value from configuration table
* @return array $result : This is result of the query
*/
function getConfigValue($ConfigID )
{
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
$query = $this->db->get();
return $query->result();
}
function export_excel(){
$this->db->select('Mas.*,bud.*,part.DepartmentName,emp.firstname,emp1.firstname as Updated_By');
$this->db->select('sum(if(budgettype="CAPITAL",budgetamount,0)) as capital',FALSE);
$this->db->select('sum(if(budgettype="REVENUE",budgetamount,0)) as revenue',FALSE);
$this->db->select('sum(if(budgettype="SERVICE",budgetamount,0)) as service',FALSE);
$this->db->select('sum(if(budgettype="IMPORT",budgetamount,0)) as import',FALSE);
$this->db->join('T_CostCenter_Budget as Mas',' Mas.CostCenterCode=bud.CostCenterCode','left');
$this->db->join('T_CostCenter_Departments as dep',' dep.CostCenterCode=Mas.CostCenterCode','left');
$this->db->join('T_DepartmentDetails as part','part.DEPCode=dep.DEPCode','left');
$this->db->group_by('bud.CostCenterCode');
$this->db->join('tbl_users as tbl',' bud.createdby = tbl.userid','left');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' bud.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_CostCenter_Master as bud')->result_array();
}
}
?>

View File

@ -1,171 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class employeedetails_model extends CI_Model
{
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @param number $page : This is pagination offset
* @param number $segment : This is pagination limit
* @return array $result : This is result
*/
function employeeListing()
{
$this->db->select(' Emp.*,Dep.DepartmentName as DepartmentName');
$this->db->from('T_Employee_Details Emp');
$this->db->join('T_DepartmentDetails Dep', 'Emp.Departmentcode = Dep.DEPCode','left');
$this->db->order_by("Emp.EmpID", "asc");
$query = $this->db->get();
$result = $query->result();
return $result;
}
function getUserRoles()
{
$this->db->select('roleId, role');
$this->db->from('tbl_roles');
$this->db->where('roleId !=', 1);
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Config value from configuration table
* @return array $result : This is result of the query
*/
function getConfigValue($ConfigID )
{
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
$query = $this->db->get();
return $query->result();
}
/* *//**
* This function is used to get the Department details from T_DepartmentDetails
* @return array $result : This is result of the query
*/
function getDepartment()
{
$this->db->select('DEPCode, DepartmentName');
$this->db->from('T_DepartmentDetails');
$this->db->where('IsActive =', 1);
$query = $this->db->get();
return $query->result();
}
/**
* This function used to get user information by id
* @param number $userId : This is user id
* @return array $result : This is user information
*/
function addNewemployee($Employee)
{
$this->db->insert('T_Employee_Details', $Employee);
$EmpID = $this->db->affected_rows();
return $EmpID;
}
function UpdateEmployee($Emp, $EmpID)
{
//echo $EmpID;
$this->db->where('EmpID', $EmpID);
$this->db->update('T_Employee_Details', $Emp);
//print_r($this->db->last_query());
return TRUE;
}
function viewemployee( $EmpID)
{
$this->db->select('Emp.*,Dep.DepartmentName as DepartmentName');
$this->db->from('T_Employee_Details AS Emp');
$this->db->join('T_DepartmentDetails Dep', 'Emp.Departmentcode = Dep.DEPCode','left');
$this->db->where('Emp.EmpID', $EmpID);
$query = $this->db->get();
$result = $query->result();
// print_r($this->db->last_query());
return $result;
}
/* This function to get the Employee department on respective Employee */
function GetEmployeeDepartment($EmployeeID)
{
$this->db->select('DepartmentName');
$this->db->from('T_EmployeeDetails');
$this->db->where($EmployeeID);
$query = $this->db->get();
return $query->result_array();
}
function checkMailExists($email='',$Empid='')
{
$this->db->select('EmailId');
$this->db->from('T_Employee_Details');
$this->db->where('EmailId',$email);
if ($Empid != '')
{
$this->db->where('EmpID !=',$Empid);
}
$query = $this->db->get();
//print_r($this->db->last_query());
if ($query->num_rows > 0) {
return $query->result_array();
}
}
function checkPhotoExists($Pic)
{
$this->db->select('ProfilePic');
$this->db->from('T_Employee_Details');
$this->db->where($Pic);
$query = $this->db->get();
// print_r($this->db->last_query());
if ($query->num_rows > 0) {
return $query->result_array();
}
}
function getEmployeeCount( )
{
$this->db->select('count(*) as EmpCount');
$this->db->from('T_Employee_Details');
$this->db->where('IsActive ',1 );
$query = $this->db->get();
return $query->result();
}
function export_excel(){
$this->db->select(' det.*,Dep.DepartmentName as DepartmentName,det.firstname,emp1.firstname as UpdatedBy');
$this->db->join('T_DepartmentDetails Dep', 'det.Departmentcode = Dep.DEPCode','left');
$this->db->join('tbl_users as tbl',' det.createdby = tbl.userid','left');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' det.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_Employee_Details as det')->result_array();
}
}
?>

View File

@ -1,125 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class emppaydate_model extends CI_Model
{
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @return number $count : This is row count
*/
function emppayListingCount($searchText = ''){
$this->db->select('*');
$this->db->from('T_Emp_Pay_Data');
if(!empty($searchText)) {
$likeCriteria = "(Pay_Data_ID LIKE '%".$searchText."%'
OR EmpID LIKE '%".$searchText."%'
OR Basic_Pay LIKE '%".$searchText."%'
OR HRA_Rate LIKE '%".$searchText."%'
OR OT_Rate LIKE '%".$searchText."%'
OR Allowances LIKE '%".$searchText."%'
OR PF_Rate LIKE '%".$searchText."%'
OR ESI_Rate LIKE '%".$searchText."%'
OR is_Active LIKE '%".$searchText."%'
OR Food_Allowances LIKE '%".$searchText."%'
)";
$this->db->where($likeCriteria);
}
//$this->db->where('BaseT.userId !=', 1);
$query = $this->db->get();
return count($query->result());
}
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @param number $page : This is pagination offset
* @param number $segment : This is pagination limit
* @return array $result : This is result
*/
function emppayListing($searchText = '', $page, $segment)
{
$this->db->select('*');
$this->db->from('T_Emp_Pay_Data');
if(!empty($searchText)) {
$likeCriteria = "(Pay_Data_ID LIKE '%".$searchText."%'
OR EmpID LIKE '%".$searchText."%'
OR Basic_Pay LIKE '%".$searchText."%'
OR HRA_Rate LIKE '%".$searchText."%'
OR OT_Rate LIKE '%".$searchText."%'
OR Allowances LIKE '%".$searchText."%'
OR PF_Rate LIKE '%".$searchText."%'
OR ESI_Rate LIKE '%".$searchText."%'
OR is_Active LIKE '%".$searchText."%'
OR Food_Allowances LIKE '%".$searchText."%'
)";
$this->db->where($likeCriteria);
}
$this->db->limit($page, $segment);
$query = $this->db->get();
$result = $query->result();
return $result;
}
function addNewemppay($emppay)
{
$this->db->trans_start();
$this->db->insert('T_Emp_Pay_Data', $emppay);
$paydataid = $this->db->insert_id();
$this->db->trans_complete();
return $emppay;
}
function getUserInfo($paydataid)
{
$this->db->select();
$this->db->from('T_Emp_Pay_Data');
//$this->db->where('isDeleted', 0);
//$this->db->where('roleId !=', 1);
$this->db->where('Pay_Data_ID', $paydataid);
$query = $this->db->get();
return $query->result();
}
function editemppay($emppaydatas)
{
$paydateid=$emppaydatas['Pay_Data_ID'];
$this->db->where('Pay_Data_ID' ,$paydateid);
$this->db->update('T_Emp_Pay_Data',$emppaydatas);
return TRUE;
}
function viewemppay($emppaydata, $paydateid)
{
$this->db->where('Pay_Data_ID', $paydateid);
$this->db->update('T_Emp_Pay_Data', $emppaydata);
return TRUE;
}
}
?>

View File

@ -1,10 +0,0 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -1,133 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class inwardgateregister_model extends CI_Model
{
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @return number $count : This is row count
*/
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @param number $page : This is pagination offset
* @param number $segment : This is pagination limit
* @return array $result : This is result
*/
function igrListing($IGRNO,$IGR)
{
$this->db->select('igr.*,igrd.*,POM.DeliveryDate,sup.SupplierName,MM.MaterialName');
$this->db->from('T_IGR_Master igr');
$this->db->join('T_IGR_Details igrd','igrd.IGRNO = igr.IGRNO','left');
$this->db->join('T_PurchaseOrder_Master POM ', 'igr.PONO = POM.PONO','left');
$this->db->join('T_SupplierDetailsN sup', 'POM.SupplierID = sup.SupplierID','left');
$this->db->join('T_PurchaseOrder_LineItem POL', 'POL.PONO = igr.PONO','left');
$this->db->join('T_MaterialMaster MM', 'MM.MaterialCode = igrd.MaterialCode','left');
$this->db->group_by('igr.IGRNO',$IGRNO);
$query = $this->db->get();
//print_r( $this->db->last_query());
$result = $query->result();
return $result;
}
function getpurchaseorder($pono='')
{
$this->db->select('POM.PONO,POM.ServiceDescription,POM.DeliveryDate,sup.SupplierName,sup.Address');
$this->db->from('T_PurchaseOrder_Master POM');
$this->db->join('T_SupplierDetailsN sup', 'POM.SupplierID = sup.SupplierID','left');
$this->db->where('status',"ST026",$pono);
//$this->db->join('T_PurchaseOrder_LineItem POL', 'POL.PONO = POM.PONO','left');
//$this->db->join('T_MaterialMaster MM', 'MM.MaterialCode = POL.MaterialCode','left');
//$this->db->where('PONO',$pono="PO0002" );
$query = $this->db->get();
$result = $query->result();
//print_r($result);
//$this->db->last_query();
return $result;
}
function viewpurchaseorder($PO)
{
$this->db->select('POM.PONO,POL.MaterialCode,POL.Quantity,POL.PONO,MM.MaterialName,MM.UOM');
$this->db->from('T_PurchaseOrder_Master POM');
//$this->db->join('T_SupplierDetailsN sup', 'POM.SupplierID = sup.SupplierID','left');
$this->db->join('T_PurchaseOrder_LineItem POL', 'POL.PONO = POM.PONO','left');
$this->db->join('T_MaterialMaster MM', 'MM.MaterialCode = POL.MaterialCode','left');
$this->db->where('POM.PONO',$PO );
//$this->db->where('PONO', $PO);
$query = $this->db->get();
$result = $query->result();
$this->db->last_query();
return $result;
}
function addigrM($igrM)
{
$this->db->trans_start();
$this->db->insert('T_IGR_Master', $igrM);
$insert_id = $this->db->affected_rows();
$this->db->trans_complete();
// print_r($this->db->last_query());
//print_r($insert_id);
if($insert_id>0)
{
$subQuery = 'select max(IGRNO) as IGRNO from T_IGR_Master';
$query = $this->db->query($subQuery);
return $query->result_array();
}
}
function addigrD($igrD)
{
$this->db->trans_start();
$this->db->insert('T_IGR_Details', $igrD);
$insert_id = $this->db->affected_rows();
$this->db->trans_complete();
// print_r($this->db->last_query());
if($insert_id>0)
{
$subQuery = 'select max(IGRItemNo) as IGRItemNo from T_IGR_Details';
$query = $this->db->query($subQuery);
return $query->result_array();
}
}
function viewigr($IGRNO)
{
$this->db->select('igr.*,igrd.*,MM.MaterialName,MM.UOM,sup.Address,sup.SupplierName,POM.ServiceDescription,POL.Quantity');
$this->db->from('T_IGR_Master igr');
$this->db->join('T_IGR_Details igrd','igrd.IGRNO = igr.IGRNO','left');
$this->db->join('T_PurchaseOrder_Master POM','igr.PONO = POM.PONO','left');
$this->db->join('T_PurchaseOrder_LineItem POL','POL.PONO = POM.PONO','left');
$this->db->join('T_SupplierDetailsN sup', 'sup.SupplierID = POM.SupplierID','left');
$this->db->join('T_MaterialMaster MM', 'MM.MaterialCode = igrd.MaterialCode','left');
$this->db->order_by('igr.IGRNO');
$this->db->where('igr.IGRNO',$IGRNO);
$query = $this->db->get();
//print_r( $this->db->last_query());
$result = $query->result();
return $result;
}
}

View File

@ -1,37 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class Login_model extends CI_Model
{
/**
* This function used to check the login credentials of the user
* @param string $email : This is email of the user
* @param string $password : This is encrypted password of the user
*/
function loginMe($email, $password)
{
$this->db->select('BaseTbl.userId, BaseTbl.password, Emp.EmpID,Emp.FirstName,Emp.Designation, BaseTbl.roleId, Roles.role,DEPT.DEPCode,DEPT.DepartmentName,DEPT.HeadDept');
$this->db->from('tbl_users as BaseTbl');
$this->db->join('tbl_roles as Roles','Roles.roleId = BaseTbl.roleId');
$this->db->join('T_Employee_Details as Emp','BaseTbl.EmpID = Emp.EmpID');
$this->db->join('T_DepartmentDetails as DEPT','Emp.Departmentcode = DEPT.DEPCode');
$this->db->where('BaseTbl.email', $email);
$this->db->where('BaseTbl.isDeleted', 0);
$query = $this->db->get();
$user = $query->result();
if(!empty($user)){
if(verifyHashedPassword($password, $user[0]->password)){
return $user;
} else {
return array();
}
} else {
return array();
}
}
}
?>

View File

@ -1,123 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class monthlypay_model extends CI_Model
{
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @return number $count : This is row count
*/
function monthlyListingCount($searchText = ''){
$this->db->select('*');
$this->db->from('T_Monthly_Pay_Inputs');
if(!empty($searchText)) {
$likeCriteria = "(Month_Year LIKE '%".$searchText."%'
OR EmpID LIKE '%".$searchText."%'
OR LOP_Days LIKE '%".$searchText."%'
OR OT_Hrs_Worked LIKE '%".$searchText."%'
OR Loan_Recovered LIKE '%".$searchText."%'
OR Loan_Balance LIKE '%".$searchText."%'
OR Incentives LIKE '%".$searchText."%'
OR Other_Deductions LIKE '%".$searchText."%'
)";
$this->db->where($likeCriteria);
}
//$this->db->where('BaseT.userId !=', 1);
$query = $this->db->get();
return count($query->result());
}
/**
* This function is used to get the user listing count
* @param string $searchText : This is optional search text
* @param number $page : This is pagination offset
* @param number $segment : This is pagination limit
* @return array $result : This is result
*/
function monthlyListing($searchText = '', $page, $segment)
{
$this->db->select('*');
$this->db->from('T_Monthly_Pay_Inputs');
$this->db->order_by("Month_Year", "desc");
if(!empty($searchText)) {
$likeCriteria = "(Month_Year LIKE '%".$searchText."%'
OR EmpID LIKE '%".$searchText."%'
OR LOP_Days LIKE '%".$searchText."%'
OR OT_Hrs_Worked LIKE '%".$searchText."%'
OR Loan_Recovered LIKE '%".$searchText."%'
OR Loan_Balance LIKE '%".$searchText."%'
OR Incentives LIKE '%".$searchText."%'
OR Other_Deductions LIKE '%".$searchText."%'
)";
$this->db->where($likeCriteria);
}
$this->db->limit($page, $segment);
$query = $this->db->get();
$result = $query->result();
return $result;
}
function addNewmonthlisting($m_list)
{
$this->db->trans_start();
$this->db->insert('T_Monthly_Pay_Inputs', $asset);
$Asset_Code = $this->db->insert_id();
$this->db->trans_complete();
return $m_list;
}
function getUserInfo($EmpID,$month_year)
{
$this->db->select('Month_Year, EmpID, LOP_Days, OT_Hrs_Worked, Loan_Recovered, Loan_Balance, Incentives, Other_Deductions, Created_By, Created_Time, Last_Mod_By, Last_Mod_Time');
$this->db->from('T_Monthly_Pay_Inputs');
//$this->db->where('isDeleted', 0);
//$this->db->where('roleId !=', 1);
$this->db->where('EmpID', $EmpID);
$this->db->where('Month_Year', $month_year);
$query = $this->db->get();
return $query->result();
}
function editmonth($monthdata, $EmpID)
{
$monthyear=$monthdata['Month_Year'];
//$this->db->where('EmpID',$employeeid);
$this->db->where('EmpID' ,$EmpID);
//$this->db->where('Month_Year' ,$EmpID);
$this->db->where('Month_Year',$monthyear);
$this->db->update('T_Monthly_Pay_Inputs',$monthdata);
return TRUE;
}
function viewmonth($monthdata, $employeeid)
{
$this->db->order_by('Month_Year');
$this->db->where('EmpID', $employeeid);
$this->db->update('T_Monthly_Pay_Inputs', $monthdata);
return TRUE;
}
}
?>

View File

@ -1,240 +0,0 @@
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
class Payroll_model extends CI_Model
{
/**
* This function is used to insert the File details in database
* @FileDetails array : This will have the set of value which we need to insert into database
* @return number $Payon : Insert row count will be the return value
*/
function UploadFileName($FileDetails)
{
$this->db->insert('T_Payroll_File', $FileDetails);
$Payon = $this->db->affected_rows();
return $Payon;
}
function model_sp($payon,$employee){
//echo "<script>alert('mod');</script>";
//echo "highlight_file(filename)";
//die();
$result=$this->db->query("call P_FINAL_PAYROLL_DATA('".$payon."','".$employee."')") or die(mysql_error());
//$result->next_result();
return $result;
}
/**
* This function is used to update the File details in which is already exists in the database
* @FileDetails array : This will have the set of value which we need to insert into database
* @return number boolean: success of the updation
*/
function UpdateFileName($FileDetails, $PayOn)
{
//echo $EmpID;
$this->db->where('PayOn', $PayOn);
$this->db->update('T_Payroll_File', $FileDetails);
//print_r($this->db->last_query());
return TRUE;
}
/**
* This function is used to check the File details is already exists in the database or not
* @FileDetails array : This will have the set of value which we need to insert into database
* @return number boolean: success of the updation
*/
function checkFileDetailsExists($PayOn)
{
$this->db->select('PayOn');
$this->db->from('T_Payroll_File');
$this->db->where('PayOn',$PayOn);
$query = $this->db->get();
// print_r($this->db->last_query());
if ($query->num_rows > 0) {
return $query->result();
}
}
function checkFileDetailsExists2($PayOn,$EmpId)
{
//echo $EmpId;
//die();
$this->db->select('Month_Year','EmpID');
$this->db->from('T_Monthly_Pay_Inputs');
$this->db->where('EmpID',$EmpId);
$this->db->where('Month_Year',$PayOn);
$query = $this->db->get();
// print_r($this->db->last_query());
if ($query->num_rows > 0) {
//echo "success";
//return $query->result();
return TRUE;
}
else{
//echo "fail";
return FALSE;
}
}
/**
* This function is used to insert the File data in database
* @FileDetails array : This will have the set of value which we need to insert into database
* @return number $Payon : Insert row count will be the return value
*/
function UploadFileData($FileData)
{
$this->db->insert('T_Payroll', $FileData);
$Payon = $this->db->affected_rows();
//print_r($this->db->last_query());
return $Payon;
}
function UploadFileData2($FileData)
{
$this->db->insert('T_Monthly_Pay_Inputs', $FileData);
$Payon = $this->db->affected_rows();
//print_r($this->db->last_query());
return $Payon;
}
/**
* This function is used to update the File details in which is already exists in the database
* @FileDetails array : This will have the set of value which we need to insert into database
* @return number boolean: success of the updation
*/
function UpdateFiledata($FileData, $PayOn,$EmpId)
{
//echo $EmpID;
$this->db->where('PayOn', $PayOn);
$this->db->where('EmpID', $EmpId);
$this->db->update('T_Payroll', $FileData);
//print_r($this->db->last_query());
//print_r($this->db->last_query());
return TRUE;
}
/**
* This function is used to get the data details in which is already exists in the database
* @FileDetails array : This will have the set of value which we need to insert into database
* @return number boolean: success of the updation
*/
function GetPayslipdata($PayOn='',$EmpId='')
{
$this->db->select('Pay.*,payfile.TotalNoofDays as TotalNoofDays ,Emp.FirstName as FName ,Emp.LastName as Lname,Emp.DateofBirth as Dob,Emp.PANNo as Pan,Emp.BankBranchName as BankName,Emp.IFSCCode as IFSCCode,Emp.DateofJoining as DOJ,Emp.Designation as Designation,Dep.DepartmentName as DeptName');
$this->db->from('T_Payroll Pay');
$this->db->join('T_Payroll_File payfile', 'Pay.PayOn = payfile.PayOn');
$this->db->join('T_Employee_Details Emp', 'Pay.EmpID = Emp.EmpID');
$this->db->join('T_DepartmentDetails Dep', 'Emp.Departmentcode = Dep.DEPCode');
$this->db->where('Pay.PayOn', $PayOn);
if($EmpId != '')
{
$this->db->where('Pay.EmpID', $EmpId);
}
$this->db->order_by("Pay.EmpID", "asc");
$query = $this->db->get();
return $query->result();
}
/* *//**
* This function is used to get the PayOn details from T_Payroll_File
* @return array $result : This is result of the query
*/
function getPayOn()
{
$this->db->select('DISTINCT(PayOn)');
$this->db->from('T_Payroll_File');
$query = $this->db->get();
return $query->result();
}
/* *//**
* This function is used to get the PayOn details from T_Payroll_File
* @return array $result : This is result of the query
*/
function getEmployeelist($Payon ='')
{
$this->db->select('Pay.EmpID as EmpId,Emp.FirstName as Fname,Emp.LastName as Lname');
$this->db->from('T_Payroll Pay');
$this->db->join('T_Employee_Details Emp', 'Pay.EmpID = Emp.EmpID');
if($Payon != '')
{
$this->db->where('Pay.PayOn', $Payon);
}
$this->db->order_by("Pay.EmpID", "asc");
$query = $this->db->get();
return $query;
}
function getEmployeelist2($Payon ='')
{
$this->db->select('Pay.EmpID as EmpId,Emp.FirstName as Fname,Emp.LastName as Lname');
$this->db->from('T_Monthly_Pay_Inputs Pay');
$this->db->join('T_Employee_Details Emp', 'Pay.EmpID = Emp.EmpID');
if($Payon != '')
{
$this->db->where('Pay.Month_Year', $Payon);
}
$this->db->order_by("Pay.EmpID", "asc");
$query = $this->db->get();
return $query;
}
/* *//**
* This function is used to get the PayOn details from T_Payroll_File
* @return array $result : This is result of the query
*/
function getEmpAll($Payon ='')
{
$this->db->select('Pay.EmpID as EmpId,Emp.FirstName as Fname,Emp.LastName as Lname');
$this->db->from('T_Payroll Pay');
$this->db->join('T_Employee_Details Emp', 'Pay.EmpID = Emp.EmpID');
if($Payon != '')
{
$this->db->where('Pay.PayOn', $Payon);
}
$this->db->order_by("Pay.EmpID", "asc");
$query = $this->db->get();
return $query->result_array();
}
/* *//**
* This function is used to delete the PayOn details from T_Payroll
* @return array $result : This is result of the query
*/
function deleteFileData($PayOn='')
{
$this->db->where("PayOn", $PayOn);
$this->db->delete('T_Payroll');
}
function getEmpID($q='')
{
$this->db->select('EmpID,FirstName,LastName');
$this->db->from('T_Employee_Details');
if($q == "addemppaydate"){
$this->db->where('EmpID NOT IN (SELECT EmpID from T_Emp_Pay_Data)',NULL,FALSE);
}
$query = $this->db->get();
return $query->result();
}
}
?>

Some files were not shown because too many files have changed in this diff Show More