Spaces:
Sleeping
Sleeping
File size: 11,663 Bytes
d258a99 48794a2 9c0c1df 864ab9e d258a99 48794a2 864ab9e 48794a2 864ab9e ac923cc 9c0c1df 48794a2 864ab9e 9c0c1df d258a99 9c0c1df ac923cc 864ab9e 48794a2 864ab9e 48794a2 ac923cc 48794a2 864ab9e 48794a2 ac923cc 48794a2 864ab9e 48794a2 864ab9e 48794a2 ac923cc 48794a2 ac923cc 48794a2 d258a99 864ab9e ac923cc 864ab9e ac923cc 864ab9e ac923cc 864ab9e ac923cc 864ab9e ac923cc 864ab9e d258a99 e8c2e24 |
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Summary and Invoice</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<style>
.invoice-section {
background: #FFFFFF;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
padding: 24px;
margin-bottom: 24px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}
.invoice-section.hidden {
max-height: 0;
opacity: 0;
overflow: hidden;
padding: 0;
margin: 0;
}
.invoice-header {
text-align: center;
margin-bottom: 24px;
}
.invoice-header h1 {
font-size: 1.75rem;
font-weight: 700;
color: #1F2937;
}
.invoice-header p {
color: #6B7280;
font-size: 0.875rem;
}
.invoice-details {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-bottom: 24px;
}
.invoice-details p {
font-size: 0.875rem;
color: #1F2937;
}
.invoice-details p span {
font-weight: 600;
}
.invoice-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 24px;
}
.invoice-table th, .invoice-table td {
border: 1px solid #E5E7EB;
padding: 8px;
text-align: left;
font-size: 0.875rem;
}
.invoice-table th {
background: #F9FAFB;
font-weight: 600;
color: #1F2937;
}
.invoice-table td {
color: #1F2937;
}
.invoice-table .total-row {
font-weight: 600;
background: #FFF7ED;
}
.invoice-footer {
text-align: center;
color: #6B7280;
font-size: 0.875rem;
margin-top: 16px;
}
.invoice-footer p {
margin: 4px 0;
}
.invoice-toggle-btn, .invoice-download-btn {
display: inline-block;
padding: 10px 20px;
background-color: #FFB347;
color: #FFFFFF;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
margin: 10px;
transition: background-color 0.3s ease;
}
.invoice-toggle-btn:hover, .invoice-download-btn:hover {
background-color: #FF9E2C;
}
.back-to-menu {
display: flex;
align-items: center;
padding: 14px 24px;
background: linear-gradient(45deg, #FFA07A, #FFB347);
color: #FFFFFF;
font-size: 1.125rem;
font-weight: 600;
text-decoration: none;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, transform 0.2s ease;
}
.back-to-menu:hover {
background: linear-gradient(45deg, #FF8C61, #FF9E2C);
transform: translateY(-1px);
}
@media (max-width: 768px) {
.invoice-details {
grid-template-columns: 1fr;
}
.invoice-table th, .invoice-table td {
font-size: 0.75rem;
padding: 6px;
}
.invoice-toggle-btn, .invoice-download-btn {
padding: 8px 16px;
font-size: 0.875rem;
}
}
</style>
</head>
<body class="bg-gray-50">
<a href="{{ url_for('menu.menu') }}" class="back-to-menu" aria-label="Go back to menu">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 mr-2" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 18l-6-6 6-6"></path>
</svg>
Back to Menu
</a>
<div class="container mx-auto p-6 pt-20">
<!-- Invoice Toggle and Download Buttons -->
<div class="text-center mb-6">
<button id="toggleInvoiceBtn" class="invoice-toggle-btn" onclick="toggleInvoice()">View Invoice</button>
<button id="downloadInvoiceBtn" class="invoice-download-btn" onclick="downloadInvoice()">Download Invoice as PDF</button>
</div>
<!-- Invoice Section -->
<div id="invoiceSection" class="invoice-section hidden">
<div class="invoice-header">
<h1>Tax Invoice</h1>
<p>ORIGINAL FOR RECIPIENT</p>
</div>
<div class="invoice-details">
<div>
<p><span>Restaurant Name:</span> {{ restaurant.name | default('Pista House') }}</p>
<p><span>Legal Entity:</span> {{ restaurant.legal_name | default('DOUBLE TREE BY KVP HOSPITALITY LLP') }}</p>
<p><span>Address:</span> {{ restaurant.address | default('52 To 57, 69 & 70, 5-5-162 & 5-5-163, 5-5-164 & 5-5-165, Plot 1, Vanasthali Hills, Saheb Nagar, LB Nagar Circle 4, Vanasthalipuram, Hyderabad') }}</p>
<p><span>GSTIN:</span> {{ restaurant.gstin | default('36AATFD1209K1Z9') }}</p>
<p><span>FSSAI:</span> {{ restaurant.fssai | default('13622012000022') }}</p>
</div>
<div>
<p><span>Invoice No:</span> {{ order.id | default('247JD92F00043965') }}</p>
<p><span>Invoice Date:</span> {{ order.created_date | default('2024-12-12') }}</p>
<p><span>Customer Name:</span> {{ customer.name | default('SATHVIK GANTA') }}</p>
<p><span>Customer Email:</span> {{ customer.email | default('sathvik@example.com') }}</p>
<p><span>Customer Phone:</span> {{ customer.phone | default('9876543210') }}</p>
</div>
</div>
<table class="invoice-table">
<thead>
<tr>
<th>Item Name</th>
<th>Price (INR)</th>
</tr>
</thead>
<tbody>
{% for item in order_items %}
<tr>
<td>{{ item.name | escape }}</td>
<td>₹{{ "%.2f"|format(item.price | default(0)) }}</td>
</tr>
{% endfor %}
<tr class="total-row">
<td>Total</td>
<td>₹{{ "%.2f"|format(total_amount) }}</td>
</tr>
</tbody>
</table>
<div class="invoice-footer">
<p>Amount (in words): {{ total_amount_in_words | default('Three Hundred Eighty Seven Rupees And Forty Five Paisa Only') }}</p>
<p>Order ID: {{ order.id | default('247JD92F00043965') }}</p>
<p>Order Date: {{ order.created_date | default('2024-12-12') }}</p>
<p>For {{ restaurant.legal_name | default('DOUBLE TREE BY KVP HOSPITALITY LLP') }}</p>
<p>Authorized Signatory</p>
</div>
</div>
</div>
<script>
</script>
</body>
</html> |