From eba4c1a3113d24319bccc5c52d4d93838334bd31 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sun, 3 Jul 2022 20:21:02 +0200 Subject: db now in models; modules. --- app/modules/forms.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'app/modules/forms.py') 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() +# ] + -- cgit v1.2.3