4995 lines
179 KiB
Vue
Executable File
4995 lines
179 KiB
Vue
Executable File
<template>
|
|
<Filters @run-search="() => filterData(filters)" class="mb-4">
|
|
<Type15 @update:filters="(value) => (filters = value)" />
|
|
</Filters>
|
|
<div id="data">
|
|
<DxDataGrid
|
|
ref="dataGridRef"
|
|
:allow-column-reordering="true"
|
|
class="max-h-[calc(100vh-140px)] mb-10"
|
|
:show-column-lines="true"
|
|
:show-row-lines="false"
|
|
:show-borders="true"
|
|
:row-alternation-enabled="true"
|
|
:hover-state-enabled="true"
|
|
@selection-changed="onSelectionChanged"
|
|
:column-width="100"
|
|
@exporting=""
|
|
:data-source="data"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
>
|
|
<DxSelection mode="single" />
|
|
<DxPaging :page-size="20" :enabled="true" />
|
|
<DxPager
|
|
:visible="true"
|
|
:allowed-page-sizes="[20, 50, 100]"
|
|
display-mode="full"
|
|
:show-page-size-selector="true"
|
|
:show-info="true"
|
|
:show-navigation-buttons="true"
|
|
/>
|
|
<DxLoadPanel
|
|
shading-color="rgba(0,0,0,0.4)"
|
|
:position="position"
|
|
:show-indicator="showIndicator"
|
|
:show-pane="showPane"
|
|
:shading="shading"
|
|
v-if="loading"
|
|
v-model:visible="loading"
|
|
:enabled="true"
|
|
/>
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport
|
|
:enabled="true"
|
|
:formats="['pdf', 'xlsx', 'document']"
|
|
:allow-export-selected-data="false"
|
|
/>
|
|
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="50"
|
|
alignment="center"
|
|
:calculateCellValue="(item: any) => data.findIndex((i) => i == item) + 1"
|
|
data-type="number"
|
|
caption="No"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="no_laporan"
|
|
caption="No.Laporan"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="waktu_lapor"
|
|
caption="Tgl Lapor"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="idpel_nometer"
|
|
caption="IDPEL/NO METER"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_pelapor"
|
|
caption="Nama Pelapor"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="alamat_pelapor"
|
|
caption="Alamat Pelapor"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="no_telp_pelapor"
|
|
caption="No Tlp Pelapor"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="status_akhir"
|
|
caption="Status"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_uid"
|
|
caption="UI Dist."
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_up3"
|
|
caption="UP 3"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_ulp"
|
|
caption="Posko/ULP"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Petugas"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="170"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Keterangan DLPD"
|
|
cell-template="formatText"
|
|
/>
|
|
|
|
<template #formatTime="{ data }">
|
|
<p class="cursor-pointer !text-right">
|
|
{{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatNumber="{ data }">
|
|
<p class="text-right cursor-pointer">
|
|
{{
|
|
isNumber(data.text)
|
|
? data.column.caption == '%'
|
|
? formatPercentage(data.text)
|
|
: formatNumber(data.text)
|
|
: data.text
|
|
}}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatText="{ data }">
|
|
<p class="cursor-pointer !text-left">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
|
|
<DetailDialog :open="dialogDetail" title="Daftar Pencarian Report Number" @on-close="closeDialog">
|
|
<div class="w-full p-4 space-y-2 bg-white rounded-xl">
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">No Laporan:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.no_laporan" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Tgl Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.waktu_lapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">IDPEL/NOMETER:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.idpel_nometer" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Nama Pelapor:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_pelapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Alamat Pelapor:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.alamat_pelapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Status:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.status_akhir" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">UI Dist:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_uid" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">UP3:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_up3" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Posko/ULP:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_ulp" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Petugas:</h3>
|
|
<InputText :readonly="true" value="" class-name="flex-1" />
|
|
</div>
|
|
</div>
|
|
</DetailDialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, watch } from 'vue'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import DetailDialog from '@/components/Dialogs/DetailDialog.vue'
|
|
import InputText from '@/components/InputText.vue'
|
|
import {
|
|
DxColumn,
|
|
DxExport,
|
|
DxLoadPanel,
|
|
DxPager,
|
|
DxPaging,
|
|
DxSearchPanel,
|
|
DxSelection
|
|
} from 'devextreme-vue/data-grid'
|
|
import { Type15 } from '@/components/Form/FiltersType'
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
import { useQuery } from '@vue/apollo-composable'
|
|
import { queries } from '@/utils/api/api.graphql'
|
|
import { formatWaktu } from '@/components/Form/FiltersType/reference'
|
|
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
|
const position = { of: '#data' }
|
|
const showIndicator = ref(true)
|
|
const shading = ref(true)
|
|
const showPane = ref(true)
|
|
const data = ref<any[]>([])
|
|
const dataSelected = ref<any>()
|
|
const dialogDetail = ref(false)
|
|
const filters = ref({
|
|
type: '',
|
|
keyword: '',
|
|
searchBy: '',
|
|
periode: ''
|
|
})
|
|
|
|
const closeDialog = () => {
|
|
dialogDetail.value = false
|
|
}
|
|
|
|
const dataGridRef = ref<DxDataGrid | null>(null)
|
|
const clearSelection = () => {
|
|
const dataGrid = dataGridRef.value!.instance!
|
|
dataGrid.clearSelection()
|
|
}
|
|
const showDetail = () => {
|
|
clearSelection()
|
|
dialogDetail.value = true
|
|
}
|
|
|
|
const onSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSelected.value = selectedRowsData[0]
|
|
}
|
|
showDetail()
|
|
}
|
|
|
|
const { onResult, onError, loading, refetch } = useQuery(
|
|
filters.value.type == 'Gangguan'
|
|
? queries.pencarian.pencarianGangguan
|
|
: queries.pencarian.pencarianKeluhan,
|
|
{
|
|
dateFrom: new Date('2023-10-01').toISOString().slice(0, 10),
|
|
dateTo: new Date('2023-10-01').toISOString().slice(0, 10),
|
|
noLaporan: '',
|
|
namaPelapor: '',
|
|
noTelpPelapor: '',
|
|
alamatPelapor: '',
|
|
pembuatLaporan: ''
|
|
}
|
|
)
|
|
|
|
const filterData = (params: any) => {
|
|
const dateValue = params.periode.split(' s/d ')
|
|
const { type, keyword, searchBy } = params
|
|
|
|
if (import.meta.env.DEV) {
|
|
if (type == 'Gangguan') {
|
|
data.value = [
|
|
{
|
|
id: 0,
|
|
no_laporan: 'G5423010100936',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SENO',
|
|
alamat_pelapor:
|
|
'JL MERCEDES BENZ RT 3/3 NO 0 KEL CICADAS KEC GUNUNG PUTRI KAB BOGOR JAWA BARAT ACUAN : SAMPING APARTMENT CICADAS ',
|
|
no_telp_pelapor: '081284155423',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 GUNUNG PUTRI',
|
|
nama_ulp: 'ULP CITEUREUP',
|
|
nama_posko: 'POSKO ULP CITEUREUP',
|
|
id_regu: 19268,
|
|
waktu_lapor: '01/01/2023 01:31:14',
|
|
waktu_response: '01/01/2023 02:36:15',
|
|
waktu_recovery: '01/01/2023 02:40:36',
|
|
durasi_response_time: 3901,
|
|
durasi_recovery_time: 4162
|
|
},
|
|
{
|
|
id: 1,
|
|
no_laporan: 'G5423010100949',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUTEJO',
|
|
alamat_pelapor:
|
|
'GG NISIN RT 05 NO 21 KEL. CIRACAS, KEC. CIRACAS, KOTA JAKARTA TIMUR DEKAT JALAN RAYA CIRACAS ATAU DEPAN PASAR ',
|
|
no_telp_pelapor: '0218700221',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 CIRACAS',
|
|
nama_ulp: 'UP3 CIRACAS',
|
|
nama_posko: 'POSKO CIRACAS',
|
|
id_regu: 13696,
|
|
waktu_lapor: '01/01/2023 01:32:36',
|
|
waktu_response: '01/01/2023 02:13:15',
|
|
waktu_recovery: '01/01/2023 03:07:58',
|
|
durasi_response_time: 2439,
|
|
durasi_recovery_time: 5722
|
|
},
|
|
{
|
|
id: 2,
|
|
no_laporan: 'G5423010101079',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'marni',
|
|
alamat_pelapor: 'pangur',
|
|
no_telp_pelapor: '6281379970134',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 10637,
|
|
waktu_lapor: '01/01/2023 01:47:48',
|
|
waktu_response: '01/01/2023 02:05:12',
|
|
waktu_recovery: '01/01/2023 02:41:11',
|
|
durasi_response_time: 1044,
|
|
durasi_recovery_time: 3203
|
|
},
|
|
{
|
|
id: 3,
|
|
no_laporan: 'G5423010101087',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'marni',
|
|
alamat_pelapor: 'blok m',
|
|
no_telp_pelapor: '6281379970134',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 01:48:55',
|
|
waktu_response: '01/01/2023 02:05:10',
|
|
waktu_recovery: '01/01/2023 02:42:24',
|
|
durasi_response_time: 975,
|
|
durasi_recovery_time: 3209
|
|
},
|
|
{
|
|
id: 4,
|
|
no_laporan: 'G5423010101467',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Darmendri Darmen',
|
|
alamat_pelapor: 'kp baru',
|
|
no_telp_pelapor: '6281361240133',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 03:03:25',
|
|
waktu_response: '01/01/2023 03:22:19',
|
|
waktu_recovery: '01/01/2023 03:57:49',
|
|
durasi_response_time: 1134,
|
|
durasi_recovery_time: 3264
|
|
},
|
|
{
|
|
id: 5,
|
|
no_laporan: 'G5423010101474',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Darmendri Darmen',
|
|
alamat_pelapor: 'keran',
|
|
no_telp_pelapor: '6281361240133',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 10637,
|
|
waktu_lapor: '01/01/2023 03:04:38',
|
|
waktu_response: '01/01/2023 03:22:03',
|
|
waktu_recovery: '01/01/2023 03:56:53',
|
|
durasi_response_time: 1045,
|
|
durasi_recovery_time: 3135
|
|
},
|
|
{
|
|
id: 6,
|
|
no_laporan: 'G5423010101548',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'iskandar',
|
|
alamat_pelapor: 'pajaresuk',
|
|
no_telp_pelapor: '6285377265551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 03:22:34',
|
|
waktu_response: '01/01/2023 03:53:11',
|
|
waktu_recovery: '01/01/2023 04:19:21',
|
|
durasi_response_time: 1837,
|
|
durasi_recovery_time: 3407
|
|
},
|
|
{
|
|
id: 7,
|
|
no_laporan: 'G5423010101559',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Taufiq Wibawa Muslim',
|
|
alamat_pelapor: 'Dusun 2 RT 01 RW 05',
|
|
no_telp_pelapor: '6281357738358',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUMEDANG',
|
|
nama_ulp: 'ULP MAJALENGKA',
|
|
nama_posko: 'POSKO ULP MAJALENGKA',
|
|
id_regu: 19171,
|
|
waktu_lapor: '01/01/2023 03:24:53',
|
|
waktu_response: '01/01/2023 03:44:56',
|
|
waktu_recovery: '01/01/2023 03:52:36',
|
|
durasi_response_time: 1203,
|
|
durasi_recovery_time: 1663
|
|
},
|
|
{
|
|
id: 8,
|
|
no_laporan: 'G5423010101763',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'iskandar',
|
|
alamat_pelapor: 'fajaresuk',
|
|
no_telp_pelapor: '6285377265551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 04:17:48',
|
|
waktu_response: '01/01/2023 04:50:24',
|
|
waktu_recovery: '01/01/2023 05:17:15',
|
|
durasi_response_time: 1956,
|
|
durasi_recovery_time: 3567
|
|
},
|
|
{
|
|
id: 9,
|
|
no_laporan: 'G5423010101821',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'pikrisekedang',
|
|
alamat_pelapor: 'Area tugu monas',
|
|
no_telp_pelapor: '6285224977297',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 10637,
|
|
waktu_lapor: '01/01/2023 04:27:31',
|
|
waktu_response: '01/01/2023 04:43:06',
|
|
waktu_recovery: '01/01/2023 05:09:26',
|
|
durasi_response_time: 935,
|
|
durasi_recovery_time: 2515
|
|
},
|
|
{
|
|
id: 10,
|
|
no_laporan: 'G5123010100156',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'BP RAHMAN',
|
|
alamat_pelapor:
|
|
'JL. SUKAWERA NO.- RT 16 RW 6 KEL TARI KOLOT KEC MAJALENGKA KAB MAJALENGKA / DEKAT PERSAWAHAN',
|
|
no_telp_pelapor: '08112073638',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUMEDANG',
|
|
nama_ulp: 'ULP MAJALENGKA',
|
|
nama_posko: 'POSKO ULP MAJALENGKA',
|
|
id_regu: 19169,
|
|
waktu_lapor: '01/01/2023 04:28:13',
|
|
waktu_response: '01/01/2023 04:40:58',
|
|
waktu_recovery: '01/01/2023 04:49:59',
|
|
durasi_response_time: 765,
|
|
durasi_recovery_time: 1306
|
|
},
|
|
{
|
|
id: 11,
|
|
no_laporan: 'G5423010101826',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'pikrisekedang',
|
|
alamat_pelapor: 'lesung',
|
|
no_telp_pelapor: '6285224977297',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 04:28:23',
|
|
waktu_response: '01/01/2023 04:43:04',
|
|
waktu_recovery: '01/01/2023 05:10:27',
|
|
durasi_response_time: 881,
|
|
durasi_recovery_time: 2524
|
|
},
|
|
{
|
|
id: 12,
|
|
no_laporan: 'G5423010102081',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'iskandar',
|
|
alamat_pelapor: 'Jl. A.Yani No.999',
|
|
no_telp_pelapor: '6285377265551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 05:14:51',
|
|
waktu_response: '01/01/2023 05:45:17',
|
|
waktu_recovery: '01/01/2023 06:12:27',
|
|
durasi_response_time: 1826,
|
|
durasi_recovery_time: 3456
|
|
},
|
|
{
|
|
id: 13,
|
|
no_laporan: 'G5323010100089',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP WAYAN SUKARANA',
|
|
alamat_pelapor:
|
|
'JL TANAH LOT NO 9 RT-- / RW-- KEL MERANGGI KEC KEDIRI KAB TABANAN /DKT POM BENSIN ',
|
|
no_telp_pelapor: '081916219861',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP TABANAN',
|
|
nama_posko: 'POSKO ULP TABANAN',
|
|
id_regu: 12866,
|
|
waktu_lapor: '01/01/2023 06:14:53',
|
|
waktu_response: '01/01/2023 06:57:08',
|
|
waktu_recovery: '01/01/2023 07:16:36',
|
|
durasi_response_time: 2535,
|
|
durasi_recovery_time: 3703
|
|
},
|
|
{
|
|
id: 14,
|
|
no_laporan: 'G5223010100178',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP NYOMAN SUARDIKA',
|
|
alamat_pelapor:
|
|
'JL RAYA PUNCAK MANGU DS PELAGA KEC PETANG KAB BADUNG // DEKAT PLUSKESMAS PETANG II ',
|
|
no_telp_pelapor: '087760368194',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 492,
|
|
waktu_lapor: '01/01/2023 06:17:12',
|
|
waktu_response: '01/01/2023 07:08:14',
|
|
waktu_recovery: '01/01/2023 08:16:10',
|
|
durasi_response_time: 3062,
|
|
durasi_recovery_time: 7138
|
|
},
|
|
{
|
|
id: 15,
|
|
no_laporan: 'G5223010100179',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP NYOMAN SUARDIKA',
|
|
alamat_pelapor:
|
|
'JL RAYA PUNCAK MANGU DS PELAGA KEC PETANG KAB BADUNG // DEKAT PLUSKESMAS PETANG II ',
|
|
no_telp_pelapor: '087760368194',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 492,
|
|
waktu_lapor: '01/01/2023 06:17:18',
|
|
waktu_response: '01/01/2023 07:07:59',
|
|
waktu_recovery: '01/01/2023 08:15:45',
|
|
durasi_response_time: 3041,
|
|
durasi_recovery_time: 7107
|
|
},
|
|
{
|
|
id: 16,
|
|
no_laporan: 'G5123010100263',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MADE ARKO WINARYO ',
|
|
alamat_pelapor:
|
|
'LOKASI PURA DALEM PRANG \\n JL PITSTUN NO 0 RT0 RW 0 DS PANGKUNG TIBAH KEC KEDIRI KAB TABANAN , BALI - 55130 - POSKO ULP TABANAN',
|
|
no_telp_pelapor: '6285792839299',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP TABANAN',
|
|
nama_posko: 'POSKO ULP TABANAN',
|
|
id_regu: 12865,
|
|
waktu_lapor: '01/01/2023 06:35:42',
|
|
waktu_response: '01/01/2023 07:34:34',
|
|
waktu_recovery: '01/01/2023 07:44:33',
|
|
durasi_response_time: 3532,
|
|
durasi_recovery_time: 4131
|
|
},
|
|
{
|
|
id: 17,
|
|
no_laporan: 'G2223010100001',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'syahdianor',
|
|
alamat_pelapor: 'Desa pandawan Kantor LPUK',
|
|
no_telp_pelapor: '0517',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH KALIMANTAN SELATAN DAN TENGAH',
|
|
nama_up3: 'UP3 BARABAI',
|
|
nama_ulp: 'ULP BARABAI',
|
|
nama_posko: 'POSKO ULP BARABAI',
|
|
id_regu: 26536,
|
|
waktu_lapor: '01/01/2023 06:46:13',
|
|
waktu_response: '01/01/2023 06:57:35',
|
|
waktu_recovery: '01/01/2023 07:11:56',
|
|
durasi_response_time: 682,
|
|
durasi_recovery_time: 1543
|
|
},
|
|
{
|
|
id: 18,
|
|
no_laporan: 'G5223010100289',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUKIRMAN',
|
|
alamat_pelapor:
|
|
'JL MASJID AN NUR NO- RT 4 RW 2 KEL KEDUNGKARANG, KEC WEDUNG, KAB DEMAK // DEKAT BALAI DESA KEDUNGKARANG KE KIRI KURANG LEBIH 100 M',
|
|
no_telp_pelapor: '085329837363',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP DEMAK',
|
|
nama_posko: 'POSKO ULP DEMAK',
|
|
id_regu: 32518,
|
|
waktu_lapor: '01/01/2023 07:23:29',
|
|
waktu_response: '01/01/2023 08:40:22',
|
|
waktu_recovery: '01/01/2023 08:47:46',
|
|
durasi_response_time: 4613,
|
|
durasi_recovery_time: 5057
|
|
},
|
|
{
|
|
id: 19,
|
|
no_laporan: 'G5423010103706',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'Haidar',
|
|
alamat_pelapor: 'Ds.Tegal Sari Barat. Rt.07 Rw.03 KEC.AMPELGADING',
|
|
no_telp_pelapor: '6289624259551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP COMAL',
|
|
nama_posko: 'POSKO ULP COMAL',
|
|
id_regu: 18241,
|
|
waktu_lapor: '01/01/2023 07:33:13',
|
|
waktu_response: '01/01/2023 07:53:57',
|
|
waktu_recovery: '01/01/2023 08:28:42',
|
|
durasi_response_time: 1244,
|
|
durasi_recovery_time: 3329
|
|
},
|
|
{
|
|
id: 20,
|
|
no_laporan: 'G5423010103906',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU YOHANA ',
|
|
alamat_pelapor:
|
|
'JL GADING PUTIH RAYA UTARA BLOK CA 2 NO 7 RT - RW - KEL KELAPA GADING TIMUR KEC KELAPA GADING JAKUT SEBRANG RESTORAN MACIKO ',
|
|
no_telp_pelapor: '02124522990',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
nama_posko: 'POSKO SUNTER',
|
|
id_regu: 14317,
|
|
waktu_lapor: '01/01/2023 07:43:46',
|
|
waktu_response: '01/01/2023 08:27:33',
|
|
waktu_recovery: '01/01/2023 08:44:51',
|
|
durasi_response_time: 2627,
|
|
durasi_recovery_time: 3665
|
|
},
|
|
{
|
|
id: 21,
|
|
no_laporan: 'G5423010104059',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU SAMI',
|
|
alamat_pelapor: 'DN TELEGE DS CANDIMULYO KEC KEDU KAB TEMANGGUNG - JATENG',
|
|
no_telp_pelapor: '082136399980',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 MAGELANG',
|
|
nama_ulp: 'ULP PARAKAN',
|
|
nama_posko: 'POSKO ULP PARAKAN',
|
|
id_regu: 18310,
|
|
waktu_lapor: '01/01/2023 07:51:35',
|
|
waktu_response: '01/01/2023 08:16:23',
|
|
waktu_recovery: '01/01/2023 08:28:41',
|
|
durasi_response_time: 1488,
|
|
durasi_recovery_time: 2226
|
|
},
|
|
{
|
|
id: 22,
|
|
no_laporan: 'G5523010100244',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP WAYAN DARMA',
|
|
alamat_pelapor: 'JL PARARATON RAYA NO 2 BR ABIANBASE KEL KUTA KEC KUTA KAB BADUNG ',
|
|
no_telp_pelapor: '085101706832',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP KUTA',
|
|
nama_posko: 'POSKO ULP KUTA',
|
|
id_regu: 20883,
|
|
waktu_lapor: '01/01/2023 07:57:18',
|
|
waktu_response: '01/01/2023 08:54:38',
|
|
waktu_recovery: '01/01/2023 09:03:40',
|
|
durasi_response_time: 3440,
|
|
durasi_recovery_time: 3982
|
|
},
|
|
{
|
|
id: 23,
|
|
no_laporan: 'G5423010104375',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Muhammad Rafa A',
|
|
alamat_pelapor: 'dk. manggen, rembun',
|
|
no_telp_pelapor: '6285647129982',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 08:07:13',
|
|
waktu_response: '01/01/2023 08:17:00',
|
|
waktu_recovery: '01/01/2023 08:41:57',
|
|
durasi_response_time: 587,
|
|
durasi_recovery_time: 2084
|
|
},
|
|
{
|
|
id: 24,
|
|
no_laporan: 'G5423010104506',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'Budy Yono',
|
|
alamat_pelapor: 'Jl. Garuda Timur Jodipati No.123',
|
|
no_telp_pelapor: '6287774414779',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP COMAL',
|
|
nama_posko: 'POSKO ULP COMAL',
|
|
id_regu: 18241,
|
|
waktu_lapor: '01/01/2023 08:14:13',
|
|
waktu_response: '01/01/2023 08:33:25',
|
|
waktu_recovery: '01/01/2023 08:52:15',
|
|
durasi_response_time: 1152,
|
|
durasi_recovery_time: 2282
|
|
},
|
|
{
|
|
id: 25,
|
|
no_laporan: 'G5423010105126',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sabdo palon',
|
|
alamat_pelapor: 'jangkungrejo nogosari',
|
|
no_telp_pelapor: '628813915451',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 08:40:46',
|
|
waktu_response: '01/01/2023 08:50:19',
|
|
waktu_recovery: '01/01/2023 09:14:56',
|
|
durasi_response_time: 573,
|
|
durasi_recovery_time: 2050
|
|
},
|
|
{
|
|
id: 26,
|
|
no_laporan: 'G5223010100459',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BU SULIS',
|
|
alamat_pelapor:
|
|
'DS SEMAMPIR RT1/1 JL RAYA REBAN SEMAMPIR NO- KEC REBAN KAB BATANG :: PEREMPATAN PERTAMA DS SEMAMPIR ',
|
|
no_telp_pelapor: '082325762820',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18146,
|
|
waktu_lapor: '01/01/2023 08:49:32',
|
|
waktu_response: '01/01/2023 09:28:58',
|
|
waktu_recovery: '01/01/2023 09:44:51',
|
|
durasi_response_time: 2366,
|
|
durasi_recovery_time: 3319
|
|
},
|
|
{
|
|
id: 27,
|
|
no_laporan: 'G5323010100425',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU TUTI',
|
|
alamat_pelapor:
|
|
'JL RAYA TEGAWANU RT 2/1 KEL TEGAWANU WETAN KEC TEGAWANU KAB GROBOGAN JATENG',
|
|
no_telp_pelapor: '6285726094615',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP TEGOWANU',
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
id_regu: 18187,
|
|
waktu_lapor: '01/01/2023 09:06:26',
|
|
waktu_response: '01/01/2023 09:38:58',
|
|
waktu_recovery: '01/01/2023 09:40:49',
|
|
durasi_response_time: 1952,
|
|
durasi_recovery_time: 2063
|
|
},
|
|
{
|
|
id: 28,
|
|
no_laporan: 'G5423010106056',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ndoro',
|
|
alamat_pelapor: 'kunci 2/4 bojosari kertek wonosobo',
|
|
no_telp_pelapor: '6285326860778',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP WONOSOBO',
|
|
nama_posko: 'POSKO ULP WONOSOBO',
|
|
id_regu: 26445,
|
|
waktu_lapor: '01/01/2023 09:15:12',
|
|
waktu_response: '01/01/2023 09:42:22',
|
|
waktu_recovery: '01/01/2023 09:52:10',
|
|
durasi_response_time: 1630,
|
|
durasi_recovery_time: 2218
|
|
},
|
|
{
|
|
id: 29,
|
|
no_laporan: 'G5323010100449',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DIDI',
|
|
alamat_pelapor:
|
|
'JL RAYA KOBET GANDARIA KP LARANGAN PR RUKO GRAND SIMPATI RESIDENCE R1-10 KEL SUKATANI KEC RAJEG KAB TANGGERANG // SMA 13 KAB TANGGERANG ',
|
|
no_telp_pelapor: '081382638061',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 CIKUPA',
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
nama_posko: 'POSKO CIKUPA',
|
|
id_regu: 16299,
|
|
waktu_lapor: '01/01/2023 09:15:30',
|
|
waktu_response: '01/01/2023 09:47:49',
|
|
waktu_recovery: '01/01/2023 10:19:09',
|
|
durasi_response_time: 1939,
|
|
durasi_recovery_time: 3819
|
|
},
|
|
{
|
|
id: 30,
|
|
no_laporan: 'G1323010100037',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP CHAN',
|
|
alamat_pelapor: 'DS BATIPUH BARUAH KEC.BATIPUH KAB.TANAH DATAR',
|
|
no_telp_pelapor: '082386009680',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SUMATERA BARAT',
|
|
nama_up3: 'UP3 BUKIT TINGGI',
|
|
nama_ulp: 'ULP PADANG PANJANG',
|
|
nama_posko: 'POSKO ULP PADANG PANJANG',
|
|
id_regu: 21761,
|
|
waktu_lapor: '01/01/2023 09:16:01',
|
|
waktu_response: '01/01/2023 09:30:41',
|
|
waktu_recovery: '01/01/2023 09:40:19',
|
|
durasi_response_time: 880,
|
|
durasi_recovery_time: 1458
|
|
},
|
|
{
|
|
id: 31,
|
|
no_laporan: 'G5423010106340',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU WULAN',
|
|
alamat_pelapor:
|
|
'SETEMPAT MULTI LAUNDRY JL RAYA PURWASARI RT 01/03 KEL PURWASARI KEC PURWASARI KARAWANG SAMPING KANTOR DESA PURWASARI ',
|
|
no_telp_pelapor: '081381351435',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 KARAWANG',
|
|
nama_ulp: 'ULP CIKAMPEK',
|
|
nama_posko: 'POSKO ULP CIKAMPEK',
|
|
id_regu: 18779,
|
|
waktu_lapor: '01/01/2023 09:24:53',
|
|
waktu_response: '01/01/2023 09:52:18',
|
|
waktu_recovery: '01/01/2023 10:56:30',
|
|
durasi_response_time: 1645,
|
|
durasi_recovery_time: 5497
|
|
},
|
|
{
|
|
id: 32,
|
|
no_laporan: 'G5423010106394',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ANDRI',
|
|
alamat_pelapor: 'DSN GROJOGAN KEL SUKOREJO KEC TEGOWANU KAB GROBOGAN JAWA TENGAH ',
|
|
no_telp_pelapor: '082227558030',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP TEGOWANU',
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
id_regu: 18187,
|
|
waktu_lapor: '01/01/2023 09:26:43',
|
|
waktu_response: '01/01/2023 09:57:15',
|
|
waktu_recovery: '01/01/2023 10:14:27',
|
|
durasi_response_time: 1832,
|
|
durasi_recovery_time: 2864
|
|
},
|
|
{
|
|
id: 33,
|
|
no_laporan: 'G5423010106940',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ANDRI',
|
|
alamat_pelapor:
|
|
'PR CITRA GARDEN 1 BLOK B 8 NO 2 RT 9/9 KEL KALIDERES KEC KALIDERES - JAKBAR // BELAKANG KORAMIL ',
|
|
no_telp_pelapor: '0215405310',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 CENGKARENG',
|
|
nama_ulp: 'UP3 CENGKARENG',
|
|
nama_posko: 'POSKO CENGKARENG ( POSKO STT )',
|
|
id_regu: 17540,
|
|
waktu_lapor: '01/01/2023 09:45:51',
|
|
waktu_response: '01/01/2023 10:38:23',
|
|
waktu_recovery: '01/01/2023 10:52:16',
|
|
durasi_response_time: 3152,
|
|
durasi_recovery_time: 3985
|
|
},
|
|
{
|
|
id: 34,
|
|
no_laporan: 'G5423010107030',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Wayan Wika',
|
|
alamat_pelapor: 'Jl. Perkutut No.1',
|
|
no_telp_pelapor: '6281236243647',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP TABANAN',
|
|
nama_posko: 'POSKO ULP TABANAN',
|
|
id_regu: 12865,
|
|
waktu_lapor: '01/01/2023 09:48:25',
|
|
waktu_response: '01/01/2023 10:07:21',
|
|
waktu_recovery: '01/01/2023 10:30:22',
|
|
durasi_response_time: 1136,
|
|
durasi_recovery_time: 2517
|
|
},
|
|
{
|
|
id: 35,
|
|
no_laporan: 'G5423010107103',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MASROKAN ',
|
|
alamat_pelapor: 'JL DS. BUKO RT.1/3 KEC. WEDUNG KAB DEMAK JATENG ',
|
|
no_telp_pelapor: '085226145789',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP DEMAK',
|
|
nama_posko: 'POSKO ULP DEMAK',
|
|
id_regu: 32518,
|
|
waktu_lapor: '01/01/2023 09:51:02',
|
|
waktu_response: '01/01/2023 10:16:27',
|
|
waktu_recovery: '01/01/2023 10:27:08',
|
|
durasi_response_time: 1525,
|
|
durasi_recovery_time: 2166
|
|
},
|
|
{
|
|
id: 36,
|
|
no_laporan: 'G5223010100660',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUSILO',
|
|
alamat_pelapor:
|
|
'JL - PERUM TEMBALANG PESONA ASRI BLOK A2 NO 12 DS KERAMAS KEC TEMBALANG KOTA SEMARANG :: DEKAT DENGAN MASJID',
|
|
no_telp_pelapor: '08111193778',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SEMARANG',
|
|
nama_ulp: 'ULP SEMARANG SELATAN',
|
|
nama_posko: 'POSKO ULP SEMARANG SELATAN',
|
|
id_regu: 18294,
|
|
waktu_lapor: '01/01/2023 09:55:27',
|
|
waktu_response: '01/01/2023 11:16:53',
|
|
waktu_recovery: '01/01/2023 11:46:17',
|
|
durasi_response_time: 4886,
|
|
durasi_recovery_time: 6650
|
|
},
|
|
{
|
|
id: 37,
|
|
no_laporan: 'G5423010107233',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Muhammad ikbal',
|
|
alamat_pelapor: 'kp Kawaron Ilir RT 03/07',
|
|
no_telp_pelapor: '62881024442701',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 CIKUPA',
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
nama_posko: 'POSKO CIKUPA',
|
|
id_regu: 16299,
|
|
waktu_lapor: '01/01/2023 09:55:55',
|
|
waktu_response: '01/01/2023 10:19:50',
|
|
waktu_recovery: '01/01/2023 11:04:07',
|
|
durasi_response_time: 1435,
|
|
durasi_recovery_time: 4092
|
|
},
|
|
{
|
|
id: 38,
|
|
no_laporan: 'G5423010108106',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sabdo palon',
|
|
alamat_pelapor: 'kliwonan nogosari',
|
|
no_telp_pelapor: '628813915451',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 10:27:51',
|
|
waktu_response: '01/01/2023 10:37:25',
|
|
waktu_recovery: '01/01/2023 11:01:24',
|
|
durasi_response_time: 574,
|
|
durasi_recovery_time: 2013
|
|
},
|
|
{
|
|
id: 39,
|
|
no_laporan: 'G5323010100623',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP JUHARDI',
|
|
alamat_pelapor:
|
|
'JL DANAU ASRI 2 PR INKOPOL BLOK C 4 NO 10 KEL SUNTER JAYA KEC TANJUNG PRIUK JAKUT',
|
|
no_telp_pelapor: '6283877700259',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
nama_posko: 'POSKO SUNTER',
|
|
id_regu: 14317,
|
|
waktu_lapor: '01/01/2023 10:28:25',
|
|
waktu_response: '01/01/2023 11:05:51',
|
|
waktu_recovery: '01/01/2023 11:37:34',
|
|
durasi_response_time: 2246,
|
|
durasi_recovery_time: 4149
|
|
},
|
|
{
|
|
id: 40,
|
|
no_laporan: 'G5423010108170',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'made jon',
|
|
alamat_pelapor: 'br auman pelaga',
|
|
no_telp_pelapor: '6287869366546',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 492,
|
|
waktu_lapor: '01/01/2023 10:29:59',
|
|
waktu_response: '01/01/2023 10:54:11',
|
|
waktu_recovery: '01/01/2023 11:01:18',
|
|
durasi_response_time: 1452,
|
|
durasi_recovery_time: 1879
|
|
},
|
|
{
|
|
id: 41,
|
|
no_laporan: 'G5423010108964',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'mono',
|
|
alamat_pelapor: 'Sumber agung Rt4 rw2',
|
|
no_telp_pelapor: '6282234913205',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SUKOHARJO',
|
|
nama_ulp: 'ULP JATISRONO',
|
|
nama_posko: 'POSKO ULP JATISRONO',
|
|
id_regu: 18975,
|
|
waktu_lapor: '01/01/2023 11:00:31',
|
|
waktu_response: '01/01/2023 11:26:44',
|
|
waktu_recovery: '01/01/2023 12:13:30',
|
|
durasi_response_time: 1573,
|
|
durasi_recovery_time: 4379
|
|
},
|
|
{
|
|
id: 42,
|
|
no_laporan: 'G5423010109033',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Umar',
|
|
alamat_pelapor: 'sanggrahan nogosari',
|
|
no_telp_pelapor: '628813915451',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 11:03:22',
|
|
waktu_response: '01/01/2023 11:12:20',
|
|
waktu_recovery: '01/01/2023 11:40:58',
|
|
durasi_response_time: 538,
|
|
durasi_recovery_time: 2256
|
|
},
|
|
{
|
|
id: 43,
|
|
no_laporan: 'G5623010100008',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'bp ari ',
|
|
alamat_pelapor: 'kp cikoneng girang rt01/03',
|
|
no_telp_pelapor: '081317366617',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 SERPONG',
|
|
nama_ulp: 'UP3 SERPONG',
|
|
nama_posko: 'POSKO SERPONG',
|
|
id_regu: 32065,
|
|
waktu_lapor: '01/01/2023 11:10:41',
|
|
waktu_response: '01/01/2023 11:34:06',
|
|
waktu_recovery: '01/01/2023 12:00:54',
|
|
durasi_response_time: 1405,
|
|
durasi_recovery_time: 3013
|
|
},
|
|
{
|
|
id: 44,
|
|
no_laporan: 'G5123010101037',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ANDRE',
|
|
alamat_pelapor:
|
|
'JL KUTA CANE KEL NATAM BARU KEC BADAR KAB ACEH TENGGARA / DEKAT JEMBATAN ',
|
|
no_telp_pelapor: '082237950589',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 11:17:15',
|
|
waktu_response: '01/01/2023 11:28:18',
|
|
waktu_recovery: '01/01/2023 11:47:28',
|
|
durasi_response_time: 663,
|
|
durasi_recovery_time: 1813
|
|
},
|
|
{
|
|
id: 45,
|
|
no_laporan: 'G5423010109663',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP I MADE SUDARSANA',
|
|
alamat_pelapor:
|
|
'JL PANTAI SESEH BANJAR SOGSOGAN DESA CEMAGI KEC MENGWI KAB BADUNG LOKASI PERSAWAHAN',
|
|
no_telp_pelapor: '085337275364',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 20885,
|
|
waktu_lapor: '01/01/2023 11:27:51',
|
|
waktu_response: '01/01/2023 12:19:53',
|
|
waktu_recovery: '01/01/2023 13:10:28',
|
|
durasi_response_time: 3122,
|
|
durasi_recovery_time: 6157
|
|
},
|
|
{
|
|
id: 46,
|
|
no_laporan: 'G5423010109926',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'lin manman',
|
|
alamat_pelapor: 'remi, rembun',
|
|
no_telp_pelapor: '6281229169167',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 11:37:59',
|
|
waktu_response: '01/01/2023 11:48:54',
|
|
waktu_recovery: '01/01/2023 12:14:03',
|
|
durasi_response_time: 655,
|
|
durasi_recovery_time: 2164
|
|
},
|
|
{
|
|
id: 47,
|
|
no_laporan: 'G5423010110234',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Kurniawan.Fr',
|
|
alamat_pelapor: 'klurak baru',
|
|
no_telp_pelapor: '628773806566',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP KALASAN',
|
|
nama_posko: 'POSKO ULP KALASAN',
|
|
id_regu: 13411,
|
|
waktu_lapor: '01/01/2023 11:49:40',
|
|
waktu_response: '01/01/2023 12:04:21',
|
|
waktu_recovery: '01/01/2023 12:14:58',
|
|
durasi_response_time: 881,
|
|
durasi_recovery_time: 1518
|
|
},
|
|
{
|
|
id: 48,
|
|
no_laporan: 'G5423010110316',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'karim',
|
|
alamat_pelapor: 'katol timur',
|
|
no_telp_pelapor: '6283165000775',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
nama_ulp: 'ULP KETAPANG',
|
|
nama_posko: 'POSKO ULP KETAPANG',
|
|
id_regu: 17138,
|
|
waktu_lapor: '01/01/2023 11:52:11',
|
|
waktu_response: '01/01/2023 12:01:48',
|
|
waktu_recovery: '01/01/2023 12:09:10',
|
|
durasi_response_time: 577,
|
|
durasi_recovery_time: 1019
|
|
},
|
|
{
|
|
id: 49,
|
|
no_laporan: 'G5423010110821',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Muhammad Rafa A',
|
|
alamat_pelapor: 'krendowahono',
|
|
no_telp_pelapor: '6285647129982',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 12:12:08',
|
|
waktu_response: '01/01/2023 12:21:45',
|
|
waktu_recovery: '01/01/2023 12:40:06',
|
|
durasi_response_time: 577,
|
|
durasi_recovery_time: 1678
|
|
},
|
|
{
|
|
id: 50,
|
|
no_laporan: 'G5423010110852',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MAFTOI',
|
|
alamat_pelapor:
|
|
'JL - DK CENDONO KIDUL RT 03/03 NO - KEL TEMBOK KEC LIMPUNG KAB BATANG (DEKAT MUSHOLLAH AL IKHLAS)',
|
|
no_telp_pelapor: '082135275110',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18148,
|
|
waktu_lapor: '01/01/2023 12:13:16',
|
|
waktu_response: '01/01/2023 12:40:09',
|
|
waktu_recovery: '01/01/2023 13:03:42',
|
|
durasi_response_time: 1613,
|
|
durasi_recovery_time: 3026
|
|
},
|
|
{
|
|
id: 51,
|
|
no_laporan: 'G5423010112304',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'lin manman',
|
|
alamat_pelapor: 'dk. pomahan',
|
|
no_telp_pelapor: '6281229169167',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 13:10:47',
|
|
waktu_response: '01/01/2023 13:20:44',
|
|
waktu_recovery: '01/01/2023 14:01:36',
|
|
durasi_response_time: 597,
|
|
durasi_recovery_time: 3049
|
|
},
|
|
{
|
|
id: 52,
|
|
no_laporan: 'G5123010101378',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU LINA',
|
|
alamat_pelapor:
|
|
'JLN R.MOCH KAFI 1 GANG FILM RT 8 RW 4 NO.3 KEL JAGAKARSA KEC JAGAKARSA JAKARTA SELATAN - ACUAN: DI DEPAN WARUNG GADO GADO',
|
|
no_telp_pelapor: '081213331192',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 LENTENG AGUNG',
|
|
nama_ulp: 'UP3 LENTENG AGUNG',
|
|
nama_posko: 'POSKO LENTENG AGUNG',
|
|
id_regu: 13671,
|
|
waktu_lapor: '01/01/2023 13:14:22',
|
|
waktu_response: '01/01/2023 13:35:29',
|
|
waktu_recovery: '01/01/2023 13:53:04',
|
|
durasi_response_time: 1267,
|
|
durasi_recovery_time: 2322
|
|
},
|
|
{
|
|
id: 53,
|
|
no_laporan: 'G5123010101386',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU DURTI /BP RANYAN',
|
|
alamat_pelapor:
|
|
'JL BALAI DESA DS DUKUH TENGAH NO 54 RT 06 RW 03 KEC KETANGGUNGAN KAB BREBES/DEKAT SAWAH',
|
|
no_telp_pelapor: '08816595524',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP JATIBARANG (DISJATENG)',
|
|
nama_posko: 'POSKO ULP JATIBARANG (DISJATENG)',
|
|
id_regu: 18229,
|
|
waktu_lapor: '01/01/2023 13:16:34',
|
|
waktu_response: '01/01/2023 13:57:40',
|
|
waktu_recovery: '01/01/2023 14:18:14',
|
|
durasi_response_time: 2466,
|
|
durasi_recovery_time: 3700
|
|
},
|
|
{
|
|
id: 54,
|
|
no_laporan: 'G9923010154070',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sri Nuryanti',
|
|
alamat_pelapor: 'DS.Kebonagung RT 3 rw 1',
|
|
no_telp_pelapor: '6282135457759',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 MAGELANG',
|
|
nama_ulp: 'ULP TEMANGGUNG',
|
|
nama_posko: 'POSKO ULP TEMANGGUNG',
|
|
id_regu: 33949,
|
|
waktu_lapor: '01/01/2023 13:22:23',
|
|
waktu_response: '01/01/2023 13:45:00',
|
|
waktu_recovery: '01/01/2023 14:00:18',
|
|
durasi_response_time: 1357,
|
|
durasi_recovery_time: 2275
|
|
},
|
|
{
|
|
id: 55,
|
|
no_laporan: 'G5223010101172',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP TAHRIM',
|
|
alamat_pelapor:
|
|
'JLN - DKH KARANGTENGAH RT 10 RW 3 NO. - KEL KUMESU KEC REBAN KAB BATANG >> DEKAT DENGAN MASJID BAITURAHMAN',
|
|
no_telp_pelapor: '085219905717',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18146,
|
|
waktu_lapor: '01/01/2023 13:34:40',
|
|
waktu_response: '01/01/2023 14:31:40',
|
|
waktu_recovery: '01/01/2023 14:40:30',
|
|
durasi_response_time: 3420,
|
|
durasi_recovery_time: 3950
|
|
},
|
|
{
|
|
id: 56,
|
|
no_laporan: 'G5323010101016',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'bp.mulyadi',
|
|
alamat_pelapor: 'vbi ee 3 no.9 ',
|
|
no_telp_pelapor: '08114341800',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 BOGOR',
|
|
nama_ulp: 'ULP BOGOR TIMUR',
|
|
nama_posko: 'POSKO ULP BOGOR TIMUR',
|
|
id_regu: 21356,
|
|
waktu_lapor: '01/01/2023 13:43:15',
|
|
waktu_response: '01/01/2023 14:28:03',
|
|
waktu_recovery: '01/01/2023 15:08:36',
|
|
durasi_response_time: 2688,
|
|
durasi_recovery_time: 5121
|
|
},
|
|
{
|
|
id: 57,
|
|
no_laporan: 'G5223010101189',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUKIRMAN',
|
|
alamat_pelapor:
|
|
'JL MASJID AN NUR NO- RT 4 RW 2 KEL KEDUNGKARANG, KEC WEDUNG, KAB DEMAK // DEKAT BALAI DESA KEDUNGKARANG KE KIRI KURANG LEBIH 100 M',
|
|
no_telp_pelapor: '085329837363',
|
|
status_akhir: 'Dibatalkan',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP DEMAK',
|
|
nama_posko: 'POSKO ULP DEMAK',
|
|
id_regu: 32518,
|
|
waktu_lapor: '01/01/2023 13:45:31',
|
|
waktu_response: null,
|
|
waktu_recovery: null,
|
|
durasi_response_time: null,
|
|
durasi_recovery_time: null
|
|
},
|
|
{
|
|
id: 58,
|
|
no_laporan: 'G5423010113354',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Abduh',
|
|
alamat_pelapor: 'jl baru sukaraja sebrang smk pertanian kwh sering eror',
|
|
no_telp_pelapor: '6285798496921',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUKABUMI',
|
|
nama_ulp: 'ULP SUKARAJA',
|
|
nama_posko: 'POSKO ULP SUKARAJA',
|
|
id_regu: 18797,
|
|
waktu_lapor: '01/01/2023 13:55:07',
|
|
waktu_response: '01/01/2023 14:07:15',
|
|
waktu_recovery: '01/01/2023 14:29:59',
|
|
durasi_response_time: 728,
|
|
durasi_recovery_time: 2092
|
|
},
|
|
{
|
|
id: 59,
|
|
no_laporan: 'G5223010101211',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BPK FAJAR',
|
|
alamat_pelapor:
|
|
'JL RAYA GUNUNG PATI DS PLALANGAN RT 1 RW 5 KEC GUNUNGPATI KOTA SEMARANG :: LOKASI SETELAH JEMBATAN',
|
|
no_telp_pelapor: '085640049643',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SALATIGA',
|
|
nama_ulp: 'ULP UNGARAN',
|
|
nama_posko: 'POSKO ULP UNGARAN',
|
|
id_regu: 10815,
|
|
waktu_lapor: '01/01/2023 13:58:06',
|
|
waktu_response: '01/01/2023 15:10:38',
|
|
waktu_recovery: '01/01/2023 15:28:39',
|
|
durasi_response_time: 4352,
|
|
durasi_recovery_time: 5433
|
|
},
|
|
{
|
|
id: 60,
|
|
no_laporan: 'G5423010113505',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ari susanto',
|
|
alamat_pelapor: 'dusun sikandri danasri lor',
|
|
no_telp_pelapor: '6285726459136',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 CILACAP',
|
|
nama_ulp: 'ULP KROYA',
|
|
nama_posko: 'POSKO ULP KROYA',
|
|
id_regu: 18207,
|
|
waktu_lapor: '01/01/2023 14:01:32',
|
|
waktu_response: '01/01/2023 14:26:07',
|
|
waktu_recovery: '01/01/2023 14:32:08',
|
|
durasi_response_time: 1475,
|
|
durasi_recovery_time: 1836
|
|
},
|
|
{
|
|
id: 61,
|
|
no_laporan: 'G1223010100320',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU PUTRI ',
|
|
alamat_pelapor: 'JL BLANG KEJEREN DS SIMPUR JAYA KEC KETAMBE KAB ACEH TENGGARA\\n',
|
|
no_telp_pelapor: '082213426854',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 14:07:37',
|
|
waktu_response: '01/01/2023 14:18:44',
|
|
waktu_recovery: '01/01/2023 14:37:48',
|
|
durasi_response_time: 667,
|
|
durasi_recovery_time: 1811
|
|
},
|
|
{
|
|
id: 62,
|
|
no_laporan: 'G5623010100018',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ibu eri',
|
|
alamat_pelapor: 'kp suka bakti rt01/12 ',
|
|
no_telp_pelapor: '085774918399',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 SERPONG',
|
|
nama_ulp: 'UP3 SERPONG',
|
|
nama_posko: 'POSKO SERPONG',
|
|
id_regu: 32065,
|
|
waktu_lapor: '01/01/2023 14:10:24',
|
|
waktu_response: '01/01/2023 14:41:30',
|
|
waktu_recovery: '01/01/2023 15:00:34',
|
|
durasi_response_time: 1866,
|
|
durasi_recovery_time: 3010
|
|
},
|
|
{
|
|
id: 63,
|
|
no_laporan: 'G5423010113784',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Gugun Gunari',
|
|
alamat_pelapor: 'Kp. Jamidah, Desa Pasirbungur, Kecamatan Cilograng',
|
|
no_telp_pelapor: '6288212703779',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUKABUMI',
|
|
nama_ulp: 'ULP PELABUHAN RATU',
|
|
nama_posko: 'POSKO ULP PELABUHAN RATU',
|
|
id_regu: 18847,
|
|
waktu_lapor: '01/01/2023 14:10:54',
|
|
waktu_response: '01/01/2023 14:33:42',
|
|
waktu_recovery: '01/01/2023 15:27:24',
|
|
durasi_response_time: 1368,
|
|
durasi_recovery_time: 4590
|
|
},
|
|
{
|
|
id: 64,
|
|
no_laporan: 'G5423010114110',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP RISKI',
|
|
alamat_pelapor:
|
|
'JL JANUR HIJAU 8 RT 8/1 KEL KELAPA GADING TIMUR KEC KELAPA GADING JAKUT ACUAN RUKO GRAHA BOULEVARD / RUKO BELAKANG SUSHI HIRO ',
|
|
no_telp_pelapor: '0214528334',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
nama_posko: 'POSKO SUNTER',
|
|
id_regu: 14317,
|
|
waktu_lapor: '01/01/2023 14:25:28',
|
|
waktu_response: '01/01/2023 15:00:50',
|
|
waktu_recovery: '01/01/2023 15:32:38',
|
|
durasi_response_time: 2122,
|
|
durasi_recovery_time: 4030
|
|
},
|
|
{
|
|
id: 65,
|
|
no_laporan: 'G5423010114163',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'musran',
|
|
alamat_pelapor: 'Jl. Poros Kolaka - Wolo No.16',
|
|
no_telp_pelapor: '6281242899420',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 14:27:28',
|
|
waktu_response: '01/01/2023 14:55:44',
|
|
waktu_recovery: '01/01/2023 15:04:09',
|
|
durasi_response_time: 1696,
|
|
durasi_recovery_time: 2201
|
|
},
|
|
{
|
|
id: 66,
|
|
no_laporan: 'G5323010101146',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP I MADE KUAT',
|
|
alamat_pelapor:
|
|
'JL ULUWATU KEL. JIMBARAN KEC. KUTA SELATAN KAB BADUNG DEKAT SOS KUPU KUPU JIMBARAN ',
|
|
no_telp_pelapor: '087860625594',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP KUTA',
|
|
nama_posko: 'POSKO ULP KUTA',
|
|
id_regu: 393,
|
|
waktu_lapor: '01/01/2023 14:43:20',
|
|
waktu_response: '01/01/2023 15:17:18',
|
|
waktu_recovery: '01/01/2023 15:54:10',
|
|
durasi_response_time: 2038,
|
|
durasi_recovery_time: 4250
|
|
},
|
|
{
|
|
id: 67,
|
|
no_laporan: 'G5523010100907',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUJANA ',
|
|
alamat_pelapor:
|
|
'JL ULUWATU BR TEBO NO 111 X KEL JIMBARAN KEC KUTA SELATAN KAB BADUNG. LOKASI DEKAT INDOMARET ',
|
|
no_telp_pelapor: '0361223555',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP KUTA',
|
|
nama_posko: 'POSKO ULP KUTA',
|
|
id_regu: 393,
|
|
waktu_lapor: '01/01/2023 15:04:23',
|
|
waktu_response: '01/01/2023 15:54:29',
|
|
waktu_recovery: '01/01/2023 16:06:00',
|
|
durasi_response_time: 3006,
|
|
durasi_recovery_time: 3697
|
|
},
|
|
{
|
|
id: 68,
|
|
no_laporan: 'G5423010115123',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Bustanul Arifin',
|
|
alamat_pelapor: 'Sukorejo rt06 rw09 Sambirejo, Ngawen, gunungkidul',
|
|
no_telp_pelapor: '6287839039344',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 15:07:49',
|
|
waktu_response: '01/01/2023 15:19:08',
|
|
waktu_recovery: '01/01/2023 15:34:57',
|
|
durasi_response_time: 679,
|
|
durasi_recovery_time: 1628
|
|
},
|
|
{
|
|
id: 69,
|
|
no_laporan: 'G5523010100932',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP JODI GUNAWAN',
|
|
alamat_pelapor: 'JL. SARI DANA NO 68 UBUNG KAJA LOKASI : SEBELUM SMK KESEHATAN',
|
|
no_telp_pelapor: '081936216168',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP DENPASAR',
|
|
nama_posko: 'POSKO ULP DENPASAR',
|
|
id_regu: 12991,
|
|
waktu_lapor: '01/01/2023 15:21:31',
|
|
waktu_response: '01/01/2023 15:58:26',
|
|
waktu_recovery: '01/01/2023 16:12:37',
|
|
durasi_response_time: 2215,
|
|
durasi_recovery_time: 3066
|
|
},
|
|
{
|
|
id: 70,
|
|
no_laporan: 'G5123010101762',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ARGO',
|
|
alamat_pelapor:
|
|
'PR BERINGIN RESIDENCE CLUSTER RUBY NO 16 RT 2/RW 26 KEL SERANG KOTA KEC SERANG. KAB SERANG./ TEPAT DIPEREMPATAN ',
|
|
no_telp_pelapor: '081320155045',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 BANTEN UTARA',
|
|
nama_ulp: 'ULP SERANG KOTA',
|
|
nama_posko: 'POSKO ULP SERANG KOTA',
|
|
id_regu: 16235,
|
|
waktu_lapor: '01/01/2023 15:35:26',
|
|
waktu_response: '01/01/2023 15:47:39',
|
|
waktu_recovery: '01/01/2023 15:57:54',
|
|
durasi_response_time: 733,
|
|
durasi_recovery_time: 1348
|
|
},
|
|
{
|
|
id: 71,
|
|
no_laporan: 'G5123010101798',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP RAHARJO',
|
|
alamat_pelapor:
|
|
'PR VILLA BOGOR INDAH BLOK B2 NO 1 RT 09 RW 13 KEL CIPARIGI KEC BOGOR UTARA KOTA BOGOR',
|
|
no_telp_pelapor: '081240005862',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 BOGOR',
|
|
nama_ulp: 'ULP BOGOR TIMUR',
|
|
nama_posko: 'POSKO ULP BOGOR TIMUR',
|
|
id_regu: 21356,
|
|
waktu_lapor: '01/01/2023 15:48:26',
|
|
waktu_response: '01/01/2023 16:44:50',
|
|
waktu_recovery: '01/01/2023 16:56:55',
|
|
durasi_response_time: 3384,
|
|
durasi_recovery_time: 4109
|
|
},
|
|
{
|
|
id: 72,
|
|
no_laporan: 'G5423010116505',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'fathan',
|
|
alamat_pelapor: 'ringinrejo',
|
|
no_telp_pelapor: '6285229056502',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 16:04:39',
|
|
waktu_response: '01/01/2023 16:23:21',
|
|
waktu_recovery: '01/01/2023 16:38:43',
|
|
durasi_response_time: 1122,
|
|
durasi_recovery_time: 2044
|
|
},
|
|
{
|
|
id: 73,
|
|
no_laporan: 'G5423010116605',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sutrisno Trisno',
|
|
alamat_pelapor: 'DS.TEGALOMBO RT 03/3',
|
|
no_telp_pelapor: '6285293203802',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18146,
|
|
waktu_lapor: '01/01/2023 16:08:23',
|
|
waktu_response: '01/01/2023 16:40:01',
|
|
waktu_recovery: '01/01/2023 16:54:00',
|
|
durasi_response_time: 1898,
|
|
durasi_recovery_time: 2737
|
|
},
|
|
{
|
|
id: 74,
|
|
no_laporan: 'G5223010101451',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DEDI SUSANTO',
|
|
alamat_pelapor: 'JL TEGOWANU KAPUNG KEL SUGIHMANIK KEC PANGGUNG HARJO KAB GROBOGAN',
|
|
no_telp_pelapor: '081225664111',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP TEGOWANU',
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
id_regu: 18187,
|
|
waktu_lapor: '01/01/2023 16:11:41',
|
|
waktu_response: '01/01/2023 16:49:30',
|
|
waktu_recovery: '01/01/2023 16:52:40',
|
|
durasi_response_time: 2269,
|
|
durasi_recovery_time: 2459
|
|
},
|
|
{
|
|
id: 75,
|
|
no_laporan: 'G3223010100519',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'TANTE RIKA',
|
|
alamat_pelapor: 'SABILAMBO JL.KEMBAR',
|
|
no_telp_pelapor: '085225672147',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 16:21:00',
|
|
waktu_response: '01/01/2023 17:09:58',
|
|
waktu_recovery: '01/01/2023 17:29:04',
|
|
durasi_response_time: 2938,
|
|
durasi_recovery_time: 4084
|
|
},
|
|
{
|
|
id: 76,
|
|
no_laporan: 'G9923010154271',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'JAMALUDIN',
|
|
alamat_pelapor:
|
|
'pr Puri araya blok iif no 1 ds cicadas kec ciampea kab bogor // belkang blok im ',
|
|
no_telp_pelapor: '6285219758844',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 BOGOR',
|
|
nama_ulp: 'ULP LEUWILIANG',
|
|
nama_posko: 'POSKO ULP LEUWILIANG',
|
|
id_regu: 18920,
|
|
waktu_lapor: '01/01/2023 16:21:14',
|
|
waktu_response: '01/01/2023 16:59:06',
|
|
waktu_recovery: '01/01/2023 17:05:50',
|
|
durasi_response_time: 2272,
|
|
durasi_recovery_time: 2676
|
|
},
|
|
{
|
|
id: 77,
|
|
no_laporan: 'G5423010117040',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'siti raswati',
|
|
alamat_pelapor: 'Jalan Desa Kedunggede No.kec',
|
|
no_telp_pelapor: '6283174272271',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP BANYUMAS',
|
|
nama_posko: 'POSKO ULP BANYUMAS',
|
|
id_regu: 28259,
|
|
waktu_lapor: '01/01/2023 16:26:52',
|
|
waktu_response: '01/01/2023 17:02:21',
|
|
waktu_recovery: '01/01/2023 17:17:40',
|
|
durasi_response_time: 2129,
|
|
durasi_recovery_time: 3048
|
|
},
|
|
{
|
|
id: 78,
|
|
no_laporan: 'G5223010101498',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU PRIMA',
|
|
alamat_pelapor:
|
|
'JL SIDOMUKTI NO 82 RT 7 RW 6 KEL SOKARAJA KULON KEC SOKARAJA KAB BANYUMAS//DEKAT KANTOR RADAR HARIAN BANYUMAS',
|
|
no_telp_pelapor: '081327466644',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP BANYUMAS',
|
|
nama_posko: 'POSKO ULP BANYUMAS',
|
|
id_regu: 24997,
|
|
waktu_lapor: '01/01/2023 16:31:08',
|
|
waktu_response: '01/01/2023 17:00:31',
|
|
waktu_recovery: '01/01/2023 17:28:18',
|
|
durasi_response_time: 1763,
|
|
durasi_recovery_time: 3430
|
|
},
|
|
{
|
|
id: 79,
|
|
no_laporan: 'G5223010101505',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUKARDI',
|
|
alamat_pelapor:
|
|
'JL SALIM PIPIT DESA KUTA LALANG KEC BABUL RAHMAH KAB ACEH TENGGARA PROV ACEH',
|
|
no_telp_pelapor: '082361824465',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 16:34:32',
|
|
waktu_response: '01/01/2023 16:46:04',
|
|
waktu_recovery: '01/01/2023 17:27:55',
|
|
durasi_response_time: 692,
|
|
durasi_recovery_time: 3203
|
|
},
|
|
{
|
|
id: 80,
|
|
no_laporan: 'G5423010117584',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DWI',
|
|
alamat_pelapor: 'RT 2/5 KP MUNDU KEL KEDUNG GEDE KEC BANYUMAS KAB BANYUMAS',
|
|
no_telp_pelapor: '085314189411',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP BANYUMAS',
|
|
nama_posko: 'POSKO ULP BANYUMAS',
|
|
id_regu: 28259,
|
|
waktu_lapor: '01/01/2023 16:48:29',
|
|
waktu_response: '01/01/2023 17:23:45',
|
|
waktu_recovery: '01/01/2023 17:32:17',
|
|
durasi_response_time: 2116,
|
|
durasi_recovery_time: 2628
|
|
},
|
|
{
|
|
id: 81,
|
|
no_laporan: 'G5423010118462',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Tasrin ode',
|
|
alamat_pelapor: 'jl. flamboyan harapan indah',
|
|
no_telp_pelapor: '6285254548438',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH PAPUA DAN PAPUA BARAT',
|
|
nama_up3: 'UP3 SORONG',
|
|
nama_ulp: 'ULP SORONG KOTA',
|
|
nama_posko: 'POSKO ULP SORONG KOTA',
|
|
id_regu: 39757,
|
|
waktu_lapor: '01/01/2023 17:18:54',
|
|
waktu_response: '01/01/2023 19:47:47',
|
|
waktu_recovery: '01/01/2023 20:57:34',
|
|
durasi_response_time: 8933,
|
|
durasi_recovery_time: 13120
|
|
},
|
|
{
|
|
id: 82,
|
|
no_laporan: 'G5123010102132',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DIKI',
|
|
alamat_pelapor:
|
|
'JL RAYA PASESEH NO - RT 00 RW 00 DS PASESEH KEC TANJUNGBUMI KAB BANGKALAN (TIMUR BALAI DESA PASESEH, LOKASI DI BAWAH TOWER)\\n',
|
|
no_telp_pelapor: '081335195759',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
nama_ulp: 'ULP KETAPANG',
|
|
nama_posko: 'POSKO ULP KETAPANG',
|
|
id_regu: 17138,
|
|
waktu_lapor: '01/01/2023 17:20:36',
|
|
waktu_response: '01/01/2023 17:41:57',
|
|
waktu_recovery: '01/01/2023 18:07:14',
|
|
durasi_response_time: 1281,
|
|
durasi_recovery_time: 2798
|
|
},
|
|
{
|
|
id: 83,
|
|
no_laporan: 'G5423010118817',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'SEMIN , GK',
|
|
alamat_pelapor: 'tlepok semin semin',
|
|
no_telp_pelapor: '6281258368142',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 17:31:40',
|
|
waktu_response: '01/01/2023 18:09:16',
|
|
waktu_recovery: '01/01/2023 18:20:50',
|
|
durasi_response_time: 2256,
|
|
durasi_recovery_time: 2950
|
|
},
|
|
{
|
|
id: 84,
|
|
no_laporan: 'G3223010100618',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'RISNA DM',
|
|
alamat_pelapor: 'DS.LANA WOLO',
|
|
no_telp_pelapor: '082298275569',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 17:42:02',
|
|
waktu_response: '01/01/2023 18:07:36',
|
|
waktu_recovery: '01/01/2023 18:26:31',
|
|
durasi_response_time: 1534,
|
|
durasi_recovery_time: 2669
|
|
},
|
|
{
|
|
id: 85,
|
|
no_laporan: 'G3223010100649',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP RENOL PATIAN',
|
|
alamat_pelapor:
|
|
'JL LOLAI DESA LOLAI KEL PANGALA KEPALA PIJO KEC RINDING ALO KAB TORAJA UTARA',
|
|
no_telp_pelapor: '082346041585',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 PALOPO',
|
|
nama_ulp: 'ULP RANTEPAO',
|
|
nama_posko: 'POSKO ULP RANTEPAO',
|
|
id_regu: 22229,
|
|
waktu_lapor: '01/01/2023 17:58:54',
|
|
waktu_response: '01/01/2023 18:23:52',
|
|
waktu_recovery: '01/01/2023 18:38:35',
|
|
durasi_response_time: 1498,
|
|
durasi_recovery_time: 2381
|
|
},
|
|
{
|
|
id: 86,
|
|
no_laporan: 'G5423010120081',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'nubhan',
|
|
alamat_pelapor: 'Mulyadadi',
|
|
no_telp_pelapor: '6281323432119',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 CILACAP',
|
|
nama_ulp: 'ULP SIDAREJA',
|
|
nama_posko: 'POSKO ULP SIDAREJA',
|
|
id_regu: 18209,
|
|
waktu_lapor: '01/01/2023 18:08:04',
|
|
waktu_response: '01/01/2023 18:26:02',
|
|
waktu_recovery: '01/01/2023 18:39:16',
|
|
durasi_response_time: 1078,
|
|
durasi_recovery_time: 1872
|
|
},
|
|
{
|
|
id: 87,
|
|
no_laporan: 'G5423010120294',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Nur Hadi',
|
|
alamat_pelapor: 'dsn gintungan rt19rw20',
|
|
no_telp_pelapor: '6287836336881',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SALATIGA',
|
|
nama_ulp: 'ULP SALATIGA KOTA',
|
|
nama_posko: 'POSKO ULP SALATIGA KOTA',
|
|
id_regu: 22958,
|
|
waktu_lapor: '01/01/2023 18:14:01',
|
|
waktu_response: '01/01/2023 18:41:15',
|
|
waktu_recovery: '01/01/2023 18:51:14',
|
|
durasi_response_time: 1634,
|
|
durasi_recovery_time: 2233
|
|
},
|
|
{
|
|
id: 88,
|
|
no_laporan: 'G5423010120504',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'galung SE. MM',
|
|
alamat_pelapor: 'tenembak juhar',
|
|
no_telp_pelapor: '6282182273131',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 18:20:42',
|
|
waktu_response: '01/01/2023 18:36:15',
|
|
waktu_recovery: '01/01/2023 18:44:48',
|
|
durasi_response_time: 933,
|
|
durasi_recovery_time: 1446
|
|
},
|
|
{
|
|
id: 89,
|
|
no_laporan: 'G5423010120666',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'meisya aurelia idris',
|
|
alamat_pelapor: 'jl.poros sei meriam, sebrang PDAM',
|
|
no_telp_pelapor: '6285705266432',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH KALIMANTAN TIMUR',
|
|
nama_up3: 'UP3 SAMARINDA',
|
|
nama_ulp: 'ULP SAMARINDA ILIR',
|
|
nama_posko: 'POSKO ULP SAMARINDA ILIR',
|
|
id_regu: 28722,
|
|
waktu_lapor: '01/01/2023 18:26:06',
|
|
waktu_response: '01/01/2023 18:49:47',
|
|
waktu_recovery: '01/01/2023 19:14:32',
|
|
durasi_response_time: 1421,
|
|
durasi_recovery_time: 2906
|
|
},
|
|
{
|
|
id: 90,
|
|
no_laporan: 'G5423010120988',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Rudi irawan',
|
|
alamat_pelapor: 'jalan perjuangan duri 13',
|
|
no_telp_pelapor: '6268963256895',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH RIAU DAN KEPULAUAN RIAU',
|
|
nama_up3: 'UP3 DUMAI',
|
|
nama_ulp: 'ULP DUMAI KOTA',
|
|
nama_posko: 'POSKO ULP DUMAI KOTA',
|
|
id_regu: 26722,
|
|
waktu_lapor: '01/01/2023 18:36:53',
|
|
waktu_response: '01/01/2023 18:57:11',
|
|
waktu_recovery: '01/01/2023 19:17:54',
|
|
durasi_response_time: 1218,
|
|
durasi_recovery_time: 2461
|
|
},
|
|
{
|
|
id: 91,
|
|
no_laporan: 'G5223010101894',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP AGUS ',
|
|
alamat_pelapor:
|
|
'JL BAYANGKARA KM 01 NO- RT 5 RW 5 DS KURUNG KAMBING KEC MANDALA WANGI KAB PANDEGLANG // LOKASI KANTOR POLISI SPN MANDALA WANGI ',
|
|
no_telp_pelapor: '087772951509',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 BANTEN SELATAN',
|
|
nama_ulp: 'ULP PANDEGLANG',
|
|
nama_posko: 'POSKO ULP PANDEGLANG',
|
|
id_regu: 16214,
|
|
waktu_lapor: '01/01/2023 18:46:33',
|
|
waktu_response: '01/01/2023 19:10:12',
|
|
waktu_recovery: '01/01/2023 19:19:28',
|
|
durasi_response_time: 1419,
|
|
durasi_recovery_time: 1975
|
|
},
|
|
{
|
|
id: 92,
|
|
no_laporan: 'G5423010121308',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Jung kirno',
|
|
alamat_pelapor: 'sumberjo',
|
|
no_telp_pelapor: '628812922073',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SRAGEN',
|
|
nama_posko: 'POSKO ULP SRAGEN',
|
|
id_regu: 18974,
|
|
waktu_lapor: '01/01/2023 18:46:39',
|
|
waktu_response: '01/01/2023 19:16:08',
|
|
waktu_recovery: '01/01/2023 19:36:05',
|
|
durasi_response_time: 1769,
|
|
durasi_recovery_time: 2966
|
|
},
|
|
{
|
|
id: 93,
|
|
no_laporan: 'G5323010101694',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'asep',
|
|
alamat_pelapor: 'PR BENTENG CBN F No.57 RT.000 RW.00 KALIBARU',
|
|
no_telp_pelapor: '6281952776267',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 DEPOK',
|
|
nama_ulp: 'ULP CIBINONG',
|
|
nama_posko: 'POSKO ULP CIBINONG',
|
|
id_regu: 18837,
|
|
waktu_lapor: '01/01/2023 19:01:40',
|
|
waktu_response: '01/01/2023 19:23:27',
|
|
waktu_recovery: '01/01/2023 19:59:31',
|
|
durasi_response_time: 1307,
|
|
durasi_recovery_time: 3471
|
|
},
|
|
{
|
|
id: 94,
|
|
no_laporan: 'G5423010122681',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Teguh Prasetyo',
|
|
alamat_pelapor: 'Jl. Alam Mekongga No.3',
|
|
no_telp_pelapor: '6285241757449',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 19:31:02',
|
|
waktu_response: '01/01/2023 19:52:31',
|
|
waktu_recovery: '01/01/2023 20:18:30',
|
|
durasi_response_time: 1289,
|
|
durasi_recovery_time: 2848
|
|
},
|
|
{
|
|
id: 95,
|
|
no_laporan: 'G5423010122718',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'amat',
|
|
alamat_pelapor: 'wr',
|
|
no_telp_pelapor: '6285742746166',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18148,
|
|
waktu_lapor: '01/01/2023 19:32:38',
|
|
waktu_response: '01/01/2023 20:08:02',
|
|
waktu_recovery: '01/01/2023 20:19:13',
|
|
durasi_response_time: 2124,
|
|
durasi_recovery_time: 2795
|
|
},
|
|
{
|
|
id: 96,
|
|
no_laporan: 'G5423010122934',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Kang Aceng',
|
|
alamat_pelapor: 'lalonggopi',
|
|
no_telp_pelapor: '6282223819673',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 19:40:02',
|
|
waktu_response: '01/01/2023 20:17:55',
|
|
waktu_recovery: '01/01/2023 20:37:18',
|
|
durasi_response_time: 2273,
|
|
durasi_recovery_time: 3436
|
|
},
|
|
{
|
|
id: 97,
|
|
no_laporan: 'G5423010122986',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'datok sipatoka',
|
|
alamat_pelapor: 'jurangjero, ngawen',
|
|
no_telp_pelapor: '6281904111534',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 19:41:58',
|
|
waktu_response: '01/01/2023 19:53:34',
|
|
waktu_recovery: '01/01/2023 20:08:34',
|
|
durasi_response_time: 696,
|
|
durasi_recovery_time: 1596
|
|
},
|
|
{
|
|
id: 98,
|
|
no_laporan: 'G5123010102768',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP TAUFIK ',
|
|
alamat_pelapor:
|
|
'JL - DS TANJUNG BUMI RT 0 RW 0 NO 0 KEC TANJUNG BUMI KAB BANGKALAN / SELATAN LAPANGAN ALAP ALAP',
|
|
no_telp_pelapor: '081352782258',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
nama_ulp: 'ULP KETAPANG',
|
|
nama_posko: 'POSKO ULP KETAPANG',
|
|
id_regu: 17138,
|
|
waktu_lapor: '01/01/2023 19:46:59',
|
|
waktu_response: '01/01/2023 20:11:25',
|
|
waktu_recovery: '01/01/2023 20:42:45',
|
|
durasi_response_time: 1466,
|
|
durasi_recovery_time: 3346
|
|
},
|
|
{
|
|
id: 99,
|
|
no_laporan: 'G5423010123203',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Jurianto Manullang',
|
|
alamat_pelapor: 'GG rasmi ',
|
|
no_telp_pelapor: '6281263183116',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
nama_up3: 'UP3 LUBUKPAKAM',
|
|
nama_ulp: 'ULP TANJUNG MORAWA',
|
|
nama_posko: 'POSKO ULP TANJUNG MORAWA',
|
|
id_regu: 17680,
|
|
waktu_lapor: '01/01/2023 19:50:15',
|
|
waktu_response: '01/01/2023 19:53:07',
|
|
waktu_recovery: '01/01/2023 19:54:07',
|
|
durasi_response_time: 172,
|
|
durasi_recovery_time: 232
|
|
},
|
|
{
|
|
id: 100,
|
|
no_laporan: 'G5323010101835',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BPK IGA',
|
|
alamat_pelapor:
|
|
'DUSUN KEDUNGMULYA RT 24 RW 7 NO 0 DESA PASIRKALIKI KEC RAWAMERTA,KAB KARAWANG (DEKAT MESJID AL AMANAH)',
|
|
no_telp_pelapor: '085813792190',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 KARAWANG',
|
|
nama_ulp: 'ULP RENGASDENGKLOK',
|
|
nama_posko: 'POSKO ULP RENGASDENGKLOK',
|
|
id_regu: 18767,
|
|
waktu_lapor: '01/01/2023 19:59:13',
|
|
waktu_response: '01/01/2023 20:23:22',
|
|
waktu_recovery: '01/01/2023 20:51:03',
|
|
durasi_response_time: 1449,
|
|
durasi_recovery_time: 3110
|
|
},
|
|
{
|
|
id: 101,
|
|
no_laporan: 'G9923010154570',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'puji Astuti',
|
|
alamat_pelapor: 'semedo RT 10 RW 06',
|
|
no_telp_pelapor: '6281381307920',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP AJIBARANG',
|
|
nama_posko: 'POSKO ULP AJIBARANG',
|
|
id_regu: 26448,
|
|
waktu_lapor: '01/01/2023 20:02:54',
|
|
waktu_response: '01/01/2023 20:26:00',
|
|
waktu_recovery: '01/01/2023 20:50:53',
|
|
durasi_response_time: 1386,
|
|
durasi_recovery_time: 2879
|
|
},
|
|
{
|
|
id: 102,
|
|
no_laporan: 'G5423010123605',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ibu lili',
|
|
alamat_pelapor: 'GG Rasmi ujung',
|
|
no_telp_pelapor: '6281263183116',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
nama_up3: 'UP3 LUBUKPAKAM',
|
|
nama_ulp: 'ULP TANJUNG MORAWA',
|
|
nama_posko: 'POSKO ULP TANJUNG MORAWA',
|
|
id_regu: 17680,
|
|
waktu_lapor: '01/01/2023 20:07:37',
|
|
waktu_response: '01/01/2023 20:10:41',
|
|
waktu_recovery: '01/01/2023 20:11:40',
|
|
durasi_response_time: 184,
|
|
durasi_recovery_time: 243
|
|
},
|
|
{
|
|
id: 103,
|
|
no_laporan: 'G5423010123720',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'linda sely',
|
|
alamat_pelapor: 'dusun pathokan rt 1 rw 5 .An bapak agus',
|
|
no_telp_pelapor: '6283840074648',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 CILACAP',
|
|
nama_ulp: 'ULP KEBUMEN',
|
|
nama_posko: 'POSKO ULP KEBUMEN',
|
|
id_regu: 18203,
|
|
waktu_lapor: '01/01/2023 20:12:22',
|
|
waktu_response: '01/01/2023 20:36:32',
|
|
waktu_recovery: '01/01/2023 20:50:33',
|
|
durasi_response_time: 1450,
|
|
durasi_recovery_time: 2291
|
|
},
|
|
{
|
|
id: 104,
|
|
no_laporan: 'G5423010123753',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUHADA',
|
|
alamat_pelapor: 'JL AIR TERJUN 1 DS DANAHWARIH EC BALAPULANG KAB TEGAL JATENG ',
|
|
no_telp_pelapor: '082324678193',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP BALAPULANG',
|
|
nama_posko: 'POSKO ULP BALAPULANG',
|
|
id_regu: 18230,
|
|
waktu_lapor: '01/01/2023 20:13:39',
|
|
waktu_response: '01/01/2023 20:45:29',
|
|
waktu_recovery: '01/01/2023 20:58:49',
|
|
durasi_response_time: 1910,
|
|
durasi_recovery_time: 2710
|
|
},
|
|
{
|
|
id: 105,
|
|
no_laporan: 'G5423010124206',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Masitah',
|
|
alamat_pelapor: 'Gg. Tani No.30',
|
|
no_telp_pelapor: '628117883315',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 20:34:12',
|
|
waktu_response: '01/01/2023 21:02:55',
|
|
waktu_recovery: '01/01/2023 21:30:50',
|
|
durasi_response_time: 1723,
|
|
durasi_recovery_time: 3398
|
|
},
|
|
{
|
|
id: 106,
|
|
no_laporan: 'G5423010124253',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'fathan',
|
|
alamat_pelapor: 'sumberejo',
|
|
no_telp_pelapor: '6285229056502',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 20:35:55',
|
|
waktu_response: '01/01/2023 20:45:17',
|
|
waktu_recovery: '01/01/2023 21:16:13',
|
|
durasi_response_time: 562,
|
|
durasi_recovery_time: 2418
|
|
},
|
|
{
|
|
id: 107,
|
|
no_laporan: 'G5423010124365',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'mujiyono',
|
|
alamat_pelapor: 'parangan semin semin',
|
|
no_telp_pelapor: '6285870061866',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 20:40:58',
|
|
waktu_response: '01/01/2023 21:18:18',
|
|
waktu_recovery: '01/01/2023 21:35:26',
|
|
durasi_response_time: 2240,
|
|
durasi_recovery_time: 3268
|
|
},
|
|
{
|
|
id: 108,
|
|
no_laporan: 'G3223010100908',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'PETTA LAWA',
|
|
alamat_pelapor: 'DG.PASAU',
|
|
no_telp_pelapor: '085232213700',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 20:45:11',
|
|
waktu_response: '01/01/2023 20:57:25',
|
|
waktu_recovery: '01/01/2023 21:49:09',
|
|
durasi_response_time: 734,
|
|
durasi_recovery_time: 3838
|
|
},
|
|
{
|
|
id: 109,
|
|
no_laporan: 'G5423010125251',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BPK PARYANTO',
|
|
alamat_pelapor: 'POLSEK PATEAN JL RAYA CURGSEWU PATEAN KENDAL',
|
|
no_telp_pelapor: '08122865333',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SEMARANG',
|
|
nama_ulp: 'ULP WELERI',
|
|
nama_posko: 'POSKO ULP WELERI',
|
|
id_regu: 18320,
|
|
waktu_lapor: '01/01/2023 21:25:32',
|
|
waktu_response: '01/01/2023 21:49:37',
|
|
waktu_recovery: '01/01/2023 22:09:08',
|
|
durasi_response_time: 1445,
|
|
durasi_recovery_time: 2616
|
|
},
|
|
{
|
|
id: 110,
|
|
no_laporan: 'G5423010125411',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MULYADI',
|
|
alamat_pelapor:
|
|
'JL WARU 2 KP WARU 2 RT 08/04 KEC SINDANG JAYA KEL SUKAHARJA KAB TANGGERANG DEKAT MASJID USWATUN HASANAH ',
|
|
no_telp_pelapor: '081295100066',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 CIKUPA',
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
nama_posko: 'POSKO CIKUPA',
|
|
id_regu: 16298,
|
|
waktu_lapor: '01/01/2023 21:34:23',
|
|
waktu_response: '01/01/2023 22:03:18',
|
|
waktu_recovery: '01/01/2023 23:02:25',
|
|
durasi_response_time: 1735,
|
|
durasi_recovery_time: 5282
|
|
},
|
|
{
|
|
id: 111,
|
|
no_laporan: 'G5423010125564',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'halim',
|
|
alamat_pelapor: 'gang flamboyan 5',
|
|
no_telp_pelapor: '6285226133143',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 KUDUS',
|
|
nama_ulp: 'ULP KUDUS KOTA',
|
|
nama_posko: 'POSKO ULP KUDUS KOTA',
|
|
id_regu: 18377,
|
|
waktu_lapor: '01/01/2023 21:42:46',
|
|
waktu_response: '01/01/2023 23:03:28',
|
|
waktu_recovery: '01/01/2023 23:21:21',
|
|
durasi_response_time: 4842,
|
|
durasi_recovery_time: 5915
|
|
},
|
|
{
|
|
id: 112,
|
|
no_laporan: 'G5423010125593',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'RASMAN',
|
|
alamat_pelapor: 'JL Pemuda',
|
|
no_telp_pelapor: '6282346742834',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 21:44:34',
|
|
waktu_response: '01/01/2023 22:16:52',
|
|
waktu_recovery: '01/01/2023 22:52:20',
|
|
durasi_response_time: 1938,
|
|
durasi_recovery_time: 4066
|
|
},
|
|
{
|
|
id: 113,
|
|
no_laporan: 'G5423010125736',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Akbari',
|
|
alamat_pelapor: 'puubunga',
|
|
no_telp_pelapor: '6285342186537',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 21:53:30',
|
|
waktu_response: '01/01/2023 22:17:16',
|
|
waktu_recovery: '01/01/2023 22:54:36',
|
|
durasi_response_time: 1426,
|
|
durasi_recovery_time: 3666
|
|
},
|
|
{
|
|
id: 114,
|
|
no_laporan: 'G5423010125825',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Nikson Makalu',
|
|
alamat_pelapor: 'desa gura belakang gereja elim baru kadara',
|
|
no_telp_pelapor: '6282190090364',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH MALUKU DAN MALUKU UTARA',
|
|
nama_up3: 'UP3 TOBELO',
|
|
nama_ulp: 'ULP TOBELO',
|
|
nama_posko: 'POSKO ULP TOBELO',
|
|
id_regu: 21519,
|
|
waktu_lapor: '01/01/2023 21:59:47',
|
|
waktu_response: '01/01/2023 22:18:24',
|
|
waktu_recovery: '01/01/2023 22:58:14',
|
|
durasi_response_time: 1117,
|
|
durasi_recovery_time: 3507
|
|
},
|
|
{
|
|
id: 115,
|
|
no_laporan: 'G5523010101703',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP WAWAN',
|
|
alamat_pelapor:
|
|
'JL. MUNDUK CATU KEL CANGGU KEC KUTA UTARA KAB BADUNG. ACUAN: DI DEPAN HOTEL EASTIN ASTA RESORT CANGGU',
|
|
no_telp_pelapor: '03616200888',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 12874,
|
|
waktu_lapor: '01/01/2023 22:03:21',
|
|
waktu_response: '01/01/2023 23:06:52',
|
|
waktu_recovery: '01/01/2023 23:21:51',
|
|
durasi_response_time: 3811,
|
|
durasi_recovery_time: 4710
|
|
},
|
|
{
|
|
id: 116,
|
|
no_laporan: 'G5123010103259',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DARTO',
|
|
alamat_pelapor: 'JL.MUNDUK 1 NO.27 KEL.CANGGU KC.KUTA UTARA KB.BANDUNG -- DI VILA RADIAN',
|
|
no_telp_pelapor: '082144380456',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 12874,
|
|
waktu_lapor: '01/01/2023 22:41:14',
|
|
waktu_response: '01/01/2023 23:49:12',
|
|
waktu_recovery: '02/01/2023 00:12:44',
|
|
durasi_response_time: 4078,
|
|
durasi_recovery_time: 5490
|
|
},
|
|
{
|
|
id: 117,
|
|
no_laporan: 'G5423010126460',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Bakri',
|
|
alamat_pelapor: 'dsn sukamanah 05/03 desa kutawargi kec.rawamerta',
|
|
no_telp_pelapor: '6285883446703',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 KARAWANG',
|
|
nama_ulp: 'ULP RENGASDENGKLOK',
|
|
nama_posko: 'POSKO ULP RENGASDENGKLOK',
|
|
id_regu: 18767,
|
|
waktu_lapor: '01/01/2023 22:49:52',
|
|
waktu_response: '01/01/2023 23:10:28',
|
|
waktu_recovery: '01/01/2023 23:26:24',
|
|
durasi_response_time: 1236,
|
|
durasi_recovery_time: 2192
|
|
},
|
|
{
|
|
id: 118,
|
|
no_laporan: 'G5423010126461',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Ontan FMS',
|
|
alamat_pelapor: 'desa gura ',
|
|
no_telp_pelapor: '6282189959613',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH MALUKU DAN MALUKU UTARA',
|
|
nama_up3: 'UP3 TOBELO',
|
|
nama_ulp: 'ULP TOBELO',
|
|
nama_posko: 'POSKO ULP TOBELO',
|
|
id_regu: 21519,
|
|
waktu_lapor: '01/01/2023 22:50:00',
|
|
waktu_response: '01/01/2023 23:09:29',
|
|
waktu_recovery: '01/01/2023 23:39:53',
|
|
durasi_response_time: 1169,
|
|
durasi_recovery_time: 2993
|
|
},
|
|
{
|
|
id: 119,
|
|
no_laporan: 'G5423010126638',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'doriwan',
|
|
alamat_pelapor: 'Jl. Soekarno-Hatta No.Kelurahan',
|
|
no_telp_pelapor: '6268963256895',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH RIAU DAN KEPULAUAN RIAU',
|
|
nama_up3: 'UP3 DUMAI',
|
|
nama_ulp: 'ULP DUMAI KOTA',
|
|
nama_posko: 'POSKO ULP DUMAI KOTA',
|
|
id_regu: 26722,
|
|
waktu_lapor: '01/01/2023 23:08:21',
|
|
waktu_response: '01/01/2023 23:24:55',
|
|
waktu_recovery: '01/01/2023 23:55:36',
|
|
durasi_response_time: 994,
|
|
durasi_recovery_time: 2835
|
|
}
|
|
]
|
|
} else {
|
|
data.value = [
|
|
{
|
|
id: 0,
|
|
no_laporan: 'G5423010100936',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SENO',
|
|
alamat_pelapor:
|
|
'JL MERCEDES BENZ RT 3/3 NO 0 KEL CICADAS KEC GUNUNG PUTRI KAB BOGOR JAWA BARAT ACUAN : SAMPING APARTMENT CICADAS ',
|
|
no_telp_pelapor: '081284155423',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 GUNUNG PUTRI',
|
|
nama_ulp: 'ULP CITEUREUP',
|
|
nama_posko: 'POSKO ULP CITEUREUP',
|
|
id_regu: 19268,
|
|
waktu_lapor: '01/01/2023 01:31:14',
|
|
waktu_response: '01/01/2023 02:36:15',
|
|
waktu_recovery: '01/01/2023 02:40:36',
|
|
durasi_response_time: 3901,
|
|
durasi_recovery_time: 4162
|
|
},
|
|
{
|
|
id: 1,
|
|
no_laporan: 'G5423010100949',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUTEJO',
|
|
alamat_pelapor:
|
|
'GG NISIN RT 05 NO 21 KEL. CIRACAS, KEC. CIRACAS, KOTA JAKARTA TIMUR DEKAT JALAN RAYA CIRACAS ATAU DEPAN PASAR ',
|
|
no_telp_pelapor: '0218700221',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 CIRACAS',
|
|
nama_ulp: 'UP3 CIRACAS',
|
|
nama_posko: 'POSKO CIRACAS',
|
|
id_regu: 13696,
|
|
waktu_lapor: '01/01/2023 01:32:36',
|
|
waktu_response: '01/01/2023 02:13:15',
|
|
waktu_recovery: '01/01/2023 03:07:58',
|
|
durasi_response_time: 2439,
|
|
durasi_recovery_time: 5722
|
|
},
|
|
{
|
|
id: 2,
|
|
no_laporan: 'G5423010101079',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'marni',
|
|
alamat_pelapor: 'pangur',
|
|
no_telp_pelapor: '6281379970134',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 10637,
|
|
waktu_lapor: '01/01/2023 01:47:48',
|
|
waktu_response: '01/01/2023 02:05:12',
|
|
waktu_recovery: '01/01/2023 02:41:11',
|
|
durasi_response_time: 1044,
|
|
durasi_recovery_time: 3203
|
|
},
|
|
{
|
|
id: 3,
|
|
no_laporan: 'G5423010101087',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'marni',
|
|
alamat_pelapor: 'blok m',
|
|
no_telp_pelapor: '6281379970134',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 01:48:55',
|
|
waktu_response: '01/01/2023 02:05:10',
|
|
waktu_recovery: '01/01/2023 02:42:24',
|
|
durasi_response_time: 975,
|
|
durasi_recovery_time: 3209
|
|
},
|
|
{
|
|
id: 4,
|
|
no_laporan: 'G5423010101467',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Darmendri Darmen',
|
|
alamat_pelapor: 'kp baru',
|
|
no_telp_pelapor: '6281361240133',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 03:03:25',
|
|
waktu_response: '01/01/2023 03:22:19',
|
|
waktu_recovery: '01/01/2023 03:57:49',
|
|
durasi_response_time: 1134,
|
|
durasi_recovery_time: 3264
|
|
},
|
|
{
|
|
id: 5,
|
|
no_laporan: 'G5423010101474',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Darmendri Darmen',
|
|
alamat_pelapor: 'keran',
|
|
no_telp_pelapor: '6281361240133',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 10637,
|
|
waktu_lapor: '01/01/2023 03:04:38',
|
|
waktu_response: '01/01/2023 03:22:03',
|
|
waktu_recovery: '01/01/2023 03:56:53',
|
|
durasi_response_time: 1045,
|
|
durasi_recovery_time: 3135
|
|
},
|
|
{
|
|
id: 6,
|
|
no_laporan: 'G5423010101548',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'iskandar',
|
|
alamat_pelapor: 'pajaresuk',
|
|
no_telp_pelapor: '6285377265551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 03:22:34',
|
|
waktu_response: '01/01/2023 03:53:11',
|
|
waktu_recovery: '01/01/2023 04:19:21',
|
|
durasi_response_time: 1837,
|
|
durasi_recovery_time: 3407
|
|
},
|
|
{
|
|
id: 7,
|
|
no_laporan: 'G5423010101559',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Taufiq Wibawa Muslim',
|
|
alamat_pelapor: 'Dusun 2 RT 01 RW 05',
|
|
no_telp_pelapor: '6281357738358',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUMEDANG',
|
|
nama_ulp: 'ULP MAJALENGKA',
|
|
nama_posko: 'POSKO ULP MAJALENGKA',
|
|
id_regu: 19171,
|
|
waktu_lapor: '01/01/2023 03:24:53',
|
|
waktu_response: '01/01/2023 03:44:56',
|
|
waktu_recovery: '01/01/2023 03:52:36',
|
|
durasi_response_time: 1203,
|
|
durasi_recovery_time: 1663
|
|
},
|
|
{
|
|
id: 8,
|
|
no_laporan: 'G5423010101763',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'iskandar',
|
|
alamat_pelapor: 'fajaresuk',
|
|
no_telp_pelapor: '6285377265551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 04:17:48',
|
|
waktu_response: '01/01/2023 04:50:24',
|
|
waktu_recovery: '01/01/2023 05:17:15',
|
|
durasi_response_time: 1956,
|
|
durasi_recovery_time: 3567
|
|
},
|
|
{
|
|
id: 9,
|
|
no_laporan: 'G5423010101821',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'pikrisekedang',
|
|
alamat_pelapor: 'Area tugu monas',
|
|
no_telp_pelapor: '6285224977297',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 10637,
|
|
waktu_lapor: '01/01/2023 04:27:31',
|
|
waktu_response: '01/01/2023 04:43:06',
|
|
waktu_recovery: '01/01/2023 05:09:26',
|
|
durasi_response_time: 935,
|
|
durasi_recovery_time: 2515
|
|
},
|
|
{
|
|
id: 10,
|
|
no_laporan: 'G5123010100156',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'BP RAHMAN',
|
|
alamat_pelapor:
|
|
'JL. SUKAWERA NO.- RT 16 RW 6 KEL TARI KOLOT KEC MAJALENGKA KAB MAJALENGKA / DEKAT PERSAWAHAN',
|
|
no_telp_pelapor: '08112073638',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUMEDANG',
|
|
nama_ulp: 'ULP MAJALENGKA',
|
|
nama_posko: 'POSKO ULP MAJALENGKA',
|
|
id_regu: 19169,
|
|
waktu_lapor: '01/01/2023 04:28:13',
|
|
waktu_response: '01/01/2023 04:40:58',
|
|
waktu_recovery: '01/01/2023 04:49:59',
|
|
durasi_response_time: 765,
|
|
durasi_recovery_time: 1306
|
|
},
|
|
{
|
|
id: 11,
|
|
no_laporan: 'G5423010101826',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'pikrisekedang',
|
|
alamat_pelapor: 'lesung',
|
|
no_telp_pelapor: '6285224977297',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 04:28:23',
|
|
waktu_response: '01/01/2023 04:43:04',
|
|
waktu_recovery: '01/01/2023 05:10:27',
|
|
durasi_response_time: 881,
|
|
durasi_recovery_time: 2524
|
|
},
|
|
{
|
|
id: 12,
|
|
no_laporan: 'G5423010102081',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'iskandar',
|
|
alamat_pelapor: 'Jl. A.Yani No.999',
|
|
no_telp_pelapor: '6285377265551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 05:14:51',
|
|
waktu_response: '01/01/2023 05:45:17',
|
|
waktu_recovery: '01/01/2023 06:12:27',
|
|
durasi_response_time: 1826,
|
|
durasi_recovery_time: 3456
|
|
},
|
|
{
|
|
id: 13,
|
|
no_laporan: 'G5323010100089',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP WAYAN SUKARANA',
|
|
alamat_pelapor:
|
|
'JL TANAH LOT NO 9 RT-- / RW-- KEL MERANGGI KEC KEDIRI KAB TABANAN /DKT POM BENSIN ',
|
|
no_telp_pelapor: '081916219861',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP TABANAN',
|
|
nama_posko: 'POSKO ULP TABANAN',
|
|
id_regu: 12866,
|
|
waktu_lapor: '01/01/2023 06:14:53',
|
|
waktu_response: '01/01/2023 06:57:08',
|
|
waktu_recovery: '01/01/2023 07:16:36',
|
|
durasi_response_time: 2535,
|
|
durasi_recovery_time: 3703
|
|
},
|
|
{
|
|
id: 14,
|
|
no_laporan: 'G5223010100178',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP NYOMAN SUARDIKA',
|
|
alamat_pelapor:
|
|
'JL RAYA PUNCAK MANGU DS PELAGA KEC PETANG KAB BADUNG // DEKAT PLUSKESMAS PETANG II ',
|
|
no_telp_pelapor: '087760368194',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 492,
|
|
waktu_lapor: '01/01/2023 06:17:12',
|
|
waktu_response: '01/01/2023 07:08:14',
|
|
waktu_recovery: '01/01/2023 08:16:10',
|
|
durasi_response_time: 3062,
|
|
durasi_recovery_time: 7138
|
|
},
|
|
{
|
|
id: 15,
|
|
no_laporan: 'G5223010100179',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP NYOMAN SUARDIKA',
|
|
alamat_pelapor:
|
|
'JL RAYA PUNCAK MANGU DS PELAGA KEC PETANG KAB BADUNG // DEKAT PLUSKESMAS PETANG II ',
|
|
no_telp_pelapor: '087760368194',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 492,
|
|
waktu_lapor: '01/01/2023 06:17:18',
|
|
waktu_response: '01/01/2023 07:07:59',
|
|
waktu_recovery: '01/01/2023 08:15:45',
|
|
durasi_response_time: 3041,
|
|
durasi_recovery_time: 7107
|
|
},
|
|
{
|
|
id: 16,
|
|
no_laporan: 'G5123010100263',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MADE ARKO WINARYO ',
|
|
alamat_pelapor:
|
|
'LOKASI PURA DALEM PRANG \\n JL PITSTUN NO 0 RT0 RW 0 DS PANGKUNG TIBAH KEC KEDIRI KAB TABANAN , BALI - 55130 - POSKO ULP TABANAN',
|
|
no_telp_pelapor: '6285792839299',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP TABANAN',
|
|
nama_posko: 'POSKO ULP TABANAN',
|
|
id_regu: 12865,
|
|
waktu_lapor: '01/01/2023 06:35:42',
|
|
waktu_response: '01/01/2023 07:34:34',
|
|
waktu_recovery: '01/01/2023 07:44:33',
|
|
durasi_response_time: 3532,
|
|
durasi_recovery_time: 4131
|
|
},
|
|
{
|
|
id: 17,
|
|
no_laporan: 'G2223010100001',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'syahdianor',
|
|
alamat_pelapor: 'Desa pandawan Kantor LPUK',
|
|
no_telp_pelapor: '0517',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH KALIMANTAN SELATAN DAN TENGAH',
|
|
nama_up3: 'UP3 BARABAI',
|
|
nama_ulp: 'ULP BARABAI',
|
|
nama_posko: 'POSKO ULP BARABAI',
|
|
id_regu: 26536,
|
|
waktu_lapor: '01/01/2023 06:46:13',
|
|
waktu_response: '01/01/2023 06:57:35',
|
|
waktu_recovery: '01/01/2023 07:11:56',
|
|
durasi_response_time: 682,
|
|
durasi_recovery_time: 1543
|
|
},
|
|
{
|
|
id: 18,
|
|
no_laporan: 'G5223010100289',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUKIRMAN',
|
|
alamat_pelapor:
|
|
'JL MASJID AN NUR NO- RT 4 RW 2 KEL KEDUNGKARANG, KEC WEDUNG, KAB DEMAK // DEKAT BALAI DESA KEDUNGKARANG KE KIRI KURANG LEBIH 100 M',
|
|
no_telp_pelapor: '085329837363',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP DEMAK',
|
|
nama_posko: 'POSKO ULP DEMAK',
|
|
id_regu: 32518,
|
|
waktu_lapor: '01/01/2023 07:23:29',
|
|
waktu_response: '01/01/2023 08:40:22',
|
|
waktu_recovery: '01/01/2023 08:47:46',
|
|
durasi_response_time: 4613,
|
|
durasi_recovery_time: 5057
|
|
},
|
|
{
|
|
id: 19,
|
|
no_laporan: 'G5423010103706',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'Haidar',
|
|
alamat_pelapor: 'Ds.Tegal Sari Barat. Rt.07 Rw.03 KEC.AMPELGADING',
|
|
no_telp_pelapor: '6289624259551',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP COMAL',
|
|
nama_posko: 'POSKO ULP COMAL',
|
|
id_regu: 18241,
|
|
waktu_lapor: '01/01/2023 07:33:13',
|
|
waktu_response: '01/01/2023 07:53:57',
|
|
waktu_recovery: '01/01/2023 08:28:42',
|
|
durasi_response_time: 1244,
|
|
durasi_recovery_time: 3329
|
|
},
|
|
{
|
|
id: 20,
|
|
no_laporan: 'G5423010103906',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU YOHANA ',
|
|
alamat_pelapor:
|
|
'JL GADING PUTIH RAYA UTARA BLOK CA 2 NO 7 RT - RW - KEL KELAPA GADING TIMUR KEC KELAPA GADING JAKUT SEBRANG RESTORAN MACIKO ',
|
|
no_telp_pelapor: '02124522990',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
nama_posko: 'POSKO SUNTER',
|
|
id_regu: 14317,
|
|
waktu_lapor: '01/01/2023 07:43:46',
|
|
waktu_response: '01/01/2023 08:27:33',
|
|
waktu_recovery: '01/01/2023 08:44:51',
|
|
durasi_response_time: 2627,
|
|
durasi_recovery_time: 3665
|
|
},
|
|
{
|
|
id: 21,
|
|
no_laporan: 'G5423010104059',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU SAMI',
|
|
alamat_pelapor: 'DN TELEGE DS CANDIMULYO KEC KEDU KAB TEMANGGUNG - JATENG',
|
|
no_telp_pelapor: '082136399980',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 MAGELANG',
|
|
nama_ulp: 'ULP PARAKAN',
|
|
nama_posko: 'POSKO ULP PARAKAN',
|
|
id_regu: 18310,
|
|
waktu_lapor: '01/01/2023 07:51:35',
|
|
waktu_response: '01/01/2023 08:16:23',
|
|
waktu_recovery: '01/01/2023 08:28:41',
|
|
durasi_response_time: 1488,
|
|
durasi_recovery_time: 2226
|
|
},
|
|
{
|
|
id: 22,
|
|
no_laporan: 'G5523010100244',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP WAYAN DARMA',
|
|
alamat_pelapor: 'JL PARARATON RAYA NO 2 BR ABIANBASE KEL KUTA KEC KUTA KAB BADUNG ',
|
|
no_telp_pelapor: '085101706832',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP KUTA',
|
|
nama_posko: 'POSKO ULP KUTA',
|
|
id_regu: 20883,
|
|
waktu_lapor: '01/01/2023 07:57:18',
|
|
waktu_response: '01/01/2023 08:54:38',
|
|
waktu_recovery: '01/01/2023 09:03:40',
|
|
durasi_response_time: 3440,
|
|
durasi_recovery_time: 3982
|
|
},
|
|
{
|
|
id: 23,
|
|
no_laporan: 'G5423010104375',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Muhammad Rafa A',
|
|
alamat_pelapor: 'dk. manggen, rembun',
|
|
no_telp_pelapor: '6285647129982',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 08:07:13',
|
|
waktu_response: '01/01/2023 08:17:00',
|
|
waktu_recovery: '01/01/2023 08:41:57',
|
|
durasi_response_time: 587,
|
|
durasi_recovery_time: 2084
|
|
},
|
|
{
|
|
id: 24,
|
|
no_laporan: 'G5423010104506',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'Budy Yono',
|
|
alamat_pelapor: 'Jl. Garuda Timur Jodipati No.123',
|
|
no_telp_pelapor: '6287774414779',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP COMAL',
|
|
nama_posko: 'POSKO ULP COMAL',
|
|
id_regu: 18241,
|
|
waktu_lapor: '01/01/2023 08:14:13',
|
|
waktu_response: '01/01/2023 08:33:25',
|
|
waktu_recovery: '01/01/2023 08:52:15',
|
|
durasi_response_time: 1152,
|
|
durasi_recovery_time: 2282
|
|
},
|
|
{
|
|
id: 25,
|
|
no_laporan: 'G5423010105126',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sabdo palon',
|
|
alamat_pelapor: 'jangkungrejo nogosari',
|
|
no_telp_pelapor: '628813915451',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 08:40:46',
|
|
waktu_response: '01/01/2023 08:50:19',
|
|
waktu_recovery: '01/01/2023 09:14:56',
|
|
durasi_response_time: 573,
|
|
durasi_recovery_time: 2050
|
|
},
|
|
{
|
|
id: 26,
|
|
no_laporan: 'G5223010100459',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BU SULIS',
|
|
alamat_pelapor:
|
|
'DS SEMAMPIR RT1/1 JL RAYA REBAN SEMAMPIR NO- KEC REBAN KAB BATANG :: PEREMPATAN PERTAMA DS SEMAMPIR ',
|
|
no_telp_pelapor: '082325762820',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18146,
|
|
waktu_lapor: '01/01/2023 08:49:32',
|
|
waktu_response: '01/01/2023 09:28:58',
|
|
waktu_recovery: '01/01/2023 09:44:51',
|
|
durasi_response_time: 2366,
|
|
durasi_recovery_time: 3319
|
|
},
|
|
{
|
|
id: 27,
|
|
no_laporan: 'G5323010100425',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU TUTI',
|
|
alamat_pelapor:
|
|
'JL RAYA TEGAWANU RT 2/1 KEL TEGAWANU WETAN KEC TEGAWANU KAB GROBOGAN JATENG',
|
|
no_telp_pelapor: '6285726094615',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP TEGOWANU',
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
id_regu: 18187,
|
|
waktu_lapor: '01/01/2023 09:06:26',
|
|
waktu_response: '01/01/2023 09:38:58',
|
|
waktu_recovery: '01/01/2023 09:40:49',
|
|
durasi_response_time: 1952,
|
|
durasi_recovery_time: 2063
|
|
},
|
|
{
|
|
id: 28,
|
|
no_laporan: 'G5423010106056',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ndoro',
|
|
alamat_pelapor: 'kunci 2/4 bojosari kertek wonosobo',
|
|
no_telp_pelapor: '6285326860778',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP WONOSOBO',
|
|
nama_posko: 'POSKO ULP WONOSOBO',
|
|
id_regu: 26445,
|
|
waktu_lapor: '01/01/2023 09:15:12',
|
|
waktu_response: '01/01/2023 09:42:22',
|
|
waktu_recovery: '01/01/2023 09:52:10',
|
|
durasi_response_time: 1630,
|
|
durasi_recovery_time: 2218
|
|
},
|
|
{
|
|
id: 29,
|
|
no_laporan: 'G5323010100449',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DIDI',
|
|
alamat_pelapor:
|
|
'JL RAYA KOBET GANDARIA KP LARANGAN PR RUKO GRAND SIMPATI RESIDENCE R1-10 KEL SUKATANI KEC RAJEG KAB TANGGERANG // SMA 13 KAB TANGGERANG ',
|
|
no_telp_pelapor: '081382638061',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 CIKUPA',
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
nama_posko: 'POSKO CIKUPA',
|
|
id_regu: 16299,
|
|
waktu_lapor: '01/01/2023 09:15:30',
|
|
waktu_response: '01/01/2023 09:47:49',
|
|
waktu_recovery: '01/01/2023 10:19:09',
|
|
durasi_response_time: 1939,
|
|
durasi_recovery_time: 3819
|
|
},
|
|
{
|
|
id: 30,
|
|
no_laporan: 'G1323010100037',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP CHAN',
|
|
alamat_pelapor: 'DS BATIPUH BARUAH KEC.BATIPUH KAB.TANAH DATAR',
|
|
no_telp_pelapor: '082386009680',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SUMATERA BARAT',
|
|
nama_up3: 'UP3 BUKIT TINGGI',
|
|
nama_ulp: 'ULP PADANG PANJANG',
|
|
nama_posko: 'POSKO ULP PADANG PANJANG',
|
|
id_regu: 21761,
|
|
waktu_lapor: '01/01/2023 09:16:01',
|
|
waktu_response: '01/01/2023 09:30:41',
|
|
waktu_recovery: '01/01/2023 09:40:19',
|
|
durasi_response_time: 880,
|
|
durasi_recovery_time: 1458
|
|
},
|
|
{
|
|
id: 31,
|
|
no_laporan: 'G5423010106340',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU WULAN',
|
|
alamat_pelapor:
|
|
'SETEMPAT MULTI LAUNDRY JL RAYA PURWASARI RT 01/03 KEL PURWASARI KEC PURWASARI KARAWANG SAMPING KANTOR DESA PURWASARI ',
|
|
no_telp_pelapor: '081381351435',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 KARAWANG',
|
|
nama_ulp: 'ULP CIKAMPEK',
|
|
nama_posko: 'POSKO ULP CIKAMPEK',
|
|
id_regu: 18779,
|
|
waktu_lapor: '01/01/2023 09:24:53',
|
|
waktu_response: '01/01/2023 09:52:18',
|
|
waktu_recovery: '01/01/2023 10:56:30',
|
|
durasi_response_time: 1645,
|
|
durasi_recovery_time: 5497
|
|
},
|
|
{
|
|
id: 32,
|
|
no_laporan: 'G5423010106394',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ANDRI',
|
|
alamat_pelapor: 'DSN GROJOGAN KEL SUKOREJO KEC TEGOWANU KAB GROBOGAN JAWA TENGAH ',
|
|
no_telp_pelapor: '082227558030',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP TEGOWANU',
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
id_regu: 18187,
|
|
waktu_lapor: '01/01/2023 09:26:43',
|
|
waktu_response: '01/01/2023 09:57:15',
|
|
waktu_recovery: '01/01/2023 10:14:27',
|
|
durasi_response_time: 1832,
|
|
durasi_recovery_time: 2864
|
|
},
|
|
{
|
|
id: 33,
|
|
no_laporan: 'G5423010106940',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ANDRI',
|
|
alamat_pelapor:
|
|
'PR CITRA GARDEN 1 BLOK B 8 NO 2 RT 9/9 KEL KALIDERES KEC KALIDERES - JAKBAR // BELAKANG KORAMIL ',
|
|
no_telp_pelapor: '0215405310',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 CENGKARENG',
|
|
nama_ulp: 'UP3 CENGKARENG',
|
|
nama_posko: 'POSKO CENGKARENG ( POSKO STT )',
|
|
id_regu: 17540,
|
|
waktu_lapor: '01/01/2023 09:45:51',
|
|
waktu_response: '01/01/2023 10:38:23',
|
|
waktu_recovery: '01/01/2023 10:52:16',
|
|
durasi_response_time: 3152,
|
|
durasi_recovery_time: 3985
|
|
},
|
|
{
|
|
id: 34,
|
|
no_laporan: 'G5423010107030',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Wayan Wika',
|
|
alamat_pelapor: 'Jl. Perkutut No.1',
|
|
no_telp_pelapor: '6281236243647',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP TABANAN',
|
|
nama_posko: 'POSKO ULP TABANAN',
|
|
id_regu: 12865,
|
|
waktu_lapor: '01/01/2023 09:48:25',
|
|
waktu_response: '01/01/2023 10:07:21',
|
|
waktu_recovery: '01/01/2023 10:30:22',
|
|
durasi_response_time: 1136,
|
|
durasi_recovery_time: 2517
|
|
},
|
|
{
|
|
id: 35,
|
|
no_laporan: 'G5423010107103',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MASROKAN ',
|
|
alamat_pelapor: 'JL DS. BUKO RT.1/3 KEC. WEDUNG KAB DEMAK JATENG ',
|
|
no_telp_pelapor: '085226145789',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP DEMAK',
|
|
nama_posko: 'POSKO ULP DEMAK',
|
|
id_regu: 32518,
|
|
waktu_lapor: '01/01/2023 09:51:02',
|
|
waktu_response: '01/01/2023 10:16:27',
|
|
waktu_recovery: '01/01/2023 10:27:08',
|
|
durasi_response_time: 1525,
|
|
durasi_recovery_time: 2166
|
|
},
|
|
{
|
|
id: 36,
|
|
no_laporan: 'G5223010100660',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUSILO',
|
|
alamat_pelapor:
|
|
'JL - PERUM TEMBALANG PESONA ASRI BLOK A2 NO 12 DS KERAMAS KEC TEMBALANG KOTA SEMARANG :: DEKAT DENGAN MASJID',
|
|
no_telp_pelapor: '08111193778',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SEMARANG',
|
|
nama_ulp: 'ULP SEMARANG SELATAN',
|
|
nama_posko: 'POSKO ULP SEMARANG SELATAN',
|
|
id_regu: 18294,
|
|
waktu_lapor: '01/01/2023 09:55:27',
|
|
waktu_response: '01/01/2023 11:16:53',
|
|
waktu_recovery: '01/01/2023 11:46:17',
|
|
durasi_response_time: 4886,
|
|
durasi_recovery_time: 6650
|
|
},
|
|
{
|
|
id: 37,
|
|
no_laporan: 'G5423010107233',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Muhammad ikbal',
|
|
alamat_pelapor: 'kp Kawaron Ilir RT 03/07',
|
|
no_telp_pelapor: '62881024442701',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 CIKUPA',
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
nama_posko: 'POSKO CIKUPA',
|
|
id_regu: 16299,
|
|
waktu_lapor: '01/01/2023 09:55:55',
|
|
waktu_response: '01/01/2023 10:19:50',
|
|
waktu_recovery: '01/01/2023 11:04:07',
|
|
durasi_response_time: 1435,
|
|
durasi_recovery_time: 4092
|
|
},
|
|
{
|
|
id: 38,
|
|
no_laporan: 'G5423010108106',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sabdo palon',
|
|
alamat_pelapor: 'kliwonan nogosari',
|
|
no_telp_pelapor: '628813915451',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 10:27:51',
|
|
waktu_response: '01/01/2023 10:37:25',
|
|
waktu_recovery: '01/01/2023 11:01:24',
|
|
durasi_response_time: 574,
|
|
durasi_recovery_time: 2013
|
|
},
|
|
{
|
|
id: 39,
|
|
no_laporan: 'G5323010100623',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP JUHARDI',
|
|
alamat_pelapor:
|
|
'JL DANAU ASRI 2 PR INKOPOL BLOK C 4 NO 10 KEL SUNTER JAYA KEC TANJUNG PRIUK JAKUT',
|
|
no_telp_pelapor: '6283877700259',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
nama_posko: 'POSKO SUNTER',
|
|
id_regu: 14317,
|
|
waktu_lapor: '01/01/2023 10:28:25',
|
|
waktu_response: '01/01/2023 11:05:51',
|
|
waktu_recovery: '01/01/2023 11:37:34',
|
|
durasi_response_time: 2246,
|
|
durasi_recovery_time: 4149
|
|
},
|
|
{
|
|
id: 40,
|
|
no_laporan: 'G5423010108170',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'made jon',
|
|
alamat_pelapor: 'br auman pelaga',
|
|
no_telp_pelapor: '6287869366546',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 492,
|
|
waktu_lapor: '01/01/2023 10:29:59',
|
|
waktu_response: '01/01/2023 10:54:11',
|
|
waktu_recovery: '01/01/2023 11:01:18',
|
|
durasi_response_time: 1452,
|
|
durasi_recovery_time: 1879
|
|
},
|
|
{
|
|
id: 41,
|
|
no_laporan: 'G5423010108964',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'mono',
|
|
alamat_pelapor: 'Sumber agung Rt4 rw2',
|
|
no_telp_pelapor: '6282234913205',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SUKOHARJO',
|
|
nama_ulp: 'ULP JATISRONO',
|
|
nama_posko: 'POSKO ULP JATISRONO',
|
|
id_regu: 18975,
|
|
waktu_lapor: '01/01/2023 11:00:31',
|
|
waktu_response: '01/01/2023 11:26:44',
|
|
waktu_recovery: '01/01/2023 12:13:30',
|
|
durasi_response_time: 1573,
|
|
durasi_recovery_time: 4379
|
|
},
|
|
{
|
|
id: 42,
|
|
no_laporan: 'G5423010109033',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Umar',
|
|
alamat_pelapor: 'sanggrahan nogosari',
|
|
no_telp_pelapor: '628813915451',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 11:03:22',
|
|
waktu_response: '01/01/2023 11:12:20',
|
|
waktu_recovery: '01/01/2023 11:40:58',
|
|
durasi_response_time: 538,
|
|
durasi_recovery_time: 2256
|
|
},
|
|
{
|
|
id: 43,
|
|
no_laporan: 'G5623010100008',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'bp ari ',
|
|
alamat_pelapor: 'kp cikoneng girang rt01/03',
|
|
no_telp_pelapor: '081317366617',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 SERPONG',
|
|
nama_ulp: 'UP3 SERPONG',
|
|
nama_posko: 'POSKO SERPONG',
|
|
id_regu: 32065,
|
|
waktu_lapor: '01/01/2023 11:10:41',
|
|
waktu_response: '01/01/2023 11:34:06',
|
|
waktu_recovery: '01/01/2023 12:00:54',
|
|
durasi_response_time: 1405,
|
|
durasi_recovery_time: 3013
|
|
},
|
|
{
|
|
id: 44,
|
|
no_laporan: 'G5123010101037',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ANDRE',
|
|
alamat_pelapor:
|
|
'JL KUTA CANE KEL NATAM BARU KEC BADAR KAB ACEH TENGGARA / DEKAT JEMBATAN ',
|
|
no_telp_pelapor: '082237950589',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 11:17:15',
|
|
waktu_response: '01/01/2023 11:28:18',
|
|
waktu_recovery: '01/01/2023 11:47:28',
|
|
durasi_response_time: 663,
|
|
durasi_recovery_time: 1813
|
|
},
|
|
{
|
|
id: 45,
|
|
no_laporan: 'G5423010109663',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP I MADE SUDARSANA',
|
|
alamat_pelapor:
|
|
'JL PANTAI SESEH BANJAR SOGSOGAN DESA CEMAGI KEC MENGWI KAB BADUNG LOKASI PERSAWAHAN',
|
|
no_telp_pelapor: '085337275364',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 20885,
|
|
waktu_lapor: '01/01/2023 11:27:51',
|
|
waktu_response: '01/01/2023 12:19:53',
|
|
waktu_recovery: '01/01/2023 13:10:28',
|
|
durasi_response_time: 3122,
|
|
durasi_recovery_time: 6157
|
|
},
|
|
{
|
|
id: 46,
|
|
no_laporan: 'G5423010109926',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'lin manman',
|
|
alamat_pelapor: 'remi, rembun',
|
|
no_telp_pelapor: '6281229169167',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 11:37:59',
|
|
waktu_response: '01/01/2023 11:48:54',
|
|
waktu_recovery: '01/01/2023 12:14:03',
|
|
durasi_response_time: 655,
|
|
durasi_recovery_time: 2164
|
|
},
|
|
{
|
|
id: 47,
|
|
no_laporan: 'G5423010110234',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Kurniawan.Fr',
|
|
alamat_pelapor: 'klurak baru',
|
|
no_telp_pelapor: '628773806566',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP KALASAN',
|
|
nama_posko: 'POSKO ULP KALASAN',
|
|
id_regu: 13411,
|
|
waktu_lapor: '01/01/2023 11:49:40',
|
|
waktu_response: '01/01/2023 12:04:21',
|
|
waktu_recovery: '01/01/2023 12:14:58',
|
|
durasi_response_time: 881,
|
|
durasi_recovery_time: 1518
|
|
},
|
|
{
|
|
id: 48,
|
|
no_laporan: 'G5423010110316',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'karim',
|
|
alamat_pelapor: 'katol timur',
|
|
no_telp_pelapor: '6283165000775',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
nama_ulp: 'ULP KETAPANG',
|
|
nama_posko: 'POSKO ULP KETAPANG',
|
|
id_regu: 17138,
|
|
waktu_lapor: '01/01/2023 11:52:11',
|
|
waktu_response: '01/01/2023 12:01:48',
|
|
waktu_recovery: '01/01/2023 12:09:10',
|
|
durasi_response_time: 577,
|
|
durasi_recovery_time: 1019
|
|
},
|
|
{
|
|
id: 49,
|
|
no_laporan: 'G5423010110821',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Muhammad Rafa A',
|
|
alamat_pelapor: 'krendowahono',
|
|
no_telp_pelapor: '6285647129982',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 12:12:08',
|
|
waktu_response: '01/01/2023 12:21:45',
|
|
waktu_recovery: '01/01/2023 12:40:06',
|
|
durasi_response_time: 577,
|
|
durasi_recovery_time: 1678
|
|
},
|
|
{
|
|
id: 50,
|
|
no_laporan: 'G5423010110852',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MAFTOI',
|
|
alamat_pelapor:
|
|
'JL - DK CENDONO KIDUL RT 03/03 NO - KEL TEMBOK KEC LIMPUNG KAB BATANG (DEKAT MUSHOLLAH AL IKHLAS)',
|
|
no_telp_pelapor: '082135275110',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18148,
|
|
waktu_lapor: '01/01/2023 12:13:16',
|
|
waktu_response: '01/01/2023 12:40:09',
|
|
waktu_recovery: '01/01/2023 13:03:42',
|
|
durasi_response_time: 1613,
|
|
durasi_recovery_time: 3026
|
|
},
|
|
{
|
|
id: 51,
|
|
no_laporan: 'G5423010112304',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'lin manman',
|
|
alamat_pelapor: 'dk. pomahan',
|
|
no_telp_pelapor: '6281229169167',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 13:10:47',
|
|
waktu_response: '01/01/2023 13:20:44',
|
|
waktu_recovery: '01/01/2023 14:01:36',
|
|
durasi_response_time: 597,
|
|
durasi_recovery_time: 3049
|
|
},
|
|
{
|
|
id: 52,
|
|
no_laporan: 'G5123010101378',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU LINA',
|
|
alamat_pelapor:
|
|
'JLN R.MOCH KAFI 1 GANG FILM RT 8 RW 4 NO.3 KEL JAGAKARSA KEC JAGAKARSA JAKARTA SELATAN - ACUAN: DI DEPAN WARUNG GADO GADO',
|
|
no_telp_pelapor: '081213331192',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 LENTENG AGUNG',
|
|
nama_ulp: 'UP3 LENTENG AGUNG',
|
|
nama_posko: 'POSKO LENTENG AGUNG',
|
|
id_regu: 13671,
|
|
waktu_lapor: '01/01/2023 13:14:22',
|
|
waktu_response: '01/01/2023 13:35:29',
|
|
waktu_recovery: '01/01/2023 13:53:04',
|
|
durasi_response_time: 1267,
|
|
durasi_recovery_time: 2322
|
|
},
|
|
{
|
|
id: 53,
|
|
no_laporan: 'G5123010101386',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU DURTI /BP RANYAN',
|
|
alamat_pelapor:
|
|
'JL BALAI DESA DS DUKUH TENGAH NO 54 RT 06 RW 03 KEC KETANGGUNGAN KAB BREBES/DEKAT SAWAH',
|
|
no_telp_pelapor: '08816595524',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP JATIBARANG (DISJATENG)',
|
|
nama_posko: 'POSKO ULP JATIBARANG (DISJATENG)',
|
|
id_regu: 18229,
|
|
waktu_lapor: '01/01/2023 13:16:34',
|
|
waktu_response: '01/01/2023 13:57:40',
|
|
waktu_recovery: '01/01/2023 14:18:14',
|
|
durasi_response_time: 2466,
|
|
durasi_recovery_time: 3700
|
|
},
|
|
{
|
|
id: 54,
|
|
no_laporan: 'G9923010154070',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sri Nuryanti',
|
|
alamat_pelapor: 'DS.Kebonagung RT 3 rw 1',
|
|
no_telp_pelapor: '6282135457759',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 MAGELANG',
|
|
nama_ulp: 'ULP TEMANGGUNG',
|
|
nama_posko: 'POSKO ULP TEMANGGUNG',
|
|
id_regu: 33949,
|
|
waktu_lapor: '01/01/2023 13:22:23',
|
|
waktu_response: '01/01/2023 13:45:00',
|
|
waktu_recovery: '01/01/2023 14:00:18',
|
|
durasi_response_time: 1357,
|
|
durasi_recovery_time: 2275
|
|
},
|
|
{
|
|
id: 55,
|
|
no_laporan: 'G5223010101172',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP TAHRIM',
|
|
alamat_pelapor:
|
|
'JLN - DKH KARANGTENGAH RT 10 RW 3 NO. - KEL KUMESU KEC REBAN KAB BATANG >> DEKAT DENGAN MASJID BAITURAHMAN',
|
|
no_telp_pelapor: '085219905717',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18146,
|
|
waktu_lapor: '01/01/2023 13:34:40',
|
|
waktu_response: '01/01/2023 14:31:40',
|
|
waktu_recovery: '01/01/2023 14:40:30',
|
|
durasi_response_time: 3420,
|
|
durasi_recovery_time: 3950
|
|
},
|
|
{
|
|
id: 56,
|
|
no_laporan: 'G5323010101016',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'bp.mulyadi',
|
|
alamat_pelapor: 'vbi ee 3 no.9 ',
|
|
no_telp_pelapor: '08114341800',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 BOGOR',
|
|
nama_ulp: 'ULP BOGOR TIMUR',
|
|
nama_posko: 'POSKO ULP BOGOR TIMUR',
|
|
id_regu: 21356,
|
|
waktu_lapor: '01/01/2023 13:43:15',
|
|
waktu_response: '01/01/2023 14:28:03',
|
|
waktu_recovery: '01/01/2023 15:08:36',
|
|
durasi_response_time: 2688,
|
|
durasi_recovery_time: 5121
|
|
},
|
|
{
|
|
id: 57,
|
|
no_laporan: 'G5223010101189',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUKIRMAN',
|
|
alamat_pelapor:
|
|
'JL MASJID AN NUR NO- RT 4 RW 2 KEL KEDUNGKARANG, KEC WEDUNG, KAB DEMAK // DEKAT BALAI DESA KEDUNGKARANG KE KIRI KURANG LEBIH 100 M',
|
|
no_telp_pelapor: '085329837363',
|
|
status_akhir: 'Dibatalkan',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP DEMAK',
|
|
nama_posko: 'POSKO ULP DEMAK',
|
|
id_regu: 32518,
|
|
waktu_lapor: '01/01/2023 13:45:31',
|
|
waktu_response: null,
|
|
waktu_recovery: null,
|
|
durasi_response_time: null,
|
|
durasi_recovery_time: null
|
|
},
|
|
{
|
|
id: 58,
|
|
no_laporan: 'G5423010113354',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Abduh',
|
|
alamat_pelapor: 'jl baru sukaraja sebrang smk pertanian kwh sering eror',
|
|
no_telp_pelapor: '6285798496921',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUKABUMI',
|
|
nama_ulp: 'ULP SUKARAJA',
|
|
nama_posko: 'POSKO ULP SUKARAJA',
|
|
id_regu: 18797,
|
|
waktu_lapor: '01/01/2023 13:55:07',
|
|
waktu_response: '01/01/2023 14:07:15',
|
|
waktu_recovery: '01/01/2023 14:29:59',
|
|
durasi_response_time: 728,
|
|
durasi_recovery_time: 2092
|
|
},
|
|
{
|
|
id: 59,
|
|
no_laporan: 'G5223010101211',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BPK FAJAR',
|
|
alamat_pelapor:
|
|
'JL RAYA GUNUNG PATI DS PLALANGAN RT 1 RW 5 KEC GUNUNGPATI KOTA SEMARANG :: LOKASI SETELAH JEMBATAN',
|
|
no_telp_pelapor: '085640049643',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SALATIGA',
|
|
nama_ulp: 'ULP UNGARAN',
|
|
nama_posko: 'POSKO ULP UNGARAN',
|
|
id_regu: 10815,
|
|
waktu_lapor: '01/01/2023 13:58:06',
|
|
waktu_response: '01/01/2023 15:10:38',
|
|
waktu_recovery: '01/01/2023 15:28:39',
|
|
durasi_response_time: 4352,
|
|
durasi_recovery_time: 5433
|
|
},
|
|
{
|
|
id: 60,
|
|
no_laporan: 'G5423010113505',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ari susanto',
|
|
alamat_pelapor: 'dusun sikandri danasri lor',
|
|
no_telp_pelapor: '6285726459136',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 CILACAP',
|
|
nama_ulp: 'ULP KROYA',
|
|
nama_posko: 'POSKO ULP KROYA',
|
|
id_regu: 18207,
|
|
waktu_lapor: '01/01/2023 14:01:32',
|
|
waktu_response: '01/01/2023 14:26:07',
|
|
waktu_recovery: '01/01/2023 14:32:08',
|
|
durasi_response_time: 1475,
|
|
durasi_recovery_time: 1836
|
|
},
|
|
{
|
|
id: 61,
|
|
no_laporan: 'G1223010100320',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU PUTRI ',
|
|
alamat_pelapor: 'JL BLANG KEJEREN DS SIMPUR JAYA KEC KETAMBE KAB ACEH TENGGARA\\n',
|
|
no_telp_pelapor: '082213426854',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 14:07:37',
|
|
waktu_response: '01/01/2023 14:18:44',
|
|
waktu_recovery: '01/01/2023 14:37:48',
|
|
durasi_response_time: 667,
|
|
durasi_recovery_time: 1811
|
|
},
|
|
{
|
|
id: 62,
|
|
no_laporan: 'G5623010100018',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ibu eri',
|
|
alamat_pelapor: 'kp suka bakti rt01/12 ',
|
|
no_telp_pelapor: '085774918399',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 SERPONG',
|
|
nama_ulp: 'UP3 SERPONG',
|
|
nama_posko: 'POSKO SERPONG',
|
|
id_regu: 32065,
|
|
waktu_lapor: '01/01/2023 14:10:24',
|
|
waktu_response: '01/01/2023 14:41:30',
|
|
waktu_recovery: '01/01/2023 15:00:34',
|
|
durasi_response_time: 1866,
|
|
durasi_recovery_time: 3010
|
|
},
|
|
{
|
|
id: 63,
|
|
no_laporan: 'G5423010113784',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Gugun Gunari',
|
|
alamat_pelapor: 'Kp. Jamidah, Desa Pasirbungur, Kecamatan Cilograng',
|
|
no_telp_pelapor: '6288212703779',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 SUKABUMI',
|
|
nama_ulp: 'ULP PELABUHAN RATU',
|
|
nama_posko: 'POSKO ULP PELABUHAN RATU',
|
|
id_regu: 18847,
|
|
waktu_lapor: '01/01/2023 14:10:54',
|
|
waktu_response: '01/01/2023 14:33:42',
|
|
waktu_recovery: '01/01/2023 15:27:24',
|
|
durasi_response_time: 1368,
|
|
durasi_recovery_time: 4590
|
|
},
|
|
{
|
|
id: 64,
|
|
no_laporan: 'G5423010114110',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP RISKI',
|
|
alamat_pelapor:
|
|
'JL JANUR HIJAU 8 RT 8/1 KEL KELAPA GADING TIMUR KEC KELAPA GADING JAKUT ACUAN RUKO GRAHA BOULEVARD / RUKO BELAKANG SUSHI HIRO ',
|
|
no_telp_pelapor: '0214528334',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
nama_posko: 'POSKO SUNTER',
|
|
id_regu: 14317,
|
|
waktu_lapor: '01/01/2023 14:25:28',
|
|
waktu_response: '01/01/2023 15:00:50',
|
|
waktu_recovery: '01/01/2023 15:32:38',
|
|
durasi_response_time: 2122,
|
|
durasi_recovery_time: 4030
|
|
},
|
|
{
|
|
id: 65,
|
|
no_laporan: 'G5423010114163',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'musran',
|
|
alamat_pelapor: 'Jl. Poros Kolaka - Wolo No.16',
|
|
no_telp_pelapor: '6281242899420',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 14:27:28',
|
|
waktu_response: '01/01/2023 14:55:44',
|
|
waktu_recovery: '01/01/2023 15:04:09',
|
|
durasi_response_time: 1696,
|
|
durasi_recovery_time: 2201
|
|
},
|
|
{
|
|
id: 66,
|
|
no_laporan: 'G5323010101146',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP I MADE KUAT',
|
|
alamat_pelapor:
|
|
'JL ULUWATU KEL. JIMBARAN KEC. KUTA SELATAN KAB BADUNG DEKAT SOS KUPU KUPU JIMBARAN ',
|
|
no_telp_pelapor: '087860625594',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP KUTA',
|
|
nama_posko: 'POSKO ULP KUTA',
|
|
id_regu: 393,
|
|
waktu_lapor: '01/01/2023 14:43:20',
|
|
waktu_response: '01/01/2023 15:17:18',
|
|
waktu_recovery: '01/01/2023 15:54:10',
|
|
durasi_response_time: 2038,
|
|
durasi_recovery_time: 4250
|
|
},
|
|
{
|
|
id: 67,
|
|
no_laporan: 'G5523010100907',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUJANA ',
|
|
alamat_pelapor:
|
|
'JL ULUWATU BR TEBO NO 111 X KEL JIMBARAN KEC KUTA SELATAN KAB BADUNG. LOKASI DEKAT INDOMARET ',
|
|
no_telp_pelapor: '0361223555',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP KUTA',
|
|
nama_posko: 'POSKO ULP KUTA',
|
|
id_regu: 393,
|
|
waktu_lapor: '01/01/2023 15:04:23',
|
|
waktu_response: '01/01/2023 15:54:29',
|
|
waktu_recovery: '01/01/2023 16:06:00',
|
|
durasi_response_time: 3006,
|
|
durasi_recovery_time: 3697
|
|
},
|
|
{
|
|
id: 68,
|
|
no_laporan: 'G5423010115123',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Bustanul Arifin',
|
|
alamat_pelapor: 'Sukorejo rt06 rw09 Sambirejo, Ngawen, gunungkidul',
|
|
no_telp_pelapor: '6287839039344',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 15:07:49',
|
|
waktu_response: '01/01/2023 15:19:08',
|
|
waktu_recovery: '01/01/2023 15:34:57',
|
|
durasi_response_time: 679,
|
|
durasi_recovery_time: 1628
|
|
},
|
|
{
|
|
id: 69,
|
|
no_laporan: 'G5523010100932',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP JODI GUNAWAN',
|
|
alamat_pelapor: 'JL. SARI DANA NO 68 UBUNG KAJA LOKASI : SEBELUM SMK KESEHATAN',
|
|
no_telp_pelapor: '081936216168',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP DENPASAR',
|
|
nama_posko: 'POSKO ULP DENPASAR',
|
|
id_regu: 12991,
|
|
waktu_lapor: '01/01/2023 15:21:31',
|
|
waktu_response: '01/01/2023 15:58:26',
|
|
waktu_recovery: '01/01/2023 16:12:37',
|
|
durasi_response_time: 2215,
|
|
durasi_recovery_time: 3066
|
|
},
|
|
{
|
|
id: 70,
|
|
no_laporan: 'G5123010101762',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP ARGO',
|
|
alamat_pelapor:
|
|
'PR BERINGIN RESIDENCE CLUSTER RUBY NO 16 RT 2/RW 26 KEL SERANG KOTA KEC SERANG. KAB SERANG./ TEPAT DIPEREMPATAN ',
|
|
no_telp_pelapor: '081320155045',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 BANTEN UTARA',
|
|
nama_ulp: 'ULP SERANG KOTA',
|
|
nama_posko: 'POSKO ULP SERANG KOTA',
|
|
id_regu: 16235,
|
|
waktu_lapor: '01/01/2023 15:35:26',
|
|
waktu_response: '01/01/2023 15:47:39',
|
|
waktu_recovery: '01/01/2023 15:57:54',
|
|
durasi_response_time: 733,
|
|
durasi_recovery_time: 1348
|
|
},
|
|
{
|
|
id: 71,
|
|
no_laporan: 'G5123010101798',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP RAHARJO',
|
|
alamat_pelapor:
|
|
'PR VILLA BOGOR INDAH BLOK B2 NO 1 RT 09 RW 13 KEL CIPARIGI KEC BOGOR UTARA KOTA BOGOR',
|
|
no_telp_pelapor: '081240005862',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 BOGOR',
|
|
nama_ulp: 'ULP BOGOR TIMUR',
|
|
nama_posko: 'POSKO ULP BOGOR TIMUR',
|
|
id_regu: 21356,
|
|
waktu_lapor: '01/01/2023 15:48:26',
|
|
waktu_response: '01/01/2023 16:44:50',
|
|
waktu_recovery: '01/01/2023 16:56:55',
|
|
durasi_response_time: 3384,
|
|
durasi_recovery_time: 4109
|
|
},
|
|
{
|
|
id: 72,
|
|
no_laporan: 'G5423010116505',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'fathan',
|
|
alamat_pelapor: 'ringinrejo',
|
|
no_telp_pelapor: '6285229056502',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 16:04:39',
|
|
waktu_response: '01/01/2023 16:23:21',
|
|
waktu_recovery: '01/01/2023 16:38:43',
|
|
durasi_response_time: 1122,
|
|
durasi_recovery_time: 2044
|
|
},
|
|
{
|
|
id: 73,
|
|
no_laporan: 'G5423010116605',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Sutrisno Trisno',
|
|
alamat_pelapor: 'DS.TEGALOMBO RT 03/3',
|
|
no_telp_pelapor: '6285293203802',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18146,
|
|
waktu_lapor: '01/01/2023 16:08:23',
|
|
waktu_response: '01/01/2023 16:40:01',
|
|
waktu_recovery: '01/01/2023 16:54:00',
|
|
durasi_response_time: 1898,
|
|
durasi_recovery_time: 2737
|
|
},
|
|
{
|
|
id: 74,
|
|
no_laporan: 'G5223010101451',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DEDI SUSANTO',
|
|
alamat_pelapor: 'JL TEGOWANU KAPUNG KEL SUGIHMANIK KEC PANGGUNG HARJO KAB GROBOGAN',
|
|
no_telp_pelapor: '081225664111',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 DEMAK',
|
|
nama_ulp: 'ULP TEGOWANU',
|
|
nama_posko: 'POSKO ULP TEGOWANU',
|
|
id_regu: 18187,
|
|
waktu_lapor: '01/01/2023 16:11:41',
|
|
waktu_response: '01/01/2023 16:49:30',
|
|
waktu_recovery: '01/01/2023 16:52:40',
|
|
durasi_response_time: 2269,
|
|
durasi_recovery_time: 2459
|
|
},
|
|
{
|
|
id: 75,
|
|
no_laporan: 'G3223010100519',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'TANTE RIKA',
|
|
alamat_pelapor: 'SABILAMBO JL.KEMBAR',
|
|
no_telp_pelapor: '085225672147',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 16:21:00',
|
|
waktu_response: '01/01/2023 17:09:58',
|
|
waktu_recovery: '01/01/2023 17:29:04',
|
|
durasi_response_time: 2938,
|
|
durasi_recovery_time: 4084
|
|
},
|
|
{
|
|
id: 76,
|
|
no_laporan: 'G9923010154271',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'JAMALUDIN',
|
|
alamat_pelapor:
|
|
'pr Puri araya blok iif no 1 ds cicadas kec ciampea kab bogor // belkang blok im ',
|
|
no_telp_pelapor: '6285219758844',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 BOGOR',
|
|
nama_ulp: 'ULP LEUWILIANG',
|
|
nama_posko: 'POSKO ULP LEUWILIANG',
|
|
id_regu: 18920,
|
|
waktu_lapor: '01/01/2023 16:21:14',
|
|
waktu_response: '01/01/2023 16:59:06',
|
|
waktu_recovery: '01/01/2023 17:05:50',
|
|
durasi_response_time: 2272,
|
|
durasi_recovery_time: 2676
|
|
},
|
|
{
|
|
id: 77,
|
|
no_laporan: 'G5423010117040',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'siti raswati',
|
|
alamat_pelapor: 'Jalan Desa Kedunggede No.kec',
|
|
no_telp_pelapor: '6283174272271',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP BANYUMAS',
|
|
nama_posko: 'POSKO ULP BANYUMAS',
|
|
id_regu: 28259,
|
|
waktu_lapor: '01/01/2023 16:26:52',
|
|
waktu_response: '01/01/2023 17:02:21',
|
|
waktu_recovery: '01/01/2023 17:17:40',
|
|
durasi_response_time: 2129,
|
|
durasi_recovery_time: 3048
|
|
},
|
|
{
|
|
id: 78,
|
|
no_laporan: 'G5223010101498',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'IBU PRIMA',
|
|
alamat_pelapor:
|
|
'JL SIDOMUKTI NO 82 RT 7 RW 6 KEL SOKARAJA KULON KEC SOKARAJA KAB BANYUMAS//DEKAT KANTOR RADAR HARIAN BANYUMAS',
|
|
no_telp_pelapor: '081327466644',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP BANYUMAS',
|
|
nama_posko: 'POSKO ULP BANYUMAS',
|
|
id_regu: 24997,
|
|
waktu_lapor: '01/01/2023 16:31:08',
|
|
waktu_response: '01/01/2023 17:00:31',
|
|
waktu_recovery: '01/01/2023 17:28:18',
|
|
durasi_response_time: 1763,
|
|
durasi_recovery_time: 3430
|
|
},
|
|
{
|
|
id: 79,
|
|
no_laporan: 'G5223010101505',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUKARDI',
|
|
alamat_pelapor:
|
|
'JL SALIM PIPIT DESA KUTA LALANG KEC BABUL RAHMAH KAB ACEH TENGGARA PROV ACEH',
|
|
no_telp_pelapor: '082361824465',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 16:34:32',
|
|
waktu_response: '01/01/2023 16:46:04',
|
|
waktu_recovery: '01/01/2023 17:27:55',
|
|
durasi_response_time: 692,
|
|
durasi_recovery_time: 3203
|
|
},
|
|
{
|
|
id: 80,
|
|
no_laporan: 'G5423010117584',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DWI',
|
|
alamat_pelapor: 'RT 2/5 KP MUNDU KEL KEDUNG GEDE KEC BANYUMAS KAB BANYUMAS',
|
|
no_telp_pelapor: '085314189411',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP BANYUMAS',
|
|
nama_posko: 'POSKO ULP BANYUMAS',
|
|
id_regu: 28259,
|
|
waktu_lapor: '01/01/2023 16:48:29',
|
|
waktu_response: '01/01/2023 17:23:45',
|
|
waktu_recovery: '01/01/2023 17:32:17',
|
|
durasi_response_time: 2116,
|
|
durasi_recovery_time: 2628
|
|
},
|
|
{
|
|
id: 81,
|
|
no_laporan: 'G5423010118462',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Tasrin ode',
|
|
alamat_pelapor: 'jl. flamboyan harapan indah',
|
|
no_telp_pelapor: '6285254548438',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH PAPUA DAN PAPUA BARAT',
|
|
nama_up3: 'UP3 SORONG',
|
|
nama_ulp: 'ULP SORONG KOTA',
|
|
nama_posko: 'POSKO ULP SORONG KOTA',
|
|
id_regu: 39757,
|
|
waktu_lapor: '01/01/2023 17:18:54',
|
|
waktu_response: '01/01/2023 19:47:47',
|
|
waktu_recovery: '01/01/2023 20:57:34',
|
|
durasi_response_time: 8933,
|
|
durasi_recovery_time: 13120
|
|
},
|
|
{
|
|
id: 82,
|
|
no_laporan: 'G5123010102132',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DIKI',
|
|
alamat_pelapor:
|
|
'JL RAYA PASESEH NO - RT 00 RW 00 DS PASESEH KEC TANJUNGBUMI KAB BANGKALAN (TIMUR BALAI DESA PASESEH, LOKASI DI BAWAH TOWER)\\n',
|
|
no_telp_pelapor: '081335195759',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
nama_ulp: 'ULP KETAPANG',
|
|
nama_posko: 'POSKO ULP KETAPANG',
|
|
id_regu: 17138,
|
|
waktu_lapor: '01/01/2023 17:20:36',
|
|
waktu_response: '01/01/2023 17:41:57',
|
|
waktu_recovery: '01/01/2023 18:07:14',
|
|
durasi_response_time: 1281,
|
|
durasi_recovery_time: 2798
|
|
},
|
|
{
|
|
id: 83,
|
|
no_laporan: 'G5423010118817',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'SEMIN , GK',
|
|
alamat_pelapor: 'tlepok semin semin',
|
|
no_telp_pelapor: '6281258368142',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 17:31:40',
|
|
waktu_response: '01/01/2023 18:09:16',
|
|
waktu_recovery: '01/01/2023 18:20:50',
|
|
durasi_response_time: 2256,
|
|
durasi_recovery_time: 2950
|
|
},
|
|
{
|
|
id: 84,
|
|
no_laporan: 'G3223010100618',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'RISNA DM',
|
|
alamat_pelapor: 'DS.LANA WOLO',
|
|
no_telp_pelapor: '082298275569',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 17:42:02',
|
|
waktu_response: '01/01/2023 18:07:36',
|
|
waktu_recovery: '01/01/2023 18:26:31',
|
|
durasi_response_time: 1534,
|
|
durasi_recovery_time: 2669
|
|
},
|
|
{
|
|
id: 85,
|
|
no_laporan: 'G3223010100649',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP RENOL PATIAN',
|
|
alamat_pelapor:
|
|
'JL LOLAI DESA LOLAI KEL PANGALA KEPALA PIJO KEC RINDING ALO KAB TORAJA UTARA',
|
|
no_telp_pelapor: '082346041585',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 PALOPO',
|
|
nama_ulp: 'ULP RANTEPAO',
|
|
nama_posko: 'POSKO ULP RANTEPAO',
|
|
id_regu: 22229,
|
|
waktu_lapor: '01/01/2023 17:58:54',
|
|
waktu_response: '01/01/2023 18:23:52',
|
|
waktu_recovery: '01/01/2023 18:38:35',
|
|
durasi_response_time: 1498,
|
|
durasi_recovery_time: 2381
|
|
},
|
|
{
|
|
id: 86,
|
|
no_laporan: 'G5423010120081',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'nubhan',
|
|
alamat_pelapor: 'Mulyadadi',
|
|
no_telp_pelapor: '6281323432119',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 CILACAP',
|
|
nama_ulp: 'ULP SIDAREJA',
|
|
nama_posko: 'POSKO ULP SIDAREJA',
|
|
id_regu: 18209,
|
|
waktu_lapor: '01/01/2023 18:08:04',
|
|
waktu_response: '01/01/2023 18:26:02',
|
|
waktu_recovery: '01/01/2023 18:39:16',
|
|
durasi_response_time: 1078,
|
|
durasi_recovery_time: 1872
|
|
},
|
|
{
|
|
id: 87,
|
|
no_laporan: 'G5423010120294',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Nur Hadi',
|
|
alamat_pelapor: 'dsn gintungan rt19rw20',
|
|
no_telp_pelapor: '6287836336881',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SALATIGA',
|
|
nama_ulp: 'ULP SALATIGA KOTA',
|
|
nama_posko: 'POSKO ULP SALATIGA KOTA',
|
|
id_regu: 22958,
|
|
waktu_lapor: '01/01/2023 18:14:01',
|
|
waktu_response: '01/01/2023 18:41:15',
|
|
waktu_recovery: '01/01/2023 18:51:14',
|
|
durasi_response_time: 1634,
|
|
durasi_recovery_time: 2233
|
|
},
|
|
{
|
|
id: 88,
|
|
no_laporan: 'G5423010120504',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'galung SE. MM',
|
|
alamat_pelapor: 'tenembak juhar',
|
|
no_telp_pelapor: '6282182273131',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH ACEH',
|
|
nama_up3: 'UP3 LANGSA',
|
|
nama_ulp: 'ULP KUTACANE',
|
|
nama_posko: 'POSKO ULP KUTACANE',
|
|
id_regu: 36359,
|
|
waktu_lapor: '01/01/2023 18:20:42',
|
|
waktu_response: '01/01/2023 18:36:15',
|
|
waktu_recovery: '01/01/2023 18:44:48',
|
|
durasi_response_time: 933,
|
|
durasi_recovery_time: 1446
|
|
},
|
|
{
|
|
id: 89,
|
|
no_laporan: 'G5423010120666',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'meisya aurelia idris',
|
|
alamat_pelapor: 'jl.poros sei meriam, sebrang PDAM',
|
|
no_telp_pelapor: '6285705266432',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH KALIMANTAN TIMUR',
|
|
nama_up3: 'UP3 SAMARINDA',
|
|
nama_ulp: 'ULP SAMARINDA ILIR',
|
|
nama_posko: 'POSKO ULP SAMARINDA ILIR',
|
|
id_regu: 28722,
|
|
waktu_lapor: '01/01/2023 18:26:06',
|
|
waktu_response: '01/01/2023 18:49:47',
|
|
waktu_recovery: '01/01/2023 19:14:32',
|
|
durasi_response_time: 1421,
|
|
durasi_recovery_time: 2906
|
|
},
|
|
{
|
|
id: 90,
|
|
no_laporan: 'G5423010120988',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Rudi irawan',
|
|
alamat_pelapor: 'jalan perjuangan duri 13',
|
|
no_telp_pelapor: '6268963256895',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH RIAU DAN KEPULAUAN RIAU',
|
|
nama_up3: 'UP3 DUMAI',
|
|
nama_ulp: 'ULP DUMAI KOTA',
|
|
nama_posko: 'POSKO ULP DUMAI KOTA',
|
|
id_regu: 26722,
|
|
waktu_lapor: '01/01/2023 18:36:53',
|
|
waktu_response: '01/01/2023 18:57:11',
|
|
waktu_recovery: '01/01/2023 19:17:54',
|
|
durasi_response_time: 1218,
|
|
durasi_recovery_time: 2461
|
|
},
|
|
{
|
|
id: 91,
|
|
no_laporan: 'G5223010101894',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP AGUS ',
|
|
alamat_pelapor:
|
|
'JL BAYANGKARA KM 01 NO- RT 5 RW 5 DS KURUNG KAMBING KEC MANDALA WANGI KAB PANDEGLANG // LOKASI KANTOR POLISI SPN MANDALA WANGI ',
|
|
no_telp_pelapor: '087772951509',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 BANTEN SELATAN',
|
|
nama_ulp: 'ULP PANDEGLANG',
|
|
nama_posko: 'POSKO ULP PANDEGLANG',
|
|
id_regu: 16214,
|
|
waktu_lapor: '01/01/2023 18:46:33',
|
|
waktu_response: '01/01/2023 19:10:12',
|
|
waktu_recovery: '01/01/2023 19:19:28',
|
|
durasi_response_time: 1419,
|
|
durasi_recovery_time: 1975
|
|
},
|
|
{
|
|
id: 92,
|
|
no_laporan: 'G5423010121308',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Jung kirno',
|
|
alamat_pelapor: 'sumberjo',
|
|
no_telp_pelapor: '628812922073',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SRAGEN',
|
|
nama_posko: 'POSKO ULP SRAGEN',
|
|
id_regu: 18974,
|
|
waktu_lapor: '01/01/2023 18:46:39',
|
|
waktu_response: '01/01/2023 19:16:08',
|
|
waktu_recovery: '01/01/2023 19:36:05',
|
|
durasi_response_time: 1769,
|
|
durasi_recovery_time: 2966
|
|
},
|
|
{
|
|
id: 93,
|
|
no_laporan: 'G5323010101694',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'asep',
|
|
alamat_pelapor: 'PR BENTENG CBN F No.57 RT.000 RW.00 KALIBARU',
|
|
no_telp_pelapor: '6281952776267',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 DEPOK',
|
|
nama_ulp: 'ULP CIBINONG',
|
|
nama_posko: 'POSKO ULP CIBINONG',
|
|
id_regu: 18837,
|
|
waktu_lapor: '01/01/2023 19:01:40',
|
|
waktu_response: '01/01/2023 19:23:27',
|
|
waktu_recovery: '01/01/2023 19:59:31',
|
|
durasi_response_time: 1307,
|
|
durasi_recovery_time: 3471
|
|
},
|
|
{
|
|
id: 94,
|
|
no_laporan: 'G5423010122681',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Teguh Prasetyo',
|
|
alamat_pelapor: 'Jl. Alam Mekongga No.3',
|
|
no_telp_pelapor: '6285241757449',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 19:31:02',
|
|
waktu_response: '01/01/2023 19:52:31',
|
|
waktu_recovery: '01/01/2023 20:18:30',
|
|
durasi_response_time: 1289,
|
|
durasi_recovery_time: 2848
|
|
},
|
|
{
|
|
id: 95,
|
|
no_laporan: 'G5423010122718',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'amat',
|
|
alamat_pelapor: 'wr',
|
|
no_telp_pelapor: '6285742746166',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PEKALONGAN',
|
|
nama_ulp: 'ULP BATANG',
|
|
nama_posko: 'POSKO ULP BATANG',
|
|
id_regu: 18148,
|
|
waktu_lapor: '01/01/2023 19:32:38',
|
|
waktu_response: '01/01/2023 20:08:02',
|
|
waktu_recovery: '01/01/2023 20:19:13',
|
|
durasi_response_time: 2124,
|
|
durasi_recovery_time: 2795
|
|
},
|
|
{
|
|
id: 96,
|
|
no_laporan: 'G5423010122934',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Kang Aceng',
|
|
alamat_pelapor: 'lalonggopi',
|
|
no_telp_pelapor: '6282223819673',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 19:40:02',
|
|
waktu_response: '01/01/2023 20:17:55',
|
|
waktu_recovery: '01/01/2023 20:37:18',
|
|
durasi_response_time: 2273,
|
|
durasi_recovery_time: 3436
|
|
},
|
|
{
|
|
id: 97,
|
|
no_laporan: 'G5423010122986',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'datok sipatoka',
|
|
alamat_pelapor: 'jurangjero, ngawen',
|
|
no_telp_pelapor: '6281904111534',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 19:41:58',
|
|
waktu_response: '01/01/2023 19:53:34',
|
|
waktu_recovery: '01/01/2023 20:08:34',
|
|
durasi_response_time: 696,
|
|
durasi_recovery_time: 1596
|
|
},
|
|
{
|
|
id: 98,
|
|
no_laporan: 'G5123010102768',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP TAUFIK ',
|
|
alamat_pelapor:
|
|
'JL - DS TANJUNG BUMI RT 0 RW 0 NO 0 KEC TANJUNG BUMI KAB BANGKALAN / SELATAN LAPANGAN ALAP ALAP',
|
|
no_telp_pelapor: '081352782258',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
nama_ulp: 'ULP KETAPANG',
|
|
nama_posko: 'POSKO ULP KETAPANG',
|
|
id_regu: 17138,
|
|
waktu_lapor: '01/01/2023 19:46:59',
|
|
waktu_response: '01/01/2023 20:11:25',
|
|
waktu_recovery: '01/01/2023 20:42:45',
|
|
durasi_response_time: 1466,
|
|
durasi_recovery_time: 3346
|
|
},
|
|
{
|
|
id: 99,
|
|
no_laporan: 'G5423010123203',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Jurianto Manullang',
|
|
alamat_pelapor: 'GG rasmi ',
|
|
no_telp_pelapor: '6281263183116',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
nama_up3: 'UP3 LUBUKPAKAM',
|
|
nama_ulp: 'ULP TANJUNG MORAWA',
|
|
nama_posko: 'POSKO ULP TANJUNG MORAWA',
|
|
id_regu: 17680,
|
|
waktu_lapor: '01/01/2023 19:50:15',
|
|
waktu_response: '01/01/2023 19:53:07',
|
|
waktu_recovery: '01/01/2023 19:54:07',
|
|
durasi_response_time: 172,
|
|
durasi_recovery_time: 232
|
|
},
|
|
{
|
|
id: 100,
|
|
no_laporan: 'G5323010101835',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BPK IGA',
|
|
alamat_pelapor:
|
|
'DUSUN KEDUNGMULYA RT 24 RW 7 NO 0 DESA PASIRKALIKI KEC RAWAMERTA,KAB KARAWANG (DEKAT MESJID AL AMANAH)',
|
|
no_telp_pelapor: '085813792190',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 KARAWANG',
|
|
nama_ulp: 'ULP RENGASDENGKLOK',
|
|
nama_posko: 'POSKO ULP RENGASDENGKLOK',
|
|
id_regu: 18767,
|
|
waktu_lapor: '01/01/2023 19:59:13',
|
|
waktu_response: '01/01/2023 20:23:22',
|
|
waktu_recovery: '01/01/2023 20:51:03',
|
|
durasi_response_time: 1449,
|
|
durasi_recovery_time: 3110
|
|
},
|
|
{
|
|
id: 101,
|
|
no_laporan: 'G9923010154570',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'puji Astuti',
|
|
alamat_pelapor: 'semedo RT 10 RW 06',
|
|
no_telp_pelapor: '6281381307920',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 PURWOKERTO',
|
|
nama_ulp: 'ULP AJIBARANG',
|
|
nama_posko: 'POSKO ULP AJIBARANG',
|
|
id_regu: 26448,
|
|
waktu_lapor: '01/01/2023 20:02:54',
|
|
waktu_response: '01/01/2023 20:26:00',
|
|
waktu_recovery: '01/01/2023 20:50:53',
|
|
durasi_response_time: 1386,
|
|
durasi_recovery_time: 2879
|
|
},
|
|
{
|
|
id: 102,
|
|
no_laporan: 'G5423010123605',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'ibu lili',
|
|
alamat_pelapor: 'GG Rasmi ujung',
|
|
no_telp_pelapor: '6281263183116',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
nama_up3: 'UP3 LUBUKPAKAM',
|
|
nama_ulp: 'ULP TANJUNG MORAWA',
|
|
nama_posko: 'POSKO ULP TANJUNG MORAWA',
|
|
id_regu: 17680,
|
|
waktu_lapor: '01/01/2023 20:07:37',
|
|
waktu_response: '01/01/2023 20:10:41',
|
|
waktu_recovery: '01/01/2023 20:11:40',
|
|
durasi_response_time: 184,
|
|
durasi_recovery_time: 243
|
|
},
|
|
{
|
|
id: 103,
|
|
no_laporan: 'G5423010123720',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'linda sely',
|
|
alamat_pelapor: 'dusun pathokan rt 1 rw 5 .An bapak agus',
|
|
no_telp_pelapor: '6283840074648',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 CILACAP',
|
|
nama_ulp: 'ULP KEBUMEN',
|
|
nama_posko: 'POSKO ULP KEBUMEN',
|
|
id_regu: 18203,
|
|
waktu_lapor: '01/01/2023 20:12:22',
|
|
waktu_response: '01/01/2023 20:36:32',
|
|
waktu_recovery: '01/01/2023 20:50:33',
|
|
durasi_response_time: 1450,
|
|
durasi_recovery_time: 2291
|
|
},
|
|
{
|
|
id: 104,
|
|
no_laporan: 'G5423010123753',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP SUHADA',
|
|
alamat_pelapor: 'JL AIR TERJUN 1 DS DANAHWARIH EC BALAPULANG KAB TEGAL JATENG ',
|
|
no_telp_pelapor: '082324678193',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 TEGAL',
|
|
nama_ulp: 'ULP BALAPULANG',
|
|
nama_posko: 'POSKO ULP BALAPULANG',
|
|
id_regu: 18230,
|
|
waktu_lapor: '01/01/2023 20:13:39',
|
|
waktu_response: '01/01/2023 20:45:29',
|
|
waktu_recovery: '01/01/2023 20:58:49',
|
|
durasi_response_time: 1910,
|
|
durasi_recovery_time: 2710
|
|
},
|
|
{
|
|
id: 105,
|
|
no_laporan: 'G5423010124206',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Masitah',
|
|
alamat_pelapor: 'Gg. Tani No.30',
|
|
no_telp_pelapor: '628117883315',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: '',
|
|
nama_up3: '',
|
|
nama_ulp: '',
|
|
nama_posko: '',
|
|
id_regu: 23774,
|
|
waktu_lapor: '01/01/2023 20:34:12',
|
|
waktu_response: '01/01/2023 21:02:55',
|
|
waktu_recovery: '01/01/2023 21:30:50',
|
|
durasi_response_time: 1723,
|
|
durasi_recovery_time: 3398
|
|
},
|
|
{
|
|
id: 106,
|
|
no_laporan: 'G5423010124253',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'fathan',
|
|
alamat_pelapor: 'sumberejo',
|
|
no_telp_pelapor: '6285229056502',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
nama_ulp: 'ULP SUMBERLAWANG',
|
|
nama_posko: 'POSKO ULP SUMBERLAWANG',
|
|
id_regu: 18986,
|
|
waktu_lapor: '01/01/2023 20:35:55',
|
|
waktu_response: '01/01/2023 20:45:17',
|
|
waktu_recovery: '01/01/2023 21:16:13',
|
|
durasi_response_time: 562,
|
|
durasi_recovery_time: 2418
|
|
},
|
|
{
|
|
id: 107,
|
|
no_laporan: 'G5423010124365',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'mujiyono',
|
|
alamat_pelapor: 'parangan semin semin',
|
|
no_telp_pelapor: '6285870061866',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
nama_ulp: 'ULP WONOSARI',
|
|
nama_posko: 'POSKO ULP WONOSARI',
|
|
id_regu: 13577,
|
|
waktu_lapor: '01/01/2023 20:40:58',
|
|
waktu_response: '01/01/2023 21:18:18',
|
|
waktu_recovery: '01/01/2023 21:35:26',
|
|
durasi_response_time: 2240,
|
|
durasi_recovery_time: 3268
|
|
},
|
|
{
|
|
id: 108,
|
|
no_laporan: 'G3223010100908',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'PETTA LAWA',
|
|
alamat_pelapor: 'DG.PASAU',
|
|
no_telp_pelapor: '085232213700',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 20:45:11',
|
|
waktu_response: '01/01/2023 20:57:25',
|
|
waktu_recovery: '01/01/2023 21:49:09',
|
|
durasi_response_time: 734,
|
|
durasi_recovery_time: 3838
|
|
},
|
|
{
|
|
id: 109,
|
|
no_laporan: 'G5423010125251',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BPK PARYANTO',
|
|
alamat_pelapor: 'POLSEK PATEAN JL RAYA CURGSEWU PATEAN KENDAL',
|
|
no_telp_pelapor: '08122865333',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 SEMARANG',
|
|
nama_ulp: 'ULP WELERI',
|
|
nama_posko: 'POSKO ULP WELERI',
|
|
id_regu: 18320,
|
|
waktu_lapor: '01/01/2023 21:25:32',
|
|
waktu_response: '01/01/2023 21:49:37',
|
|
waktu_recovery: '01/01/2023 22:09:08',
|
|
durasi_response_time: 1445,
|
|
durasi_recovery_time: 2616
|
|
},
|
|
{
|
|
id: 110,
|
|
no_laporan: 'G5423010125411',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP MULYADI',
|
|
alamat_pelapor:
|
|
'JL WARU 2 KP WARU 2 RT 08/04 KEC SINDANG JAYA KEL SUKAHARJA KAB TANGGERANG DEKAT MASJID USWATUN HASANAH ',
|
|
no_telp_pelapor: '081295100066',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
nama_up3: 'UP3 CIKUPA',
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
nama_posko: 'POSKO CIKUPA',
|
|
id_regu: 16298,
|
|
waktu_lapor: '01/01/2023 21:34:23',
|
|
waktu_response: '01/01/2023 22:03:18',
|
|
waktu_recovery: '01/01/2023 23:02:25',
|
|
durasi_response_time: 1735,
|
|
durasi_recovery_time: 5282
|
|
},
|
|
{
|
|
id: 111,
|
|
no_laporan: 'G5423010125564',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'halim',
|
|
alamat_pelapor: 'gang flamboyan 5',
|
|
no_telp_pelapor: '6285226133143',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
nama_up3: 'UP3 KUDUS',
|
|
nama_ulp: 'ULP KUDUS KOTA',
|
|
nama_posko: 'POSKO ULP KUDUS KOTA',
|
|
id_regu: 18377,
|
|
waktu_lapor: '01/01/2023 21:42:46',
|
|
waktu_response: '01/01/2023 23:03:28',
|
|
waktu_recovery: '01/01/2023 23:21:21',
|
|
durasi_response_time: 4842,
|
|
durasi_recovery_time: 5915
|
|
},
|
|
{
|
|
id: 112,
|
|
no_laporan: 'G5423010125593',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'RASMAN',
|
|
alamat_pelapor: 'JL Pemuda',
|
|
no_telp_pelapor: '6282346742834',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 21:44:34',
|
|
waktu_response: '01/01/2023 22:16:52',
|
|
waktu_recovery: '01/01/2023 22:52:20',
|
|
durasi_response_time: 1938,
|
|
durasi_recovery_time: 4066
|
|
},
|
|
{
|
|
id: 113,
|
|
no_laporan: 'G5423010125736',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Akbari',
|
|
alamat_pelapor: 'puubunga',
|
|
no_telp_pelapor: '6285342186537',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
nama_up3: 'UP3 KENDARI',
|
|
nama_ulp: 'ULP KOLAKA',
|
|
nama_posko: 'POSKO ULP KOLAKA',
|
|
id_regu: 22032,
|
|
waktu_lapor: '01/01/2023 21:53:30',
|
|
waktu_response: '01/01/2023 22:17:16',
|
|
waktu_recovery: '01/01/2023 22:54:36',
|
|
durasi_response_time: 1426,
|
|
durasi_recovery_time: 3666
|
|
},
|
|
{
|
|
id: 114,
|
|
no_laporan: 'G5423010125825',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Nikson Makalu',
|
|
alamat_pelapor: 'desa gura belakang gereja elim baru kadara',
|
|
no_telp_pelapor: '6282190090364',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH MALUKU DAN MALUKU UTARA',
|
|
nama_up3: 'UP3 TOBELO',
|
|
nama_ulp: 'ULP TOBELO',
|
|
nama_posko: 'POSKO ULP TOBELO',
|
|
id_regu: 21519,
|
|
waktu_lapor: '01/01/2023 21:59:47',
|
|
waktu_response: '01/01/2023 22:18:24',
|
|
waktu_recovery: '01/01/2023 22:58:14',
|
|
durasi_response_time: 1117,
|
|
durasi_recovery_time: 3507
|
|
},
|
|
{
|
|
id: 115,
|
|
no_laporan: 'G5523010101703',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP WAWAN',
|
|
alamat_pelapor:
|
|
'JL. MUNDUK CATU KEL CANGGU KEC KUTA UTARA KAB BADUNG. ACUAN: DI DEPAN HOTEL EASTIN ASTA RESORT CANGGU',
|
|
no_telp_pelapor: '03616200888',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 12874,
|
|
waktu_lapor: '01/01/2023 22:03:21',
|
|
waktu_response: '01/01/2023 23:06:52',
|
|
waktu_recovery: '01/01/2023 23:21:51',
|
|
durasi_response_time: 3811,
|
|
durasi_recovery_time: 4710
|
|
},
|
|
{
|
|
id: 116,
|
|
no_laporan: 'G5123010103259',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'BP DARTO',
|
|
alamat_pelapor: 'JL.MUNDUK 1 NO.27 KEL.CANGGU KC.KUTA UTARA KB.BANDUNG -- DI VILA RADIAN',
|
|
no_telp_pelapor: '082144380456',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI BALI',
|
|
nama_up3: 'UP3 BALI SELATAN',
|
|
nama_ulp: 'ULP MENGWI',
|
|
nama_posko: 'POSKO ULP MENGWI',
|
|
id_regu: 12874,
|
|
waktu_lapor: '01/01/2023 22:41:14',
|
|
waktu_response: '01/01/2023 23:49:12',
|
|
waktu_recovery: '02/01/2023 00:12:44',
|
|
durasi_response_time: 4078,
|
|
durasi_recovery_time: 5490
|
|
},
|
|
{
|
|
id: 117,
|
|
no_laporan: 'G5423010126460',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Bakri',
|
|
alamat_pelapor: 'dsn sukamanah 05/03 desa kutawargi kec.rawamerta',
|
|
no_telp_pelapor: '6285883446703',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
nama_up3: 'UP3 KARAWANG',
|
|
nama_ulp: 'ULP RENGASDENGKLOK',
|
|
nama_posko: 'POSKO ULP RENGASDENGKLOK',
|
|
id_regu: 18767,
|
|
waktu_lapor: '01/01/2023 22:49:52',
|
|
waktu_response: '01/01/2023 23:10:28',
|
|
waktu_recovery: '01/01/2023 23:26:24',
|
|
durasi_response_time: 1236,
|
|
durasi_recovery_time: 2192
|
|
},
|
|
{
|
|
id: 118,
|
|
no_laporan: 'G5423010126461',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'Ontan FMS',
|
|
alamat_pelapor: 'desa gura ',
|
|
no_telp_pelapor: '6282189959613',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH MALUKU DAN MALUKU UTARA',
|
|
nama_up3: 'UP3 TOBELO',
|
|
nama_ulp: 'ULP TOBELO',
|
|
nama_posko: 'POSKO ULP TOBELO',
|
|
id_regu: 21519,
|
|
waktu_lapor: '01/01/2023 22:50:00',
|
|
waktu_response: '01/01/2023 23:09:29',
|
|
waktu_recovery: '01/01/2023 23:39:53',
|
|
durasi_response_time: 1169,
|
|
durasi_recovery_time: 2993
|
|
},
|
|
{
|
|
id: 119,
|
|
no_laporan: 'G5423010126638',
|
|
idpel_nometer: '0',
|
|
nama_pelapor: 'doriwan',
|
|
alamat_pelapor: 'Jl. Soekarno-Hatta No.Kelurahan',
|
|
no_telp_pelapor: '6268963256895',
|
|
status_akhir: 'Selesai',
|
|
nama_uid: 'WILAYAH RIAU DAN KEPULAUAN RIAU',
|
|
nama_up3: 'UP3 DUMAI',
|
|
nama_ulp: 'ULP DUMAI KOTA',
|
|
nama_posko: 'POSKO ULP DUMAI KOTA',
|
|
id_regu: 26722,
|
|
waktu_lapor: '01/01/2023 23:08:21',
|
|
waktu_response: '01/01/2023 23:24:55',
|
|
waktu_recovery: '01/01/2023 23:55:36',
|
|
durasi_response_time: 994,
|
|
durasi_recovery_time: 2835
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
refetch({
|
|
dateFrom: dateValue[0]
|
|
? dateValue[0].split('-').reverse().join('-')
|
|
: new Date().toISOString().slice(0, 10),
|
|
dateTo: dateValue[1]
|
|
? dateValue[1].split('-').reverse().join('-')
|
|
: new Date().toISOString().slice(0, 10),
|
|
noLaporan: searchBy == 'Nomor Laporan' ? keyword : '',
|
|
namaPelapor: searchBy == 'Nama Pelapor' ? keyword : '',
|
|
noTelpPelapor: searchBy == 'No Telepon' ? keyword : '',
|
|
alamatPelapor: searchBy == 'Alamat' ? keyword : '',
|
|
pembuatLaporan: searchBy == 'Pembuat' ? keyword : ''
|
|
})
|
|
|
|
onResult((queryResult) => {
|
|
if (queryResult.data != undefined) {
|
|
if (type == 'Gangguan') {
|
|
data.value = queryResult.data.pencarianDataReportNumberGangguan
|
|
} else {
|
|
data.value = queryResult.data.pencarianDataReportNumberKeluhan
|
|
}
|
|
}
|
|
console.log(queryResult.data)
|
|
console.log(queryResult.loading)
|
|
console.log(queryResult.networkStatus)
|
|
})
|
|
onError((error) => {
|
|
console.log(error)
|
|
})
|
|
|
|
watch(loading, (value) => {
|
|
loading.value = value
|
|
})
|
|
}
|
|
|
|
onMounted(() => {})
|
|
</script>
|