Projects-Grants

This commit is contained in:
Matthew Dillon 2016-01-20 12:04:07 -07:00
parent 3572c75eff
commit 52a38951a3
5 changed files with 68 additions and 10 deletions

View file

@ -16,8 +16,8 @@ def import_grants(apps, schema_editor):
reader = csv.DictReader(f, fieldnames=fieldnames) reader = csv.DictReader(f, fieldnames=fieldnames)
for r in reader: for r in reader:
r['sort_order'] = None r['sort_order'] = None
p = Grant(**r) g = Grant(**r)
p.save() g.save()
def remove_grants(apps, schema_editor): def remove_grants(apps, schema_editor):

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('projects', '0004_grant_data'),
]
operations = [
migrations.AddField(
model_name='grant',
name='projects',
field=models.ManyToManyField(to='projects.Project', related_name='grants'),
),
]

View file

@ -0,0 +1,38 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import csv
import os
from django.db import migrations, models
def import_project_grant(apps, schema_editor):
Project = apps.get_model('projects', 'Project')
Grant = apps.get_model('projects', 'Grant')
filename = 'data/tbl_HASH_Project_Grants.csv'
if os.path.exists(filename):
with open(filename) as f:
fieldnames = ['project', 'grant']
reader = csv.DictReader(f, fieldnames=fieldnames)
for r in reader:
p = Project.objects.get(id=r['project'])
g = Grant.objects.get(id=r['grant'])
p.grants.add(g)
p.save()
def remove_project_grant(apps, schema_editor):
Grant = apps.get_model('projects', 'Grant')
Grant.projects.clear()
class Migration(migrations.Migration):
dependencies = [
('projects', '0005_grant_projects'),
]
operations = [
migrations.RunPython(import_project_grant, remove_project_grant),
]

View file

@ -25,6 +25,7 @@ class Grant(models.Model):
title = models.CharField(max_length=200) title = models.CharField(max_length=200)
code = models.CharField(max_length=10, blank=True) code = models.CharField(max_length=10, blank=True)
description = models.CharField(max_length=255, blank=True) description = models.CharField(max_length=255, blank=True)
projects = models.ManyToManyField(Project, related_name='grants')
sort_order = models.IntegerField(blank=True, null=True) sort_order = models.IntegerField(blank=True, null=True)
def __str__(self): def __str__(self):

View file

@ -267,14 +267,14 @@ class TblHashPeopleSets(models.Model):
db_table = 'tbl_HASH_People_Sets' db_table = 'tbl_HASH_People_Sets'
class TblHashProjectGrants(models.Model): # class TblHashProjectGrants(models.Model):
projectid = models.ForeignKey('TblLuProjects', db_column='ProjectID') # Field name made lowercase. # projectid = models.ForeignKey('TblLuProjects', db_column='ProjectID') # Field name made lowercase.
grantid = models.ForeignKey('TblLuGrants', db_column='GrantID') # Field name made lowercase. # grantid = models.ForeignKey('TblLuGrants', db_column='GrantID') # Field name made lowercase.
#
class Meta: # class Meta:
managed = False # managed = False
db_table = 'tbl_HASH_Project_Grants' # db_table = 'tbl_HASH_Project_Grants'
unique_together = (('ProjectID', 'GrantID'),) # unique_together = (('ProjectID', 'GrantID'),)
class TblHashTrapSpecies(models.Model): class TblHashTrapSpecies(models.Model):