Subversion Repositories SmartDukaan

Rev

Rev 2491 | Rev 2824 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
85 ashish 1
namespace java in.shop2020.model.v1.catalog
95 ashish 2
namespace py shop2020.thriftpy.model.v1.catalog
85 ashish 3
 
4
/**
5
	Objects
6
*/
7
 
123 ashish 8
/**
1330 chandransh 9
Caution :- Never ever change the numbers in it. Please confirm from @Chandranshu or @Rajveer before any changes in enum and other entries in file.
123 ashish 10
**/
103 ashish 11
enum status{
123 ashish 12
	PHASED_OUT = 0,		//Item is no longer selling
13
	DELETED = 1,		//Item has been deliberately deleted 
14
	PAUSED = 2,			//Item's sale is currently paused
15
	ACTIVE = 3,			//Item is available for sale as of now
16
	IN_PROCESS = 4		//Item has been added, but content is not available for the same
720 chandransh 17
	CONTENT_COMPLETE = 5  //The content for this item has been completed. We can start selling the item now.
103 ashish 18
}
19
 
646 chandransh 20
enum WarehouseLocation{
1330 chandransh 21
	Mumbai = 0,
22
	Delhi = 1,
646 chandransh 23
	Bangalore = 2,
24
	Kolkata = 3
25
}
26
 
1330 chandransh 27
struct Vendor{
28
	1:i64 id,
29
	2:string name
30
}
31
 
483 rajveer 32
/* 
33
Warehouse fields details
34
location: it is full address
35
vendorString: some key for the warehouse
36
*/
85 ashish 37
struct Warehouse{
38
	1:i64 id,
752 chandransh 39
	2:string displayName,
40
	3:string location,
41
	4:status warehouseStatus,
42
	5:i64 addedOn,
43
	6:i64 lastCheckedOn,
44
	7:string tinNumber,
45
	8:string pincode,
46
	9:string vendorString,
47
	10:WarehouseLocation logisticsLocation
1330 chandransh 48
	11:string vendor
85 ashish 49
}
115 ashish 50
/* */
85 ashish 51
struct ItemInventory{
52
	1:i64 id,
483 rajveer 53
	2:map<i64,i64> availability
85 ashish 54
}
55
 
483 rajveer 56
 
85 ashish 57
struct ItemInventoryHistory{
58
	1:i64 item_id,
59
	2:i64 warehouse_id,
60
	3:i64 timestamp,
61
	4:i64 availability
62
}
63
 
64
struct Item{
65
	1:i64 id,
956 chandransh 66
	2:string productGroup
67
	3:string brand,
68
	4:string modelNumber,
2128 ankur.sing 69
	5:string modelName,
70
	6:string color,
71
	7:i64 category,
72
	8:string comments,
73
	9:i64 catalogItemId,
74
	10:i64 featureId,
75
	11:string featureDescription,
76
	12:ItemInventory itemInventory,
2127 ankur.sing 77
	13:optional double mrp, //maxmimum retail price
2491 ankur.sing 78
	14:optional double mop, //market operative price
2127 ankur.sing 79
	15:optional double sellingPrice, //Selling price
2491 ankur.sing 80
	16:optional double transferPrice,
2127 ankur.sing 81
	17:optional double weight,
2128 ankur.sing 82
	18:i64 addedOn,
2491 ankur.sing 83
	19:optional i64 startDate,
84
	20:optional i64 retireDate,
720 chandransh 85
	21:status itemStatus,
2128 ankur.sing 86
	22:string status_description,
87
	23:map<string,string> otherInfo,
88
	24:string bestDealText,
2127 ankur.sing 89
	25:optional double bestDealValue,
2491 ankur.sing 90
	26:optional double dealerPrice,
2128 ankur.sing 91
	27:bool defaultForEntity,
92
	28:i64 updatedOn,
2127 ankur.sing 93
	29:optional i64 bestSellingRank, 
2249 ankur.sing 94
	30:string hotspotCategory,
2807 rajveer 95
	31:bool risky,
96
	32:i64 similarityIndex
85 ashish 97
}
98
 
1343 chandransh 99
struct VendorItemPricing{
1349 chandransh 100
	1:i64 vendorId,
101
	2:i64 itemId,
1343 chandransh 102
	3:double transferPrice,
103
	4:double mop,
104
	5:double dealerPrice
105
}
106
 
1967 rajveer 107
struct Category{
108
	1:i64 id,
109
	2:string label,
110
	3:string description,
111
	4:i64 parent_category_id,
112
	/**
113
	* This field should not be used.
114
	*/
115
	5:list<i64> children_category_ids
116
}
2113 ankur.sing 117
 
118
struct VendorItemMapping{
119
	1:i64 vendorId,
120
	2:string itemKey,
121
	3:i64 itemId,
122
	4:string vendorCategory
123
}
1967 rajveer 124
 
121 ashish 125
exception InventoryServiceException{
85 ashish 126
	1:i64 id,
127
	2:string message
128
}
129
 
121 ashish 130
service InventoryService{
763 rajveer 131
 
132
	/**
133
	* For closing the open session in sqlalchemy
134
	*/
135
	void closeSession(),
136
 
85 ashish 137
/**
138
	Availability and inventory attributes	
139
*/
140
	//all add and update methods - added by Ashish
123 ashish 141
	i64 addItem(1:Item item) throws (1:InventoryServiceException cex),
142
	i64 updateItem(1:Item item) throws (1:InventoryServiceException cex),
121 ashish 143
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
632 rajveer 144
	bool isActive(1:i64 itemId) throws (1:InventoryServiceException isex),
2033 rajveer 145
	string getItemStatusDescription(1:i64 itemId) throws (1:InventoryServiceException isex),
483 rajveer 146
	void updateInventory(1:i64 warehouse_id, 2:string timestamp, 3:map<string, i64> availability) throws (1:InventoryServiceException cex),
147
	// commented right now. write on based of requirement
148
	// void updatePrice(1:i64 item_id, 2:i64 warehouse_id, 3:double price) throws (1:InventoryServiceException cex),
103 ashish 149
	//all delete methods
121 ashish 150
	void retireWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
103 ashish 151
 
152
	//Item management apis
121 ashish 153
	void startItemOn(1:i64 item_id, 2:i64 timestamp) throws (1:InventoryServiceException cex),
154
	void retireItemOn(1:i64 item_id, 2:i64 timestamp) throws (1:InventoryServiceException cex),
155
	void changeItemStatus(1:i64 item_id, 2:i64 timestamp, 3:status newstatus) throws (1:InventoryServiceException cex),
85 ashish 156
	//Other accessor methods - added by Ashish
121 ashish 157
	Item getItem(1:i64 item_id) throws (1:InventoryServiceException cex),
632 rajveer 158
	list<Item> getItemsByCatalogId(1:i64 catalog_item_id) throws  (1:InventoryServiceException cex),
121 ashish 159
	list<Item> getAllItems(1:bool isActive) throws (1:InventoryServiceException cex),
160
	list<Item> getAllItemsByStatus(1:status itemStatus) throws (1:InventoryServiceException cex),
161
	ItemInventory getItemInventory(1:i64 item_id) throws (1:InventoryServiceException cex),
632 rajveer 162
	ItemInventory getItemInventoryByItemId(1:i64 item_id) throws (1:InventoryServiceException cex),
163
	//ItemInventory getItemInventoryByCatalogId(1:i64 item_id) throws (1:InventoryServiceException cex),
121 ashish 164
	i64 getItemAvailibilityAtWarehouse(1:i64 warehouse_id, 2:i64 item_id) throws (1:InventoryServiceException cex),
2076 rajveer 165
	bool markItemAsContentComplete(1:i64 entityId, 2:i64 category, 3:string brand, 4:string modelName, 5:string modelNumber) throws (1:InventoryServiceException cex),
646 chandransh 166
 
1157 rajveer 167
 
646 chandransh 168
	/**
169
	  Returns the id of the warehouse with the largest inventory of the item and the inventory size in the given locations.
170
	  The size of list will always be 2.
171
	 */
172
	list<i64> getItemAvailabilityAtLocation(1:i64 warehouse_loc, 2:i64 item_id) throws (1:InventoryServiceException isex),
121 ashish 173
	list<Warehouse> getAllWarehouses(1:bool isActive) throws (1:InventoryServiceException cex),
1343 chandransh 174
 
175
	/**
176
	 Returns the warehouse with the given id.
177
	*/
121 ashish 178
	Warehouse getWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
179
	list<Warehouse> getAllWarehousesForItem(1:i64 item_id) throws (1:InventoryServiceException cex),
502 rajveer 180
	list<Item> getAllItemsForWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
181
 
862 chandransh 182
	/**
183
	 Increases the reservation count for an item in a warehouse. Should always succeed normally.
184
	*/
185
	bool reserveItemInWarehouse(1:i64 itemId, 2:i64 warehouseId, 3:double quantity) throws (1:InventoryServiceException cex),
186
 
187
	/**
188
	 Decreases the reservation count for an item in a warehouse. Should always succeed normally.
189
	*/
190
	bool reduceReservationCount(1:i64 itemId, 2:i64 warehouseId, 3:double quantity) throws (1:InventoryServiceException cex),
191
 
502 rajveer 192
	// for home page .... best deals, best sellers and latest arrivals
588 chandransh 193
	list<Item> getBestSellers() throws (1:InventoryServiceException isex),
1924 rajveer 194
	list<i64> getBestSellersCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
588 chandransh 195
	i64 getBestSellersCount() throws (1:InventoryServiceException cex),
196
 
197
	list<Item> getBestDeals() throws (1:InventoryServiceException isex),
1924 rajveer 198
	list<i64> getBestDealsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
588 chandransh 199
	i64 getBestDealsCount() throws (1:InventoryServiceException cex),
200
 
201
	list<Item> getLatestArrivals() throws (1:InventoryServiceException isex),
1924 rajveer 202
	list<i64> getLatestArrivalsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
632 rajveer 203
	i64 getLatestArrivalsCount() throws (1:InventoryServiceException cex),
204
 
1157 rajveer 205
 
206
	i64 generateNewEntityID(),
207
 
208
	/**
1343 chandransh 209
	Returns the pricing information of an item associated with the vendor of the given warehouse.
210
	Raises an exception if either the item, vendor or the associated pricing information can't be found.
211
	*/
212
	VendorItemPricing getItemPricing(1:i64 itemId, 2:i64 warehouseId) throws (1:InventoryServiceException cex),
213
 
214
	/**
1157 rajveer 215
	* Store category object and retrieve it
216
	*/
1967 rajveer 217
	/**
632 rajveer 218
	bool putCategoryObject(1:binary object),
219
	binary getCategoryObject()
1967 rajveer 220
	*/
221
 
222
	/**
223
	* All category related functions
224
	*/
225
	bool addCategory(1:Category category),
226
	Category getCategory(1:i64 id),
1990 ankur.sing 227
	list<Category> getAllCategories(),
1967 rajveer 228
 
1990 ankur.sing 229
	/**
230
	Returns the list of vendor pricing information of an item.
231
	Raises an exception if item not found corresponding to itemId
232
	*/
233
	list<VendorItemPricing> getAllItemPricing(1:i64 itemId) throws (1:InventoryServiceException cex),
234
 
235
 
236
	/**
2113 ankur.sing 237
	Adds vendor prices corresponding to the item. If pricing already exists then updates the prices. 
1990 ankur.sing 238
	Raises an exception if either the item or vendor can't be found corresponding to their ids.
239
	*/
2113 ankur.sing 240
	void addVendorItemPricing(1:VendorItemPricing vendorItemPricing) throws (1:InventoryServiceException cex),
1990 ankur.sing 241
 
2063 ankur.sing 242
	/**
243
	Return list of all vendors
244
	*/
2113 ankur.sing 245
	list<Vendor> getAllVendors(), 
2063 ankur.sing 246
 
2113 ankur.sing 247
	/**
248
	Checks if the item exists in VendorItemMapping for the given hotspot parameters (ProductGroup,Brand,ModelNumber,Color),
249
	vendor and category.
250
	Returns true if it exists else false.
251
	*/
252
	bool itemExists(1:string productGroup, 2:string brand, 3:string modelNumber, 4:string color, 5:i64 vendor_id, 6:string category),
253
 
254
	/**
2356 ankur.sing 255
	Adds VendorItemMapping. Updates VendorItemMapping if exists corresponding to the item key.  
2113 ankur.sing 256
	*/
2356 ankur.sing 257
	void addVendorItemMapping(1:string key, 2:VendorItemMapping vendorItemMapping) throws (1:InventoryServiceException cex),
2113 ankur.sing 258
 
259
	/**
260
	Returns the list of vendor item mapping corresponding to itemId passed as parameter.
261
	Raises an exception if item not found corresponding to itemId
262
	*/
263
	list<VendorItemMapping> getVendorItemMappings(1:i64 itemId) throws (1:InventoryServiceException cex),
264
 
265
	/**
266
	Checks if similar item exists (with same ProductGroup, Brand, ModelNumber, Color)
267
	If yes, returns the itemId else returns 0
268
	*/
2284 ankur.sing 269
	i64 checkSimilarItem(1:string productGroup, 2:string brand, 3:string modelNumber, 4:string color),
270
 
271
	/**
272
	Marks/Unmarks an item as risky. This flag is used for automatic marking of an item as INACTIVE in case of zero inventory.
273
	*/
2356 ankur.sing 274
	void changeItemRiskyFlag(1:i64 itemId, 2:bool risky),
275
 
276
	/**
277
	Returns list of items marked as risky.
278
	*/
279
	list<Item> getItemsByRiskyFlag(),
280
 
281
	/**
282
	Returns list of items with any status except PHASED_OUT and filtered by vendor category.
283
	Raises exception if vendorCategory is null. 
284
	*/
2807 rajveer 285
	list<Item> getItemsByVendorCategory(1:string vendorCategory),
286
 
287
	/**
288
	Returns list of catalog ids of items with same similarity index as of the given itemId 
289
	*/
290
	list<i64> getSimilarItemsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 itemId),
85 ashish 291
}
292