Subversion Repositories SmartDukaan

Rev

Rev 35771 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35771 Rev 35776
Line 10... Line 10...
10
    int availability;
10
    int availability;
11
    int fofoId;
11
    int fofoId;
12
    String itemDescription;
12
    String itemDescription;
13
    boolean hasActivatedImei;
13
    boolean hasActivatedImei;
14
    List<String> activatedImeis = new ArrayList<>();
14
    List<String> activatedImeis = new ArrayList<>();
-
 
15
    String stockType = "IN_STOCK"; // IN_STOCK or GRN_PENDING
15
 
16
 
16
    public int getItemId() {
17
    public int getItemId() {
17
        return itemId;
18
        return itemId;
18
    }
19
    }
19
 
20
 
Line 67... Line 68...
67
 
68
 
68
    public void setActivatedImeis(List<String> activatedImeis) {
69
    public void setActivatedImeis(List<String> activatedImeis) {
69
        this.activatedImeis = activatedImeis;
70
        this.activatedImeis = activatedImeis;
70
    }
71
    }
71
 
72
 
-
 
73
    public String getStockType() {
-
 
74
        return stockType;
-
 
75
    }
-
 
76
 
-
 
77
    public void setStockType(String stockType) {
-
 
78
        this.stockType = stockType;
-
 
79
    }
-
 
80
 
72
    @Override
81
    @Override
73
    public String toString() {
82
    public String toString() {
74
        return "InStockItemDetailModel{" +
83
        return "InStockItemDetailModel{" +
75
                "itemId=" + itemId +
84
                "itemId=" + itemId +
76
                ", catalogId=" + catalogId +
85
                ", catalogId=" + catalogId +