Rev 33243 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 31906 |
amit.gupta |
1 |
package com.spice.profitmandi.service.inventory;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.dao.entity.inventory.PartnerAgeingModel;
|
|
|
4 |
import org.springframework.stereotype.Service;
|
|
|
5 |
|
|
|
6 |
import java.util.List;
|
|
|
7 |
import java.util.Map;
|
|
|
8 |
import java.util.Set;
|
|
|
9 |
|
|
|
10 |
@Service
|
|
|
11 |
public interface AgeingService {
|
|
|
12 |
Map<String, AgeingModel> getAllAgeingForSecondary();
|
|
|
13 |
|
|
|
14 |
List<PartnerAgeingModel> getAllAgeingForTertiary();
|
|
|
15 |
|
|
|
16 |
List<PartnerAgeingModel> filterAgedInventory(Set<Integer> inventoryItemIds);
|
|
|
17 |
}
|