Subversion Repositories SmartDukaan

Rev

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

Rev 34384 Rev 34449
Line 6... Line 6...
6
import com.spice.profitmandi.dao.model.SoldFocusedItemPartnerWiseModel;
6
import com.spice.profitmandi.dao.model.SoldFocusedItemPartnerWiseModel;
7
import org.springframework.stereotype.Service;
7
import org.springframework.stereotype.Service;
8
 
8
 
9
import java.time.LocalDateTime;
9
import java.time.LocalDateTime;
10
import java.util.List;
10
import java.util.List;
-
 
11
import java.util.Map;
11
import java.util.Set;
12
import java.util.Set;
12
 
13
 
13
@Service
14
@Service
14
public interface SmartCartService{
15
public interface SmartCartService{
15
 
16
 
Line 24... Line 25...
24
    void minusOpeningStock(int itemId, int fofoId, int quantity) throws ProfitMandiBusinessException;
25
    void minusOpeningStock(int itemId, int fofoId, int quantity) throws ProfitMandiBusinessException;
25
 
26
 
26
    public List<SoldAllCatalogitemQtyByPartnerModel> getAllSoldCatalogItemByPartner(int fofoId, LocalDateTime startOfday, LocalDateTime endOfDay);
27
    public List<SoldAllCatalogitemQtyByPartnerModel> getAllSoldCatalogItemByPartner(int fofoId, LocalDateTime startOfday, LocalDateTime endOfDay);
27
 
28
 
28
 
29
 
29
    void updateFofoOpeningStockWithActivateButNotBilledImei() throws ProfitMandiBusinessException;
30
    public Map<Integer, Map<Integer, Integer>> activatedButNotBilledCatalogQtyMap() throws ProfitMandiBusinessException;
30
}
31
}