<?php
include("db/cn.php");
if(isset($_SESSION['user_name']) && isset($_SESSION['user_role'])&& isset($_SESSION['outlet_name'])
&& isset($_SESSION['outlet_address'])) {
$userName = $_SESSION['user_name'];
$userRole = $_SESSION['user_role'];
$outlet_address = $_SESSION['outlet_address'];
$outlet_name = $_SESSION['outlet_name'];
}
//$cr_id = $_GET["cr_id"];
@$supplier_name = $_GET["supplier_name"];
//echo $cr_nickname;
$rec = mysqli_query($connection,"select * from purchase where supplier_name = '$supplier_name' && paid_by = 'credit' ");
$row1 = mysqli_fetch_array($rec);
//echo $row1["order_id"];
//@$order_id = $row1["order_id"];
$date_time1 = date("Y-m-d");
$rec10 = mysqli_query($connection, "SELECT customer_name, discount_amount FROM purchase WHERE customer_name = '$supplier_name' AND paid_by = 'credit' GROUP BY customer_name ");
//&& user_name = '$userName' AND user_role = '$userRole'
if ($rec10) {
$total_sales = 0;
while ($row3 = mysqli_fetch_array($rec10)) {
$total_sales += $row3['discount_amount'];
}
echo "";
if (mysqli_num_rows($rec10) == 0) {
echo "";
}
} else {
echo "Error executing query: " . mysqli_error($connection);
}
$date_time21 = date("Y-m-d");
$cash_out = mysqli_query($connection, "SELECT SUM(supplier_amount) AS total_amount FROM supplier_paid where user_name = '$userName' && user_role = '$userRole' && supplier_name = '$supplier_name' ");
if ($cash_out) {
$cash_outdata = mysqli_fetch_array($cash_out);
if ($cash_outdata && isset($cash_outdata['total_amount'])) {
$totalAmount = $cash_outdata['total_amount'];
echo "";
} else {
echo ".";
}
} else {
echo "Error executing query: " . mysqli_error($connection);
}
$cash_purchase = mysqli_query($connection, "SELECT SUM(discount_amount) AS total_amounts FROM purchase
where login_user = '$userName' && user_role = '$userRole' && customer_name = '$supplier_name' && paid_by = 'cash' GROUP BY inv_id ");
if ($cash_purchase) {
$cash_purchase_data = mysqli_fetch_array($cash_purchase);
if ($cash_purchase_data && isset($cash_purchase_data['total_amounts'])) {
$totalAmount_cash = $cash_purchase_data['total_amounts'];
echo "";
} else {
echo ".";
}
} else {
echo "Error executing query: " . mysqli_error($connection);
}
//-------------------------------------------------------------
$cash_purchases_r = mysqli_query($connection, "SELECT customer_name, discount_amount FROM purchase WHERE customer_name = '$supplier_name' AND paid_by = 'credit' AND status = 'return' GROUP BY customer_name ");
//&& user_name = '$userName' AND user_role = '$userRole'
if ($cash_purchases_r) {
$totalAmount_cash_r = 0;
while ($row32 = mysqli_fetch_array($cash_purchases_r)) {
$totalAmount_cash_r += $row32['discount_amount'];
}
echo "";
if (mysqli_num_rows($rec10) == 0) {
echo "";
}
} else {
echo "Error executing query: " . mysqli_error($connection);
}
//--------------------------------------------------------------
$supplier_out = mysqli_query($connection, "SELECT SUM(open_amount) AS total_amount FROM supplier_opening_amount where user_name = '$userName' && user_role = '$userRole' && supplier_name = '$supplier_name' ");
if ($supplier_out) {
$supplier_outdata = mysqli_fetch_array($supplier_out);
if ($supplier_outdata && isset($supplier_outdata['total_amount'])) {
$totalAmount_supplier = $supplier_outdata['total_amount'];
echo "";
} else {
echo ".";
}
} else {
echo "Error executing query: " . mysqli_error($connection);
}
if($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["supplier_paid"])){
$date_time = $_POST["date_time"];
$supplier = $_POST["supplier_name"];
$amount = $_POST["supplier_amount"];
$status = $_POST["status"];
mysqli_query($connection,"insert into supplier_paid(supplier_name,supplier_amount,status,date_time,user_name,user_role,outlet_name,outlet_address)
values('".$supplier."','".$amount."','".$status."','".$date_time."','".$userName."','".$userRole."','".$outlet_name."','".$outlet_address."')");
echo "<script type='text/javascript'>window.location.href = 'supplier_detail.php?supplier_name=$supplier_name';</script>";
}
if($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["supplier_open"])){
$date_time32 = date("Y-m-d");
$supplier_name = $_POST["supplier_name"];
$open_amount = $_POST["open_amount"];
mysqli_query($connection,"insert into supplier_opening_amount(supplier_name,open_amount,date_time,user_name,user_role,outlet_name,outlet_address)
values('".$supplier_name."','".$open_amount."','".$date_time32."','".$userName."','".$userRole."','".$outlet_name."','".$outlet_address."');");
echo "<script type='text/javascript'>window.location.href = 'supplier_detail.php?supplier_name=$supplier_name';</script>";
}
if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["supplier_close"])) {
// Check connection
if ($connection->connect_error) {
die("Connection failed: " . $connection->connect_error);
}
// Retrieve values from $_POST
$supplier_name = $_POST['supplier_name'];
$opening_cash = $_POST['opening_cash'];
$cash_purchase = $_POST['cash_purchase'];
$purchase_return = $_POST['cash_purchases_r'];
$cash_paid = $_POST["cash_paid"];
$credit_purchase = $_POST['credit_purchase'];
$closing_balance = $_POST["closing_balance"];
$date_time211 = date("Y-m-d");
// Check if the supplier already has an entry in the database
$check_sql = "SELECT * FROM supplier_closing WHERE supplier_name = '$supplier_name'";
$result = $connection->query($check_sql);
if ($result->num_rows > 0) {
// Update existing record
$sql = "UPDATE supplier_closing SET
opening_cash = '$opening_cash',
cash_purchase = '$cash_purchase',
credit_purchase = '$credit_purchase',
cash_paid = '$cash_paid',
closing_balance = '$closing_balance',
user_name = '$userName',
user_role = '$userRole',
outlet_name = '$outlet_name',
outlet_address = '$outlet_address',
date_time = '$date_time211'
WHERE supplier_name = '$supplier_name'";
} else {
// Insert new record
$sql = "INSERT INTO supplier_closing(
supplier_name, opening_cash, cash_purchase, credit_purchase, cash_paid, closing_balance,
user_name, user_role, outlet_name, outlet_address, date_time
) VALUES (
'$supplier_name', '$opening_cash', '$cash_purchase', '$credit_purchase', '$cash_paid', '$closing_balance',
'$userName', '$userRole', '$outlet_name', '$outlet_address', '$date_time211'
)";
}
// Execute SQL query
if ($connection->query($sql) === TRUE) {
echo "";
} else {
echo "Error: " . $sql . "<br>" . $connection->error;
}
}
?>
<!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>Supplier - Detail</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.17.3/xlsx.full.min.js"></script>
<link rel="stylesheet" href="css/custom_css.css" />
<!-- QRCode.js -->
<script src="https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js"></script>
</head>
<style>
#table-container-wrapper {
max-height: 460px; /* Adjust the maximum height as needed */
overflow-y: auto; /* Enable vertical scroll when content overflows */
}
@media (max-width: 880px) {
.col-4 {
width: 33.33% !important;
}
.fa-wifi {
display: none !important;
}
.col-6 {
width: 50% !important;
}
}
@media (min-width: 880px) {
.sidebar {
width: 100%;
/* Change sidebar width to 100% on mobile */
max-width: 120px; /* Set maximum width for the sidebar */
}
}
@media (min-width: 880px) {
.main-content {
margin-left: ; /* Width of the sidebar */
}
}
/* Added new class to control overlay */
.overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.6);
z-index: 999;
display: none; /* Initially hidden */
}
/* Custom styles for sidebar */
.sidebar {
width: 100px;
background: linear-gradient(360deg, #060606, #3C2F23);
position: fixed;
bottom: 0;
top: 60px;
transition: transform 0.3s ease-in-out;
transform: translateX(0);
z-index: 1;
height: 100%;
border-radius: 0px;
transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}
.sidebar.hide {
transform: translateX(-100px);
/* Move sidebar out of the viewport when it is hidden */
}
.sidebar .nav-item {
padding: 10px 0;
text-align: center;
position: relative;
font-size: 12px;
}
.sidebar .nav-link {
color: #fff;
position: relative;
/* Ensure icon and text are positioned relative to the nav link */
z-index: 2;
/* Ensure the text and icon are above the hover background */
}
.sidebar .nav-link i {
margin-bottom: 5px;
/* Adjust the margin of the icon */
}
/* Custom styles for hover effect */
.sidebar .nav-item:hover:after {
background-color: #fff;
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 1;
/* Ensure the hover background is below the text and icon */
}
.sidebar .nav-item:hover .nav-link {
color: #3C2F23;
}
/* Custom styles for divider */
.sidebar .nav-item:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 1px;
background-color: #fff;
transition: height 0.3s ease-in-out;
/* Transition effect for smooth animation */
}
/* Custom styles for header */
.header {
background: linear-gradient(270deg, #060606, #3C2F23);
color: #fff;
padding: 10px;
position: fixed;
top: 0;
width: 100%;
z-index: 2;
height: 69px;
box-shadow: #FFF 2px 0px 0px 0px;
/* Ensure header appears above sidebar */
}
.header .navbar-toggler {
color: #fff;
}
.header .navbar-toggler-icon {
color: #fff;
/* Set the color of the toggle button to white */
}
.header .navbar-toggler.white {
color: #fff !important;
/* Ensure the toggle button is white */
}
.header .navbar-brand {
color: #fff;
/* Set navbar brand text color to white */
}
.header .nav-item .nav-link {
color: #fff;
/* Set nav link text color to white */
}
.main-content {
margin-top: 50px; /* Height of fixed header */
margin-left: 100px; /* Initially, set margin-left to 0 */
padding-top: 30px; /* Height of fixed header */
transition: margin-left 0.3s ease-in-out; /* Add transition for smoother animation */
}
/* Custom styles for search bar */
.search-container {
display: flex;
align-items: center;
width:100%;
margin: 2px auto;
float:left;
}
/* Updated hide class to apply to the overlay */
.sidebar.hide, .overlay.hide {
transform: translateX(-100%);
}
.search-input {
width: 100%;
padding: 10px 30px 10px 10px;
/* Adjust padding to accommodate the icon */
border: 1px solid #ccc;
border-radius: 20px;
font-size: 16px;
}
.search-icon {
position: relative;
left: -25px;
/* Adjust the position of the icon */
color: #aaa;
}
.search-icon i {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.btn-dark {
background: #503F2E;
color: #fff;
border: 1px solid #503F2E;
}
.btn-dark:hover {
background: #fff;
color: #503F2E;
border: 1px solid #503F2E;
}
.bg-dark2 {
background: #503F2E;
color: #fff;
}
.modal-content {
animation: modal-animation 0.5s;
}
@keyframes modal-animation {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* Basic styling */
.tab {
display: none;
padding: 20px;
}
.active {
display: block;
}
.tab-buttons {
display: flex;
}
.tab-button {
cursor: pointer;
padding: 10px 10px;
background-color: #ffff;
border: 1px solid #0A5064;
border-radius: 5px 5px 0 0;
margin-right: 5px;
color:#212529;
}
.tab-button.active {
background-color: #212529;
color:#fff;
}
/* Background colors for tab content */
#tab1 {
background-color: #fff;
color:#212529;
padding:20px;
}
#tab2 {
color:#212529;
background-color: ;
}
#tab3 {
color:#212529;
background-color: ;
}
</style>
<body>
<?php include("common/hd.php");?>
<!-- Sidebar -->
<?php include("common/sd.php"); ?>
<div class="main-content">
<br />
<div class="container">
<div class="row">
<div class="col-sm-9">
<h3 style="color:#212529;">Supplier Detail</h3>
</div>
<div class="col-sm-3">
<a href="supplier.php"><button type="button" class="btn btn-dark "><i class="fa fa-arrow-left"></i></button></a>
<button type="button" class="btn btn-dark btn-sm" data-toggle="modal" data-target="#addPurchaseModal">
Paid
</button>
<button type="button" class="btn btn-dark btn-sm" data-toggle="modal" data-target="#addopenPurchaseModal">
Add Open
</button>
</div>
</div>
<br />
<div class="container">
<div class="row">
<div class="col-sm-3 text-dark text-capitalize" >
<span style="padding:10px; border-radius:7px; font-size:18px; border:1px solid #0A5064;"><?php echo $supplier_name; ?></span></div>
<div class="col-sm-9"></div>
</div>
</div>
<br /><br />
<div class="container">
<div class="tab-buttons">
<div class="tab-button active" onclick="openTab(event, 'tab1')">Overview</div>
<div class="tab-button" onclick="openTab(event, 'tab2')">Purchase</div>
<div class="tab-button" onclick="openTab(event, 'tab4')">Purchase Return</div>
<div class="tab-button" onclick="openTab(event, 'tab3')">Cash Paid</div>
</div>
<?php
$close_balance1 = $total_sales + @$totalAmount_supplier;
$close = $close_balance1 - @$totalAmount - @$totalAmount_cash_r;
?>
<div class="tab-container">
<div id="tab1" class="tab active">
<h4>Overview</h4>
<form method="post" action="supplier_detail.php?supplier_name=<?php echo $supplier_name; ?>">
<input type="hidden" value="<?php echo $supplier_name; ?>" name="supplier_name" />
<div class="container ">
<div class="row" style="padding:20px;background:#fff; box-shadow: 0px 0px 5px 2px #CCC; border-radius:10px;">
<div class="col-sm-12" style="padding:20px;">
<table class="table table-hover" >
<tr style="color:#8A1218;padding:20px;">
<td style="font-weight:600;">Opening Cash</td>
<td style="text-align:right; font-size:19px; font-weight:600;">
<?php echo isset($totalAmount_supplier) ? "Rs ".$totalAmount_supplier."" : ""; ?>
<input type="hidden" value="<?php echo isset($totalAmount_supplier) ? " ".$totalAmount_supplier."" : ""; ?>" name="opening_cash" />
</td>
</tr>
<!--<tr>
<td style="font-weight:600;">Cash Purchase</td>
<td style="text-align:right; font-size:19px; font-weight:600;">
<?php echo isset($totalAmount_cash) ? "Rs ".$totalAmount_cash."" : ""; ?>
</td>
</tr>-->
<input type="hidden" value="<?php echo isset($totalAmount_cash) ? "".$totalAmount_cash."" : ""; ?>" name="cash_purchase" />
<tr>
<td style="font-weight:600;">Credit Purchase</td>
<td style="text-align:right; font-size:19px; font-weight:600;">
<?php echo isset($total_sales) ? "Rs ".$total_sales."" : ""; ?>
<input type="hidden" value="<?php echo isset($total_sales) ? " ".$total_sales."" : ""; ?>" name="credit_purchase" />
</td>
</tr>
<tr>
<td style="font-weight:600;">Purchase Return</td>
<td style="text-align:right; font-size:19px; font-weight:600;">
<?php echo isset($totalAmount_cash_r) ? "Rs ".$totalAmount_cash_r."" : ""; ?>
<input type="hidden" value="<?php echo isset($totalAmount_cash_r) ? " ".$totalAmount_cash_r."" : ""; ?>" name="cash_purchases_r" />
</td>
</tr>
<tr>
<td style="font-weight:600;">Cash Paid</td>
<td style="text-align:right; font-size:19px; font-weight:600;">
<?php echo isset($totalAmount) ? "Rs ".$totalAmount."" : ""; ?>
<input type="hidden" value="<?php echo isset($totalAmount) ? " ".$totalAmount."" : ""; ?>" name="cash_paid" />
</td>
</tr>
<tr>
<td style="font-weight:600;">Closing Balance</td>
<td style="text-align:right; font-size:19px; font-weight:600;">
<?php echo isset($close) ? "Rs ".$close."" : ""; ?>
<input type="hidden" value="<?php echo isset($close) ? "".$close."" : ""; ?>" name="closing_balance" />
</td>
</tr>
</table>
<button style="submit" class="btn btn-dark btn-sm" name="supplier_close">Save</button>
</div>
</div>
<br />
</div>
</form>
<p></p>
</div>
<div id="tab2" class="tab">
<h4>Purchase</h4>
<div class="container">
<div class="row">
<br />
</div>
<div class="col-sm-12" id="table-container-wrapper">
<div class="row">
<div class="col-sm-4">
<label for="startDate">Start Date:</label>
<input class="form-control" type="date" id="startDatePurchase">
</div>
<div class="col-sm-4">
<label for="endDate">End Date:</label>
<input class="form-control" type="date" id="endDatePurchase">
</div>
<div class="col-sm-4">
<button type="button" class="btn btn-dark" id="downloadPurchase" style="float:right;margin-top:30px;" onclick="downloadTableData('purchaseTableBody', 'Purchase_Data.xlsx')">Download</button>
</div>
</div>
</div>
<hr>
<table class="table table-stripped table-sm text-center">
<tr style="background:#212529; color:#fff;">
<td>Date</td>
<td>Invoice ID</td>
<td>Amount (Rs)</td>
<td>Method</td>
<td> By</td>
</tr>
<tbody id="purchaseTableBody">
<?php
$rec3 = mysqli_query($connection,"select * from purchase where customer_name = '$supplier_name' GROUP BY inv_id ");
while($row3 = mysqli_fetch_array($rec3)){
?>
<tr>
<td><?php echo $row3['date_time']; ?></td>
<td><?php echo $row3['inv_id']; ?></td>
<td> <?php echo $row3['discount_amount']; ?></td>
<td class="text-capitalize"><?php echo $row3["paid_by"];?></td>
<td style="text-transform:capitalize;"><?php echo $row3['login_user']; ?></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
<div id="tab4" class="tab">
<h4>Purchase Return</h4>
<div class="container">
<div class="row">
<br />
</div>
<div class="col-sm-12" id="table-container-wrapper">
<div class="row">
<div class="col-sm-4">
<label for="startDate">Start Date:</label>
<input class="form-control" type="date" id="startDateReturn">
</div>
<div class="col-sm-4">
<label for="endDate">End Date:</label>
<input class="form-control" type="date" id="endDateReturn">
</div>
<div class="col-sm-4">
<button type="button" class="btn btn-dark" id="downloadReturn" style="float:right;margin-top:30px;" onclick="downloadTableData('ReturnTableBody', 'Return_Data.xlsx')">Download</button>
</div>
</div>
<hr>
<table class="table table-stripped table-sm text-center">
<tr style="background:#212529; color:#fff;">
<td>Date</td>
<td>Invoice ID</td>
<td>Amount (Rs)</td>
<td>Method</td>
<td> By</td>
</tr>
<tbody id="ReturnTableBody">
<?php
$rec4 = mysqli_query($connection,"select * from purchase where customer_name = '$supplier_name' AND status = 'return' GROUP BY r_inv_id ");
while($row4 = mysqli_fetch_array($rec4)){
?>
<tr>
<td><?php echo $row4['date_time']; ?></td>
<td><?php echo $row4["inv_id"]; ?></td>
<td> <?php echo $row4['discount_amount']; ?></td>
<td class="text-capitalize"><?php echo $row4["paid_by"];?></td>
<td style="text-transform:capitalize;"><?php echo $row4['login_user']; ?></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div id="tab3" class="tab">
<h4>Cash Paid</h2>
<div class="container ">
<div class="row">
</div>
<br />
<div class="col-sm-12" id="table-container-wrapper">
<div class="row">
<div class="col-sm-4">
<label for="startDate">Start Date:</label>
<input class="form-control" type="date" id="startDatePaid">
</div>
<div class="col-sm-4">
<label for="endDate">End Date:</label>
<input class="form-control" type="date" id="endDatePaid">
</div>
<div class="col-sm-4">
<button type="button" class="btn btn-dark" id="downloadPaid" style="float:right;margin-top:30px;" onclick="downloadTableData('PaidTableBody', 'Paid_Data.xlsx')">Download</button>
</div>
</div>
<hr>
<table class="table table-stripped table-sm text-center text-capitalize">
<tr style="background:#212529; color:#fff;">
<td>Date</td>
<td>Amount (Rs)</td>
<td>Method</td>
<td>By</td>
</tr>
<tbody id="PaidTableBody">
<?php
$rec1 = mysqli_query($connection,"select * from supplier_paid where supplier_name = '$supplier_name' ");
while($row2 = mysqli_fetch_array($rec1)){
?>
<tr>
<td><?php echo $row2["date_time"];?></td>
<td> <?php echo $row2["supplier_amount"]; ?> </td>
<td><?php echo $row2["status"]; ?></td>
<td> <?php echo $row2["user_name"];?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="modal fade" id="addopenPurchaseModal" tabindex="-1" role="dialog"
aria-labelledby="addPurchaseopenModalLabel" aria-hidden="true" style="margin-top:80px;">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title text-capitalize" id="addPurchaseopenModalLabel">Add Opening Amount</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- Form for adding purchase -->
<form method="post" action="supplier_detail.php?supplier_name=<?php echo $supplier_name; ?>" enctype="multipart/form-data">
<input type="hidden" value="<?php echo $supplier_name; ?>" name="supplier_name" placeholder="Name" class="form-control" />
<input type="text" name="open_amount" placeholder="Amount" class="form-control" />
<br />
<!-- <input class="form-control" type="date" name="date_time" />
<br />-->
<button type="submit" name="supplier_open" class="btn btn-dark">Enter</button>
</form>
</div>
</div>
</div>
</div>
<div class="modal fade" id="addPurchaseModal" tabindex="-1" role="dialog"
aria-labelledby="addPurchaseModalLabel" aria-hidden="true" style="margin-top:80px;">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title text-capitalize" id="addPurchaseModalLabel">Supplier Paid</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- Form for adding purchase -->
<form method="post" action="supplier_detail.php?supplier_name=<?php echo $supplier_name; ?>" enctype="multipart/form-data">
<input type="text" name="supplier_name" placeholder="Supplier Name"
value="<?php echo $supplier_name; ?>" class="form-control" style="background:#503F2E; color:#fff;" />
<br />
<input type="text" name="supplier_amount" placeholder="Amount" class="form-control" />
<br />
<select name="status" class="form-control">
<option value="">Select Method</option>
<option value="cash">Cash</option>
<option value="bank1">Bank 1</option>
<option value="bank2">Bank 2 </option>
<option value="bank3">Bank 3</option>
<option value="other">Other</option>
</select>
<br />
<input type="date" name="date_time" class="form-control" />
<br />
<button type="submit" name="supplier_paid" class="btn btn-dark">Enter</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
// Function to export table data to Excel
function downloadTableData(tableBodyId, filename) {
const tableBody = document.getElementById(tableBodyId);
const rows = Array.from(tableBody.querySelectorAll("tr"));
const data = [];
// Loop through each row and extract cell data
rows.forEach(row => {
const rowData = Array.from(row.querySelectorAll("td")).map(cell => cell.innerText);
data.push(rowData);
});
// Define worksheet and workbook
const ws = XLSX.utils.aoa_to_sheet(data);
const wb = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(wb, ws, "Sheet1");
// Download Excel file
XLSX.writeFile(wb, filename);
}
</script>
<script>
// Filter function for Purchase table
function filterpurchaseTableByDate() {
const startDate = new Date(document.getElementById('startDatePurchase').value);
const endDate = new Date(document.getElementById('endDatePurchase').value);
const rows = document.querySelectorAll('#purchaseTableBody tr');
rows.forEach(row => {
const rowDate = new Date(row.cells[0].innerText);
row.style.display = (!isNaN(startDate) && rowDate < startDate) || (!isNaN(endDate) && rowDate > endDate) ? 'none' : '';
});
}
// Filter function for Paid table
function filterPaidTableByDate() {
const startDate = new Date(document.getElementById('startDatePaid').value);
const endDate = new Date(document.getElementById('endDatePaid').value);
const rows = document.querySelectorAll('#PaidTableBody tr');
rows.forEach(row => {
const rowDate = new Date(row.cells[0].innerText);
row.style.display = (!isNaN(startDate) && rowDate < startDate) || (!isNaN(endDate) && rowDate > endDate) ? 'none' : '';
});
}
// Filter function for Return table
function filterReturnTableByDate() {
const startDate = new Date(document.getElementById('startDateReturn').value);
const endDate = new Date(document.getElementById('endDateReturn').value);
const rows = document.querySelectorAll('#ReturnTableBody tr');
rows.forEach(row => {
const rowDate = new Date(row.cells[0].innerText);
row.style.display = (!isNaN(startDate) && rowDate < startDate) || (!isNaN(endDate) && rowDate > endDate) ? 'none' : '';
});
}
// Bind event listeners for each date input to corresponding filter functions
document.getElementById('startDatePurchase').addEventListener('change', filterpurchaseTableByDate);
document.getElementById('endDatePurchase').addEventListener('change', filterpurchaseTableByDate);
document.getElementById('startDatePaid').addEventListener('change', filterPaidTableByDate);
document.getElementById('endDatePaid').addEventListener('change', filterPaidTableByDate);
document.getElementById('startDateReturn').addEventListener('change', filterReturnTableByDate);
document.getElementById('endDateReturn').addEventListener('change', filterReturnTableByDate);
</script>
<script>
// Function to switch between tabs
function openTab(evt, tabName) {
// Get all elements with class="tab" and hide them
var tabs = document.getElementsByClassName("tab");
for (var i = 0; i < tabs.length; i++) {
tabs[i].style.display = "none";
}
// Get all elements with class="tab-button" and remove the class "active"
var tabButtons = document.getElementsByClassName("tab-button");
for (var i = 0; i < tabButtons.length; i++) {
tabButtons[i].classList.remove("active");
}
// Show the current tab, and add an "active" class to the button that opened the tab
document.getElementById(tabName).style.display = "block";
evt.currentTarget.classList.add("active");
}
document.addEventListener("DOMContentLoaded", function () {
var sidebar = document.getElementById("sidebar");
var overlay = document.createElement("div");
overlay.classList.add("overlay");
document.body.appendChild(overlay);
function toggleSidebar() {
sidebar.classList.toggle("hide");
overlay.classList.toggle("hide");
var mainContent = document.querySelector(".main-content");
if (sidebar.classList.contains("hide")) {
mainContent.style.marginLeft = "0";
} else {
mainContent.style.marginLeft = "100px"; // Width of the sidebar
}
}
overlay.addEventListener("click", function () {
toggleSidebar();
});
// Add toggle functionality to navbar toggler
var navbarToggler = document.querySelector(".navbar-toggler");
navbarToggler.addEventListener("click", function () {
toggleSidebar();
});
// Automatically hide sidebar on all screen sizes
// sidebar.classList.add("hide");
// overlay.classList.add("hide");
// Add class to body to prevent scrolling when sidebar is open
// document.body.classList.add("noscroll");
// Check if screen size is larger than a certain threshold (e.g., 768px for desktop screens)
function checkScreenSize() {
if (window.innerWidth > 768) {
sidebar.classList.remove("hide");
overlay.classList.remove("hide");
} else {
sidebar.classList.add("hide");
overlay.classList.add("hide");
}
}
// Check screen size on initial load and whenever the window is resized
checkScreenSize();
window.addEventListener("resize", checkScreenSize);
});
</script>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
</html>