Subversion Repositories SmartDukaan

Rev

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

Rev 3065 Rev 3553
Line 46... Line 46...
46
	
46
	
47
	private boolean doaFlag;
47
	private boolean doaFlag;
48
	private String pickupRequestNo;
48
	private String pickupRequestNo;
49
	private boolean cod;
49
	private boolean cod;
50
	
50
	
-
 
51
	private String delayReason;
-
 
52
	
51
	@SuppressWarnings("unused")
53
	@SuppressWarnings("unused")
52
	private Order(){}
54
	private Order(){}
53
 
55
 
54
	public Order(long orderId, long customerId, String customerName,
56
	public Order(long orderId, long customerId, String customerName,
55
			String customerMobileNumber, String customerPincode,
57
			String customerMobileNumber, String customerPincode,
Line 58... Line 60...
58
			long itemId, String productGroup, String brand, String modelName,
60
			long itemId, String productGroup, String brand, String modelName,
59
			String modelNumber, String color, String extraInfo, double totalAmount,
61
			String modelNumber, String color, String extraInfo, double totalAmount,
60
			double totalWeight, String airwayBillNo, String billedBy,
62
			double totalWeight, String airwayBillNo, String billedBy,
61
			String invoiceNumber, long jacketNumber, String itemNumber,
63
			String invoiceNumber, long jacketNumber, String itemNumber,
62
			long imeiNumber, long batchNo, long serialNo, boolean alert,
64
			long imeiNumber, long batchNo, long serialNo, boolean alert,
63
			boolean doaFlag, String pickupRequestNo, boolean cod) {
65
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason) {
64
		super();
66
		super();
65
		this.orderId = orderId;
67
		this.orderId = orderId;
66
		this.customerId = customerId;
68
		this.customerId = customerId;
67
		this.customerName = customerName;
69
		this.customerName = customerName;
68
		this.customerMobileNumber = customerMobileNumber;
70
		this.customerMobileNumber = customerMobileNumber;
Line 95... Line 97...
95
		this.serialNo = serialNo;
97
		this.serialNo = serialNo;
96
		this.alert = alert;
98
		this.alert = alert;
97
		this.doaFlag = doaFlag;
99
		this.doaFlag = doaFlag;
98
		this.pickupRequestNo = pickupRequestNo;
100
		this.pickupRequestNo = pickupRequestNo;
99
		this.cod = cod;
101
		this.cod = cod;
-
 
102
		this.delayReason = delayReason;
100
	}
103
	}
101
 
104
 
102
	public long getCustomerId() {
105
	public long getCustomerId() {
103
		return customerId;
106
		return customerId;
104
	}
107
	}
Line 361... Line 364...
361
	}
364
	}
362
 
365
 
363
    public boolean isCod() {
366
    public boolean isCod() {
364
        return cod;
367
        return cod;
365
    }
368
    }
-
 
369
 
-
 
370
    public String getDelayReason() {
-
 
371
        return delayReason;
-
 
372
    }
366
}
373
}