// ─── Savuki Drilling — Reports Module ───────────────────────────────────── import { apiFetch } from '../api.js'; import { navigate } from '../app.js'; const _sd = (id, v) => { const e = document.getElementById(id); if (e) e.disabled = v; }; const esc = v => (v || '').toString().replace(/&/g, '&').replace(//g, '>'); const fmt = n => (+n || 0).toLocaleString('en-ZA', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); const fmtD = d => { if (!d) return '—'; return new Date(d).toLocaleDateString('en-ZA', { day: '2-digit', month: 'short', year: 'numeric' }); }; const today = () => new Date().toISOString().slice(0, 10); const mStart = () => { const n = new Date(); return `${n.getFullYear()}-${String(n.getMonth() + 1).padStart(2, '0')}-01`; }; function pageShell(t, b) { return `
Loading…
${m}
Generated: ${new Date().toLocaleString('en-ZA')}