Update Fitur Installation
This commit is contained in:
parent
035def9d33
commit
d365e36dde
@ -19,12 +19,12 @@ class Certificates extends BaseController {
|
|||||||
public function installationIndex() { // Index
|
public function installationIndex() { // Index
|
||||||
return view('certificate_installation_index');
|
return view('certificate_installation_index');
|
||||||
}
|
}
|
||||||
public function getDataIndexInstallation() { // Untuk API Get Data
|
public function getDataIndexMaintenance() {
|
||||||
$userPosId = session()->get('userposid');
|
$userPosId = session()->get('userposid');
|
||||||
$userId = session()->get('userid');
|
$userId = session()->get('userid');
|
||||||
|
|
||||||
$certificateModel = new CertificateModel();
|
$certificateModel = new CertificateModel();
|
||||||
|
|
||||||
// 1. Mulai Query Builder
|
// 1. Mulai Query Builder
|
||||||
$builder = $certificateModel->select('
|
$builder = $certificateModel->select('
|
||||||
certificates.cert_id,
|
certificates.cert_id,
|
||||||
@ -43,7 +43,7 @@ class Certificates extends BaseController {
|
|||||||
')
|
')
|
||||||
->join('activities', 'activities.actid = certificates.actid', 'left')
|
->join('activities', 'activities.actid = certificates.actid', 'left')
|
||||||
->join('users', 'users.userid = certificates.user_id', 'left')
|
->join('users', 'users.userid = certificates.user_id', 'left')
|
||||||
->where('certificates.cert_type', 'BAI');
|
->where('certificates.cert_type', 'IC');;
|
||||||
|
|
||||||
// 2. Filter berdasarkan Role
|
// 2. Filter berdasarkan Role
|
||||||
if (in_array($userPosId, [1, 3, 5])) { // Manager & IT: Tidak perlu filter tambahan (lihat semua)
|
if (in_array($userPosId, [1, 3, 5])) { // Manager & IT: Tidak perlu filter tambahan (lihat semua)
|
||||||
@ -64,31 +64,6 @@ class Certificates extends BaseController {
|
|||||||
|
|
||||||
return $this->response->setJSON($allData);
|
return $this->response->setJSON($allData);
|
||||||
}
|
}
|
||||||
public function createinstallationPreview($certid = null) { // Untuk Preview Sertifikat
|
|
||||||
//Melakukan search data dari database
|
|
||||||
|
|
||||||
if (!$certid) {
|
|
||||||
return $this->response->setStatusCode(400)->setJSON(['error' => 'Certificate ID is required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get certificate data Berdasarkan certid
|
|
||||||
$certificate = [
|
|
||||||
'certid' => 'f353ca91-4fc5-49f2-9b9e-304f83d11914',
|
|
||||||
'certname' => 'Jokoh Calibration Certificate',
|
|
||||||
'productname' => 'Jokoh',
|
|
||||||
'productnumber' => 'SN-2024-001',
|
|
||||||
'issuedate' => '2024-01-15',
|
|
||||||
'expirydate' => '2025-01-15',
|
|
||||||
'vendor' => 'Summit Calibration Lab',
|
|
||||||
'isval' => null
|
|
||||||
];
|
|
||||||
|
|
||||||
if (empty($certificate)) { // JIka Tidak Ada
|
|
||||||
return $this->response->setStatusCode(404)->setJSON(['error' => 'Maintenance certificate not found']);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->previewPdf($certificate, 'installation'); // Preview PDF
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Untuk Sertifikat Maintenance [2]
|
// Untuk Sertifikat Maintenance [2]
|
||||||
@ -725,7 +700,8 @@ class Certificates extends BaseController {
|
|||||||
'metadata_keywords' => $certificate['certtype'] . ' Certificate'
|
'metadata_keywords' => $certificate['certtype'] . ' Certificate'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
public function view($uuid) {
|
|
||||||
|
public function view($uuid) { // Untuk lihat Sertifikat
|
||||||
try {
|
try {
|
||||||
$certificateModel = new CertificateModel();
|
$certificateModel = new CertificateModel();
|
||||||
|
|
||||||
|
|||||||
@ -395,7 +395,7 @@ $(function () {
|
|||||||
'<?= base_url('certificates/api/showmaintenance') ?>',
|
'<?= base_url('certificates/api/showmaintenance') ?>',
|
||||||
{ certid },
|
{ certid },
|
||||||
function (data) {
|
function (data) {
|
||||||
console.log(data);
|
// console.log(data);
|
||||||
// Populate modal with data
|
// Populate modal with data
|
||||||
$('#modalCertName').text(data.cert_name || '-');
|
$('#modalCertName').text(data.cert_name || '-');
|
||||||
$('#modalCertNumber').text(data.cert_number || '-');
|
$('#modalCertNumber').text(data.cert_number || '-');
|
||||||
|
|||||||
@ -2,14 +2,15 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Maintenance Installation - <?= $certificate['certname'] ?></title>
|
<title><?= $certificate['certname'] ?></title>
|
||||||
<style>
|
<style>
|
||||||
@page {
|
@page {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
font-family: Arial;
|
/* font-family: Arial; */
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
/* font-size: 12px; */
|
/* font-size: 12px; */
|
||||||
@ -51,8 +52,8 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-top: 230px;
|
margin-top: 235px;
|
||||||
margin-bottom: 25px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
.site-name {
|
.site-name {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -60,7 +61,8 @@
|
|||||||
}
|
}
|
||||||
.detail-information {
|
.detail-information {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 137px;
|
/* margin-bottom: 137px; */
|
||||||
|
margin-bottom: 26px;
|
||||||
}
|
}
|
||||||
h4 {
|
h4 {
|
||||||
margin :0;
|
margin :0;
|
||||||
@ -73,7 +75,7 @@
|
|||||||
.signature-table {
|
.signature-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 23px;
|
||||||
}
|
}
|
||||||
.signature-table td {
|
.signature-table td {
|
||||||
width: 50%; /* Membagi dua sisi sama rata */
|
width: 50%; /* Membagi dua sisi sama rata */
|
||||||
@ -97,87 +99,93 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="bg-container">
|
<!-- Untuk DEV -->
|
||||||
|
<!-- <div class="bg-container">
|
||||||
<img src="<?=base_url();?>/assets/images/background_certificate/maintenance.jpeg">
|
<img src="<?=base_url();?>/assets/images/background_certificate/maintenance.jpeg">
|
||||||
|
</div> -->
|
||||||
|
|
||||||
|
<!-- Untuk PROD -->
|
||||||
|
<div class="bg-container">
|
||||||
|
<?php $bgPath = FCPATH . 'assets/images/background_certificate/maintenance.jpeg'; ?>
|
||||||
|
<img src="<?php echo($bgPath) ?>">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="instument-name">
|
<div class="instument-name">
|
||||||
<h1> <<Nama Alat>> </h1>
|
<h1><?= $certificate['productname'] ?></h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="site-name">
|
<div class="site-name">
|
||||||
<h1> at <<Nama Rumah Sakit / Laboratorium - Kota>> </h1>
|
<h1> at <?= $certificate['sitename'] ?> </h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="detail-information">
|
<div class="detail-information">
|
||||||
<h4>Serial Number: <<Serial Number>></h4>
|
<h4>Serial Number: <?= $certificate['productnumber'] ?></h4>
|
||||||
|
|
||||||
<h4>has completed through a series of <<Jenis Sertifikat>></h4>
|
<h4>has completed through a series of <?= $certificate['certtype'] ?></h4>
|
||||||
<h4>and the final result:</h4>
|
<h4>and the final result:</h4>
|
||||||
<h2>PASSED</h2>
|
<h2>PASSED</h2>
|
||||||
<h4>Date of <<Jenis Sertifikat>> and Inspection: <<Tanggal Terbit>></h4>
|
<h4>Date of Instrument Maintenance and Inspection: <?= $certificate['issueddate'] ?></h4>
|
||||||
<h4><<Valid>> <<Tanggal Berakhir>></h4>
|
<!-- <h4>Valid until <?= $certificate['expireddate'] ?></h4> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="signature-table">
|
<table class="signature-table">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
<img src="<?= $certificate['qrcode'] ?>">
|
||||||
|
</td>
|
||||||
|
<!-- <td>
|
||||||
<span class="name">Adhitya Pranata Putra</span>
|
<span class="name">Adhitya Pranata Putra</span>
|
||||||
<span class="position">Technical Support Manager</span>
|
<span class="position">Technical Support Manager</span>
|
||||||
</td>
|
</td> -->
|
||||||
|
|
||||||
<td>
|
<!-- <td>
|
||||||
<span class="name"><<Nama TSO>></span>
|
<span class="name"></span>
|
||||||
<span class="position"><<Jabatan>></span>
|
<span class="position"></span>
|
||||||
</td>
|
</td> -->
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div class="fo-wrapper">
|
<div class="fo-wrapper">
|
||||||
<p><<FO>></p>
|
<p>FO.IV.01/20.00/2020</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Untuk Tanda Export PDF atau tidak -->
|
||||||
|
<?php if (!isset($certificate['exportToPDF'])) : ?>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="instument-name">
|
<div class="instument-name">
|
||||||
<h1> <<Nama Alat>> </h1>
|
<h1><?= $certificate['productname'] ?></h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="site-name">
|
<div class="site-name">
|
||||||
<h1> at <<Nama Rumah Sakit / Laboratorium - Kota>> </h1>
|
<h1> at <?= $certificate['sitename'] ?> </h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="detail-information">
|
<div class="detail-information">
|
||||||
<h4>Serial Number: <<Serial Number>></h4>
|
<h4>Serial Number: <?= $certificate['productnumber'] ?></h4>
|
||||||
|
|
||||||
<h4>has completed through a series of <<Jenis Sertifikat>></h4>
|
<h4>has completed through a series of <?= $certificate['certtype'] ?></h4>
|
||||||
<h4>and the final result:</h4>
|
<h4>and the final result:</h4>
|
||||||
<h2>PASSED</h2>
|
<h2>PASSED</h2>
|
||||||
<h4>Date of <<Jenis Sertifikat>> and Inspection: <<Tanggal Terbit>></h4>
|
<h4>Date of Instrument Maintenance and Inspection: <?= $certificate['issueddate'] ?></h4>
|
||||||
<h4><<Valid>> <<Tanggal Berakhir>></h4>
|
<!-- <h4>Valid until <?= $certificate['expireddate'] ?></h4> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="signature-table">
|
<table class="signature-table">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<span class="name">Adhitya Pranata Putra</span>
|
<img src="<?= $certificate['qrcode'] ?>">
|
||||||
<span class="position">Technical Support Manager</span>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<span class="name"><<Nama TSO>></span>
|
|
||||||
<span class="position"><<Jabatan>></span>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div class="fo-wrapper">
|
<div class="fo-wrapper">
|
||||||
<p><<FO>></p>
|
<p>FO.IV.01/20.00/2020</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<?php endif ?>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -40,8 +40,8 @@
|
|||||||
|
|
||||||
<li> <a class="has-arrow waves-effect waves-dark" href='javascript:void(0)' aria-expanded="false"> <i class="fa-solid fa-certificate"></i><span class='hide-menu'>Certificates</span> </a>
|
<li> <a class="has-arrow waves-effect waves-dark" href='javascript:void(0)' aria-expanded="false"> <i class="fa-solid fa-certificate"></i><span class='hide-menu'>Certificates</span> </a>
|
||||||
<ul aria-expanded="false" class="collapse">
|
<ul aria-expanded="false" class="collapse">
|
||||||
<li><a href="<?=base_url();?>certificates/maintenance">Maintenance</a></li>
|
|
||||||
<li><a href="<?=base_url();?>certificates/installation">Installation</a></li>
|
<li><a href="<?=base_url();?>certificates/installation">Installation</a></li>
|
||||||
|
<li><a href="<?=base_url();?>certificates/maintenance">Maintenance</a></li>
|
||||||
<!-- <li><a href="<?=base_url();?>certificates/training">Training</a></li> -->
|
<!-- <li><a href="<?=base_url();?>certificates/training">Training</a></li> -->
|
||||||
<!-- <li><a href="<?=base_url();?>certificates/calibration">Callibration</a></li> -->
|
<!-- <li><a href="<?=base_url();?>certificates/calibration">Callibration</a></li> -->
|
||||||
<!-- <li><a href="<?=base_url();?>certificates/official-report">Official Report</a></li> -->
|
<!-- <li><a href="<?=base_url();?>certificates/official-report">Official Report</a></li> -->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user