Subversion Repositories SmartDukaan

Rev

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

Rev 33873 Rev 34384
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.common.model.ProfitMandiConstants;
4
import com.spice.profitmandi.dao.model.PoAndGrnPendingPartnerStockModel;
5
import com.spice.profitmandi.dao.entity.fofo.FofoOpeningStock;
5
import com.spice.profitmandi.dao.model.SoldAllCatalogitemQtyByPartnerModel;
6
import com.spice.profitmandi.dao.model.*;
-
 
7
import com.spice.profitmandi.service.inventory.FocusedShortageModel;
6
import com.spice.profitmandi.dao.model.SoldFocusedItemPartnerWiseModel;
8
import org.springframework.stereotype.Service;
7
import org.springframework.stereotype.Service;
9
 
8
 
10
import java.time.LocalDateTime;
9
import java.time.LocalDateTime;
11
import java.util.List;
10
import java.util.List;
12
import java.util.Map;
-
 
13
import java.util.Set;
11
import java.util.Set;
14
 
12
 
15
@Service
13
@Service
16
public interface SmartCartService{
14
public interface SmartCartService{
17
 
15
 
Line 26... Line 24...
26
    void minusOpeningStock(int itemId, int fofoId, int quantity) throws ProfitMandiBusinessException;
24
    void minusOpeningStock(int itemId, int fofoId, int quantity) throws ProfitMandiBusinessException;
27
 
25
 
28
    public List<SoldAllCatalogitemQtyByPartnerModel> getAllSoldCatalogItemByPartner(int fofoId, LocalDateTime startOfday, LocalDateTime endOfDay);
26
    public List<SoldAllCatalogitemQtyByPartnerModel> getAllSoldCatalogItemByPartner(int fofoId, LocalDateTime startOfday, LocalDateTime endOfDay);
29
 
27
 
30
 
28
 
-
 
29
    void updateFofoOpeningStockWithActivateButNotBilledImei() throws ProfitMandiBusinessException;
31
}
30
}