use of org.kuali.kfs.krad.UserSession in project cu-kfs by CU-CommunityApps.
the class CuReceivingServiceImpl method getReceivingDeliveryCampusCode.
@Override
public String getReceivingDeliveryCampusCode(PurchaseOrderDocument po) {
if (GlobalVariables.getUserSession() == null) {
GlobalVariables.setUserSession(new UserSession(KRADConstants.SYSTEM_USER));
GlobalVariables.clear();
}
return super.getReceivingDeliveryCampusCode(po);
}
Aggregations