Files
LAB_LINGKUNGAN/FOLDER/Permintaan Layanan/page/permintaan_layanan.html
2025-04-24 14:39:28 +07:00

654 lines
23 KiB
HTML

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Permintaan Layanan - Lab Lingkungan</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.wizard-steps {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
}
.step {
text-align: center;
flex: 1;
position: relative;
}
.step.active {
color: #2196F3;
font-weight: bold;
}
.step:not(:last-child):after {
content: '';
position: absolute;
top: 50%;
right: 0;
width: 100%;
height: 2px;
background: #ddd;
z-index: 1;
}
.step-number {
width: 30px;
height: 30px;
background: #fff;
border: 2px solid #ddd;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 10px;
position: relative;
z-index: 2;
}
.step.active .step-number {
background: #2196F3;
border-color: #2196F3;
color: white;
}
.form-section {
display: none;
margin-bottom: 30px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 4px;
}
.form-section.active {
display: block;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"],
input[type="date"],
input[type="number"],
select,
textarea {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}
.template-selection {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 15px;
margin-bottom: 20px;
}
.template-card {
border: 1px solid #ddd;
border-radius: 4px;
padding: 15px;
cursor: pointer;
transition: all 0.3s ease;
}
.template-card:hover {
border-color: #2196F3;
background: #f8f9fa;
}
.template-card.selected {
border-color: #2196F3;
background: #e3f2fd;
}
.parameter-list {
max-height: 400px;
overflow-y: auto;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
.parameter-item {
display: flex;
align-items: center;
padding: 10px;
border-bottom: 1px solid #eee;
}
.parameter-item:last-child {
border-bottom: none;
}
.price-summary {
background: #f8f9fa;
padding: 20px;
border-radius: 4px;
margin-top: 20px;
}
.navigation-buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
padding: 20px;
background: #f8f9fa;
border-radius: 4px;
}
.btn {
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
}
.btn-primary {
background: #2196F3;
color: white;
}
.btn-secondary {
background: #6c757d;
color: white;
}
.btn:hover {
opacity: 0.9;
}
.alert {
padding: 15px;
margin-bottom: 20px;
border-radius: 4px;
}
.alert-info {
background: #e3f2fd;
border: 1px solid #2196F3;
color: #0d47a1;
}
.parameter-category {
margin-bottom: 20px;
padding: 15px;
background: #f8f9fa;
border-radius: 4px;
}
.parameter-item {
display: grid;
grid-template-columns: auto 1fr auto auto;
gap: 15px;
align-items: center;
padding: 12px;
border-bottom: 1px solid #eee;
transition: background-color 0.2s;
}
.parameter-item:hover {
background-color: #f8f9fa;
}
.parameter-info {
display: flex;
flex-direction: column;
}
.parameter-name {
font-weight: bold;
}
.parameter-method {
font-size: 12px;
color: #666;
}
.parameter-price {
font-weight: bold;
color: #2196F3;
}
.selected-material {
margin-bottom: 15px;
padding: 10px;
background: #e3f2fd;
border-radius: 4px;
font-weight: bold;
}
.category-selection {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 15px;
margin-bottom: 20px;
}
.category-card {
border: 1px solid #ddd;
border-radius: 4px;
padding: 15px;
cursor: pointer;
transition: all 0.3s ease;
}
.category-card:hover {
border-color: #2196F3;
background: #f8f9fa;
}
.category-card.selected {
border-color: #2196F3;
background: #e3f2fd;
}
.selected-bidang,
.selected-category {
margin-bottom: 15px;
padding: 10px;
background: #e3f2fd;
border-radius: 4px;
font-weight: bold;
}
.parameter-group {
margin-bottom: 20px;
padding: 15px;
background: #f8f9fa;
border-radius: 4px;
}
.parameter-group h4 {
margin-bottom: 10px;
color: #2196F3;
}
</style>
</head>
<body>
<div class="container">
<div class="wizard-steps">
<div class="step active">
<div class="step-number">1</div>
<div class="step-title">Informasi Dasar</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-title">Pilih Bidang Pengujian</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-title">Pilih Kategori</div>
</div>
<div class="step">
<div class="step-number">4</div>
<div class="step-title">Konfirmasi</div>
</div>
</div>
<form id="serviceRequestForm">
<!-- Step 1: Informasi Dasar -->
<div class="form-section active" id="step1">
<h3>Informasi Permintaan</h3>
<div class="form-group">
<label for="requestType">Jenis Layanan</label>
<select id="requestType" name="requestType" required>
<option value="">Pilih Jenis Layanan</option>
<option value="sampling_analysis">Sampling & Analisis</option>
<option value="analysis_only">Analisis Saja</option>
</select>
</div>
<div class="form-group">
<label for="samplingDate">Tanggal Sampling</label>
<input type="date" id="samplingDate" name="samplingDate">
</div>
<div class="form-group">
<label for="samplingLocation">Lokasi Sampling</label>
<textarea id="samplingLocation" name="samplingLocation" rows="3"></textarea>
</div>
<div class="form-group">
<label for="gpsCoordinates">Koordinat GPS</label>
<input type="text" id="gpsCoordinates" name="gpsCoordinates" placeholder="Contoh: -6.123456, 106.789012">
</div>
</div>
<!-- Step 2: Pilih Bidang Pengujian -->
<div class="form-section" id="step2">
<h3>Pilih Bidang Pengujian</h3>
<div class="template-selection">
<div class="template-card" data-type="fisika">
<h4>FISIKA</h4>
<p>Pengujian parameter fisika</p>
<small>Udara Lingkungan Kerja</small>
</div>
<div class="template-card" data-type="kimia">
<h4>KIMIA</h4>
<p>Pengujian parameter kimia</p>
<small>Air Minum & Limbah Domestik</small>
</div>
<div class="template-card" data-type="biologi">
<h4>BIOLOGI</h4>
<p>Pengujian parameter biologi</p>
<small>Air Minum, Limbah & IPAL</small>
</div>
</div>
</div>
<!-- Step 3: Pilih Kategori -->
<div class="form-section" id="step3">
<h3>Pilih Kategori Pengujian</h3>
<div class="selected-bidang"></div>
<div class="category-selection">
<!-- Categories will be loaded dynamically -->
</div>
</div>
<!-- Step 4: Parameter -->
<div class="form-section" id="step4">
<h3>Pilih Parameter Analisis</h3>
<div class="selected-category"></div>
<div class="parameter-list">
<!-- Parameters will be loaded dynamically -->
</div>
</div>
<div class="price-summary">
<h4>Ringkasan Biaya</h4>
<p>Jumlah Parameter: <span id="parameterCount">0</span></p>
<p>Subtotal: <span id="subtotal">Rp 0</span></p>
<p>PPN (11%): <span id="tax">Rp 0</span></p>
<p><strong>Total: <span id="total">Rp 0</span></strong></p>
</div>
<div class="alert alert-info">
<p>Setelah permintaan disubmit, tim kami akan memproses dan mengirimkan quotation dalam 1x24 jam kerja.</p>
</div>
<div class="navigation-buttons">
<button type="button" class="btn btn-secondary" id="prevBtn">Sebelumnya</button>
<button type="button" class="btn btn-primary" id="nextBtn">Selanjutnya</button>
<button type="submit" class="btn btn-primary" id="submitBtn" style="display: none;">Kirim Permintaan</button>
</div>
</form>
</div>
<script>
// Basic JavaScript for form navigation
let currentStep = 1;
const totalSteps = 4;
function showStep(step) {
document.querySelectorAll('.form-section').forEach(section => {
section.classList.remove('active');
});
document.querySelectorAll('.step').forEach((s, index) => {
if (index + 1 <= step) {
s.classList.add('active');
} else {
s.classList.remove('active');
}
});
document.getElementById(`step${step}`).classList.add('active');
// Show/hide buttons
if (step === 1) {
document.getElementById('prevBtn').style.display = 'none';
} else {
document.getElementById('prevBtn').style.display = 'block';
}
if (step === totalSteps) {
document.getElementById('nextBtn').style.display = 'none';
document.getElementById('submitBtn').style.display = 'block';
} else {
document.getElementById('nextBtn').style.display = 'block';
document.getElementById('submitBtn').style.display = 'none';
}
}
document.getElementById('nextBtn').addEventListener('click', () => {
if (currentStep < totalSteps) {
currentStep++;
showStep(currentStep);
}
});
document.getElementById('prevBtn').addEventListener('click', () => {
if (currentStep > 1) {
currentStep--;
showStep(currentStep);
}
});
let selectedBidang = null;
let selectedCategory = null;
let selectedParameters = new Set();
// Handle bidang selection
document.querySelectorAll('.template-card').forEach(card => {
card.addEventListener('click', () => {
document.querySelectorAll('.template-card').forEach(c => c.classList.remove('selected'));
card.classList.add('selected');
selectedBidang = card.dataset.type;
loadCategories(selectedBidang);
});
});
function loadCategories(bidangType) {
const bidang = testingParameters[bidangType];
if (!bidang) return;
// Show selected bidang
const selectedBidangDiv = document.querySelector('.selected-bidang');
selectedBidangDiv.textContent = `Bidang Pengujian: ${bidang.name}`;
// Load categories
const categorySelection = document.querySelector('.category-selection');
categorySelection.innerHTML = bidang.categories.map(category => `
<div class="category-card" data-category="${category.name}">
<h4>${category.name}</h4>
<p>${category.parameters.length} Parameter Tersedia</p>
</div>
`).join('');
// Add event listeners to category cards
categorySelection.querySelectorAll('.category-card').forEach(card => {
card.addEventListener('click', () => {
document.querySelectorAll('.category-card').forEach(c => c.classList.remove('selected'));
card.classList.add('selected');
selectedCategory = card.dataset.category;
loadParameters(selectedBidang, selectedCategory);
});
});
}
function loadParameters(bidangType, categoryName) {
const bidang = testingParameters[bidangType];
const category = bidang.categories.find(c => c.name === categoryName);
if (!category) return;
// Show selected category
const selectedCategoryDiv = document.querySelector('.selected-category');
selectedCategoryDiv.textContent = `Kategori: ${category.name}`;
// Load parameters
const parameterList = document.querySelector('.parameter-list');
parameterList.innerHTML = category.parameters.map(param => `
<div class="parameter-item">
<input type="checkbox" id="${param.id}" name="parameters[]" value="${param.id}"
${selectedParameters.has(param.id) ? 'checked' : ''}>
<div class="parameter-info">
<span class="parameter-name">${param.name}</span>
<span class="parameter-method">${param.method}</span>
</div>
<span class="parameter-price">Rp ${param.price.toLocaleString()}</span>
</div>
`).join('');
// Add event listeners to checkboxes
parameterList.querySelectorAll('input[type="checkbox"]').forEach(checkbox => {
checkbox.addEventListener('change', () => {
if (checkbox.checked) {
selectedParameters.add(checkbox.value);
} else {
selectedParameters.delete(checkbox.value);
}
updatePriceSummary();
});
});
}
function updatePriceSummary() {
let subtotal = 0;
selectedParameters.forEach(paramId => {
const bidang = testingParameters[selectedBidang];
const category = bidang.categories.find(c => c.name === selectedCategory);
const parameter = category.parameters.find(p => p.id === paramId);
if (parameter) {
subtotal += parameter.price;
}
});
const tax = subtotal * 0.11;
const total = subtotal + tax;
document.getElementById('parameterCount').textContent = selectedParameters.size;
document.getElementById('subtotal').textContent = `Rp ${subtotal.toLocaleString()}`;
document.getElementById('tax').textContent = `Rp ${tax.toLocaleString()}`;
document.getElementById('total').textContent = `Rp ${total.toLocaleString()}`;
}
// Initialize form
showStep(1);
const testingParameters = {
// FISIKA
fisika: {
name: "FISIKA",
categories: [
{
name: "Udara Lingkungan Kerja",
parameters: [
{ id: 'debu_total', name: 'Debu Total', method: 'SNI 16-7058-2004', price: 150000 },
{ id: 'intensitas_pencahayaan', name: 'Intensitas Pencahayaan', method: 'SNI 7062:2019', price: 100000 },
{ id: 'tekanan', name: 'Tekanan', method: 'Direct Reading', price: 100000 },
{ id: 'iklim_kerja_suhu', name: 'Iklim Kerja (suhu)', method: 'Direct Reading', price: 100000 },
{ id: 'iklim_kerja_kelembaban', name: 'Iklim Kerja (kelembaban)', method: 'Direct Reading', price: 100000 },
{ id: 'intensitas_kebisingan', name: 'Intensitas Kebisingan', method: 'SNI 7231:2019', price: 150000 },
{ id: 'kebisingan_personal', name: 'Kebisingan Personal', method: 'SNI/APHA', price: 150000 }
]
}
]
},
// KIMIA
kimia: {
name: "KIMIA",
categories: [
{
name: "Air Minum, Hygiene, Sanitasi",
parameters: [
{ id: 'suhu', name: 'Suhu', method: 'SNI/APHA', price: 50000 },
{ id: 'tds', name: 'TDS', method: 'SNI/APHA', price: 75000 },
{ id: 'kekeruhan', name: 'Kekeruhan', method: 'SNI/APHA', price: 75000 },
{ id: 'warna', name: 'Warna', method: 'SNI/APHA', price: 75000 },
{ id: 'bau', name: 'Bau', method: 'SNI/APHA', price: 50000 },
{ id: 'ph', name: 'pH', method: 'SNI/APHA', price: 75000 },
{ id: 'nitrat', name: 'Nitrat (NO3 terlarut)', method: 'SNI/APHA', price: 150000 },
{ id: 'nitrit', name: 'Nitrit (NO2 terlarut)', method: 'SNI/APHA', price: 150000 },
{ id: 'kromium', name: 'Kromium Valensi 6 (CR6+ terlarut)', method: 'SNI/APHA', price: 200000 },
{ id: 'besi', name: 'Besi (Fe Terlarut)', method: 'SNI/APHA', price: 150000 },
{ id: 'mangan', name: 'Mangan (Mn Terlarut)', method: 'SNI/APHA', price: 150000 },
{ id: 'sisa_klor', name: 'Sisa Klor (terlarut)', method: 'SNI/APHA', price: 150000 },
{ id: 'arsen', name: 'Arsen (AS terlarut)', method: 'SNI/APHA', price: 200000 },
{ id: 'kadmium', name: 'Kadmium (Cd) terlarut', method: 'SNI/APHA', price: 200000 },
{ id: 'timbal', name: 'Timbal (Pb terlarut)', method: 'SNI/APHA', price: 200000 },
{ id: 'fluoride', name: 'Fluoride (F) Terlarut', method: 'SNI/APHA', price: 200000 },
{ id: 'aluminium', name: 'Aluminium (Al) Terlarut', method: 'SNI/APHA', price: 200000 }
]
},
{
name: "Limbah Domestik",
parameters: [
{ id: 'ph_limbah', name: 'pH', method: 'SNI-6989.11-2019', price: 75000 },
{ id: 'bod', name: 'BOD', method: 'APHA 5210 B-2017', price: 200000 },
{ id: 'cod', name: 'COD', method: 'APHA 522 0.C-2017', price: 200000 },
{ id: 'tss', name: 'TSS', method: 'SNI 06-6989.3-2004', price: 150000 },
{ id: 'minyak_lemak', name: 'Minyak & Lemak', method: 'SNI-6989.10-2011', price: 200000 },
{ id: 'amoniak', name: 'Amoniak', method: 'SNI 06-6989.30-2005', price: 150000 },
{ id: 'debit', name: 'Debit', method: 'SNI', price: 100000 }
]
}
]
},
// BIOLOGI
biologi: {
name: "BIOLOGI",
categories: [
{
name: "Air Minum, Hygiene, Sanitasi",
parameters: [
{ id: 'ecoli', name: 'E. Coli', method: 'SNI/APHA', price: 200000 },
{ id: 'total_coliform', name: 'Total Coliform', method: 'SNI/APHA', price: 200000 }
]
},
{
name: "Limbah Domestik",
parameters: [
{ id: 'total_coliform_limbah', name: 'Total Coliform', method: 'SNI', price: 200000 }
]
},
{
name: "IPAL OUTLET",
parameters: [
{ id: 'total_coliform_ipal', name: 'Total Coliform', method: 'APHA 23 TAHUN 2017', price: 200000 }
]
}
]
}
};
</script>
</body>
</html>