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
Show more breadcrumbs
SMASCH
scheduling-system
Commits
f5413b19
Commit
f5413b19
authored
8 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
timezone sepcific issues
parent
e564a4df
No related branches found
No related tags found
1 merge request
!35
performance on appointment list
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
smash/web/api_views/appointment.py
+9
-4
9 additions, 4 deletions
smash/web/api_views/appointment.py
smash/web/templates/appointments/list.html
+17
-1
17 additions, 1 deletion
smash/web/templates/appointments/list.html
with
26 additions
and
5 deletions
smash/web/api_views/appointment.py
+
9
−
4
View file @
f5413b19
import
traceback
import
pytz
from
django.contrib.auth.decorators
import
login_required
from
django.http
import
JsonResponse
...
...
@@ -14,15 +15,15 @@ from web.views.notifications import get_filter_locations, \
@login_required
def
get_appointments
(
request
,
type
):
if
type
==
APPOINTMENT_LIST_GENERIC
:
return
Appointment
.
objects
.
filter
(
location__in
=
get_filter_locations
(
request
.
user
)).
order_by
(
"
-
datetime_when
"
)
return
Appointment
.
objects
.
filter
(
location__in
=
get_filter_locations
(
request
.
user
)).
order_by
(
"
datetime_when
"
)
elif
type
==
APPOINTMENT_LIST_UNFINISHED
:
return
get_unfinished_appointments
(
request
.
user
).
order_by
(
"
-
datetime_when
"
)
return
get_unfinished_appointments
(
request
.
user
).
order_by
(
"
datetime_when
"
)
elif
type
==
APPOINTMENT_LIST_APPROACHING
:
return
Appointment
.
objects
.
filter
(
datetime_when__gt
=
get_today_midnight_date
(),
location__in
=
get_filter_locations
(
request
.
user
),
status
=
Appointment
.
APPOINTMENT_STATUS_SCHEDULED
).
order_by
(
"
-
datetime_when
"
)
).
order_by
(
"
datetime_when
"
)
else
:
raise
TypeError
(
"
Unknown query type:
"
+
type
)
...
...
@@ -71,6 +72,8 @@ def appointments(request, type):
def
serialize_appointment
(
appointment
):
local_tz
=
pytz
.
timezone
(
'
UTC
'
)
subject
=
""
if
appointment
.
visit
is
not
None
:
title
=
appointment
.
visit
.
follow_up_title
()
...
...
@@ -83,7 +86,9 @@ def serialize_appointment(appointment):
type
+=
appointment_type
.
code
+
"
,
"
time
=
""
if
appointment
.
datetime_when
is
not
None
:
time
=
appointment
.
datetime_when
.
strftime
(
"
%Y-%m-%d
"
)
time
=
appointment
.
datetime_when
.
strftime
(
'
%Y-%m-%d %H:%M
'
)
# time = appointment.datetime_when.strftime('%Y-%m-%d %H:%M:%S.%f %Z%z')
result
=
{
"
subject
"
:
subject
,
"
title
"
:
title
,
...
...
This diff is collapsed.
Click to expand it.
smash/web/templates/appointments/list.html
+
17
−
1
View file @
f5413b19
...
...
@@ -66,7 +66,23 @@
"
targets
"
:
5
,
"
data
"
:
"
id
"
,
"
defaultContent
"
:
'
<a href="#" type="button" class="btn btn-block btn-default">Edit</a>
'
}]
},
{
#
{
#
}
{
#
render
:
function
(
data
,
type
,
row
)
{
#
}
{
#
var
date
=
new
Date
(
data
);
#
}
{
#
var
mm
=
date
.
getMonth
()
+
1
;
// getMonth() is zero-based#}
{
#
var
dd
=
date
.
getDate
();
#
}
{
#
var
hour
=
date
.
getHours
();
#
}
{
#
var
minute
=
date
.
getMinutes
();
#
}
{
##
}
{
#
return
[
date
.
getFullYear
(),
#
}
{
#
(
mm
>
9
?
''
:
'
0
'
)
+
mm
,
#
}
{
#
(
dd
>
9
?
''
:
'
0
'
)
+
dd
#
}
{
#
].
join
(
'
-
'
)
+
"
"
+
hour
+
"
:
"
+
minute
;
#
}
{
#
},
#
}
{
#
targets
:
3
#
}
{
#
}
#
}
]
});
$
(
'
#table tbody
'
).
on
(
'
click
'
,
'
a
'
,
function
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment