Commit 8aa9df23 authored by Georgios Dagkakis's avatar Georgios Dagkakis

if due date is not given set it to 4 months and not 6 as before

parent 4bbb9f52
...@@ -30,7 +30,7 @@ class CapacityProjectSpreadsheet(plugin.InputPreparationPlugin): ...@@ -30,7 +30,7 @@ class CapacityProjectSpreadsheet(plugin.InputPreparationPlugin):
dueDate=(dueDate-now).days dueDate=(dueDate-now).days
# if no due date is given set it to 180 (about 6 months) # if no due date is given set it to 180 (about 6 months)
else: else:
dueDate=180 dueDate=120
assemblySpaceRequirement=float(projectData[row][3]) assemblySpaceRequirement=float(projectData[row][3])
capacityRequirementDict={} capacityRequirementDict={}
earliestStartDict={} earliestStartDict={}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment