summaryrefslogtreecommitdiff
path: root/app/modules/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/modules/forms.py')
-rw-r--r--app/modules/forms.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/modules/forms.py b/app/modules/forms.py
index 7e4acde..001557a 100644
--- a/app/modules/forms.py
+++ b/app/modules/forms.py
@@ -9,3 +9,22 @@ from .customers.forms import AddCustomer
from .ferti.forms import AddFertiLog, AddFertiTarget
from .invoices.forms import AddInvoice
from .products.forms import AddProduct
+
+
+# class AddUser(FlaskForm):
+# customer_id = SelectField("Customer", choices=[])
+# invoice_id_alt = StringField("Alternative invoice ID")
+# customer_reference = StringField("Customer reference")
+# date_billed = DateField('Date billed', format='%Y-%m-%d')
+# date_due = DateField('Date due', format='%Y-%m-%d')
+# amount_net = FloatField("Amount without tax", default=0)
+# amount_gross = FloatField("Amount with tax", default=0)
+# amount_tax = FloatField("Amount of tax", default=0)
+# submit = SubmitField("Add Invoice")
+
+# def __init__(self, **kwargs):
+# super().__init__()
+# self.customer_id.choices = [
+# (cus.primary_key, cus.name) for cus in Customer.query.all()
+# ]
+
Copyright 2019--2024 Marius PETER