issues fixes

This commit is contained in:
venbatechnologies@gmail.com 2018-07-12 12:34:06 +05:30
parent 27e4508e78
commit b1c8fe52a4
3093 changed files with 1541 additions and 186 deletions

0
.htaccess Normal file → Executable file
View File

0
.project Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
application/.htaccess Normal file → Executable file
View File

0
application/cache/.htaccess vendored Normal file → Executable file
View File

0
application/cache/index.html vendored Normal file → Executable file
View File

0
application/config/autoload.php Normal file → Executable file
View File

0
application/config/config.php Normal file → Executable file
View File

0
application/config/constants.php Normal file → Executable file
View File

4
application/config/database.php Normal file → Executable file
View File

@ -49,9 +49,9 @@ $active_group = 'default';
$active_record = TRUE;
$db['default']['hostname'] = 'resicoindustries.com';
$db['default']['username'] = 'resicoin_RIADev';
$db['default']['username'] = 'resicoin_RIASIT';
$db['default']['password'] = 'resico1234';
$db['default']['database'] = 'resicoin_RIADev';
$db['default']['database'] = 'resicoin_RIASIT';
$db['default']['dbdriver'] = 'mysqli';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;

0
application/config/doctypes.php Normal file → Executable file
View File

0
application/config/foreign_chars.php Normal file → Executable file
View File

0
application/config/grocery_crud.php Normal file → Executable file
View File

0
application/config/hooks.php Normal file → Executable file
View File

0
application/config/index.html Normal file → Executable file
View File

0
application/config/migration.php Normal file → Executable file
View File

0
application/config/mimes.php Normal file → Executable file
View File

0
application/config/profiler.php Normal file → Executable file
View File

0
application/config/routes.php Normal file → Executable file
View File

0
application/config/smileys.php Normal file → Executable file
View File

0
application/config/user_agents.php Normal file → Executable file
View File

0
application/controllers/Controller.php Normal file → Executable file
View File

0
application/controllers/CostCenter.php Normal file → Executable file
View File

0
application/controllers/MRIRcontroller.php Normal file → Executable file
View File

0
application/controllers/amendmentpurchaseorder.php Normal file → Executable file
View File

0
application/controllers/assetdetails.php Normal file → Executable file
View File

0
application/controllers/c_test.php Normal file → Executable file
View File

0
application/controllers/companycontroller.php Normal file → Executable file
View File

0
application/controllers/configurationctrl.php Normal file → Executable file
View File

0
application/controllers/department.php Normal file → Executable file
View File

0
application/controllers/emergencypurchaseorder.php Normal file → Executable file
View File

0
application/controllers/employeedetails.php Normal file → Executable file
View File

0
application/controllers/emppaydate.php Normal file → Executable file
View File

0
application/controllers/error.php Normal file → Executable file
View File

0
application/controllers/index.html Normal file → Executable file
View File

0
application/controllers/inwardgateregister.php Normal file → Executable file
View File

0
application/controllers/login.php Normal file → Executable file
View File

0
application/controllers/pages.php Normal file → Executable file
View File

0
application/controllers/purchaseorder.php Normal file → Executable file
View File

0
application/controllers/quality.php Normal file → Executable file
View File

0
application/controllers/rawmaterialdetails.php Normal file → Executable file
View File

View File

@ -1219,51 +1219,51 @@ class report extends BaseController
}
/** GST Monthly-report */
public function monthly_gst()
{
$this->global['pageTitle'] = $this->CompanyName.' : GST Monthly-Reports';
if ($this->input->post('btn_submit')) {
$m=$this->input->post('month');
$frm = $this->input->post('from_date');
$t = $this->input->post('to_date');
$ab=$this->input->post('financialyear');
$fa=substr($ab,0,-5);
$aa=substr($ab,5,5);
//print_r($prod);
$data['monthly_gst_purchase']=$this->dahsboard_Model->monthly_gst_purchase($m,$frm,$t,$fa,$aa);
$data['monthly_gst_sales']=$this->dahsboard_Model->monthly_gst_sales($m,$frm,$t,$fa,$aa);
}
$data['finyear']=$this->dahsboard_Model->report_finyear();
$this->loadviews("Report_monthly_gst",$this->global,$data, NULL);
//print_r($data);die();
}
public function monthly_gst_table()
{
$this->global['pageTitle'] = $this->CompanyName.' : GST Monthly-Reports';
public function monthly_gst()
{
$this->global['pageTitle'] = 'Siddharth : Reports';
if ($this->input->post('btn_submit')) {
$m=$this->input->get('m');
$frm = $this->input->get('frm');
$t = $this->input->get('t');
$ab=$this->input->get('financialyear');
$fa=substr($ab,0,-5);
$aa=substr($ab,5,5);
// print_r($frm);
// print_r($t);
// print_r($m);die();
$data['monthly_gst_purchase']=$this->dahsboard_Model->purchase_gst($m,$frm,$t,$fa,$aa);
$data['monthly_gst_sales']=$this->dahsboard_Model->sales_gst($m,$frm,$t,$fa,$aa);
$this->loadviews("Report_monthly_gst_table",$this->global,$data, NULL);
//print_r($data);die();
$m=$this->input->post('month');
$frm = $this->input->post('from_date');
$t = $this->input->post('to_date');
$ab=$this->input->post('financialyear');
$fa=substr($ab,0,-5);
$aa=substr($ab,5,5);
//print_r($prod);
$data['monthly_gst_purchase']=$this->dahsboard_Model->monthly_gst_purchase($m,$frm,$t,$fa,$aa);
$data['monthly_gst_sales']=$this->dahsboard_Model->monthly_gst_sales($m,$frm,$t,$fa,$aa);
}
$data['finyear']=$this->dahsboard_Model->ireport_finyear();
$this->loadviews("Report_monthly_gst",$this->global,$data, NULL);
//print_r($data);die();
}
public function monthly_gst_table()
{
$this->global['pageTitle'] = 'Siddharth : Reports';
$m=$this->input->get('m');
$frm = $this->input->get('frm');
$t = $this->input->get('t');
$ab=$this->input->get('financialyear');
$fa=substr($ab,0,-5);
$aa=substr($ab,5,5);
// print_r($frm);
// print_r($t);
// print_r($m);die();
$data['monthly_gst_purchase']=$this->dahsboard_Model->purchase_gst($m,$frm,$t,$fa,$aa);
$data['monthly_gst_sales']=$this->dahsboard_Model->sales_gst($m,$frm,$t,$fa,$aa);
$this->loadviews("Report_monthly_gst_table",$this->global,$data, NULL);
//print_r($data);die();
}
function Viewfiles()
{

0
application/controllers/reportlistcontroller.php Normal file → Executable file
View File

0
application/controllers/requisitionform.php Normal file → Executable file
View File

0
application/controllers/servicepurchaseorder.php Normal file → Executable file
View File

0
application/controllers/storerequisitioncontroller.php Normal file → Executable file
View File

0
application/controllers/storestatus.php Normal file → Executable file
View File

0
application/controllers/supplier.php Normal file → Executable file
View File

0
application/core/index.html Normal file → Executable file
View File

0
application/errors/error_404.php Normal file → Executable file
View File

0
application/errors/error_db.php Normal file → Executable file
View File

0
application/errors/error_general.php Normal file → Executable file
View File

0
application/errors/error_php.php Normal file → Executable file
View File

0
application/errors/index.html Normal file → Executable file
View File

0
application/helpers/cias_helper.php Normal file → Executable file
View File

0
application/helpers/index.html Normal file → Executable file
View File

0
application/hooks/index.html Normal file → Executable file
View File

0
application/index.html Normal file → Executable file
View File

0
application/language/english/index.html Normal file → Executable file
View File

0
application/language/index.html Normal file → Executable file
View File

0
application/libraries/BaseController.php Normal file → Executable file
View File

0
application/libraries/Excel.php Normal file → Executable file
View File

0
application/libraries/Excel2.php Normal file → Executable file
View File

0
application/libraries/dompdf_gen.php Normal file → Executable file
View File

0
application/libraries/index.html Normal file → Executable file
View File

0
application/libraries/pdf.php Normal file → Executable file
View File

0
application/logs/index.html Normal file → Executable file
View File

0
application/logs/log-2017-04-20.php Normal file → Executable file
View File

0
application/logs/log-2017-04-21.php Normal file → Executable file
View File

0
application/logs/log-2017-04-22.php Normal file → Executable file
View File

0
application/logs/log-2017-04-24.php Normal file → Executable file
View File

0
application/logs/log-2017-04-26.php Normal file → Executable file
View File

0
application/logs/log-2017-04-27.php Normal file → Executable file
View File

0
application/logs/log-2017-04-28.php Normal file → Executable file
View File

0
application/logs/log-2017-05-02.php Normal file → Executable file
View File

0
application/logs/log-2017-05-03.php Normal file → Executable file
View File

0
application/logs/log-2017-05-04.php Normal file → Executable file
View File

0
application/logs/log-2017-05-08.php Normal file → Executable file
View File

0
application/logs/log-2017-05-10.php Normal file → Executable file
View File

0
application/logs/log-2017-05-12.php Normal file → Executable file
View File

0
application/logs/log-2017-05-19.php Normal file → Executable file
View File

0
application/logs/log-2017-05-22.php Normal file → Executable file
View File

0
application/logs/log-2017-05-23.php Normal file → Executable file
View File

0
application/logs/log-2017-05-24.php Normal file → Executable file
View File

0
application/logs/log-2017-05-25.php Normal file → Executable file
View File

0
application/logs/log-2017-05-26.php Normal file → Executable file
View File

0
application/logs/log-2017-05-27.php Normal file → Executable file
View File

0
application/logs/log-2017-05-29.php Normal file → Executable file
View File

0
application/logs/log-2017-05-30.php Normal file → Executable file
View File

0
application/logs/log-2017-05-31.php Normal file → Executable file
View File

0
application/logs/log-2017-06-01.php Normal file → Executable file
View File

0
application/logs/log-2017-06-02.php Normal file → Executable file
View File

0
application/logs/log-2017-06-05.php Normal file → Executable file
View File

0
application/logs/log-2017-06-14.php Normal file → Executable file
View File

0
application/logs/log-2017-06-15.php Normal file → Executable file
View File

0
application/logs/log-2017-06-19.php Normal file → Executable file
View File

0
application/logs/log-2017-06-20.php Normal file → Executable file
View File

0
application/logs/log-2017-06-21.php Normal file → Executable file
View File

0
application/logs/log-2017-06-22.php Normal file → Executable file
View File

0
application/logs/log-2017-06-23.php Normal file → Executable file
View File

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