added rate&go

This commit is contained in:
2024-11-20 11:53:04 +01:00
parent f9f9d45f08
commit f9c4d4f77b
47 changed files with 2193 additions and 7 deletions
+10 -1
View File
@@ -1,6 +1,7 @@
<?php include('../include/headscript.php'); ?>
<?php include("../class/company.php");
include('parsedatachart.php');
//include('documentModal.php');
?>
<!DOCTYPE html>
<html lang="en">
@@ -219,6 +220,10 @@ include('parsedatachart.php');
justify-content: center;
align-items: center;
}
.card-body {
background-color: white;
}
</style>
</head>
@@ -305,7 +310,7 @@ include('parsedatachart.php');
<!-- end page title end breadcrumb -->
<button id="toggleFilters" class="btn btn-primary">Toggle Filters</button>
<button id="createPDF" class="btn btn-primary">Report</button>
<!-- Right Sidebar -->
<div class="filter-sidebar" id="filterSidebar">
<?php
@@ -380,6 +385,10 @@ include('parsedatachart.php');
$('#main-content').toggleClass('collapsed');
});
$('#createPDF').on('click', function() {
$('#documentModal').modal('show');
});
$('.select2').on('change', function() {
updateActiveFilters();
});