IsSalaryprocess null checker
This commit is contained in:
parent
116f8171ef
commit
634c30f368
|
@ -120,7 +120,7 @@ namespace HRM.DA
|
|||
object obj =
|
||||
tc.ExecuteScalar("Select SALARYPROCESSID from SALARYPROCESS where SALARYMONTH=%d AND PAYROLLTYPEID=%n",
|
||||
dSMonth, payrollTypeID);
|
||||
if (obj == DBNull.Value) return false;
|
||||
if (obj == DBNull.Value || obj == null) return false;
|
||||
else bShowInDesktop=true;
|
||||
return bShowInDesktop;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user