Subversion Repositories SmartDukaan

Rev

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

Rev 5527 Rev 5553
Line 54... Line 54...
54
	5:i64 shippingTime,
54
	5:i64 shippingTime,
55
	6:bool codAllowed,
55
	6:bool codAllowed,
56
	7:i64 fulfilmentWarehouseId
56
	7:i64 fulfilmentWarehouseId
57
}
57
}
58
 
58
 
-
 
59
struct PickupStore {
-
 
60
	1:i64 id,	
-
 
61
	2:string name,
-
 
62
    3:string line1,
-
 
63
    4:string line2,
-
 
64
    5:string city,
-
 
65
    6:string state,
-
 
66
    7:string pin,
-
 
67
    8:string phone
-
 
68
}
-
 
69
    
59
exception LogisticsServiceException{
70
exception LogisticsServiceException{
60
	1:i64 id,
71
	1:i64 id,
61
	2:string message
72
	2:string message
62
}
73
}
63
 
74
 
Line 121... Line 132...
121
	list<i64> getEntityLogisticsEstimation(1:i64 catalogItemId, 2:string destination_pin, 3:DeliveryType type) throws (1:LogisticsServiceException se)
132
	list<i64> getEntityLogisticsEstimation(1:i64 catalogItemId, 2:string destination_pin, 3:DeliveryType type) throws (1:LogisticsServiceException se)
122
	
133
	
123
	/**
134
	/**
124
	* Returns the id for a given pickUpType
135
	* Returns the id for a given pickUpType
125
	*/
136
	*/
126
	i64 getProviderForPickupType(1:i64 pickUp)
137
	i64 getProviderForPickupType(1:i64 pickUp),
-
 
138
	
-
 
139
	
-
 
140
	list<PickupStore> getAllPickupStores(),
-
 
141
	
-
 
142
	PickupStore getPickupStore(1:i64 storeId)
127
}
143
}