Subversion Repositories SmartDukaan

Rev

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

Rev 8182 Rev 8282
Line 130... Line 130...
130
    1:i64 item_id
130
    1:i64 item_id
131
    2:i64 availability
131
    2:i64 availability
132
    3:i64 reserved
132
    3:i64 reserved
133
} 
133
} 
134
 
134
 
-
 
135
struct AmazonFbaInventorySnapshot {
-
 
136
    1:i64 item_id
-
 
137
    2:i64 availability
-
 
138
}
-
 
139
 
135
struct HoldInventoryDetail {
140
struct HoldInventoryDetail {
136
	1:i64 item_id
141
	1:i64 item_id
137
	2:i64 warehouse_id
142
	2:i64 warehouse_id
138
	3:i64 held
143
	3:i64 held
139
	4:i64 source
144
	4:i64 source
Line 362... Line 367...
362
	
367
	
363
	void addOrUpdateAmazonInventoryForItem(1:AmazonInventorySnapshot amazonInventorySnapshot);
368
	void addOrUpdateAmazonInventoryForItem(1:AmazonInventorySnapshot amazonInventorySnapshot);
364
	
369
	
365
	string getLastNdaySaleForItem(1:i64 itemId, 2:i64 numberOfDays);
370
	string getLastNdaySaleForItem(1:i64 itemId, 2:i64 numberOfDays);
366
	
371
	
-
 
372
	void addOrUpdateAmazonFbaInventory(1:AmazonFbaInventorySnapshot amazonfbainventorysnapshot);
-
 
373
 
367
	void addUpdateHoldInventory(1:i64 itemId, 2:i64 warehouseId, 3:i64 holdQuantity, 4:i64 source);
374
	void addUpdateHoldInventory(1:i64 itemId, 2:i64 warehouseId, 3:i64 holdQuantity, 4:i64 source);
368
	
375
	
-
 
376
	i64 getAmazonFbaItemInventory(1:i64 itemId);
-
 
377
	
-
 
378
	list<AmazonFbaInventorySnapshot> getAllNonzeroAmazonFbaItemInventory()
-
 
379
	
369
}
380
}