Files
shopee-apps/application/views/notused/invoice_print_backup.php
T
2026-06-13 16:02:07 +10:00

167 lines
6.7 KiB
PHP

<html>
<head>
<title>Invoice Print</title>
<link rel="icon" type="image/png" href="<?php echo base_url('')?>assets/images/logoPcmBaru3.png" />
<!-- Web Fonts -->
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/bootstrap/css/bootstrap.css" />
<!-- Invoice Print Style -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/stylesheets/invoice-print.css" />
<style type="text/css">
.f11 {
font-size: 11px;
}
.f12 {
font-size: 12px;
}
.f13 {
font-size: 13px;
}
.f14 {
font-size: 14px;
}
.f15 {
font-size: 15px;
}
</style>
</head>
<body>
<?php if (is_array($service) || is_object($service)) {
$no = 1;
foreach ($service as $row) { ?>
<div class="invoice">
<header class="clearfix">
<div class="row">
<div class="col-sm-6 mt-md">
<h2 class="h3 mt-none mb-sm text-dark text-bold">SERVICE</h2>
<h4 class="h5 m-none text-dark text-bold">#<?= $row['ID_SERVICE'] ?></h4>
</div>
<div class="col-sm-6 text-right mt-md mb-md">
<div class="ib">
<img src="<?php echo base_url('') ?>assets/images/logo.png" height="45" alt="OKLER Themes" />
</div>
<address class="ib mr-xlg f11">
Ruko Mangga Dua Blok : B7 No. 8-9,
<br />
Jl. Jagir Wonokromo No 98, Surabaya - 60244
<br />
Telp : (031) 847-5047,847-8001, WA : 0819-5294-9665
</address>
</div>
</div>
</header>
<div class="bill-info">
<div class="row">
<div class="col-md-6">
<div class="bill-to">
<p class="h5 mb-xs text-dark text-semibold">To:</p>
<address class="f12">
<?= $row['NAMA_PELANGGAN'] ?>
<br />
<?= $row['ALAMAT_PELANGGAN'] ?>
<br />
Telp: <?= $row['TELP_PELANGGAN'] ?>
</address>
</div>
</div>
<div class="col-md-6">
<div class="bill-data text-right">
<p class="mb-none">
<span class="text-dark f12">Service Date:</span>
<span class="value f12"> <?= $row['TGL_SERVICE'] ?></span>
</p>
</div>
</div>
</div>
</div>
<div class="table-responsive">
<table class="table invoice-items">
<thead>
<tr class=" text-dark">
<th id="cell-item" class="text-semibold f14">Model</th>
<th id="cell-desc" class="text-semibold f14">Serial NO</th>
<th id="cell-desc" class="text-semibold f14">Garansi</th>
</tr>
</thead>
<tbody>
<tr>
<td class="f12 text-semibold text-dark"> <?= $row['NAMA_BARANG'] ?></td>
<td class="f12"> <?= $row['NAMA_SNS'] ?></td>
<td class="f12"> <?= $row['STATUS_SERVICE'] ?></td>
</tbody>
</table>
</div>
<div class="table-responsive">
<table class="table invoice-items">
<thead>
<tr class="text-dark">
<th id="cell-desc" class="f14 text-semibold">Keterangan</th>
</tr>
</thead>
<tbody>
<tr>
<td class="f12"> <?= $row['KET_SNS'] ?></td>
</tr>
</tbody>
</table>
</div>
<div class="invoice-summary">
<div class="row">
<div class="col-md-9">
<p class="h5 mb-xs text-dark text-semibold">Note :</p>
<p class="f12">
1. Kami tidak bertanggung jawab atas Program/Software/Data yang terinstall pada Notebook atau PC.
<br />
2. Biaya pembatalan 50% dari Biaya Service.
<br />
3. Garansi Service berlaku 30 hari sejak barang diambil dengan kerusakan yang sama.
<br />
4. Bila terdapat penggantian spare part, maka akan dikonfirmasi sebelumnya.
<br />
5. Kami tidak bertanggung jawab atas barang yang tidak diambil dalam jangka waktu 30 hari setelah service.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<p class="f12">
<br />
<br />
&emsp;&emsp;&emsp;&emsp;(..............................) &emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;(..............................)
<br />
&emsp;&emsp;&emsp;&emsp;&emsp;&emsp; Penerima &emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;Pelanggan
</p>
</div>
</div>
</div>
</div>
<script>
window.print();
</script>
<?php }
} ?>
</body>
</html>