Rev 22925 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.inventory;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.ItemCompleteLedgerModel;import com.spice.profitmandi.common.model.ItemLedgerModel;import org.springframework.stereotype.Service;import java.time.LocalDateTime;import java.util.List;@Servicepublic interface ItemLedgerService {public List<ItemLedgerModel> getItemPurchase(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;public List<ItemLedgerModel> getItemSale(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;public List<ItemLedgerModel> getItemOpening(LocalDateTime startDateTime, int fofoId) throws ProfitMandiBusinessException;public List<ItemLedgerModel> getItemClosing(LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;public List<ItemCompleteLedgerModel> getItemCompleteLedger(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId) throws ProfitMandiBusinessException;}