mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 17:36:27 +00:00
d7233a0845
Before, I used request.session to store some information about the current jobs to be printed. This was because in the very beginning, I had an issue with disappearing files in my model. I was able to fix this issue in a previous commit, but I still needed the jids. However, because of this storage system, if someone tried to print a file, then oppened a second tab, and tried to print anoter file, he/she would pay twice for the second file .... I decided to add a hidden field to store the job id and deal with it, and it is readonly to avoid changing it.
79 lines
2.3 KiB
Python
79 lines
2.3 KiB
Python
# -*- mode: python; coding: utf-8 -*-
|
|
|
|
"""printer.forms
|
|
Form to add, edit, cancel printer jobs.
|
|
Author : Maxime Bombar <bombar@crans.org>.
|
|
"""
|
|
|
|
from django import forms
|
|
from django.forms import (
|
|
Form,
|
|
ModelForm,
|
|
)
|
|
|
|
import itertools
|
|
|
|
from re2o.mixins import FormRevMixin
|
|
|
|
from users.models import User
|
|
|
|
from .models import (
|
|
JobWithOptions,
|
|
)
|
|
|
|
|
|
class JobWithOptionsForm(FormRevMixin, ModelForm):
|
|
def __init__(self, *args, **kwargs):
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
self.user = kwargs.pop('user')
|
|
super(JobWithOptionsForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
self.fields['printAs'].label = 'Print As'
|
|
self.fields['printAs'].empty_label = self.user.pseudo
|
|
self.fields['printAs'].queryset = self.user.adherent.club_members.all()
|
|
self.fields['disposition'].label = 'disposition'
|
|
self.fields['color'].label = 'color'
|
|
self.fields['count'].label = 'count'
|
|
|
|
class Meta:
|
|
model = JobWithOptions
|
|
fields = [
|
|
'file',
|
|
'printAs',
|
|
'color',
|
|
'disposition',
|
|
'format',
|
|
'count',
|
|
]
|
|
|
|
|
|
class PrintForm(FormRevMixin, ModelForm):
|
|
|
|
jid = forms.IntegerField(widget=forms.HiddenInput())
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
self.user = kwargs.pop('user')
|
|
super(PrintForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
self.fields['printAs'].label = 'Print As'
|
|
self.fields['printAs'].empty_label = self.user.pseudo
|
|
self.fields['printAs'].queryset = self.user.adherent.club_members.all()
|
|
self.fields['disposition'].label = 'disposition'
|
|
self.fields['color'].label = 'color'
|
|
self.fields['count'].label = 'count'
|
|
|
|
self.fields['jid'].widget.attrs['readonly'] = True
|
|
self.fields['printAs'].widget.attrs['readonly'] = True
|
|
self.fields['filename'].widget.attrs['readonly'] = True
|
|
self.fields['price'].widget.attrs['readonly'] = True
|
|
self.fields['pages'].widget.attrs['readonly'] = True
|
|
|
|
class Meta:
|
|
model = JobWithOptions
|
|
exclude = [
|
|
'user',
|
|
'starttime',
|
|
'endtime',
|
|
'status',
|
|
'file',
|
|
'paid',
|
|
]
|