Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. elsif ($portlet eq 'ApplyOnline' ||
  2. $portlet eq 'OnlineInquiry' ||
  3. $portlet eq 'ViewCandidate') {
  4. # If the form is a candidate inquiry or application for admission
  5. # or an admission officer submission...
  6.  
  7. $candID = $hostid;
  8. $candID = $conID if ($portlet eq 'ViewCandidate');
  9.  
  10. # If the form is complete, always store it in the elecapp tables.
  11. # If the system is configured to store all submissions,
  12. # (complete & incomplete), store in the elecapp tables.
  13.  
  14. if (($formstat eq 'C') || ($applComp ne 'Y')) {
  15. @_elec = $eap->storeElecApp($msgblobrec, $candID,
  16. $formstat, $linkguid, %grphsh);
  17. $retval = $_elec[0];
  18. $msgblobrec = $_elec[1];
  19. $errmess .= $_elec[2];
  20. print "\n".$msgblobrec."\n" if ($opt_v);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement