Skip to content
Snippets Groups Projects
Commit cf02f1e8 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Story LSMR-13: implemented workrequst/workrequestBlueprint

parent 16874a50
No related branches found
No related tags found
1 merge request!87Lsmr epic
......@@ -192,18 +192,23 @@ class RunBlueprint(UserDefinedCommon):
class Run(SystemDefinedCommon):
requirements_doc = JSONField()
do_cancel = BooleanField()
template = ForeignKey(RunTemplate, on_delete=SET_NULL, null=True)
blueprint = ForeignKey(RunBlueprint, related_name='related_runs', on_delete=CASCADE)
template = ForeignKey('RunTemplate', on_delete=SET_NULL, null=True)
blueprint = ForeignKey('RunBlueprint', related_name='related_runs', on_delete=CASCADE)
class WorkRequestBlueprint(UserDefinedCommon):
# todo
pass
requirements_doc = JSONField()
copies = ForeignKey('WorkRequestBlueprint', related_name="copied_from", on_delete=SET_NULL, null=True)
copy_reason = CharField(max_length=30,
choices=
[(item.name, item.value) for item in CopyReasonChoice])
class WorkRequest(SystemDefinedCommon):
# todo
pass
requirements_doc = JSONField()
do_cancel = BooleanField()
template = ForeignKey('WorkRequestTemplate', on_delete=SET_NULL, null=True)
blueprint = ForeignKey('WorkRequestBlueprint', related_name='related_work_requests', on_delete=CASCADE)
class WorkRequestRelationBlueprint(UserDefinedCommon):
......@@ -213,6 +218,7 @@ class WorkRequestRelationBlueprint(UserDefinedCommon):
producer = ForeignKey(WorkRequestBlueprint, related_name='work_request_relation_blueprint_producer', on_delete=CASCADE)
consumer = ForeignKey(WorkRequestBlueprint, related_name='work_request_relation_blueprint_consumer', on_delete=CASCADE)
class WorkRequestRelation(SystemDefinedCommon):
selection_doc = JSONField()
dataformat = CharField(max_length=30,
......
......@@ -70,3 +70,15 @@ class RunSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = models.Run
fields = '__all__'
class WorkRequestBlueprintSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = models.WorkRequestBlueprintSerializer
fields = '__all__'
class WorkRequestSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = models.WorkRequestSerializer
fields = '__all__'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment