Don't open all PDFs if printing All Procedures
Fixed logic so that Single RO Values don't fail in MSWord
This commit is contained in:
@@ -801,7 +801,7 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
rochild? child = GetRoChildByAccPagID(accPageID, spDefault, igDefault);
|
||||
if (child == null) return null;
|
||||
if(((rochild)child).children.Length > 0)
|
||||
if (((rochild)child).children != null && ((rochild)child).children.Length > 0)
|
||||
return ((rochild)child).children[0].value;
|
||||
string val = ((rochild)child).value;
|
||||
if (val != null) return val;
|
||||
@@ -811,7 +811,7 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
rochild? child = GetRoChildByAccPagID(accPageID, spDefault, igDefault);
|
||||
if (child == null) return null;
|
||||
if (((rochild)child).children.Length > 0)
|
||||
if (((rochild)child).children != null && ((rochild)child).children.Length > 0)
|
||||
return ((rochild)child).children[0].type;
|
||||
return ((rochild)child).type;
|
||||
return null;
|
||||
@@ -820,7 +820,7 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
rochild? child = GetRoChildByAccPagID(accPageID, spDefault, igDefault);
|
||||
if (child == null) return null;
|
||||
if (((rochild)child).children.Length > 0)
|
||||
if (((rochild)child).children != null && ((rochild)child).children.Length > 0)
|
||||
return ((rochild)child).children[0].roid;
|
||||
return ((rochild)child).roid;
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user