Update modules/pricing/pricing_app.py
Browse files
modules/pricing/pricing_app.py
CHANGED
@@ -452,7 +452,7 @@ class PricingApp:
|
|
452 |
key="new_boq_category"
|
453 |
)
|
454 |
|
455 |
-
|
456 |
if new_code and new_description and new_quantity > 0 and new_unit_price > 0:
|
457 |
# حساب السعر الإجمالي
|
458 |
new_total_price = new_quantity * new_unit_price
|
@@ -480,6 +480,9 @@ class PricingApp:
|
|
480 |
|
481 |
# عرض ملخص جدول الكميات
|
482 |
st.markdown("### ملخص جدول الكميات")
|
|
|
|
|
|
|
483 |
|
484 |
# عرض ملخص جدول الكميات
|
485 |
st.markdown("### ملخص جدول الكميات")
|
|
|
452 |
key="new_boq_category"
|
453 |
)
|
454 |
|
455 |
+
if st.button("إضافة البند", key="add_boq_item"):
|
456 |
if new_code and new_description and new_quantity > 0 and new_unit_price > 0:
|
457 |
# حساب السعر الإجمالي
|
458 |
new_total_price = new_quantity * new_unit_price
|
|
|
480 |
|
481 |
# عرض ملخص جدول الكميات
|
482 |
st.markdown("### ملخص جدول الكميات")
|
483 |
+
|
484 |
+
# عرض ملخص جدول الكميات
|
485 |
+
st.markdown("### ملخص جدول الكميات")
|
486 |
|
487 |
# عرض ملخص جدول الكميات
|
488 |
st.markdown("### ملخص جدول الكميات")
|