Package healthwatcher.view.command

Source Code of healthwatcher.view.command.UpdateComplaintData

package healthwatcher.view.command;

import healthwatcher.model.complaint.Complaint;
import healthwatcher.model.complaint.Situation;
import healthwatcher.model.employee.Employee;
import healthwatcher.view.IFacade;

import java.io.PrintWriter;
import java.util.Calendar;

import lib.exceptions.InvalidSessionException;
import lib.util.HTMLCode;

public class UpdateComplaintData extends Command {

  public UpdateComplaintData(IFacade f) {
    super(f);
    // TODO Auto-generated constructor stub
  }

  public void execute() throws Exception {
    PrintWriter out = response.getWriter();

    String obsQueixa = request.getInput("obsQueixa");
    Complaint q = null;

    try {
      if (! request.isAuthorized()) {
        throw new InvalidSessionException();
      }

      q = (Complaint) request
          .get(UpdateComplaintSearch.QUEIXA);
     
      q.setObservacao(obsQueixa);
      Calendar agora = Calendar.getInstance();
      q.setDataParecer(new lib.util.Date(
          agora.get(Calendar.DAY_OF_MONTH),
          agora.get(Calendar.MONTH), agora.get(Calendar.YEAR)));
      Employee employee = (Employee) request
          .get(Login.EMPLOYEE);
      q.setAtendente(employee);
      q.setSituacao(Situation.QUEIXA_FECHADA);
      facade.updateComplaint(q); //Thiago acrescentou aqui

      out.println(HTMLCode.htmlPageAdministrator("Operation executed",
          "Complaint updated"));
    } catch (Exception e) {
      out.println(lib.util.HTMLCode
          .errorPageAdministrator(e.getMessage()));
      e.printStackTrace(out);
    }finally {out.close();}
  }
}
TOP

Related Classes of healthwatcher.view.command.UpdateComplaintData

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.