BAKERYELITE

Secure Access System

Tip: Type 'admin' for Manager or 'cashier' for POS Access

Dashboard Overview

Live data from 4 Bakery Branches

+12%

Today's Revenue

Rs. 248,390

05 Active

Warehouse Returns

12 Items

Online Orders (App)

34 Orders

Foodpanda Pending

07 Orders

Rack & Stock Control

Manage Warehouse Purchases, Returns & Rack Locations

Rack-A1 (General Items)

Fresh Bakery Items

Total Capacity 500 Units

Last Restocked: 2 hours ago from Warehouse-A

Rack-F3 (Cold Storage)

Cakes & Pastries

Total Capacity 50 Units

Low Stock: Order from Warehouse

Rack-B2 (General Store)

Biscuits & Dry Items

Total Capacity 1000 Units

Status: Near Full

Detailed Stock Report

Real-time Warehouse Sync: Active
Product Name Purchase Date Warehouse Source General Store Return Current Stock Action
Milk Bread (Large) 17 Feb 2026 Main Warehouse -12 Units 450 Qty
Chocolate Fudge Cake 16 Feb 2026 Central Kitchen 0 08 Qty
// Coming Soon alert logic function handleComingSoon(featureName) { hideInventory(); alert(featureName + ' feature is Coming Soon! We are working on it.'); } // Inventory page show/hide logic function showInventory() { document.getElementById('dashboardMain').style.display = 'none'; document.getElementById('inventoryPage').style.display = 'block'; } function hideInventory() { document.getElementById('inventoryPage').style.display = 'none'; document.getElementById('dashboardMain').style.display = 'block'; } // Allow user to return to dashboard from inventory document.addEventListener('DOMContentLoaded', function() { var invPage = document.getElementById('inventoryPage'); if (invPage && !document.getElementById('backToDashboardBtn')) { var backBtn = document.createElement('button'); backBtn.innerText = '← Back to Dashboard'; backBtn.id = 'backToDashboardBtn'; backBtn.className = 'mb-6 px-4 py-2 rounded bg-orange-600 text-white font-bold hover:bg-orange-700'; backBtn.onclick = function() { hideInventory(); }; invPage.insertBefore(backBtn, invPage.firstChild); } });