D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
urbane.createerp.com
/
Filename :
deleted_expenses.php
back
Copy
<!DOCTYPE html> <?php session_start(); include 'config.php'; $login = $_SESSION['login_email']; if($login = ''){ echo '<script>location.replace("index.php")</script>'; } if(isset($_SESSION["source_id"])){ $source_id = $_SESSION['source_id']; } ?> <html> <head> <meta charset="utf-8" /> <title>Endive Media | Expense</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" /> <meta content="Coderthemes" name="author" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- Font Awsome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- App favicon --> <link rel="shortcut icon" href="assets/images/favicon.png"> <!-- Pie Chart Css --> <link href="assets/pie charts/style.css" rel="stylesheet" type="text/css" /> <!-- App css --> <link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="assets/css/icons.css" rel="stylesheet" type="text/css" /> <link href="assets/css/metismenu.min.css" rel="stylesheet" type="text/css" /> <link href="assets/css/style.css" rel="stylesheet" type="text/css" /> <!-- DataTables --> <link href="plugins/datatables/dataTables.bootstrap4.min.css" rel="stylesheet" type="text/css" /> <link href="plugins/datatables/buttons.bootstrap4.min.css" rel="stylesheet" type="text/css" /> <!-- Responsive datatable examples --> <link href="plugins/datatables/responsive.bootstrap4.min.css" rel="stylesheet" type="text/css" /> <link href="plugins/sweet-alert2/sweetalert2.min.css" rel="stylesheet" type="text/css"> <script src="assets/js/modernizr.min.js"></script> </head> <body> <!-- Begin page --> <div id="wrapper"> <!-- Top Bar Start --> <?php include 'top-header.php'; ?> <!-- Top Bar End --> <!-- ========== Left Sidebar Start ========== --> <?php include 'left-sidebar.php'; ?> <!-- Left Sidebar End --> <!-- ============================================================== --> <!-- Start right Content here --> <!-- ============================================================== --> <div class="content-page"> <!-- Start content --> <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col-12"> <div class="page-title-box"> <h4 class="page-title float-left">Deleted Expenses</h4> <ol class="breadcrumb float-right"> <li class="breadcrumb-item active">Expenses</li> <li class="breadcrumb-item active">Trash</li> </ol> <div class="clearfix"></div> </div> </div> </div> <!-- end row --> <div class="row"> <div class="col-sm-12"> <div class="card-box table-responsive"> <table id="datatable" class="table table-bordered"> <thead> <tr class="bg-grey"> <th>Date</th> <th>Item Name</th> <th>Amount</th> <th>Payment Mode</th> <th>Tag</th> <th>Action</th> </tr> </thead> <tbody> <?php $sql = "SELECT * FROM expenses WHERE is_deleted = 'YES' AND source_id = '$source_id' ORDER By date_of_expense DESC, id DESC"; $result = mysqli_query($conn, $sql); if($result){ if(mysqli_num_rows($result) > 0){ while( $row = mysqli_fetch_array($result)){ $remarks = ""; if($row['is_taxable'] == "NO"){ $remarks = "Miscellaneous"; } else{ $remarks = "Taxable Purchase"; } ?> <tr class="gradeX"> <td><?php echo date("d/m/Y", strtotime($row['date_of_expense'])); ?></td> <td><?php echo $row['item_name'] ?></td> <td><?php echo $row['amount']; ?></td> <td><?php echo $row['payment_mode']; ?></td> <td><?php echo $remarks; ?></td> <td class="text-center"> <a href="view_expense.php?id=<?php echo $row['id'] ?>" class="btn btn-xs btn-info" data-toggle="tooltip" data-placement="top" title="" data-original-title="View"><i class="fa fa-eye"></i></a> <button type="button" value="<?php echo $row['id'] ?>" onclick="permanentDelete(this)" class="btn btn-xs btn-danger" data-toggle="tooltip" data-placement="top" title="" data-original-title="Permanent Delete"><i class="fa fa-trash"></i></button> <button type="button" value="<?php echo $row['id'] ?>" onclick="restoreExpense(this)" class="btn btn-xs btn-success" data-toggle="tooltip" data-placement="top" title="" data-original-title="Restore"><i class="fa fa-window-restore"></i></button> </td> </tr> <?php } } } ?> </tbody> </table> </div> </div> <!-- end: page --> </div> </div> <!-- container --> </div> <!-- content --> <?php include 'copyrignt.php' ?> </div> <!-- ============================================================== --> <!-- End Right content here --> <!-- ============================================================== --> </div> <!-- END wrapper --> <!-- Chart Js --> <script src='https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js'></script> <script src='https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js'></script> <script src='https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.3/Chart.js'></script> <!-- jQuery --> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/popper.min.js"></script><!-- Popper for Bootstrap --> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/metisMenu.min.js"></script> <script src="assets/js/waves.js"></script> <script src="assets/js/jquery.slimscroll.js"></script> <!-- Dashboard init --> <script src="assets/pages/jquery.dashboard.js"></script> <!-- App js --> <script src="assets/js/jquery.core.js"></script> <script src="assets/js/jquery.app.js"></script> <!-- Chart Js --> <!-- <script src="assets/pie charts/script.js"></script> --> <!-- Required datatable js --> <script src="plugins/datatables/jquery.dataTables.min.js"></script> <script src="plugins/datatables/dataTables.bootstrap4.min.js"></script> <!-- Buttons examples --> <script src="plugins/datatables/dataTables.buttons.min.js"></script> <script src="plugins/datatables/buttons.bootstrap4.min.js"></script> <script src="plugins/datatables/jszip.min.js"></script> <script src="plugins/datatables/pdfmake.min.js"></script> <script src="plugins/datatables/vfs_fonts.js"></script> <script src="plugins/datatables/buttons.html5.min.js"></script> <script src="plugins/datatables/buttons.print.min.js"></script> <script src="plugins/datatables/buttons.colVis.min.js"></script> <!-- Responsive examples --> <script src="plugins/datatables/dataTables.responsive.min.js"></script> <script src="plugins/datatables/responsive.bootstrap4.min.js"></script> <script src="plugins/sweet-alert2/sweetalert2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#datatable').DataTable(); //Buttons examples var table = $('#datatable-buttons').DataTable({ lengthChange: false, buttons: ['copy', 'excel', 'pdf', 'colvis'] }); table.buttons().container() .appendTo('#datatable-buttons_wrapper .col-md-6:eq(0)'); }); $(document).ready(function () { if (localStorage.getItem("expensePermanentDeleted") == "true") { successMessage("Expense Successfully Permanently Deleted."); localStorage.setItem("expensePermanentDeleted", "false"); } if (localStorage.getItem("RestoreExpense") == "true") { successMessage("Expense Successfully Restored."); localStorage.setItem("RestoreExpense", "false"); } }); function restoreExpense(button){ var id = $(button).val(); swal({ title: 'Are you sure?', text: "Do you really want to restore this expense!", type: 'warning', showCancelButton: true, confirmButtonColor: '#4fa7f3', cancelButtonColor: '#d57171', confirmButtonText: 'Yes, restore it!' }).then(function () { $.ajax({ url : "PHP/response.php", data : "action=RestoreExpense&id="+id, async : false, method : "POST", success : function(response){ if(response.trim() == "RESTORED"){ localStorage.setItem("RestoreExpense", "true"); location.replace("deleted_expenses.php"); } else{ errorMessage("Could not restore this expense."); } }, error : function(err){ errorMessage("Could not restore this expense."); } }); }) } function permanentDelete(button){ var id = $(button).val(); swal({ title: 'Are you sure?', text: "You won't be able to revert this!", type: 'warning', showCancelButton: true, confirmButtonColor: '#4fa7f3', cancelButtonColor: '#d57171', confirmButtonText: 'Yes, delete it!' }).then(function () { $.ajax({ url : "PHP/response.php", data : "action=PermanentDeleteExpense&id="+id, async : false, method : "POST", success : function(response){ if(response.trim() == "DELETED"){ localStorage.setItem("expensePermanentDeleted", "true"); location.replace("deleted_expenses.php"); } else{ errorMessage("Could not permanently delete this expense."); } }, error : function(err){ errorMessage("Could not permanently delete this expense."); } }); }) } function successMessage(msg){ swal({ title: 'Success!', text: msg, type: 'success', confirmButtonColor: '#4fa7f3' }); } function errorMessage(msg){ swal({ title: 'Error!', text: msg, type: 'error', confirmButtonColor: '#4fa7f3' }); } </script> </body> </html>