Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scheduling-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Gitlab will go in to maintenance on Friday 5:30pm since SIU is doing Isilon maintenance and we use isilon shares on the Gitlab
You are on a read-only GitLab instance.
Show more breadcrumbs
SMASCH
scheduling-system
Merge requests
!112
Resolve "voucher types"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "voucher types"
187-voucher-types
into
master
Overview
0
Commits
8
Pipelines
3
Changes
25
Merged
Piotr Gawron
requested to merge
187-voucher-types
into
master
7 years ago
Overview
0
Commits
8
Pipelines
3
Changes
25
Expand
Closes
#187 (closed)
Edited
7 years ago
by
Piotr Gawron
0
0
Merge request reports
Compare
master
version 1
856ce904
7 years ago
master (base)
and
latest version
latest version
531324ce
8 commits,
7 years ago
version 1
856ce904
5 commits,
7 years ago
25 files
+
624
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
smash/web/forms/forms.py
+
20
−
1
Options
@@ -7,7 +7,7 @@ from django.forms import ModelForm, Form
from
django.utils.dates
import
MONTHS
from
web.models
import
StudySubject
,
Worker
,
Appointment
,
Visit
,
AppointmentType
,
ContactAttempt
,
AppointmentTypeLink
,
\
Availability
,
Holiday
Availability
,
Holiday
,
VoucherType
,
VoucherTypePrice
from
web.models.constants
import
SUBJECT_TYPE_CHOICES
from
web.views.notifications
import
get_filter_locations
@@ -385,3 +385,22 @@ class HolidayAddForm(ModelForm):
availabilities
=
worker
.
availability_set
.
all
()
for
availability
in
availabilities
:
validate_availability_conflict
(
self
,
self
.
cleaned_data
,
availability
)
class
VoucherTypeForm
(
ModelForm
):
class
Meta
:
model
=
VoucherType
exclude
=
[
'
study
'
]
class
VoucherTypePriceForm
(
ModelForm
):
start_date
=
forms
.
DateField
(
label
=
"
Start date
"
,
widget
=
forms
.
DateInput
(
DATEPICKER_DATE_ATTRS
,
"
%Y-%m-%d
"
)
)
end_date
=
forms
.
DateField
(
label
=
"
End date
"
,
widget
=
forms
.
DateInput
(
DATEPICKER_DATE_ATTRS
,
"
%Y-%m-%d
"
)
)
class
Meta
:
model
=
VoucherTypePrice
exclude
=
[
'
voucher_type
'
]
Loading