-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
274e922
commit 4574f4b
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!DOCTYPE html> | ||
<html lang="ar"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>نظام كاشير لمطعم Fast Food Store</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>نظام كاشير لمطعم Fast Food Store</h1> | ||
|
||
<!-- قسم إضافة المنتجات --> | ||
<div class="product-entry"> | ||
<h2>إضافة منتج</h2> | ||
<input type="text" id="product-name" placeholder="أدخل اسم المنتج"> | ||
<input type="number" id="product-price" placeholder="أدخل سعر المنتج (لكل جرام) بالجنيه المصري"> | ||
<input type="number" id="product-weight" placeholder="أدخل وزن المنتج (بالجرامات)"> | ||
<button onclick="addProduct()">إضافة منتج</button> | ||
</div> | ||
|
||
<!-- قسم إدارة المخزون --> | ||
<div class="inventory-management"> | ||
<h2>إدارة المخزون</h2> | ||
<input type="text" id="inventory-name" placeholder="اسم المنتج"> | ||
<input type="number" id="inventory-quantity" placeholder="الكمية بالجرامات"> | ||
<button onclick="updateInventory()">تحديث المخزون</button> | ||
</div> | ||
|
||
<!-- قسم السلة --> | ||
<div class="cart"> | ||
<h2>السلة</h2> | ||
<ul id="cart-items"></ul> | ||
<p>الإجمالي: <span id="total-price">0.00</span> ج.م.</p> | ||
<p>التاريخ: <span id="invoice-date"></span></p> | ||
<p>رقم العميل: <input type="text" id="customer-number" placeholder="أدخل رقم العميل"></p> | ||
<button onclick="printInvoice()">طباعة الفاتورة</button> | ||
</div> | ||
|
||
<!-- قسم إعدادات الفاتورة --> | ||
<div class="invoice-settings"> | ||
<h2>إعدادات الفاتورة</h2> | ||
<input type="text" id="store-phone" placeholder="أدخل رقم الهاتف الخاص بالمتجر"> | ||
<input type="text" id="store-address" placeholder="أدخل عنوان المتجر"> | ||
<input type="file" id="store-logo" accept="image/*"> | ||
</div> | ||
|
||
<!-- قسم إدارة العملاء --> | ||
<div class="customer-management"> | ||
<h2>إدارة العملاء</h2> | ||
<input type="text" id="customer-name" placeholder="اسم العميل"> | ||
<input type="text" id="customer-phone" placeholder="رقم هاتف العميل"> | ||
<button onclick="addCustomer()">إضافة عميل</button> | ||
</div> | ||
|
||
<!-- قائمة المخزون --> | ||
<div class="inventory"> | ||
<h2>المخزون</h2> | ||
<ul id="inventory-items"></ul> | ||
</div> | ||
</div> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |