-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (116 loc) · 5.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<head>
<title>Cari Norma Pajak untuk Perhitungan Netto</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.16/css/jquery.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
margin: 0 auto;
}
.markdown-header {
padding: 15px 45px;
}
.markdown-content {
max-width: 980px;
padding: 45px;
}
.datatables-body {
box-sizing: border-box;
min-width: 200px;
margin: 0 auto;
padding: 15px 45px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@media (max-width: 767px) {
.markdown-header {
padding: 15px;
}
.markdown-content {
padding: 15px;
}
.datatables-body {
padding: 5px;
}
}
</style>
</head>
<body>
<div class="markdown-body markdown-header">
<h1>Cari Norma Pajak untuk Perhitungan Netto</h1>
<p><a href="https://github.com/junian/pajak" target="_blank"><i class="fa fa-github" aria-hidden="true"></i> Edit on GitHub</a></p>
</div>
<div class="datatables-body">
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>No</th>
<th>KLU</th>
<th>Uraian KLU</th>
<th>10 Ibukota</th>
<th>Ibukota Lain</th>
<th>Daerah Lain</th>
</tr>
</thead>
<tfoot>
<tr>
<th>No</th>
<th>KLU</th>
<th>Uraian KLU</th>
<th>10 Ibukota</th>
<th>Ibukota Lain</th>
<th>Daerah Lain</th>
</tr>
</tfoot>
</table>
</div>
<article class="markdown-body markdown-content">
<h2>Keterangan</h2>
<p>Norma dalam persen (%) dibagi 3 macam kategori:</p>
<ul>
<li>10 (sepuluh) ibukota propinsi yaitu Medan, Palembang, Jakarta, Bandung, Semarang, Surabaya, Denpasar, Manado, Makassar, dan Pontianak</li>
<li>Ibukota propinsi lainnya</li>
<li>Daerah lainnya</li>
</ul>
<p>Jika menemukan bug, ada data yang salah/tidak lengkap, atau ingin mempercantik UI, silahkan kirim <a href="https://github.com/junian/pajak" target="_blank">Pull Request ke <i class="fa fa-github" aria-hidden="true"></i> GitHub</a>.</p>
<p>Web ini dibuat berdasarkan panduan official <a href="http://www.pajak.go.id/content/norma-penghitungan" target="_blank">dirjen pajak</a>.</p>
<p>Data di-extract dari file <a href="https://www.pajak.go.id/sites/default/files/2019-06/Lampiran%201_PER_17_PJ_2015.pdf" target="_blank">pdf lampiran dirjen pajak no. 17/PJ/2015</a> dengan menggunakan <a href="http://tabula.technology" target="_blank">tabula</a> dan <a href="https://www.npmjs.com/package/csv2json" target="_blank">csv2json</a>.</p>
<h2>Lisensi</h2>
<p>Aplikasi web ini berlisensi <a href="https://github.com/junian/pajak/blob/master/LICENSE" target="_blank">Public Domain</a>.</p>
</article>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.16/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#example').DataTable( {
"ajax": {
"url": "data/norma.json",
"dataSrc": ""
},
"columns": [
{ "data": "no" },
{ "data": "klu" },
{ "data": "uraian" },
{ "data": "ibukota_10" },
{ "data": "ibukota_lain" },
{ "data": "daerah_lain" }
],
responsive: true
} );
} );
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MKQK789F6L"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MKQK789F6L');
</script>
</body>