File size: 1,296 Bytes
13240d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>@ViewData["Title"] - 烘焙 ERP</title>
    <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
</head>
<body>
    <aside class="sidebar">
        <div class="brand">
            <span class="brand-mark">B</span>
            <div>
                <strong>Bakery ERP</strong>
                <small>進銷存暨財務管理</small>
            </div>
        </div>
        <nav class="nav">
            <a class="active" href="/">營運總覽</a>
            <a href="/Suppliers">供應商管理</a>
            <a href="/Items">品項管理</a>
            <a href="/Stores">門市管理</a>
            <a href="/Warehouses">倉庫管理</a>
            <a href="/OcrDocuments">AI OCR 進貨</a>
            <a href="/Inventory">庫存管理</a>
            <a href="/Purchases">採購與月結</a>
            <a href="/PettyCash">零用金管理</a>
            <a href="/Transfers">中央廚房調撥</a>
            <a href="/StoreReturns">門市退貨</a>
            <a href="/Reports">報表中心</a>
        </nav>
    </aside>
    <main class="shell">
        @RenderBody()
    </main>
</body>
</html>