288 lines
7.0 KiB
TypeScript
288 lines
7.0 KiB
TypeScript
import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
|
|
import { saveAs } from 'file-saver'
|
|
import { jsPDF } from 'jspdf'
|
|
import autoTable from 'jspdf-autotable'
|
|
import { Workbook } from 'exceljs'
|
|
import { setHeaderStyle } from '@/report/utils/xlsx'
|
|
import { formatNumber, formatPercentage } from '@/utils/numbers'
|
|
import { exportToWord } from './doc/MonalisaGR_GangguanPerJenisGangguan_DOC'
|
|
|
|
const reportName = 'Rekapitulasi Gangguan Per Jenis Gangguan'
|
|
const fontSize = 5
|
|
|
|
const formatData = (rawData: any) => {
|
|
const formattedData: any = []
|
|
|
|
const total: any = {
|
|
jumlah: 0,
|
|
persen: [],
|
|
ens: 0
|
|
}
|
|
|
|
rawData.forEach((data: any, index: any) => {
|
|
formattedData.push([
|
|
{ content: ++index, styles: { halign: 'right' } },
|
|
data.id_jenis_gangguan,
|
|
data.nama_jenis_gangguan,
|
|
formatNumber(data.jumlah),
|
|
formatPercentage(data.persen)
|
|
])
|
|
|
|
total.jumlah += data.jumlah
|
|
total.persen.push(data.persen)
|
|
total.ens += data.ens
|
|
})
|
|
|
|
formattedData.push([
|
|
{
|
|
content: 'TOTAL',
|
|
colSpan: 3
|
|
},
|
|
formatNumber(total.jumlah),
|
|
formatPercentage(total.persen.reduce((a: any, b: any) => a + b, 0) / total.persen.length)
|
|
])
|
|
|
|
formattedData.push([
|
|
{
|
|
content: 'ENS',
|
|
colSpan: 3
|
|
},
|
|
{
|
|
content: formatNumber(total.ens),
|
|
colSpan: 2
|
|
}
|
|
])
|
|
|
|
return formattedData
|
|
}
|
|
|
|
const exportToPDF = (reportMeta: any, rawData: any, preview: boolean = false) => {
|
|
const day = new Date().toLocaleString('id-ID', { weekday: 'long' })
|
|
const date = new Date().getDate()
|
|
const month = new Date().toLocaleString('id-ID', { month: 'long' })
|
|
const year = new Date().getFullYear()
|
|
const data = formatData(rawData)
|
|
const doc = new jsPDF({
|
|
orientation: 'landscape'
|
|
})
|
|
|
|
const img = new Image()
|
|
|
|
img.src = '/assets/images/pln-icon.png'
|
|
doc.addImage(img, 'png', 13.5, 9, 9.5, 13)
|
|
|
|
autoTable(doc, {
|
|
head: [
|
|
['PT. PLN(Persero)', '', ''],
|
|
[
|
|
'REGIONAL',
|
|
':',
|
|
reportMeta.regional
|
|
? reportMeta.regional.name.toUpperCase()
|
|
: 'Semua Regional'.toUpperCase()
|
|
],
|
|
[
|
|
{ content: 'UNIT INDUK', styles: { cellWidth: 40 } },
|
|
{ content: ':', styles: { cellWidth: 1 } },
|
|
reportMeta.uid
|
|
? reportMeta.uid.name.toUpperCase()
|
|
: 'Semua Unit Induk Distribusi/Wilayah'.toUpperCase()
|
|
],
|
|
[
|
|
'UNIT PELAKSANA PELAYANAN PELANGGAN',
|
|
':',
|
|
reportMeta.up3
|
|
? reportMeta.up3.name.toUpperCase()
|
|
: 'Semua Unit Pelaksanaan Pelayanan Pelanggan'.toUpperCase()
|
|
],
|
|
[
|
|
'UNIT LAYANAN PELANGGAN',
|
|
':',
|
|
reportMeta.ulp
|
|
? reportMeta.ulp.name.toUpperCase()
|
|
: 'Semua Unit Layanan Pelanggan'.toUpperCase()
|
|
]
|
|
],
|
|
styles: {
|
|
fontSize,
|
|
cellPadding: 0.1,
|
|
textColor: [0, 0, 0],
|
|
fontStyle: 'bold'
|
|
},
|
|
theme: 'plain',
|
|
startY: 10,
|
|
margin: {
|
|
left: 25
|
|
}
|
|
})
|
|
|
|
autoTable(doc, {
|
|
head: [[`${reportName}`.toUpperCase()], [reportMeta.periode]],
|
|
styles: {
|
|
fontSize,
|
|
cellPadding: 0.1,
|
|
textColor: [0, 0, 0],
|
|
fontStyle: 'bold',
|
|
halign: 'center'
|
|
},
|
|
theme: 'plain',
|
|
startY: 23
|
|
})
|
|
|
|
autoTable(doc, {
|
|
head: [['No', 'ID Gangguan', 'Jenis Gangguan', 'Jumlah', '%']],
|
|
body: data,
|
|
styles: {
|
|
fontSize,
|
|
cellPadding: 1,
|
|
lineColor: [0, 0, 0],
|
|
lineWidth: 0.1,
|
|
cellWidth: 'auto'
|
|
},
|
|
rowPageBreak: 'auto',
|
|
headStyles: {
|
|
fillColor: [192, 192, 192],
|
|
textColor: [0, 0, 0],
|
|
fontStyle: 'bold',
|
|
cellWidth: 'wrap',
|
|
halign: 'center',
|
|
valign: 'middle'
|
|
},
|
|
bodyStyles: {
|
|
textColor: [0, 0, 0]
|
|
},
|
|
didParseCell: function (data) {
|
|
if (data.row.section === 'head') {
|
|
data.cell.text = data.cell.text.map(function (word: any) {
|
|
return word.toUpperCase()
|
|
})
|
|
}
|
|
|
|
if (data.cell.text[0] === 'TOTAL') {
|
|
for (const key in data.row.cells) {
|
|
data.row.cells[key].styles.fillColor = [192, 192, 192]
|
|
data.row.cells[key].styles.fontStyle = 'bold'
|
|
}
|
|
}
|
|
|
|
if (data.cell.text[0] === 'ENS') {
|
|
for (const key in data.row.cells) {
|
|
data.row.cells[key].styles.fillColor = [192, 192, 192]
|
|
data.row.cells[key].styles.fontStyle = 'bold'
|
|
}
|
|
}
|
|
},
|
|
startY: 30
|
|
})
|
|
|
|
autoTable(doc, {
|
|
head: [
|
|
[`${day}, ${date}-${month}-${year}`],
|
|
[
|
|
{
|
|
content: '(.........................................)',
|
|
styles: { minCellHeight: 8, valign: 'bottom' }
|
|
}
|
|
]
|
|
],
|
|
styles: {
|
|
fontSize,
|
|
cellPadding: 0.1,
|
|
textColor: [0, 0, 0],
|
|
fontStyle: 'bold',
|
|
halign: 'center'
|
|
},
|
|
theme: 'plain',
|
|
tableWidth: 50,
|
|
margin: { left: 230 }
|
|
})
|
|
|
|
if (preview) {
|
|
doc.setProperties({
|
|
title: `${reportName}`
|
|
})
|
|
window.open(doc.output('bloburl'))
|
|
} else {
|
|
doc.save(`Laporan ${reportName}.pdf`, { returnPromise: true }).then(() => {
|
|
console.log('pdf berhasil disimpan')
|
|
})
|
|
}
|
|
}
|
|
|
|
const exportToXLSX = (reportMeta: any, e: any) => {
|
|
const workbook = new Workbook()
|
|
const worksheet = workbook.addWorksheet(`${reportName}`)
|
|
|
|
setHeaderStyle(worksheet, 1, 1, 'PT. PLN(Persero)')
|
|
setHeaderStyle(
|
|
worksheet,
|
|
2,
|
|
1,
|
|
`UNIT INDUK : ${
|
|
reportMeta.uid
|
|
? reportMeta.uid.name.toUpperCase()
|
|
: 'Semua Unit Induk Distribusi/Wilayah'.toUpperCase()
|
|
}`
|
|
)
|
|
setHeaderStyle(
|
|
worksheet,
|
|
3,
|
|
1,
|
|
`UNIT PELAKSANA PELAYANAN PELANGGAN : ${
|
|
reportMeta.up3
|
|
? reportMeta.up3.name.toUpperCase()
|
|
: 'Semua Unit Pelaksanaan Pelayanan Pelanggan'.toUpperCase()
|
|
}`
|
|
)
|
|
setHeaderStyle(
|
|
worksheet,
|
|
4,
|
|
1,
|
|
`UNIT LAYANAN PELANGGAN : ${
|
|
reportMeta.ulp
|
|
? reportMeta.ulp.name.toUpperCase()
|
|
: 'Semua Unit Layanan Pelanggan'.toUpperCase()
|
|
}`
|
|
)
|
|
setHeaderStyle(
|
|
worksheet,
|
|
5,
|
|
1,
|
|
`REGIONAL : ${
|
|
reportMeta.regional ? reportMeta.regional.name.toUpperCase() : 'Semua Regional'.toUpperCase()
|
|
}`
|
|
)
|
|
|
|
setHeaderStyle(worksheet, 7, 1, `${reportName}`.toUpperCase(), true)
|
|
setHeaderStyle(worksheet, 8, 1, reportMeta.periode, true)
|
|
|
|
worksheet.mergeCells('A1:E1')
|
|
worksheet.mergeCells('A2:E2')
|
|
worksheet.mergeCells('A3:E3')
|
|
worksheet.mergeCells('A4:E4')
|
|
worksheet.mergeCells('A5:E5')
|
|
worksheet.mergeCells('A7:E7')
|
|
worksheet.mergeCells('A8:E8')
|
|
|
|
exportToExcel({
|
|
component: e.component,
|
|
worksheet,
|
|
autoFilterEnabled: true,
|
|
topLeftCell: { row: 10, column: 1 },
|
|
loadPanel: {
|
|
enabled: false
|
|
}
|
|
}).then(() => {
|
|
workbook.xlsx.writeBuffer().then((buffer: any) => {
|
|
saveAs(new Blob([buffer], { type: 'application/octet-stream' }), `Laporan ${reportName}.xlsx`)
|
|
})
|
|
})
|
|
|
|
e.cancel = true
|
|
}
|
|
|
|
const exportToDOCX = (reportMeta: any, rawData: any) => {
|
|
exportToWord(reportMeta, formatData(rawData), `Laporan ${reportName}`, null)
|
|
}
|
|
export { exportToPDF, exportToXLSX, exportToDOCX }
|