Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo
This commit is contained in:
@@ -31,8 +31,8 @@
|
||||
</StartCmdLineArguments>
|
||||
<StartWorkingDirectory>
|
||||
</StartWorkingDirectory>
|
||||
<EnableENC>False</EnableENC>
|
||||
<AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>
|
||||
<EnableENC>True</EnableENC>
|
||||
<AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
|
||||
</WebProjectProperties>
|
||||
</FlavorProperties>
|
||||
</VisualStudio>
|
||||
|
||||
@@ -587,12 +587,18 @@ namespace Host
|
||||
supportConcept = MapperFactory.SupportConceptDC_SupportConcept.MapToNewDC(DAOFactory.GenericDAO.GetByID<SupportConcept>(long.Parse(Request.Params["scOid"])));
|
||||
if (Request.Params["start"] != null)
|
||||
start = DateTime.Parse(Request.Params["start"]);
|
||||
else
|
||||
else if (supportConcept != null)
|
||||
start = supportConcept.Ratings[0].StartDate;
|
||||
else
|
||||
start = null;
|
||||
|
||||
if (Request.Params["end"] != null)
|
||||
end = DateTime.Parse(Request.Params["end"]);
|
||||
else
|
||||
else if (supportConcept != null)
|
||||
end = supportConcept.Ratings[supportConcept.Ratings.Count - 1].StartDate;
|
||||
else
|
||||
end = null;
|
||||
|
||||
if (Request.Params["ze"] != null)
|
||||
inclZeiterfassung = (Request.Params["ze"] == "1") ? true : false;
|
||||
if (Request.Params["goals"] != null)
|
||||
|
||||
Reference in New Issue
Block a user