Subversion Repositories SmartDukaan

Rev

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

Rev 19006 Rev 19019
Line 1... Line 1...
1
package in.shop2020.hotspot.dashbaord.shared.actions;
1
package in.shop2020.hotspot.dashbaord.shared.actions;
2
 
2
 
3
import in.shop2020.hotspot.dashbaord.server.TransactionUtils;
3
import in.shop2020.hotspot.dashbaord.server.WarehouseFinder;
4
 
4
 
5
import java.util.Date;
5
import java.util.Date;
6
import java.util.Map;
6
import java.util.Map;
7
 
7
 
8
import com.google.gwt.i18n.client.DateTimeFormat;
8
import com.google.gwt.i18n.client.DateTimeFormat;
Line 176... Line 176...
176
	    }
176
	    }
177
	    
177
	    
178
    	//Orders whose expected shipping dates have passed but which have not been shipped yet
178
    	//Orders whose expected shipping dates have passed but which have not been shipped yet
179
    	if(expectedDateShippingTime >0){
179
    	if(expectedDateShippingTime >0){
180
    		if(expectedDateShippingTime <= currentDateTime){
180
    		if(expectedDateShippingTime <= currentDateTime){
181
    			if( TransactionUtils.virtualInvnetoryWarehouses.contains(this.fulfilmentWarehouseId)){
181
    			if( WarehouseFinder.virtualInvnetoryWarehouses.contains(this.fulfilmentWarehouseId)){
182
    				this.alert = OrderAlert.TODAY_SHIPPING_NOT_IN_STOCK;
182
    				this.alert = OrderAlert.TODAY_SHIPPING_NOT_IN_STOCK;
183
    			}else{
183
    			}else{
184
    				this.alert = OrderAlert.TODAY_SHIPPING_IN_STOCK;
184
    				this.alert = OrderAlert.TODAY_SHIPPING_IN_STOCK;
185
    			}
185
    			}
186
    			return;
186
    			return;