|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /home/matalashes/.trash/app.bak.3/Views/admin/pages/custom/report/reportbahanbaku/ |
Upload File : |
<head>
<style>
@page {
margin-left: 1cm;
margin-top: 1cm;
margin-right: 1cm;
margin-bottom: 1cm;
}
body {
line-height: 1em;
}
.center {
text-align: center;
}
.table {
font-size: 12px;
}
.table-border, .table-border th, .table-border tr, .table-border td {
border: 1px solid black;
border-collapse: collapse;
padding: 2px;
font-size: 10px;
}
.table-border thead {
text-align: center;
font-weight: bold;
}
.invoice-table {
width: 100%;
border-collapse: collapse;
}
.invoice-table th, .invoice-table td {
padding: 5px;
border: 1px solid black;
text-align: center;
font-size: 12px;
}
table .total {
text-align: right;
background: #074c9c;
color: #FFFFFF;
}
.invoice-table th {
background-color: #f2f2f2;
}
.invoice-head {
border-bottom: 2px solid #000000;
margin-bottom: 30px;
}
.client {
padding-left: 6px;
border-left: 3px solid #0087C3;
float: left;
}
</style>
</head>
<body>
<div class="row">
<table class="invoice-doc" style="width: 100%;">
<tbody>
<tr>
<td align="left"><h4>Laporan Pemasukan Bahan Baku</h4></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table class="invoice-table">
<thead>
<tr>
<th rowspan="2" style="width: 50px;">No</th>
<th rowspan="2" style="width: 100px;">Tgl Rekam</th>
<th rowspan="1" style="width: 120px;">Jenis Dokumen</th>
<th colspan="4" style="width: 160px;">Dokumen Pabean</th>
<th colspan="2" style="width: 140px;">Bukti Penerimaan</th>
<th rowspan="2" style="width: 80px;">Kode Barang</th>
<th rowspan="2" style="width: 120px;">Nama Barang</th>
<th rowspan="2" style="width: 80px;">Satuan</th>
<th rowspan="2" style="width: 90px;">Jumlah</th>
<th rowspan="2" style="width: 100px;">Mata Uang</th>
<th rowspan="2" style="width: 120px;">Nilai Barang</th>
<th rowspan="2" style="width: 100px;">Gudang</th>
<th rowspan="2" style="width: 160px;">Penerima Subkontrak</th>
<th rowspan="2" style="width: 130px;">Negara Asal BB</th>
</tr>
<tr class="text-center">
<th>BC 2.0/BC 2.4/BC 2.5/BC 2.8</th>
<th>Nomor PIB</th>
<th>Tanggal PIB</th>
<th>Kode HS</th>
<th>Nomor Seri Barang</th>
<th>Nomor NPBD</th>
<th>Tanggal NPBD</th>
</tr>
</thead>
<tbody>
<?php
$i = 1;
foreach ($_data as $d) {
$json = json_decode($d->tkb_mkt_item);
$sum = 0;
?>
<?php
foreach($json as $j){
$o = $j->item;
$q = $j->qty;
$p = $j->seri;
$v = $j->nilai;
$barang = new \App\Models\MasterBarang();
$_barang = $barang->find($o);
?>
<tr>
<td><?= $i ?></td>
<td><?= date("d/m/Y", strtotime($d->created_at ?? '')) ?></td>
<td>BC 2.0</td>
<td><?= $d->tkb_mkt_pibno ?></td>
<td>
<?php if($d->tkb_mkt_pibdate == '0000-00-00' || $d->tkb_mkt_pibdate == NULL) { ?>
-
<?php } else { ?>
<?= date("d/m/Y", strtotime($d->tkb_mkt_pibdate ?? '')) ?>
<?php } ?>
</td>
<td><?= $_barang->mb_kodehs ?></td>
<td><?= $p ?></td>
<td><?= $d->tkb_mkt_npbdno ?></td>
<td>
<?php if($d->tkb_mkt_npbddate == '0000-00-00' || $d->tkb_mkt_npbddate == NULL) { ?>
-
<?php } else { ?>
<?= date("d/m/Y", strtotime($d->tkb_mkt_npbddate ?? '')) ?>
<?php } ?>
</td>
<td><?= $_barang->mb_kode ?></td>
<td><?= $_barang->mb_name ?></td>
<td><?= $_barang->mb_satuan ?></td>
<td class="formatted-number"><?= number_format($q, 0, ',', '.') ?></td>
<td>Rupiah</td>
<td class="formatted-currency">Rp. <?= number_format($v, 0, ',', '.') ?></td>
<td>PT Mahkota Tri Angjaya</td>
<td> </td>
<td><?= $d->tkb_mkt_negara ?></td>
</tr>
<?php
}
?>
<?php
$i++;
}
?>
</tbody>
</table>
</div>
</div>
</body>