|
|
|
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|
|
|
import Highcharts from 'highcharts'
|
|
|
|
import HighchartsReact from 'highcharts-react-official'
|
|
|
|
import { Col, Row } from 'reactstrap'
|
|
|
|
import { format_angka } from '../util'
|
|
|
|
import jquery from 'jquery'
|
|
|
|
|
|
|
|
import { Skeleton } from 'primereact/skeleton'
|
|
|
|
import collect from 'collect.js'
|
|
|
|
|
|
|
|
import { Sidebar } from 'primereact/sidebar'
|
|
|
|
import '/node_modules/primeflex/primeflex.css'
|
|
|
|
import { MantineReactTable, useMantineReactTable } from 'mantine-react-table'
|
|
|
|
import { Text } from '@mantine/core'
|
|
|
|
|
|
|
|
import { QueryClient, QueryClientProvider, useInfiniteQuery } from '@tanstack/react-query'
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
var relativeTime = require('dayjs/plugin/relativeTime')
|
|
|
|
var customParseFormat = require('dayjs/plugin/customParseFormat')
|
|
|
|
const fetchSize = 101
|
|
|
|
|
|
|
|
const PayComp = ({ dataSend }) => {
|
|
|
|
const base_url = '/engineN/'
|
|
|
|
|
|
|
|
const refChart = useRef(null)
|
|
|
|
const refChart1 = useRef(null)
|
|
|
|
const refChart2 = useRef(null)
|
|
|
|
const [dataC, setDataC] = useState(null)
|
|
|
|
const [dataMin1, setDataMin1] = useState(null)
|
|
|
|
const [dataMin2, setDataMin2] = useState(null)
|
|
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
|
|
|
|
const [visibleSidebar, setVisibleSidebar] = useState(false)
|
|
|
|
const [query, setQuery] = useState(null)
|
|
|
|
const [tahunBulan, setTahunBulan] = useState(null)
|
|
|
|
|
|
|
|
const currentMonth = '<?=currentMonth()?>'
|
|
|
|
const currentYear = '<?=currentYear()?>'
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setLoading(true)
|
|
|
|
jquery.get({
|
|
|
|
url: base_url + 'kewilayahan/kytp/sebaranPayComp',
|
|
|
|
dataType: 'json',
|
|
|
|
type: 'POST',
|
|
|
|
data: {
|
|
|
|
...dataSend,
|
|
|
|
tahun: currentYear,
|
|
|
|
bulan: currentMonth
|
|
|
|
},
|
|
|
|
success: (data) => {
|
|
|
|
setDataC(data.dataC)
|
|
|
|
setDataMin1(data.dataMin1)
|
|
|
|
setDataMin2(data.dataMin2)
|
|
|
|
setLoading(false)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}, [dataSend])
|
|
|
|
|
|
|
|
const optionsChart = (data, title, type) => {
|
|
|
|
const total_wp = collect(data).sum('y')
|
|
|
|
return {
|
|
|
|
chart: {
|
|
|
|
plotBackgroundColor: null,
|
|
|
|
plotBorderWidth: null,
|
|
|
|
plotShadow: false,
|
|
|
|
type: 'pie',
|
|
|
|
zoomType: 'xy',
|
|
|
|
height: '300'
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
text: title,
|
|
|
|
style: { fontSize: '10px' }
|
|
|
|
},
|
|
|
|
tooltip: {
|
|
|
|
pointFormat: '<b>{point.percentage:.1f}%</b><br>Jml NPWP : {point.y} dari ' + format_angka(total_wp) + ' yang terdapat data penerimaannya'
|
|
|
|
},
|
|
|
|
accessibility: {
|
|
|
|
point: {
|
|
|
|
valueSuffix: '%'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
plotOptions: {
|
|
|
|
pie: {
|
|
|
|
allowPointSelect: true,
|
|
|
|
cursor: 'pointer',
|
|
|
|
// colors: warna_garis,
|
|
|
|
dataLabels: {
|
|
|
|
enabled: true,
|
|
|
|
style: { fontSize: '0.7rem' },
|
|
|
|
format: '{point.name}: <br> {point.percentage:.1f} %'
|
|
|
|
}
|
|
|
|
//showInLegend: true
|
|
|
|
},
|
|
|
|
series: {
|
|
|
|
cursor: 'pointer',
|
|
|
|
point: {
|
|
|
|
events: {
|
|
|
|
click: function (a) {
|
|
|
|
setQuery(this.key)
|
|
|
|
setTahunBulan(this.thn_bln)
|
|
|
|
setVisibleSidebar(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
series: [
|
|
|
|
{
|
|
|
|
name: type,
|
|
|
|
data
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const TableDetailGraph = ({ dataSend, query }) => {
|
|
|
|
const tableContainerRef = useRef(null)
|
|
|
|
const rowVirtualizerInstanceRef = useRef(null)
|
|
|
|
const [columnFilters, setColumnFilters] = useState([])
|
|
|
|
const [globalFilter, setGlobalFilter] = useState()
|
|
|
|
const [sorting, setSorting] = useState([])
|
|
|
|
const base_url = location.protocol + '//' + location.hostname + '/engineN/'
|
|
|
|
const { data, fetchNextPage, isError, isFetching, isLoading } = useInfiniteQuery({
|
|
|
|
queryKey: ['table-data', columnFilters, globalFilter, sorting],
|
|
|
|
|
|
|
|
queryFn: async ({ pageParam = 0 }) => {
|
|
|
|
const url = new URL(base_url + 'kewilayahan/sebaran/paycomp/detail')
|
|
|
|
url.searchParams.set('start', `${pageParam * fetchSize}`)
|
|
|
|
url.searchParams.set('size', `${fetchSize}`)
|
|
|
|
url.searchParams.set('filters', JSON.stringify(columnFilters ?? []))
|
|
|
|
url.searchParams.set('globalFilter', globalFilter ?? '')
|
|
|
|
url.searchParams.set('sorting', JSON.stringify(sorting ?? []))
|
|
|
|
|
|
|
|
const response = await fetch(url.href, {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
query,
|
|
|
|
tahunBulan,
|
|
|
|
...dataSend
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
const json = await response.json()
|
|
|
|
return json
|
|
|
|
},
|
|
|
|
getNextPageParam: (_lastGroup, groups) => groups.length,
|
|
|
|
keepPreviousData: true,
|
|
|
|
refetchOnWindowFocus: false
|
|
|
|
})
|
|
|
|
|
|
|
|
const flatData = useMemo(() => data?.pages.flatMap((page) => page.data) ?? [], [data])
|
|
|
|
const totalDBRowCount = data?.pages?.[0]?.meta?.totalRowCount ?? 0
|
|
|
|
const totalFetched = flatData.length
|
|
|
|
|
|
|
|
const fetchMoreOnBottomReached = useCallback(
|
|
|
|
(containerRefElement) => {
|
|
|
|
if (containerRefElement) {
|
|
|
|
const { scrollHeight, scrollTop, clientHeight } = containerRefElement
|
|
|
|
//once the user has scrolled within 400px of the bottom of the table, fetch more data if we can
|
|
|
|
if (scrollHeight - scrollTop - clientHeight < 400 && !isFetching && totalFetched < totalDBRowCount) {
|
|
|
|
fetchNextPage()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
[fetchNextPage, isFetching, totalFetched, totalDBRowCount]
|
|
|
|
)
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
accessorKey: 'NPWP',
|
|
|
|
header: 'NPWP',
|
|
|
|
enableClickToCopy: true,
|
|
|
|
size: 150
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'NAMA_WP',
|
|
|
|
header: 'Nama'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'ALAMAT_MFWP',
|
|
|
|
header: 'Alamat'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'KELURAHAN_MFWP',
|
|
|
|
header: 'Wil. Adm.',
|
|
|
|
Cell: (data) => {
|
|
|
|
const dataRow = data.row.original
|
|
|
|
return `${dataRow.KELURAHAN_MFWP ?? ''} ${dataRow.KECAMATAN_MFWP ?? ''} ${dataRow.KOTA_MFWP ?? ''} ${dataRow.PROPINSI_MFWP ?? ''}`
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'STATUS_WP_MFWP',
|
|
|
|
header: 'Status WP'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'JNS_WP_MFWP',
|
|
|
|
header: 'Jenis WP'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'NM_KANTOR',
|
|
|
|
header: 'KPP Terdaftar'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'NAMA_AR_MFWP',
|
|
|
|
header: 'AR'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'FLAG_WPS_WPK',
|
|
|
|
header: 'WPS/WPK',
|
|
|
|
size: 100,
|
|
|
|
mantineTableBodyCellProps: {
|
|
|
|
align: 'center'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'JML',
|
|
|
|
header: 'Jml Bulan',
|
|
|
|
Cell: ({ cell }) => parseFloat(cell.getValue()).toLocaleString('id-ID'),
|
|
|
|
mantineTableHeadCellProps: {
|
|
|
|
align: 'center'
|
|
|
|
},
|
|
|
|
mantineTableBodyCellProps: {
|
|
|
|
align: 'center'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'JUMLAH_PEMBAYARAN_THN_TERAKHIR',
|
|
|
|
header: 'Rp',
|
|
|
|
Cell: ({ cell }) => parseFloat(cell.getValue()).toLocaleString('id-ID'),
|
|
|
|
mantineTableHeadCellProps: {
|
|
|
|
align: 'right'
|
|
|
|
},
|
|
|
|
mantineTableBodyCellProps: {
|
|
|
|
align: 'right'
|
|
|
|
},
|
|
|
|
size: 100
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'KETERANGAN',
|
|
|
|
header: 'SPT'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
accessorKey: 'TGL_DAFTAR',
|
|
|
|
header: 'Tgl Daftar',
|
|
|
|
Cell: ({ cell }) => {
|
|
|
|
return dayjs(cell.getValue(), 'DD-MMM-YY').format('YYYY-MM-DD')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (rowVirtualizerInstanceRef.current) {
|
|
|
|
try {
|
|
|
|
rowVirtualizerInstanceRef.current.scrollToIndex(0)
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, [sorting, columnFilters, globalFilter])
|
|
|
|
|
|
|
|
//a check on mount to see if the table is already scrolled to the bottom and immediately needs to fetch more data
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
fetchMoreOnBottomReached(tableContainerRef.current)
|
|
|
|
}, [fetchMoreOnBottomReached])
|
|
|
|
|
|
|
|
const table1 = useMantineReactTable({
|
|
|
|
columns,
|
|
|
|
data: flatData,
|
|
|
|
enablePagination: false,
|
|
|
|
enableRowNumbers: true,
|
|
|
|
enableRowVirtualization: true, //optional, but recommended if it is likely going to be more than 100 rows
|
|
|
|
manualFiltering: true,
|
|
|
|
manualSorting: true,
|
|
|
|
mantineTableContainerProps: {
|
|
|
|
ref: tableContainerRef, //get access to the table container element
|
|
|
|
sx: { maxHeight: '600px' }, //give the table a max height
|
|
|
|
onScroll: (
|
|
|
|
event //add an event listener to the table container element
|
|
|
|
) => fetchMoreOnBottomReached(event.target)
|
|
|
|
},
|
|
|
|
mantineToolbarAlertBannerProps: {
|
|
|
|
color: 'red',
|
|
|
|
children: 'Error loading data'
|
|
|
|
},
|
|
|
|
onColumnFiltersChange: setColumnFilters,
|
|
|
|
onGlobalFilterChange: setGlobalFilter,
|
|
|
|
onSortingChange: setSorting,
|
|
|
|
renderBottomToolbarCustomActions: () => (
|
|
|
|
<Text className="text-sm">
|
|
|
|
Fetched {totalFetched} of {totalDBRowCount} total rows.
|
|
|
|
</Text>
|
|
|
|
),
|
|
|
|
state: {
|
|
|
|
columnFilters,
|
|
|
|
globalFilter,
|
|
|
|
isLoading,
|
|
|
|
showAlertBanner: isError,
|
|
|
|
showProgressBars: isFetching,
|
|
|
|
sorting
|
|
|
|
},
|
|
|
|
rowVirtualizerInstanceRef, //get access to the virtualizer instance
|
|
|
|
rowVirtualizerProps: { overscan: 10 },
|
|
|
|
mantineTableBodyCellProps: { className: 'p-1 text-xs' }
|
|
|
|
})
|
|
|
|
|
|
|
|
return <MantineReactTable table={table1} />
|
|
|
|
}
|
|
|
|
|
|
|
|
const queryClient = new QueryClient()
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{loading ? (
|
|
|
|
<Row>
|
|
|
|
<Col md="12">
|
|
|
|
<Skeleton className="" shape="rectangle" height="17rem" width="100%"></Skeleton>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
) : (
|
|
|
|
<Row>
|
|
|
|
<Col md="4">
|
|
|
|
<HighchartsReact ref={refChart} highcharts={Highcharts} options={optionsChart(dataC, 's.d. bulan ini', 'C')} />
|
|
|
|
</Col>
|
|
|
|
<Col md="4">
|
|
|
|
<HighchartsReact ref={refChart1} highcharts={Highcharts} options={optionsChart(dataMin1, 's.d. bulan lalu', 'Min1')} />
|
|
|
|
</Col>
|
|
|
|
<Col md="4">
|
|
|
|
<HighchartsReact ref={refChart2} highcharts={Highcharts} options={optionsChart(dataMin2, 's.d. 2 bulan yang lalu', 'Min2')} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
)}
|
|
|
|
<Row className="f-14">
|
|
|
|
<Col>
|
|
|
|
<span>
|
|
|
|
Berdasarkan kompilasi data KPD Mobile dan pengolahan data-data perpajakan lainnya (KPD Lainnya), daftar Wajib Pajak yang <b>bayar tidak teratur</b>{' '}
|
|
|
|
agar segera dinamisasi/kegiatan <b>intensifikasi pajak</b> (PPM dan/atau PKM) melalui mekanisme komite kepatuhan (DSP4 dan/atau WRA), oleh:
|
|
|
|
</span>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
AR yang <b>mengampu WP</b> tersebut dan/atau;
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
AR yang <b>mengampu wilayah</b> tersebut dengan mengirimkan LHKPD (data ICALEP) ke unit kerja yang mengadministrasikan kegiatan usaha yang
|
|
|
|
diawasi;
|
|
|
|
</li>
|
|
|
|
<li>Input di DRM</li>
|
|
|
|
</ul>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col>
|
|
|
|
<Sidebar
|
|
|
|
header={
|
|
|
|
<>
|
|
|
|
<h4>Detail Data</h4>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
visible={visibleSidebar}
|
|
|
|
position="bottom"
|
|
|
|
onHide={() => setVisibleSidebar(false)}
|
|
|
|
style={{ height: 'calc(100vh - 100px)' }}
|
|
|
|
blockScroll
|
|
|
|
pt={{ header: { className: 'p-1' }, closeButton: { style: { width: '2rem', height: '1rem' } } }}
|
|
|
|
>
|
|
|
|
<Row>
|
|
|
|
<Col>
|
|
|
|
<QueryClientProvider client={queryClient}>
|
|
|
|
<TableDetailGraph dataSend={dataSend} query={query} />
|
|
|
|
</QueryClientProvider>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</Sidebar>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PayComp
|