152 lines
5.7 KiB
PHP
152 lines
5.7 KiB
PHP
<?php
|
|
defined(page_security_key) or exit;
|
|
|
|
if (debug && debug_id == $_SESSION['id']){
|
|
ini_set('display_errors', '1');
|
|
ini_set('display_startup_errors', '1');
|
|
error_reporting(E_ALL);
|
|
}
|
|
|
|
include_once './assets/functions.php';
|
|
include_once './settings/settings.php';
|
|
|
|
//SET ORIGIN FOR NAVIGATION
|
|
$prev_page = $_SESSION['prev_origin'] ?? '';
|
|
$page = $_SESSION['origin'] = 'discounts';
|
|
|
|
//Check if allowed
|
|
if (isAllowed($page,$_SESSION['profile'],$_SESSION['permission'],'R') === 0){
|
|
header('location: index.php');
|
|
exit;
|
|
}
|
|
|
|
//GET PARAMETERS
|
|
$pagination_page = isset($_GET['p']) ? $_GET['p'] : 1;
|
|
$search = isset($_GET['search']) ? '&search='.$_GET['search'] : '';
|
|
|
|
// Determine the URL
|
|
$url = 'index.php?page=discounts'.$search;
|
|
//GET Details from URL
|
|
$GET_VALUES = urlGETdetails($_GET) ?? '';
|
|
//CALL TO API
|
|
$api_url = '/v2/discounts/'.$GET_VALUES;
|
|
$discounts = ioServer($api_url,'');
|
|
//Decode Payload
|
|
if (!empty($discounts)){$discounts = json_decode($discounts,true);}else{$discounts = null;}
|
|
|
|
//Return QueryTotal from API
|
|
$api_url = '/v2/discounts/totals=';
|
|
$query_total = ioServer($api_url,'');
|
|
|
|
//Decode Payload
|
|
if (!empty($query_total)){$query_total = json_decode($query_total,true);}else{$query_total = null;}
|
|
|
|
// Handle success messages
|
|
if (isset($_GET['success_msg'])) {
|
|
if ($_GET['success_msg'] == 1) {
|
|
$success_msg = $message_discounts_1 ?? 'Created';
|
|
}
|
|
if ($_GET['success_msg'] == 2) {
|
|
$success_msg = $message_discounts_2 ?? 'Updated';
|
|
}
|
|
if ($_GET['success_msg'] == 3) {
|
|
$success_msg = $message_discounts_3 ?? 'Deleted' ;
|
|
}
|
|
}
|
|
|
|
template_header('discounts', 'discounts','view');
|
|
$view = '
|
|
<div class="content-title">
|
|
<div class="title">
|
|
<i class="fa-solid fa-box-open"></i>
|
|
<div class="txt">
|
|
<h2>'.($discounts_h2 ?? 'discounts').' ('.$query_total.')</h2>
|
|
<p>'.($discounts_p ?? '').'</p>
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
if (isset($success_msg)){
|
|
$view .= ' <div class="msg success">
|
|
<i class="fas fa-check-circle"></i>
|
|
<p>'.$success_msg.'</p>
|
|
<i class="fas fa-times"></i>
|
|
</div>';
|
|
}
|
|
|
|
$view .= '
|
|
<div class="content-header responsive-flex-column pad-top-5">
|
|
<a href="index.php?page=discount" class="btn">'.($button_create_discount ?? 'Create discount').'</a>
|
|
</div>
|
|
<div class="content-block">
|
|
<div class="table">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td class="responsive-hidden">'.($discounts_id ?? '#').'</td>
|
|
<td>'.($discounts_code ?? 'Code').'</td>
|
|
<td>'.($discounts_active ?? 'Active').'</td>
|
|
<td class="responsive-hidden">'.($discounts_category ?? 'Categories').'</td>
|
|
<td class="responsive-hidden">'.($discounts_product ?? 'Products').'</td>
|
|
<td>'.($discounts_type ?? 'Type').'</td>
|
|
<td>'.($discounts_value ?? 'Value').'</td>
|
|
<td class="responsive-hidden">'.($discounts_start_date ?? 'Start Date').'</td>
|
|
<td class="responsive-hidden">'.($discounts_end_date ?? 'End Date').'</td>
|
|
<td>'.$general_actions.'</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>';
|
|
if (empty($discounts)){
|
|
$view .= '<tr>
|
|
<td colspan="8" style="text-align:center;">'.($message_no_discounts ?? 'There are no discounts').'</td>
|
|
</tr>';
|
|
}
|
|
else {
|
|
foreach ($discounts as $discount){
|
|
$current_date = strtotime((new DateTime())->format('Y-m-d H:i:s'));
|
|
|
|
$view .= '
|
|
<tr>
|
|
<td class="responsive-hidden">'.$discount['id'].'</td>
|
|
<td>'.$discount['discount_code'].'</td>
|
|
<td>'.(($current_date >= strtotime($discount['start_date']) && $current_date <= strtotime($discount['end_date'])) ? $general_yes : $general_no).'</td>
|
|
<td class="responsive-hidden">'.($discount['category_names'] ? str_replace(',', ', ', $discount['category_names']) : $general_all ?? 'all').'</td>
|
|
<td class="responsive-hidden">'.($discount['product_names'] ? str_replace(',', ', ', $discount['product_names']) : $general_all ?? 'all').'</td>
|
|
<td>'.$discount['discount_type'].'</td>
|
|
<td>'.$discount['discount_value'].'</td>
|
|
<td class="responsive-hidden">'.date('Y-m-d h:ia', strtotime($discount['start_date'])).'</td>
|
|
<td class="responsive-hidden">'.date('Y-m-d h:ia', strtotime($discount['end_date'])).'</td>
|
|
<td><a href="index.php?page=discount&id='.$discount['id'].'" class="btn_link">'.$general_view.'</a></td>
|
|
</tr>';
|
|
}
|
|
|
|
|
|
}
|
|
|
|
$view .= '
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
';
|
|
|
|
$view.='<div class="pagination">';
|
|
if ($pagination_page > 1) {
|
|
$page = $pagination_page-1;
|
|
$view .= '<a href="'.$url.'&p=1">'.$general_first.'</a>';
|
|
$view .= '<a href="'.$url.'&p='.$page.'">'.$general_prev.'</a>';
|
|
}
|
|
$totals = ceil($query_total / $page_rows_discounts) == 0 ? 1 : ceil($query_total / $page_rows_discounts);
|
|
$view .= '<span> '.$general_page.$pagination_page.$general_page_of.$totals.'</span>';
|
|
if ($pagination_page * $page_rows_discounts < $query_total){
|
|
$page = $pagination_page+1;
|
|
$view .= '<a href="'.$url.'&p='.$page.'">'.$general_next.'</a>';
|
|
$view .= '<a href="'.$url.'&p='.$totals.'">'.$general_last.'</a>';
|
|
|
|
}
|
|
$view .= '</div>';
|
|
//OUTPUT
|
|
echo $view;
|
|
|
|
template_footer();
|
|
?>
|