From eb9b5823265ed2641428b15fe406431c7a458c1c Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 2 Mar 2020 15:47:20 +0000 Subject: populate script now assocatiates a single EngagementEvent with a CAF --- ctrack/organisations/management/commands/populate_db.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ctrack/organisations/management/commands/populate_db.py') diff --git a/ctrack/organisations/management/commands/populate_db.py b/ctrack/organisations/management/commands/populate_db.py index 78efc1d..8a2ad84 100644 --- a/ctrack/organisations/management/commands/populate_db.py +++ b/ctrack/organisations/management/commands/populate_db.py @@ -139,6 +139,7 @@ class Command(BaseCommand): etf1 = EngagementTypeFactory(descriptor="Information Notice") etf2 = EngagementTypeFactory(descriptor="Designation Letter") + etf3 = EngagementTypeFactory(descriptor="CAF Submission") ee1 = EngagementEventFactory.create(type=etf1, user=user, participants=[p1, p2]) ee2 = EngagementEventFactory.create(type=etf2, user=user, participants=[p3]) @@ -175,6 +176,11 @@ class Command(BaseCommand): for _ in range(35) ] + # CAF submissions - they create EngagementEvents + ee3 = EngagementEventFactory.create( + type=etf3, user=user, participants=[inspectors[1], p2], related_caf=cafs[1] + ) + # TODO - adapt this so that it records more than just Persons created self.stdout.write( self.style.SUCCESS( -- cgit v1.2.3