Subversion Repositories SmartDukaan

Rev

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

Rev 8717 Rev 9263
Line 63... Line 63...
63
	
63
	
64
	private String delayReason;
64
	private String delayReason;
65
	private String pickFromWarehouse;
65
	private String pickFromWarehouse;
66
	private boolean hasItemNumber;
66
	private boolean hasItemNumber;
67
	private long fulfilmentWarehouseId;
67
	private long fulfilmentWarehouseId;
-
 
68
	private long warehouseId;
68
	private boolean serialized;
69
	private boolean serialized;
69
	private OrderAlert alert;
70
	private OrderAlert alert;
70
	private long productCondition; 
71
	private long productCondition; 
71
	private String source;
72
	private String source;
72
	
73
	
Line 87... Line 88...
87
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
88
			String modelNumber, String color, String extraInfo, String dealText, double quantity,
88
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
89
			double totalAmount,	double totalWeight, String airwayBillNo, String billedBy,
89
			String invoiceNumber, long jacketNumber, String itemNumber,
90
			String invoiceNumber, long jacketNumber, String itemNumber,
90
			String serialNumber, long batchNo, long serialNo,
91
			String serialNumber, long batchNo, long serialNo,
91
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
92
			boolean doaFlag, String pickupRequestNo, boolean cod, String delayReason,
-
 
93
			String pickFromWarehouse, boolean serialized, boolean hasItemNumber, 
92
			String pickFromWarehouse, boolean serialized, boolean hasItemNumber, long fulfilmentWarehouseId, long pickupStoreId, long freebieItemId, String source, long productCondition) {
94
			long fulfilmentWarehouseId, long warehouseId, long pickupStoreId, long freebieItemId, 
-
 
95
			String source, long productCondition) {
93
		super();
96
		super();
94
		this.orderId = orderId;
97
		this.orderId = orderId;
95
		this.customerId = customerId;
98
		this.customerId = customerId;
96
		this.customerName = customerName;
99
		this.customerName = customerName;
97
		this.customerMobileNumber = customerMobileNumber;
100
		this.customerMobileNumber = customerMobileNumber;
Line 136... Line 139...
136
		this.delayReason = delayReason;
139
		this.delayReason = delayReason;
137
		this.pickFromWarehouse = pickFromWarehouse;
140
		this.pickFromWarehouse = pickFromWarehouse;
138
		this.serialized = serialized;
141
		this.serialized = serialized;
139
		this.hasItemNumber = hasItemNumber;
142
		this.hasItemNumber = hasItemNumber;
140
		this.fulfilmentWarehouseId = fulfilmentWarehouseId;
143
		this.fulfilmentWarehouseId = fulfilmentWarehouseId;
-
 
144
		this.warehouseId = warehouseId;
141
		this.setPickupStoreId(pickupStoreId);
145
		this.setPickupStoreId(pickupStoreId);
142
		this.freebieItemId = freebieItemId;
146
		this.freebieItemId = freebieItemId;
143
		this.source = source;
147
		this.source = source;
144
		this.productCondition = productCondition;
148
		this.productCondition = productCondition;
145
		checkForAlerts();
149
		checkForAlerts();
Line 513... Line 517...
513
    }
517
    }
514
 
518
 
515
    public void setFulfilmentWarehouseId(long fulfilmentWarehouseId) {
519
    public void setFulfilmentWarehouseId(long fulfilmentWarehouseId) {
516
        this.fulfilmentWarehouseId = fulfilmentWarehouseId;
520
        this.fulfilmentWarehouseId = fulfilmentWarehouseId;
517
    }
521
    }
-
 
522
    
-
 
523
	public long getWarehouseId() {
-
 
524
		return warehouseId;
-
 
525
	}
-
 
526
 
-
 
527
	public void setWarehouseId(long warehouseId) {
-
 
528
		this.warehouseId = warehouseId;
-
 
529
	}
518
 
530
 
519
	public void setQuantity(double quantity) {
531
	public void setQuantity(double quantity) {
520
		this.quantity = quantity;
532
		this.quantity = quantity;
521
	}
533
	}
522
 
534