« Back to History
rapier_production_report_form.php
|
20260723_000646.php
Initial Domain Snapshot
Copy Code
<?php require_once __DIR__ . '/modules/auth/page_acl.php'; $ctx = page_require_access('shift_report'); $pdo = $ctx['pdo']; $company_id = (int)$ctx['company_id']; $u = $ctx['user']; require_once __DIR__ . '/partials/header.php'; ?> <div class="print-pages"> <!-- ================= PAGE 1 ================= --> <div class="a4-page"> <div class="report-title">DAY SHIFT REPORT</div> <table class="report-table"> <thead> <tr> <th>Mc No</th> <th>Program</th> <th>Date</th> <th>Material Meter</th> <th>Efficiency</th> <th>Pick</th> <th>Karigar Name</th> </tr> </thead> <tbody> <?php for($i=1;$i<=12;$i++): ?> <tr> <td><?= $i ?></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> <?php endfor; ?> <tr> <td colspan="3"><b>Total</b></td> <td></td><td></td><td></td><td></td> </tr> <tr> <td colspan="3"><b>AVG</b></td> <td></td><td></td><td></td><td></td> </tr> </tbody> </table> <div class="remarks-space"></div> </div> <!-- ================= PAGE 2 ================= --> <div class="a4-page"> <div class="report-title">NIGHT SHIFT REPORT</div> <table class="report-table"> <thead> <tr> <th>Mc No</th> <th>Program</th> <th>Date</th> <th>Material Meter</th> <th>Efficiency</th> <th>Pick</th> <th>Karigar Name</th> </tr> </thead> <tbody> <?php for($i=1;$i<=12;$i++): ?> <tr> <td><?= $i ?></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> <?php endfor; ?> <tr> <td colspan="3"><b>Total</b></td> <td></td><td></td><td></td><td></td> </tr> <tr> <td colspan="3"><b>AVG</b></td> <td></td><td></td><td></td><td></td> </tr> </tbody> </table> </div> </div> <?php require_once __DIR__ . '/partials/footer.php'; ?>