| Line 412... |
Line 412... |
| 412 |
typedQuerySimilar.setParameter("endDate", endDate);
|
412 |
typedQuerySimilar.setParameter("endDate", endDate);
|
| 413 |
return typedQuerySimilar.getResultList();
|
413 |
return typedQuerySimilar.getResultList();
|
| 414 |
|
414 |
|
| 415 |
}
|
415 |
}
|
| 416 |
|
416 |
|
| - |
|
417 |
@Override
|
| - |
|
418 |
public List<RbmBilledFofoIdsModel> getDateWiseBilledFofoIdByRbm(LocalDate startDate, LocalDate endDate) {
|
| - |
|
419 |
Session session = sessionFactory.getCurrentSession();
|
| - |
|
420 |
final TypedQuery<RbmBilledFofoIdsModel> typedQuerySimilar = session.createNamedQuery("RBM.RbmBilledFofoId", RbmBilledFofoIdsModel.class);
|
| - |
|
421 |
typedQuerySimilar.setParameter("startDate", startDate);
|
| - |
|
422 |
typedQuerySimilar.setParameter("endDate", endDate);
|
| - |
|
423 |
return typedQuerySimilar.getResultList();
|
| - |
|
424 |
|
| - |
|
425 |
}
|
| - |
|
426 |
|
| 417 |
public List<Our15DaysOldAgingStock> our15DaysAgingStock() {
|
427 |
public List<Our15DaysOldAgingStock> our15DaysAgingStock() {
|
| 418 |
Session session = sessionFactory.getCurrentSession();
|
428 |
Session session = sessionFactory.getCurrentSession();
|
| 419 |
final TypedQuery<Our15DaysOldAgingStock> typedQuerySimilar = session.createNamedQuery("Aging.15DaysOurStock", Our15DaysOldAgingStock.class);
|
429 |
final TypedQuery<Our15DaysOldAgingStock> typedQuerySimilar = session.createNamedQuery("Aging.15DaysOurStock", Our15DaysOldAgingStock.class);
|
| 420 |
return typedQuerySimilar.getResultList();
|
430 |
return typedQuerySimilar.getResultList();
|
| 421 |
|
431 |
|