135 lines
3.3 KiB
PHP
135 lines
3.3 KiB
PHP
<style type="text/css">
|
|
table,
|
|
th,
|
|
tr,
|
|
td {
|
|
text-align: center;
|
|
}
|
|
|
|
.swal2-popup {
|
|
font-family: inherit;
|
|
font-size: 1.2rem;
|
|
}
|
|
</style>
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-info">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">Data Supplier</h3>
|
|
<div class="pull-right">
|
|
<?php
|
|
echo anchor('suplier/post', 'Tambah Data', array('class' => 'btn btn-success'));
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div class="box-body">
|
|
<table id="myTable" class="table table-bordered table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>Nama Supplier</th>
|
|
<th>Alamat </th>
|
|
<th>No. Telp</th>
|
|
<th>E-Mail</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$no = 0;
|
|
foreach ($record as $suplier) { ?>
|
|
<tr>
|
|
<td><?php echo ++$no; ?></td>
|
|
<td><?php echo $suplier->nama_perusahaan ?></td>
|
|
<td><?php echo $suplier->alamat ?></td>
|
|
<td><?php echo $suplier->no_tlp ?></td>
|
|
<td><?php echo $suplier->email ?></td>
|
|
<td>
|
|
<?php
|
|
echo anchor(site_url('suplier/edit/' . $suplier->id_suplier), '<i class="fa fa-pencil-square-o fa-lg"></i> Edit', array('title' => 'edit', 'class' => 'btn btn-sm btn-warning'));
|
|
echo ' ';
|
|
echo anchor(site_url('suplier/hapus/' . $suplier->id_suplier), '<i class="fa fa-trash fa-lg"></i> Hapus', 'title="delete" class="btn btn-sm btn-danger "');
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<script src="<?php echo base_url() ?>assets/app/js/alert.js"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#myTable').DataTable({
|
|
|
|
"dom": '<"top row"<"col-md-4" l ><"col-md-4" B ><"col-md-4" and f>>rt<"bottom row"<"col-md-6" i> <"col-md-6" p>>',
|
|
|
|
buttons: [{
|
|
extend: 'csvHtml5',
|
|
exportOptions: {
|
|
columns: [0, 1, 2, 3, 4, ],
|
|
},
|
|
},
|
|
{
|
|
extend: 'excelHtml5',
|
|
title: 'DATA SUPPLIER',
|
|
exportOptions: {
|
|
columns: [0, 1, 2, 3, 4],
|
|
},
|
|
},
|
|
{
|
|
extend: 'copyHtml5',
|
|
title: 'DATA SUPPLIER',
|
|
exportOptions: {
|
|
columns: [0, 1, 2, 3, 4],
|
|
},
|
|
},
|
|
{
|
|
extend: 'pdfHtml5',
|
|
oriented: 'portrait',
|
|
pageSize: 'legal',
|
|
title: 'DATA SUPPLIER',
|
|
download: 'open',
|
|
exportOptions: {
|
|
columns: [0, 1, 2, 3, 4],
|
|
},
|
|
customize: function (doc) {
|
|
doc.content[1].table.widths = Array(doc.content[1].table.body[0].length +
|
|
1).join('*').split('');
|
|
doc.styles.tableBodyEven.alignment = 'center';
|
|
doc.styles.tableBodyOdd.alignment = 'center';
|
|
},
|
|
},
|
|
{
|
|
extend: 'print',
|
|
oriented: 'portrait',
|
|
pageSize: 'A4',
|
|
title: 'DATA SUPPLIER',
|
|
exportOptions: {
|
|
columns: [0, 1, 2, 3, 4],
|
|
},
|
|
},
|
|
],
|
|
"fnDrawCallback": function () {
|
|
$('.image-link').magnificPopup({
|
|
type: 'image',
|
|
closeOnContentClick: true,
|
|
closeBtnInside: false,
|
|
fixedContentPos: true,
|
|
image: {
|
|
verticalFit: true
|
|
},
|
|
zoom: {
|
|
enabled: true,
|
|
duration: 300 // don't foget to change the duration also in CSS
|
|
},
|
|
});
|
|
}
|
|
});
|
|
});
|
|
</script>
|