Subversion Repositories SmartDukaan

Rev

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

Rev 33172 Rev 35690
Line 1... Line 1...
1
package com.spice.profitmandi.dao.cart;
1
package com.spice.profitmandi.dao.cart;
2
 
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
4
import com.spice.profitmandi.dao.entity.fofo.FofoStore;
4
import com.spice.profitmandi.dao.model.CartItem;
5
import com.spice.profitmandi.dao.model.CartItem;
5
import com.spice.profitmandi.dao.model.CartResponse;
6
import com.spice.profitmandi.dao.model.CartResponse;
6
import com.spice.profitmandi.dao.model.UserCart;
7
import com.spice.profitmandi.dao.model.UserCart;
7
import com.spice.profitmandi.service.inventory.FocusedShortageModel;
8
import com.spice.profitmandi.service.inventory.FocusedShortageModel;
8
import org.springframework.stereotype.Service;
9
import org.springframework.stereotype.Service;
Line 29... Line 30...
29
	void addShoppingBag(int cartId, long qty);
30
	void addShoppingBag(int cartId, long qty);
30
 
31
 
31
	List<FocusedShortageModel> focusedModelShortageValidation(int fofoId, Map<Integer, Integer> catalogCartQtyMap)
32
	List<FocusedShortageModel> focusedModelShortageValidation(int fofoId, Map<Integer, Integer> catalogCartQtyMap)
32
			throws ProfitMandiBusinessException;
33
			throws ProfitMandiBusinessException;
33
 
34
 
-
 
35
	List<FocusedShortageModel> focusedModelShortageValidation(int fofoId, Map<Integer, Integer> catalogCartQtyMap,
-
 
36
			Map<Integer, Long> inStockItemModel, Map<Integer, Long> itempendingIndent,
-
 
37
			Map<Integer, Long> grnItemPendingOrders, FofoStore fofoStore,
-
 
38
			List<String> retailerBlockBrands, Map<Integer, Integer> focusedModelMap)
-
 
39
			throws ProfitMandiBusinessException;
-
 
40
 
34
    UserCart setCartItems(int fofoId, List<CartItem> cartItems) throws ProfitMandiBusinessException;
41
    UserCart setCartItems(int fofoId, List<CartItem> cartItems) throws ProfitMandiBusinessException;
35
}
42
}