File size: 7,745 Bytes
921d328
 
 
 
 
 
e32cb2d
921d328
 
 
52e12d8
3f9649c
 
52e12d8
 
 
 
 
921d328
 
 
52e12d8
 
3f9649c
52e12d8
 
bf33bd1
52e12d8
921d328
e62c014
 
 
3f9649c
52e12d8
3f9649c
52e12d8
 
e32cb2d
e62c014
 
 
 
 
3f9649c
e32cb2d
e62c014
 
 
 
 
52e12d8
e62c014
3f9649c
0bb6af5
e62c014
 
 
3f9649c
0bb6af5
e62c014
e32cb2d
52e12d8
3f9649c
e62c014
 
921d328
e62c014
e32cb2d
 
e62c014
 
3f9649c
061b31d
44d4011
 
 
52e12d8
bf33bd1
e62c014
44d4011
 
 
 
 
 
e62c014
 
44d4011
 
 
bf33bd1
44d4011
 
 
e62c014
 
44d4011
 
52e12d8
44d4011
 
 
 
 
 
e62c014
44d4011
921d328
bf33bd1
 
 
 
 
3f9649c
 
bf33bd1
 
 
3f9649c
bf33bd1
 
3f9649c
bf33bd1
 
3f9649c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
921d328
 
 
 
 
3f9649c
e32cb2d
3f9649c
 
f162582
3f9649c
 
 
 
 
 
 
e62c014
3f9649c
 
 
 
 
 
 
 
 
3b1a4d2
3f9649c
 
 
 
e62c014
 
3f9649c
e62c014
3f9649c
 
bf33bd1
 
3f9649c
 
 
bf33bd1
3f9649c
 
bf33bd1
 
3f9649c
 
bf33bd1
 
 
 
3f9649c
bf33bd1
 
 
e62c014
3f9649c
2a1077d
44d4011
 
6e27cf3
921d328
 
44d4011
 
 
 
 
921d328
3f9649c
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Order Summary</title>
    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #fdf4e3;
            color: #333333;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .order-container {
            max-width: 768px;
            margin: 40px auto;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #ffffff;
            flex-grow: 1;
        }
        .cart-item {
            display: flex;
            justify-content: space-between;
            background-color: #fffcf5;
            border-radius: 8px;
            border: 1px solid #ffe5b4;
            padding: 10px;
            margin-bottom: 10px;
        }
        .cart-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            border: 1px solid #ffcc80;
        }
        .cart-item-details {
            flex: 1;
            margin-left: 15px;
        }
        .cart-item-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #000000;
        }
        .cart-item-addons,
        .cart-item-instructions {
            font-size: 0.9rem;
            color: #000000;
        }
        .cart-item-actions {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2b9348;
        }
        .order-summary {
            text-align: right;
            margin-top: 15px;
        }
        .total-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2b9348;
        }
        .back-to-menu {
            display: block;
            margin: 30px auto 10px auto;
            padding: 10px 20px;
            background-color: #ff5722;
            color: #ffffff;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }
        .back-to-menu:hover {
            background-color: #ff5722;
            text-decoration: none;
        }
        footer {
            background-color: #333333;
            color: #ffffff;
            text-align: center;
            padding: 15px 10px;
            margin-top: auto;
        }
        footer p {
            margin: 0;
            font-size: 1rem;
        }
        footer p span {
            color: #ffcc00;
            font-weight: bold;
        }
        .totsl_bill {
            max-width: 768px;
        }
        .yourorder {
            font-family: Serif;
            color: #ff5722;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .d-flex {
            margin-bottom: 0px !important;
        }
        .d-flex:first-child {
            margin-top: 0px !important;
        }
        .d-flex .cart-item-actions {
            margin-bottom: 0px !important;
        }
        .cart-item-instructions {
            word-wrap: break-word;
            white-space: normal;
            overflow-wrap: break-word;
            max-width: 100%;
            line-height: 1.5;
            padding: 5px 0;
            word-break: break-word;
        }
        .order-header {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ff5722;
            margin-top: 20px;
            margin-bottom: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="order-container">
            <h4 class="mb-4 text-center yourorder">Your Pending Orders</h4>

            {% if orders %}
                {% for order in orders %}
                   
                    {% for line in order.Order_Details__c.split('\n') %}
                        {% set item_parts = line.split('|') %}
                        <div class="cart-item">
                            <!-- Item Image -->
                            <img src="{{ item_parts[4].strip().replace('Image:', '') }}" 
                                 alt="{{ item_parts[0].strip() }}" 
                                 onerror="this.src='/static/placeholder.jpg';">
                            
                            <!-- Item Details -->
                            <div class="cart-item-details">
                                <div class="cart-item-title">{{ item_parts[0].strip() }}</div>
                                <div class="cart-item-addons">
                                    <small class="text-muted">Add-ons: {{ item_parts[1].strip().replace('Add-Ons:', '') }}</small>
                                </div>
                                <div class="cart-item-instructions">
                                    <small class="text-muted">Instructions: {{ item_parts[2].strip().replace('Instructions:', '') }}</small>
                                </div>
                            </div>
                            
                            <!-- Price -->
                            <div class="cart-item-actions">
                                <span style="font-size: 16px; margin-right: 13px">{{ item_parts[3].strip().replace('Price:', '') }}</span>
                            </div>
                        </div>
                    {% endfor %}
                {% endfor %}
                
                <!-- Aggregate Totals Section -->
                <div class="container mt-5 cart-item">
                    <div class="container">
                        {% if orders|length > 1 %}
                            <h5 class="mb-3 text-center" style="color: #ff5722; font-weight: bold;">Summary of All Pending Orders</h5>
                        {% endif %}
                        <div class="d-flex justify-content-between mb-3">
                            <p><strong>Total Sub-Total:</strong></p>
                            <p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(total_subtotal) }}</p>
                        </div>
                        <div class="d-flex justify-content-between mb-3">
                            <p><strong>Total Discount:</strong></p>
                            <p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(total_discount) }}</p>
                        </div>
                        <div style="border-bottom: 2px dotted #000; margin-bottom: 10px;"></div>
                        <div class="d-flex justify-content-between mb-3">
                            <p><strong>Total Bill:</strong></p>
                            <p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(total_bill) }}</p>
                        </div>
                    </div>
                </div>
            {% else %}
                <p class="text-center">No pending order details available.</p>
            {% endif %}

            <!-- Back to Menu Button -->
            <a href="{{ url_for('combined_summary.combined_summary') }}" class="back-to-menu">Back</a>
        </div>
    </div>

    <!-- Footer -->
    <footer>
        <p>Thank you for dining with us! <span>We look forward to serving you again.</span></p>
    </footer>
</body>
</html>