Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
ots
hypha
Commits
89e744a4
Commit
89e744a4
authored
7 years ago
by
Dan Braghis
Browse files
Options
Downloads
Patches
Plain Diff
Import dates with timezone
parent
de3c88a5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
opentech/apply/funds/management/commands/migrate_rr_applications.py
+3
-2
3 additions, 2 deletions
...pply/funds/management/commands/migrate_rr_applications.py
with
3 additions
and
2 deletions
opentech/apply/funds/management/commands/migrate_rr_applications.py
+
3
−
2
View file @
89e744a4
import
argparse
import
argparse
import
json
import
json
from
datetime
import
datetime
from
datetime
import
datetime
,
timezone
from
django.contrib.auth
import
get_user_model
from
django.contrib.auth
import
get_user_model
from
django.core.management.base
import
BaseCommand
from
django.core.management.base
import
BaseCommand
...
@@ -252,7 +252,7 @@ class Command(BaseCommand):
...
@@ -252,7 +252,7 @@ class Command(BaseCommand):
submission
=
ApplicationSubmission
(
drupal_id
=
node
[
'
nid
'
])
submission
=
ApplicationSubmission
(
drupal_id
=
node
[
'
nid
'
])
# TODO timezone?
# TODO timezone?
submission
.
submit_time
=
datetime
.
utc
fromtimestamp
(
int
(
node
[
'
created
'
]))
submission
.
submit_time
=
datetime
.
fromtimestamp
(
int
(
node
[
'
created
'
])
,
timezone
.
utc
)
submission
.
user
=
self
.
get_user
(
node
[
'
uid
'
])
submission
.
user
=
self
.
get_user
(
node
[
'
uid
'
])
submission
.
page
=
FUND
submission
.
page
=
FUND
...
@@ -271,6 +271,7 @@ class Command(BaseCommand):
...
@@ -271,6 +271,7 @@ class Command(BaseCommand):
try
:
try
:
submission
.
save
()
submission
.
save
()
self
.
stdout
.
write
(
f
"
Processed
\"
{
node
[
'
title
'
]
}
\"
(
{
node
[
'
nid
'
]
}
)
"
)
except
IntegrityError
:
except
IntegrityError
:
pass
pass
...
...
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