I have a plugin registered on Post of Task creation, I am trying to check the RegardingObject, ActualMinutes field and State Code of the task, however, the StateCode always seems to return 0 when creating a new task (even if you choose mark complete).
Does anyone know how to work around this issue?
OptionSetValue statecode = (OptionSetValue)entity["statecode"];
if (entity.Attributes.Contains("regardingobjectid") && entity.Attributes.Contains("actualdurationminutes") && statecode.Value == 1)
{ //DO STUFF }
Thanks!
