/**
* Show offer.
*
* @param request the request
* @param response the response
* @param model the model
*/
@ActionMapping(params = "action=showOffer")
public void showOffer(final ActionRequest request,
final ActionResponse response, final Model model) {
m_objLog.debug("showOffer::start()");
final Long offerId = this.getOfferId(request);
if (offerId != null) {
// OfferForm form = CustomServiceHandler.getOffer(offerId);
// model.addAttribute("data",form);
this.copyRenderParameter("offerId", request, response);
this.copyRenderParameter("modal", request, response);
response.setRenderParameter("jspPage", "searchresult");
}
m_objLog.debug("showOffer::end");
}
SearchController.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:particity
作者:
评论列表
文章目录