Spaces:
Sleeping
Sleeping
EL GHAFRAOUI AYOUB
commited on
Commit
·
32dc8a3
1
Parent(s):
c9618ec
app/services/__pycache__/invoice_service.cpython-312.pyc
CHANGED
Binary files a/app/services/__pycache__/invoice_service.cpython-312.pyc and b/app/services/__pycache__/invoice_service.cpython-312.pyc differ
|
|
app/templates/index.html
CHANGED
@@ -223,6 +223,10 @@
|
|
223 |
<label for="clientAddress" class="form-label">Adresse</label>
|
224 |
<input type="text" class="form-control" id="clientAddress" required>
|
225 |
</div>
|
|
|
|
|
|
|
|
|
226 |
<div class="mb-3">
|
227 |
<label class="form-label">Type Client</label>
|
228 |
<div class="btn-group w-100" role="group">
|
@@ -795,7 +799,7 @@
|
|
795 |
tax: parseFloat(document.querySelector("#tax").value || 0),
|
796 |
total_ttc: parseFloat(document.querySelector("#totalTTC").value || 0),
|
797 |
items: getAllItems(),
|
798 |
-
frame_number: "",
|
799 |
status: "pending",
|
800 |
created_at: new Date().toISOString(),
|
801 |
commercial: document.querySelector("#commercial").value || "divers"
|
|
|
223 |
<label for="clientAddress" class="form-label">Adresse</label>
|
224 |
<input type="text" class="form-control" id="clientAddress" required>
|
225 |
</div>
|
226 |
+
<div class="mb-3">
|
227 |
+
<label for="plancher" class="form-label">PLANCHER</label>
|
228 |
+
<input type="text" class="form-control" id="plancher" placeholder="PH RDC" value="PH RDC">
|
229 |
+
</div>
|
230 |
<div class="mb-3">
|
231 |
<label class="form-label">Type Client</label>
|
232 |
<div class="btn-group w-100" role="group">
|
|
|
799 |
tax: parseFloat(document.querySelector("#tax").value || 0),
|
800 |
total_ttc: parseFloat(document.querySelector("#totalTTC").value || 0),
|
801 |
items: getAllItems(),
|
802 |
+
frame_number: document.querySelector("#plancher").value || "PH RDC",
|
803 |
status: "pending",
|
804 |
created_at: new Date().toISOString(),
|
805 |
commercial: document.querySelector("#commercial").value || "divers"
|
sql_app.db
CHANGED
Binary files a/sql_app.db and b/sql_app.db differ
|
|