« Back to History
yarn_in_history.php
|
20260723_000646.php
Initial Domain Snapshot
Copy Code
<?php require_once __DIR__.'/../modules/auth/page_acl.php'; $ctx = page_require_access('yarn_in_boxwise'); $pdo = $ctx['pdo']; $cid = (int)$ctx['company_id']; $st=$pdo->prepare(" SELECT entry_id, MAX(txn_date) dt, COUNT(*) boxes, SUM(weight) weight FROM yarn_in_boxwise WHERE company_id=? GROUP BY entry_id ORDER BY entry_id DESC LIMIT 50 "); $st->execute([$cid]); echo json_encode($st->fetchAll(PDO::FETCH_ASSOC));