Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/phauline-racel/LIMO-YUSEN-WAREHOUSE/llms.txt

Use this file to discover all available pages before exploring further.

Amvel Warehouse is the warehouse management system (WMS) used by Yusen Logistics Philippines Inc. to track inbound and outbound cargo, manage inventory, and control access across staff roles. It runs entirely in the browser — no server installation, no desktop app, and no database setup required. Every record the system creates is stored in the browser’s localStorage, which means any modern browser on any device can open the application by navigating to index.html. The system is purpose-built for the day-to-day operations of a logistics warehouse: receiving cargo off a truck, recording air waybill numbers, monitoring what is currently sitting on a rack, and releasing stock to outbound vehicles.

System Overview

Amvel Warehouse is organized into four primary functional areas, each accessible from the sidebar navigation after login.
AreaPagesPurpose
Login / Authenticationindex.htmlCredential entry, session creation, and redirect to the dashboard
Dashboard & Activity Reportpages/dashboard.htmlLive KPI cards, the recent-shipments table, and the full Activity Report with date-range and filter controls
Inbound & Outboundpages/inbound-outbound.htmlTabbed form for receiving cargo (Inbound) and releasing cargo (Outbound); supports HAWB autocomplete on the Outbound tab
Inventorypages/inventory.htmlAggregated view of every shipment reference with inbound quantity, outbound quantity, remaining stock, status badges, and location data
Admin users also have access to two additional pages reachable from the top-right user dropdown:
  • User Management (pages/user-management.html) — create, edit, activate/deactivate, and delete operator accounts.
  • Profile (pages/profile.html) — update display name, email, and upload a profile picture (with in-browser crop and rotate).

Who Uses This System

Amvel Warehouse uses a two-role access model. Every account belongs to exactly one role.
RoleWhat they can do
AdminFull access to all pages, including User Management; can create, update, reset passwords for, and delete other accounts.
EmployeeCan log in, use the Dashboard, record Inbound/Outbound shipments, and view Inventory; cannot access User Management or change other users’ credentials.

How Data Is Stored

All application data is persisted in the browser’s localStorage under three keys:
KeyContents
warehouseShipmentsEvery inbound and outbound shipment record saved through the forms
warehouseAuthAccountsThe full list of user accounts (userId, hashed password, role, status, etc.)
warehouseAuthSessionThe currently active session object written on successful login
Because the data lives in the browser, the same physical machine and the same browser profile must be used to access the same records. Two operators on two different computers will each see their own isolated storage.
Data is scoped to the browser in which it was saved. Clearing browser storage — through the browser’s “Clear site data” or “Clear history” settings, or by calling localStorage.clear() from the console — will permanently remove all shipment records, accounts, and session data. Back up any critical records using the Excel or PDF export features in the Inventory and Dashboard pages before clearing storage.

Where to Go Next

Quickstart

Open the app, log in with the default credentials, and save your first inbound shipment in five minutes.

Authentication

Understand how sessions work, how role guards protect pages, and how to use the full AuthService API.

Dashboard

Learn how the KPI cards are calculated and how to filter and export the Activity Report.

Inbound & Outbound

Field-by-field guide to recording cargo receipts and releases, including plate-number autocomplete.
New to the system? The Quickstart walks you through opening the app, signing in, and recording your first shipment end-to-end in under five minutes.

Build docs developers (and LLMs) love