Subversion Repositories SmartDukaan

Rev

Rev 22925 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22925 ashik.ali 1
package com.spice.profitmandi.service.inventory;
22522 ashik.ali 2
 
33245 ranu 3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.common.model.ItemCompleteLedgerModel;
5
import com.spice.profitmandi.common.model.ItemLedgerModel;
6
import org.springframework.stereotype.Service;
7
 
22522 ashik.ali 8
import java.time.LocalDateTime;
9
import java.util.List;
10
 
33245 ranu 11
@Service
12
public interface ItemLedgerService {
13
    public List<ItemLedgerModel> getItemPurchase(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;
22522 ashik.ali 14
 
33245 ranu 15
    public List<ItemLedgerModel> getItemSale(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;
22522 ashik.ali 16
 
33245 ranu 17
    public List<ItemLedgerModel> getItemOpening(LocalDateTime startDateTime, int fofoId) throws ProfitMandiBusinessException;
18
 
19
    public List<ItemLedgerModel> getItemClosing(LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;
20
 
21
    public List<ItemCompleteLedgerModel> getItemCompleteLedger(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;
22522 ashik.ali 22
}