197 lines
7.3 KiB
PHP
197 lines
7.3 KiB
PHP
<?php
|
|
defined(page_security_key) or exit;
|
|
|
|
$page = 'products_configurations';
|
|
//Check if allowed
|
|
if (isAllowed($page,$_SESSION['profile'],$_SESSION['permission'],'R') === 0){
|
|
header('location: index.php');
|
|
exit;
|
|
}
|
|
//PAGE Security
|
|
$update_allowed = isAllowed($page ,$_SESSION['profile'],$_SESSION['permission'],'U');
|
|
$delete_allowed = isAllowed($page ,$_SESSION['profile'],$_SESSION['permission'],'D');
|
|
$create_allowed = isAllowed($page ,$_SESSION['profile'],$_SESSION['permission'],'C');
|
|
|
|
// Default input product values
|
|
$products_configurations = [
|
|
'rowID' => '',
|
|
'productrowid' => '',
|
|
'status' => '',
|
|
'version' => '',
|
|
'config' => '',
|
|
'created' => '',
|
|
'createdby' => $_SESSION['username'],
|
|
'measurement' => '',
|
|
];
|
|
|
|
//productrowid is required by api
|
|
$productrowid = $_GET['productrowid'] ?? '';
|
|
|
|
if (isset($_GET['rowID'])) {
|
|
// ID param exists, edit an existing product
|
|
//CALL TO API
|
|
$api_url = '/v2/products_configurations/rowID='.$_GET['rowID'].'&productrowid='.$productrowid;
|
|
$responses = ioServer($api_url,'');
|
|
|
|
//Decode Payload
|
|
if (!empty($responses)){$responses = json_decode($responses,true);}else{$responses = null;}
|
|
|
|
$products_configurations = json_decode(json_encode($responses[0]), true);
|
|
|
|
|
|
if ($update_allowed === 1){
|
|
if (isset($_POST['submit'])) {
|
|
|
|
//GET ALL POST DATA
|
|
$payload = json_encode($_POST, JSON_UNESCAPED_UNICODE);
|
|
//API call
|
|
$responses = ioServer('/v2/products_configurations', $payload);
|
|
if ($responses === 'NOK'){
|
|
|
|
} else {
|
|
header('Location: index.php?page=product&rowID='.$productrowid.'&success_msg=2');
|
|
exit;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($delete_allowed === 1){
|
|
if (isset($_POST['delete'])) {
|
|
//GET ALL POST DATA
|
|
$payload = json_encode($_POST, JSON_UNESCAPED_UNICODE);
|
|
//API call
|
|
$responses = ioServer('/v2/products_configurations', $payload);
|
|
if ($responses === 'NOK'){
|
|
|
|
} else {
|
|
// Redirect and delete product
|
|
header('Location: index.php?page=product&rowID='.$productrowid.'&success_msg=3');
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
|
|
} else {
|
|
// Create a new product
|
|
if (isset($_POST['submit']) && $create_allowed === 1) {
|
|
|
|
//GET ALL POST DATA
|
|
$data = json_encode($_POST , JSON_UNESCAPED_UNICODE);
|
|
//Secure data
|
|
$payload = generate_payload($data);
|
|
//API call
|
|
$responses = ioServer('/v2/products_configurations', $payload);
|
|
if ($responses === 'NOK'){
|
|
|
|
}
|
|
else {
|
|
header('Location: index.php?page=product&rowID='.$productrowid.'&success_msg=1');
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
|
|
template_header('Products configurations', 'products configurations', 'manage');
|
|
|
|
$view ='
|
|
<form action="" method="post" enctype="multipart/form-data">
|
|
<div class="content-title responsive-flex-wrap responsive-pad-bot-3">
|
|
<h2 class="responsive-width-100">'.$product_version_version.'</h2>
|
|
<a href="index.php?page=product&rowID='.$productrowid.'" class="btn alt mar-right-2">'.$button_cancel.'</a>
|
|
';
|
|
|
|
if ($delete_allowed === 1){
|
|
$view .= '<input type="submit" name="delete" value="Delete" class="btn red mar-right-2" onclick="return confirm(\'Are you sure you want to delete this product?\')">';
|
|
}
|
|
if ($update_allowed === 1){
|
|
$view .= '<input type="submit" name="submit" value="Save" class="btn">';
|
|
}
|
|
|
|
$view .= '</div>';
|
|
|
|
$view .= '<div class="tabs">
|
|
<a href="#" class="active">'.$tab1.'</a>
|
|
<a href="#">'.$tab3.'</a>
|
|
</div>
|
|
';
|
|
|
|
$view .= '<div class="content-block tab-content active">
|
|
<div class="form responsive-width-100">
|
|
<label for="status">'.$product_status.'</label>
|
|
<select id="status" name="status">
|
|
<option value="1" '.($products_configurations['status']==1?' selected':'').'>'.$prod_status_1 .'</option>
|
|
<option value="0" '.($products_configurations['status']==0?' selected':'').'>'.$prod_status_0 .'</option>
|
|
</select>
|
|
<label for=""><i class="required">*</i>'.$product_version_version.'</label>
|
|
<input id="name" type="text" name="version" placeholder="'.$product_version_version.'" value="'.$products_configurations['version'].'" required>
|
|
|
|
';
|
|
//VIEW FOR PRODUCT CONFIGURATION
|
|
if (isset($_GET['rowID']) && $_GET['rowID'] !=''){
|
|
|
|
$view .= '
|
|
<label for="">'.($product_version_config ?? 'Config').'</label>
|
|
<div class="table">
|
|
<textarea id="config" name="config" placeholder="'.($product_version_config ?? 'Config').'">'.$products_configurations['config'].'</textarea>
|
|
</table>
|
|
</div>';
|
|
|
|
}
|
|
|
|
if (isset($_GET['rowID']) && $_GET['rowID'] !='' && !empty($products_configurations['measurement'])){
|
|
$measurements = json_decode($products_configurations['measurement'],true);
|
|
|
|
$view .= '
|
|
<label for="">'.$product_version_measurement.'</label>
|
|
<div class="table">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td>Test</td>
|
|
<td>N</td>
|
|
<td>Average</td>
|
|
<td>Median</td>
|
|
<td>STdev</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
';
|
|
foreach ($measurements as $name => $measurement){
|
|
$view .='
|
|
<tr>
|
|
<td>'.$name.'</td>
|
|
<td>'.$measurement['n'].'</td>
|
|
<td>'.$measurement['average'].'</td>
|
|
<td>'.$measurement['median'].'</td>
|
|
<td>'.$measurement['stdev'].'</td>
|
|
</tr>
|
|
';
|
|
}
|
|
|
|
|
|
$view .= '</tbody>
|
|
</table>
|
|
</div>';
|
|
|
|
}
|
|
$view .= '
|
|
<input type="hidden" name="rowID" value="'.$products_configurations['rowID'].'">
|
|
<input type="hidden" name="productrowid" value="'.$productrowid.'">
|
|
</div>
|
|
</div>';
|
|
|
|
$view .= '<div class="content-block tab-content">
|
|
<div class="form responsive-width-100">
|
|
<label for="productcode">'.$general_created.'</label>
|
|
<input id="name" type="text" name="" placeholder="'.$general_created.'" value="'.$products_configurations['created'].'" readonly>
|
|
<label for="productcode">'.$general_createdby.'</label>
|
|
<input id="name" type="text" name="" placeholder="'.$general_createdby.'" value="'.$products_configurations['createdby'].'" readonly>
|
|
</div>
|
|
</div>';
|
|
$view .= '</form>';
|
|
|
|
//Output
|
|
echo $view;
|
|
template_footer()
|
|
?>
|