Subversion Repositories SmartDukaan

Rev

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

Rev 6484 Rev 6531
Line 95... Line 95...
95
	2:i64 available,
95
	2:i64 available,
96
	3:i64 reserved,
96
	3:i64 reserved,
97
	4:i64 minimumStock
97
	4:i64 minimumStock
98
}
98
}
99
 
99
 
-
 
100
struct IgnoredInventoryUpdateItems {
-
 
101
	1:i64 itemId,
-
 
102
	2:i64 warehouseId
-
 
103
} 
100
exception InventoryServiceException{
104
exception InventoryServiceException{
101
	1:i64 id,
105
	1:i64 id,
102
	2:string message
106
	2:string message
103
}
107
}
104
 
108
 
Line 282... Line 286...
282
    void clearItemAvailabilityCacheForItem(1:i64 item_id);
286
    void clearItemAvailabilityCacheForItem(1:i64 item_id);
283
    
287
    
284
    i64 getOurWarehouseIdForVendor(1:i64 vendorId);
288
    i64 getOurWarehouseIdForVendor(1:i64 vendorId);
285
    
289
    
286
    map<i64, i64> getItemAvailabilitiesAtOurWarehouses(1:list<i64> item_ids);
290
    map<i64, i64> getItemAvailabilitiesAtOurWarehouses(1:list<i64> item_ids);
-
 
291
    
-
 
292
    list<i64> getMonitoredWarehouseForVendors(1:list<i64> vendorIds);
-
 
293
    
-
 
294
    list<IgnoredInventoryUpdateItems> getIgnoredWarehouseidsAndItemids();
-
 
295
            
-
 
296
    bool insertItemtoIgnoreInventoryUpdatelist(1:i64 item_id,2:i64 warehouse_id);
-
 
297
             
-
 
298
    bool deleteItemFromIgnoredInventoryUpdateList(1:i64 item_id,2:i64 warehouse_id);
-
 
299
    
-
 
300
    i32 getAllIgnoredInventoryupdateItemsCount();
-
 
301
    
-
 
302
    list<i64> getIgnoredInventoryUpdateItemids(1:i32 offset,2:i32 limit);
-
 
303
    
287
}
304
}