Subversion Repositories SmartDukaan

Rev

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

Rev 2359 Rev 2427
Line 3... Line 3...
3
import java.io.Serializable;
3
import java.io.Serializable;
4
import java.util.Map;
4
import java.util.Map;
5
 
5
 
6
import com.google.gwt.user.client.rpc.IsSerializable;
6
import com.google.gwt.user.client.rpc.IsSerializable;
7
 
7
 
-
 
8
/**
-
 
9
 * Item bean to store item details, vendor prices map and vendor item keys map
-
 
10
 *
-
 
11
 */
8
public class Item implements IsSerializable, Serializable {
12
public class Item implements IsSerializable, Serializable {
9
    
13
    
10
    //public static final int INDEX_MOP = 0, INDEX_DP = 1, INDEX_TP = 2;
-
 
11
    
-
 
12
    private long id;
14
    private long id;
13
    
15
    
14
    private String vendorCategory;
16
    private String vendorCategory;
15
    private String productGroup;
17
    private String productGroup;
16
    
18
    
Line 44... Line 46...
44
    private boolean defaultForEntity, risky;
46
    private boolean defaultForEntity, risky;
45
 
47
 
46
    private Map<String, String> otherInfo;
48
    private Map<String, String> otherInfo;
47
    private Map<Long, Long> availability;
49
    private Map<Long, Long> availability;
48
    
50
    
49
    //private Map<Long, double[]> vendorPricings;
-
 
50
    private Map<Long, VendorPricings> vendorPricesMap;
51
    private Map<Long, VendorPricings> vendorPricesMap;
51
    private Map<String, VendorItemMapping> vendorKeysMap;
52
    private Map<String, VendorItemMapping> vendorKeysMap;
52
    public static final String KEY_SEPARATOR= "#";
53
    public static final String KEY_SEPARATOR= "#";
53
    
54
    
54
    private static final long serialVersionUID = -2982668732181655698L;
55
    private static final long serialVersionUID = -2982668732181655698L;