Example #1
0
 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create($filing_type = '')
 {
     //Initialization
     $projects = new Project();
     $EASRequest = new EASRequest();
     $RequestType = new RequestType();
     $RequestTypeApprover = new RequestTypeApprover();
     $User = new User();
     $Department = new Department();
     $data['filing_type'] = $filing_type;
     $user_id = trim(Auth::user()->app_code);
     //Retrieve user granted projects
     if ($filing_type == 'PR') {
         $data['data_charge_to_projects'] = $projects->getProjects('', $filing_type, '3');
     } else {
         $data['projects'] = $projects->getProjects($user_id, $filing_type, '3');
     }
     //Additional variables per request type, if any.
     if ($filing_type == 'RFR') {
         $data['granted_request_types'] = $RequestTypeApprover->getUserGrantedRequestTypes($user_id, 'RFR');
     } else {
         if ($filing_type == 'PR') {
             $data['data_pr_request_types'] = $RequestType->getRequestType($filing_type, 'all');
             $data['data_charge_to_teams'] = $Department->getDepartments();
             $data['requesting_department'] = $User->getDepartment($user_id);
             $data['pr_no'] = $data['requesting_department']['dept_initial'] . '-' . date('mmddY') . '-';
             $data['team_members'] = $User->getCoTeamMembers($user_id);
         }
     }
     //Return View
     if ($filing_type == 'PR') {
         return view('request.purchase.file', $data);
     }
     return view('request.file', $data);
 }