Rev 34055 | Rev 34641 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import com.spice.profitmandi.dao.model.*;import org.springframework.stereotype.Service;import java.time.LocalDate;import java.util.List;@Servicepublic interface RbmTargetService {List<WarehouseRbmTargetModel> getWarehouseWiseRbmMonthlyTarget();List<MTDAchievedTargetModel> getDateWiseAchievedTargetOfRbm(LocalDate startDate, LocalDate endDate);List<WarehouseMobileStockByMovementModel> getWarehouseMobileStockByMovement();List<SoldCatalogsReportModel> getCatalogSoldReport(LocalDate startDate, LocalDate endDate);int getWorkingDaysCount(LocalDate startDate);List<TodayAchievedMovementModel> getMovementWiseAchievementByDate(LocalDate startDate, LocalDate endDate);List<RbmTargetAndAchievementsModel> getRbmTargetsAndAchievemnts(LocalDate startDate, LocalDate endDate);List<RbmArrViewModel> getRbmTodayArr(LocalDate todayDate) throws Exception;List<RbmArrViewModel> getRbmTodayArr() throws Exception;void setMovementWiseRbmTargets();void setMovementWiseRbmAchievement();List<Sold15daysOldAgingModel> getAgingSale(LocalDate startDate, LocalDate endDate);List<Our15DaysOldAgingStock> our15DaysAgingStock();List<RbmBilledFofoIdsModel> getDateWiseBilledFofoIdByRbm(LocalDate startDate, LocalDate endDate);}