Subversion Repositories SmartDukaan

Rev

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

Rev 7195 Rev 7822
Line 33... Line 33...
33
import in.shop2020.hotspot.dashbaord.server.handler.ReshipOrderHandler;
33
import in.shop2020.hotspot.dashbaord.server.handler.ReshipOrderHandler;
34
import in.shop2020.hotspot.dashbaord.server.handler.ReturnOrderDetailsHandler;
34
import in.shop2020.hotspot.dashbaord.server.handler.ReturnOrderDetailsHandler;
35
import in.shop2020.hotspot.dashbaord.server.handler.SearchOrderHandler;
35
import in.shop2020.hotspot.dashbaord.server.handler.SearchOrderHandler;
36
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
36
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
37
import in.shop2020.hotspot.dashbaord.server.handler.SplitFreebieOrderHandler;
37
import in.shop2020.hotspot.dashbaord.server.handler.SplitFreebieOrderHandler;
-
 
38
import in.shop2020.hotspot.dashbaord.server.handler.ChangeFreebieItemHandler;
38
import in.shop2020.hotspot.dashbaord.server.handler.UnacceptOrderhandler;
39
import in.shop2020.hotspot.dashbaord.server.handler.UnacceptOrderhandler;
39
import in.shop2020.hotspot.dashbaord.server.handler.ValidateDoaHandler;
40
import in.shop2020.hotspot.dashbaord.server.handler.ValidateDoaHandler;
40
import in.shop2020.hotspot.dashbaord.server.handler.ValidateProductHandler;
41
import in.shop2020.hotspot.dashbaord.server.handler.ValidateProductHandler;
41
import in.shop2020.hotspot.dashbaord.server.handler.VerifyOrderHandler;
42
import in.shop2020.hotspot.dashbaord.server.handler.VerifyOrderHandler;
42
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
43
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
Line 68... Line 69...
68
		bindHandler(OrderCountsHandler.class);
69
		bindHandler(OrderCountsHandler.class);
69
		bindHandler(LostInTransitHandler.class);
70
		bindHandler(LostInTransitHandler.class);
70
		bindHandler(AlertsHandler.class);
71
		bindHandler(AlertsHandler.class);
71
		bindHandler(DisableAlertsHandler.class);
72
		bindHandler(DisableAlertsHandler.class);
72
		bindHandler(SplitFreebieOrderHandler.class);
73
		bindHandler(SplitFreebieOrderHandler.class);
-
 
74
		bindHandler(ChangeFreebieItemHandler.class);
73
		
75
		
74
		bindHandler(AllReturnOrdersListHandler.class);
76
		bindHandler(AllReturnOrdersListHandler.class);
75
		bindHandler(ReturnOrderDetailsHandler.class);
77
		bindHandler(ReturnOrderDetailsHandler.class);
76
		bindHandler(ProcessReturnOrderHandler.class);
78
		bindHandler(ProcessReturnOrderHandler.class);
77
		
79