File: /home/cafsindia/ntc_cafsinfotech_in_bk/application/controllers/Maintenance_tyres_stock_report.php
<?php if ( ! defined('BASEPATH')) exit('No direct script is allowed');
require_once("Action_controller.php");
class Maintenance_tyres_stock_report extends Action_controller{
public function __construct(){
parent::__construct('maintenance_tyres_stock_report');
$this->collect_base_info();
}
// LOAD PAGE QUICK LINK,FILTERS AND TABLE HEADERS
public function index(){
$this->load->view("$this->control_name/manage");
}
//LOAD TABEL WITH FILTERS
public function check_log_details(){
$start_date = str_replace("/","-",$this->input->post('start_date'));
$end_date = str_replace("/","-",$this->input->post('end_date'));
$from_date = date('Y-m-d',strtotime($start_date));
$to_date = date('Y-m-d',strtotime($end_date));
$this->db->select('*');
$this->db->from('cw_tyre_scrap');
$this->db->join('cw_tyre_size', 'cw_tyre_size.prime_tyre_size_id = cw_tyre_scrap.prime_tyre_scrap_id','inner');
$this->db->join('cw_vehicle_trip_info', 'cw_vehicle_trip_info.prime_vehicle_info_id = cw_tyre_scrap.vehicle_no','inner');
$this->db->join('cw_inventory_brand', 'cw_inventory_brand.prime_inventory_brand_id = cw_tyre_scrap.brand','inner');
$this->db->join('cw_zct_20', 'cw_zct_20.cw_zct_20_id = cw_tyre_scrap.status','inner');
$get_data_rslt = $this->db->get()->result();
$tr_line = "";
foreach ($get_data_rslt as $key => $value){
$tr_line .="<tr>
<td>".$date = date('d-m-Y',strtotime($value->date))."</td>
<td>".$tyre_size = $value->tyre_size."</td>
<td>".$brand_name = $value->brand_name."</td>
<td>".$serial_number = $value->serial_number."</td>
<td>".$cw_zct_20_value = $value->cw_zct_20_value."</td>
</tr>";
}
if($get_data_rslt){
$table_content = "<div style='margin:20px;'>
<table class='table table-striped table-bordered' id='trip_report'>
<thead>
<tr>
<td>DATE</td>
<td>TYRE SIZE</td>
<td>BRAND</td>
<td>SERIAL NUMBER</td>
<td>STATUS</td>
</tr>
</thead>
<tbody>
$tr_line
</tbody>
</table>
</div>";
echo json_encode(array('success'=>true,'table_content'=>$table_content));
}else{
echo json_encode(array('success'=>false,'message'=>'NO DATA AVAILABLE','table_content'=>$table_content));
}
}
}
?>