예제 #1
0
 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($controlTestId)
 {
     $control = Control::find($controlTestId);
     $controlTest = ControlTest::find($controlTestId);
     $controlTest->control_id = $controlTest->control->id;
     $controlTest->lot_id = Input::get('lot_id');
     $controlTest->performed_by = Input::get('performed_by');
     $controlTest->user_id = Auth::user()->id;
     $controlTest->save();
     foreach ($controlTest->control->controlMeasures as $controlMeasure) {
         $controlResult = ControlMeasureResult::where('control_measure_id', $controlMeasure->id)->where('control_test_id', $controlTest->id)->first();
         $controlResult->results = Input::get('m_' . $controlMeasure->id);
         $controlResult->control_measure_id = $controlMeasure->id;
         $controlResult->control_test_id = $controlTestId;
         $controlResult->save();
     }
     return redirect()->to('control.resultsIndex')->with('message', trans('messages.success-updating-control-result'));
 }
예제 #2
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function resultsEdit($controlTestId)
 {
     $controlTest = ControlTest::find($controlTestId);
     $lots = Lot::lists('lot_no', 'id');
     $lot = $controlTest->lot_id;
     return view('control.resultsEdit', compact('controlTest'))->with('lots', $lots)->with('lot', $lot);
 }