Aldi Thanks For Google and Stackoverflow.

Cara Download Massal Faktur Pajak

20 sec read

tutorial min
  1. Masuk ke menu faktur pajak
  2. lalu pilih faktur pajak yang mau di download
  3. buka console dari browser dengan cara tekan F12
  4. ketik di console “allow pasting”
  5. lalu salin code dibawah dan tekan enter, otomatis fakrur pajak akan terdownload


const buttons = document.querySelectorAll(‘#DownloadButton’);
let delay = 2000; // 2 detik

buttons.forEach((button, index) => {
// Cari checkbox
let checkbox = button.closest(‘tr’)?.querySelector(‘[role=”checkbox”]’);

// Jika checkbox aktif, Download
if (checkbox && checkbox.getAttribute(‘aria-checked’) === “true”) {
setTimeout(() => {
button.click();
console.log(`PDF terunduh ${index + 1}`);
}, delay * index);
} else {
console.log(`${index + 1} checkbox tidak aktif.`);
}
});

Aldi Thanks For Google and Stackoverflow.

Leave a Reply

Your email address will not be published. Required fields are marked *