return event.getNewStep();
}
public String createForm() {
Forexorder forX = new Forexorder();
//forX.setDateofdepart(departure);
//forX.setDateofreturn(returnDate);
forX.setTicketnum(ticketNumber);
forX.setVoyagernum(voyagerNum);
forX.setCurrencycheque(cheqCur);
forX.setTravelerscheques(travellerCheque);
forX.setCurrencycash(fcCur);
forX.setCash(foreignCash);
//forX.setCashpassport(CashPassportCard);
forX.setCctype(type);
//forX.setCcnumber(number);
//forX.setCclast3(last3);
forX.setCcexpirydate(expire);
forX.setCurrencycc(ccCur);
forX.setCcpaymentamount(amount);
forX.setDateofrequired(dateRequired);
forX.setDatewillbeconfirmed(dateForex);
forX.setReasonfortravel(reasonForTravel);
csi.updateForex(forX, accountID,appnum);
FacesContext.getCurrentInstance().addMessage("appHomeTop", new FacesMessage(FacesMessage.SEVERITY_INFO, "Success", "Changes have been saved"));
return "/applicationHome.xhtml";
}