Subversion Repositories SmartDukaan

Rev

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

Rev 2781 Rev 2788
Line 161... Line 161...
161
				if(order.getJacketNumber()==0){
161
				if(order.getJacketNumber()==0){
162
					JacketInfoBox box = new JacketInfoBox(eventbus, order, user);
162
					JacketInfoBox box = new JacketInfoBox(eventbus, order, user);
163
					//box.clean();
163
					//box.clean();
164
					box.center();
164
					box.center();
165
				}else{
165
				}else{
166
					String invoiceGenerationUrl = "http://" + Window.Location.getHost() + "/Support/invoice/";
166
					String invoiceGenerationUrl = "http://" + Window.Location.getHost() + "/invoice/";
167
					invoiceGenerationUrl = invoiceGenerationUrl + order.getOrderId();
167
					invoiceGenerationUrl = invoiceGenerationUrl + "?id=" +order.getOrderId();
168
					Window.open(invoiceGenerationUrl, "newWindowName", "window features.");
168
					Window.open(invoiceGenerationUrl, "newWindowName", "window features.");
169
				}
169
				}
170
			}
170
			}
171
		});
171
		});
172
		
172