170 lines
6.2 KiB
PHP
170 lines
6.2 KiB
PHP
|
<?php
|
||
|
include('includes/config/config.php');
|
||
|
include('includes/auth/auth.php');
|
||
|
include('includes/functions.php');
|
||
|
include('access.php');
|
||
|
error_reporting(E_ERROR | E_PARSE);
|
||
|
?>
|
||
|
<?php
|
||
|
|
||
|
// Connect to mysqli database
|
||
|
$page = 1; // The current page
|
||
|
$sortname = 'issue_date'; // Sort column
|
||
|
$sortorder = 'asc'; // Sort order
|
||
|
$qtype = ''; // Search column
|
||
|
$query = ''; // Search string
|
||
|
// Get posted data
|
||
|
if (isset($_POST['page'])) {
|
||
|
$page = mysqli_real_escape_string($conn, $_POST['page']);
|
||
|
}
|
||
|
if (isset($_POST['sortname'])) {
|
||
|
$sortname = mysqli_real_escape_string($conn, $_POST['sortname']);
|
||
|
}
|
||
|
if (isset($_POST['sortorder'])) {
|
||
|
$sortorder = mysqli_real_escape_string($conn, $_POST['sortorder']);
|
||
|
}
|
||
|
if (isset($_POST['qtype'])) {
|
||
|
$qtype = mysqli_real_escape_string($conn, $_POST['qtype']);
|
||
|
}
|
||
|
if (isset($_POST['query'])) {
|
||
|
$query = mysqli_real_escape_string($conn, $_POST['query']);
|
||
|
}
|
||
|
if (isset($_POST['rp'])) {
|
||
|
$rp = mysqli_real_escape_string($conn, $_POST['rp']);
|
||
|
}
|
||
|
// Setup sort and search SQL using posted data
|
||
|
$menu_key = '214';
|
||
|
$hasReadAccess = isAccessible($_SESSION['RoleId'], $menu_key, 'R');
|
||
|
$hasWriteAccess = isAccessible($_SESSION['RoleId'], $menu_key, 'W');
|
||
|
$hasExecuteAccess = isAccessible($_SESSION['RoleId'], $menu_key, 'E');
|
||
|
|
||
|
$sortSql = "order by $sortname $sortorder";
|
||
|
$searchSql = ($qtype != '' && $query != '') ? "and upper($qtype) like upper('%$query%')" : '';
|
||
|
|
||
|
if ($searchSql != '') {
|
||
|
|
||
|
if ($qtype == 'issue_date') {
|
||
|
|
||
|
$searchSql = " and date_format(date(issue_date),'%Y-%m-%d')=str_to_date('$query','%d/%m/%Y') ";
|
||
|
//echo $searchSql;
|
||
|
}
|
||
|
if ($qtype == 'direct_issue') {
|
||
|
if (strtoupper($query) == 'Y') {
|
||
|
$searchSql = " and req_id is null ";
|
||
|
} else {
|
||
|
$searchSql = " and req_id is not null ";
|
||
|
}
|
||
|
|
||
|
|
||
|
//echo $searchSql;
|
||
|
}
|
||
|
else if ($qtype == 'received_ref_no') {
|
||
|
|
||
|
$searchSql = " and received_id in (select received_id from store_received_return_master where received_ref_no like ('%" . trim($query) . "%')) ";
|
||
|
//echo $searchSql;
|
||
|
}
|
||
|
else if ($qtype == 'ohc_loc') {
|
||
|
|
||
|
$searchSql = " and ohc_location_id in (select ohc_type_id from ohc_type where ohc_type_name like ('%$query%')) ";
|
||
|
//echo $searchSql;
|
||
|
}
|
||
|
else if ($qtype == 'item_code') {
|
||
|
|
||
|
$searchSql = "and received_id in (select received_id from store_received_return_items where item_id in ( select item_id from tbl_items where item_code like ('%" . trim($query) . "%')) ";
|
||
|
//echo $searchSql;
|
||
|
}
|
||
|
else if ($qtype == 'item_desc') {
|
||
|
|
||
|
|
||
|
$searchSql = "and received_id in (select received_id from store_received_return_items where item_id in ( select item_id from tbl_items where item_name like ('%" . trim($query) . "%')) ";
|
||
|
//echo $searchSql;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Get total count of records
|
||
|
//$searchSql=preg_replace('/and/', 'where', $searchSql, 1);
|
||
|
$ohc_type = $_SESSION['current_ohcttype'];
|
||
|
$sql = "select count(*) from store_received_return_master where status = 'DRA' and (ohc_location_id in ($ohc_type) OR issue_log_id='DIRECT') $searchSql $sortSql";
|
||
|
error_log("xxx". $sql);
|
||
|
$result = mysqli_query($conn, $sql);
|
||
|
//echo $result;
|
||
|
$row = mysqli_fetch_array($result);
|
||
|
$total = $row[0];
|
||
|
if (!isset($rp)) {
|
||
|
$rp = 10;
|
||
|
}
|
||
|
// Setup paging SQL
|
||
|
//$rp=1;
|
||
|
$pageStart = ($page - 1) * $rp;
|
||
|
$limitSql = "limit $pageStart, $rp";
|
||
|
// Return JSON data
|
||
|
$data = array();
|
||
|
$data['page'] = $page;
|
||
|
$data['total'] = $total;
|
||
|
$data['rows'] = array();
|
||
|
$sql1 = "select received_id, received_ref_no,issue_log_id,received_date,remarks,ohc_location_id,modified_by from store_received_return_master where status = 'DRA' and (ohc_location_id in ($ohc_type) OR issue_log_id='DIRECT')";
|
||
|
|
||
|
//echo $sql1;
|
||
|
$sql_export = $sql1;
|
||
|
$sql1 .= " $searchSql $sortSql $limitSql ";
|
||
|
|
||
|
$sql_export .= " $searchSql $sortSql ";
|
||
|
|
||
|
|
||
|
|
||
|
$results = mysqli_query($conn, $sql1);
|
||
|
//echo $results;
|
||
|
//echo mysqlii_error($results);
|
||
|
$count = ($page - 1) * $rp + 1;
|
||
|
//echo $sql_ailment;
|
||
|
//echo $access_level;
|
||
|
|
||
|
while ($row1 = mysqli_fetch_assoc($results)) {
|
||
|
|
||
|
$id = $row1['received_id'];
|
||
|
|
||
|
//echo $Department_id;
|
||
|
$view_link = "";
|
||
|
$edit_link = "";
|
||
|
$delete_link = "";
|
||
|
$links = "";
|
||
|
|
||
|
// if ($hasReadAccess) {
|
||
|
// //echo "shubham";
|
||
|
// $view_link = "<a href=\"#\"class=\"green\" onclick=\"open_received_item_issue('" . $id . "','V');\"><i class=\"ace-icon fa fa-search-plus bigger-130\"></i></a>";
|
||
|
// }
|
||
|
|
||
|
// if ($hasWriteAccess) {
|
||
|
// $edit_link = "<a href=\"#\" class=\"blue\" onclick=\"open_received_item_issue('" . $id . "','E');\"><i class=\"ace-icon fa fa-pencil bigger-130\"></i></a>";
|
||
|
// }
|
||
|
|
||
|
|
||
|
$item_desc = "";
|
||
|
//$item_qty="";
|
||
|
|
||
|
$sql_received_items = "select * from store_received_return_items where received_id='" . $row1['received_id'] . "'";
|
||
|
$results_received_items = mysqli_query($conn, $sql_received_items);
|
||
|
while ($row_received_items = mysqli_fetch_assoc($results_received_items)) {
|
||
|
|
||
|
$item_desc = $item_desc . ' <p> ' . getTableFieldValue('tbl_items', 'item_name', 'item_id', $row_received_items['item_id']) . " ";
|
||
|
$item_unit_id = getTableFieldValue('tbl_items', 'unit_id', 'item_id', $row_received_items['item_id']);
|
||
|
$item_unit = getTableFieldValue(' unit_master', 'unit_name', 'unit_id', $item_unit_id);
|
||
|
$item_desc = $item_desc . '<b> Qty: ' . $row_received_items['received_qty'] . ' ' . $item_unit . '</b>';
|
||
|
$item_desc = $item_desc . "</p>";
|
||
|
}
|
||
|
|
||
|
$space = " ";
|
||
|
//$links =$view_link.$space.$edit_link.$space;
|
||
|
$received_ref_no = "<a target=\"_blank\" href=\"item_return_store_pdf.php?received_id=" . $id . "\">" . $row1['received_ref_no'] . "</a>";
|
||
|
$data['rows'][] = array(
|
||
|
'id' => $row1['issue_log_id'],
|
||
|
'cell' => array($count++, $received_ref_no, date_format(date_create($row1['received_date']), "d-M-Y "), getTableFieldValue('ohc_type', 'ohc_type_name', 'ohc_type_id', $row1['ohc_location_id']), $item_desc, $row1['remarks'])
|
||
|
);
|
||
|
}
|
||
|
$data['rows'][] = array(
|
||
|
'id' => $row['filterkey'],
|
||
|
'cell' => array('', "<input type=hidden name='filterkey' id='filterkey' value=\"" . base64_encode($sql_export) . "\">", "<input type=hidden name=paramlist id=paramlist value=\"" . base64_encode($paramlist) . "\">", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '')
|
||
|
);
|
||
|
echo json_encode($data);
|
||
|
?>
|