Subversion Repositories SmartDukaan

Rev

Rev 832 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 832 Rev 843
Line 54... Line 54...
54
	
54
	
55
    // GET /order/ orderid
55
    // GET /order/ orderid
56
    public String show() {
56
    public String show() {
57
    	log.info("id=" + id);
57
    	log.info("id=" + id);
58
    	htmlSnippets.put("MYACCOUNT_HEADER", pageLoader.getMyaccountHeaderHtml());
58
    	htmlSnippets.put("MYACCOUNT_HEADER", pageLoader.getMyaccountHeaderHtml());
59
    	htmlSnippets.put("MYACCOUNT_HEADER", pageLoader.getOrderDetailsHtml(Long.parseLong(id)));
59
    	htmlSnippets.put("ORDER_DETAILS", pageLoader.getOrderDetailsHtml(Long.parseLong(id)));
60
    	return "show";
60
    	return "show";
61
    }
61
    }
62
 
62
 
63
    // POST /order/
63
    // POST /order/
64
    public String create(){
64
    public String create(){