Subversion Repositories SmartDukaan

Rev

Rev 1466 | Rev 1905 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1466 Rev 1527
Line 37... Line 37...
37
	
37
	
38
    // GET /order/ orderid
38
    // GET /order/ orderid
39
    public String show() {
39
    public String show() {
40
    	log.info("id=" + id);
40
    	log.info("id=" + id);
41
    	htmlSnippets.put("MYACCOUNT_HEADER", pageLoader.getMyaccountHeaderHtml());
41
    	htmlSnippets.put("MYACCOUNT_HEADER", pageLoader.getMyaccountHeaderHtml());
42
    	htmlSnippets.put("ORDER_DETAILS", pageLoader.getOrderDetailsHtml(Long.parseLong(id)));
42
    	htmlSnippets.put("ORDER_DETAILS", pageLoader.getOrderDetailsHtml(Long.parseLong(id), userinfo.getUserId()));
43
    	return "show";
43
    	return "show";
44
    }
44
    }
45
 
45
 
46
    // POST /order/
46
    // POST /order/
47
    public String create(){
47
    public String create(){