nk20/apps/treasury/forms.py

41 lines
915 B
Python
Raw Normal View History

2020-03-21 15:49:18 +00:00
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
2020-03-22 14:24:54 +00:00
import datetime
2020-03-21 15:49:18 +00:00
from crispy_forms.helper import FormHelper
from django import forms
2020-03-22 00:22:27 +00:00
from .models import Invoice, Product
2020-03-21 15:49:18 +00:00
2020-03-22 00:22:27 +00:00
class InvoiceForm(forms.ModelForm):
2020-03-22 14:24:54 +00:00
date = forms.DateField(
initial=datetime.date.today,
widget=forms.TextInput(attrs={'type': 'date'})
)
def clean_date(self):
self.instance.date = self.data.get("date")
2020-03-21 15:49:18 +00:00
class Meta:
2020-03-22 00:22:27 +00:00
model = Invoice
exclude = ('bde', )
2020-03-21 15:49:18 +00:00
ProductFormSet = forms.inlineformset_factory(
2020-03-22 00:22:27 +00:00
Invoice,
2020-03-21 15:49:18 +00:00
Product,
fields='__all__',
extra=1,
)
2020-03-21 16:29:39 +00:00
2020-03-21 15:49:18 +00:00
class ProductFormSetHelper(FormHelper):
def __init__(self, form=None):
super().__init__(form)
self.form_tag = False
self.form_method = 'POST'
self.form_class = 'form-inline'
2020-03-21 16:29:39 +00:00
self.template = 'bootstrap4/table_inline_formset.html'