Files
controls-web/lasuca/grower-main-loaddata.php
2026-02-17 09:29:34 -06:00

76 lines
2.9 KiB
PHP

<?php // phpcs:ignoreFile
session_start();
if (empty($_SESSION['myusername'])) {
header('Location: /grower-login.php');
exit();
}
$pageTitle = 'Load Data Tools';
$metaDescription = 'Review daily ticket reports and load summaries in the LASUCA grower portal.';
$activeNav = 'account';
require __DIR__ . '/inc/theme-header.php';
?>
<main>
<header class="hero hero-sub">
<div class="container">
<span class="badge">Grower portal</span>
<h1>Welcome back, <?php echo htmlspecialchars($_SESSION['myusername'], ENT_QUOTES, 'UTF-8'); ?></h1>
<p>
Your load data folders are organized by harvest year below. Select a folder to view or download
PDF reports generated after each scale batch posts.
</p>
<a class="btn btn-outline-light btn-lg mt-3" href="/grower-login.php">Switch account</a>
</div>
</header>
<section class="page-section py-5">
<div class="container">
<?php require __DIR__ . '/grower-quicklinks.php'; ?>
<div class="row g-4 align-items-stretch">
<div class="col-lg-6">
<div class="content-card h-100">
<h3 class="mb-3">Daily ticket reports (DTR)</h3>
<p>
Access PDF packets sorted by date, field, and contract. Each report contains net tons,
gross weight, tare, and timestamps for every load delivered during the selected period.
</p>
<ul class="feature-list">
<li>
<span class="icon">📁</span>
<div>Folders by harvest year and day make it easy to drill down.</div>
</li>
<li>
<span class="icon">⬇️</span>
<div>Download single reports or whole folders to keep offline records.</div>
</li>
<li>
<span class="icon">🔄</span>
<div>Reports refresh every evening once tickets are reconciled.</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-6">
<div class="content-card h-100">
<h3 class="mb-3">Load data highlights</h3>
<p>
While you browse reports, keep an eye on summary metrics in the production dashboard. It
surfaces average grind rates, total tons, and run hours updated throughout the day.
</p>
<p class="mb-0">
Need help locating a ticket? Call grower relations at <strong>(337) 394-3785</strong> and we&rsquo;ll
email the file directly.
</p>
</div>
</div>
</div>
</div>
</section>
</main>
<?php
require __DIR__ . '/inc/theme-footer.php';
?>