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