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