| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- from django.forms.models import inlineformset_factory, modelform_factory, modelformset_factory
- from django import forms
- from .models import Store, Product, Photo, ProductSKU, Sale, Inbox
- from django.forms import ModelForm
- from django_google_maps import widgets as map_widgets
- from django_google_maps import fields as map_fields
- import django_filters
- GeneralWidgets = {
- 'startDate': forms.DateInput(format="%d/%m/%Y",attrs={'type': 'text', 'class': 'datepicker'}),
- 'address': map_widgets.GoogleMapsAddressWidget,
- 'photo': forms.FileInput,
- 'sub_total': forms.TextInput(attrs={'readonly': 'readonly'}),
- 'vat': forms.TextInput(attrs={'readonly': 'readonly'}),
- 'total': forms.TextInput(attrs={'readonly': 'readonly'}),
- }
- StoreForm = modelform_factory(
- Store,
- fields="__all__",
- widgets = GeneralWidgets,
- )
- ProductSKUForm = modelform_factory(
- ProductSKU,
- fields="__all__",
- widgets = GeneralWidgets,
- )
- ProductForm = modelform_factory(
- Product,
- fields="__all__",
- exclude = ("store", ),
- widgets = GeneralWidgets,
- )
- SaleForm = modelform_factory(
- Sale,
- fields="__all__",
- #exclude = ("store", ),
- widgets = GeneralWidgets,
- )
- InboxForm = modelform_factory(
- Inbox,
- fields="__all__",
- #exclude = ("store", ),
- widgets = GeneralWidgets,
- )
- PhotoFormSet = modelformset_factory(
- Photo,
- fields="__all__",
- exclude = ("product", ),
- #extra = 3,
- widgets = GeneralWidgets,
- )
- InlinePhotoFormset = inlineformset_factory(Product, Photo, fields="__all__", widgets= GeneralWidgets)
- class ProductFilter(django_filters.FilterSet):
- class Meta:
- model = Product
- fields = ['name', 'code', 'price']
- class SaleFilter(django_filters.FilterSet):
- class Meta:
- model = Sale
- fields = ['product', 'sku', 'buyer', 'n_unit', 'unit_name']
- class InboxFilter(django_filters.FilterSet):
- class Meta:
- model = Inbox
- fields = ['store', 'product', 'buyer', 'subject', 'body', 'tel', 'status', 'created_at']
|