Interface TariffService


public interface TariffService
  • Method Details

    • searchTariffPlans

      SearchResult<TariffPlan> searchTariffPlans(List<Integer> labelIds, List<Integer> moduleIds, int showUsed, Page page) throws Exception
      Throws:
      Exception
    • tariffPlanGet

      TariffPlan tariffPlanGet(int id) throws Exception
      Получение тарифного плана по его ID.
      Parameters:
      id -
      Returns:
    • tariffPlanDelete

      void tariffPlanDelete(int id) throws Exception
      Удаление тарифного плана по его ID.
      Parameters:
      id -
    • tariffPlanUpdate

      int tariffPlanUpdate(TariffPlan tariffPlan) throws Exception
      Изменение/добавление тарифного плана.
      Parameters:
      tariffPlan -
      Returns:
    • tariffPlanList

      List<TariffPlan> tariffPlanList(List<Integer> contractLabelIds, Integer personType, String title) throws Exception
      Получение списка тарифных планов.
      Parameters:
      contractLabelIds - фильтр по группе договоров
      title - подстрока названия тарифа
      face - фильтр по юр. или физю лицам
      Returns:
    • tariffPlanTitles

      List<IdTitle> tariffPlanTitles() throws Exception
      Список всех тарифов
      Returns:
    • tariffGroupGet

      TariffGroup tariffGroupGet(int id) throws Exception
      Получение группы тарифов по его ID.
      Parameters:
      id -
      Returns:
    • tariffGroupDelete

      void tariffGroupDelete(int id) throws Exception
      Удаление группы тарифов по его ID.
      Parameters:
      id -
    • tariffGroupUpdate

      int tariffGroupUpdate(TariffGroup tariffGroup) throws Exception
      Изменение/добавление группы тарифов.
      Parameters:
      tariffGroup -
      Returns:
    • tariffGroupList

      List<TariffGroup> tariffGroupList() throws Exception
      Получение списка групп тарифных планов.
      Returns:
    • tariffVars

      List<TariffVar> tariffVars(TariffVarType tariffVarType, List<Integer> tariffPlanIds) throws Exception
      Throws:
      Exception
    • tariffVarGet

      TariffVar tariffVarGet(int tariffVarId) throws Exception
      Throws:
      Exception
    • tariffVarUpdate

      int tariffVarUpdate(TariffVar tariffVar) throws Exception
      Throws:
      Exception
    • tariffVarDelete

      int tariffVarDelete(int tariffVarId) throws Exception
      Throws:
      Exception
    • tariffVarListItems

      List<IdTitle> tariffVarListItems(int moduleId, String varTypeCode) throws Exception
      Throws:
      Exception
    • tariffVarValues

      SearchResult<TariffVarValue> tariffVarValues(int tariffVarId, Page page) throws Exception
      Throws:
      Exception
    • tariffVarValueSet

      void tariffVarValueSet(TariffVarValue tariffVarValue) throws Exception
      Throws:
      Exception
    • tariffVarValueDelete

      int tariffVarValueDelete(TariffVarValue tariffVarValue) throws Exception
      Throws:
      Exception
    • getTariffLabelTreeItemList

      List<TariffLabelItem> getTariffLabelTreeItemList(int tariffPlanId) throws Exception
      Throws:
      Exception
    • setTariffLabelTreeItemList

      void setTariffLabelTreeItemList(int tariffPlanId, List<TariffLabelItem> items) throws Exception
      Throws:
      Exception
    • updateTariffLabelTreeItem

      int updateTariffLabelTreeItem(TariffLabelItem tariffLabelItem) throws Exception
      Throws:
      Exception
    • getTariffLabelIds

      Set<Integer> getTariffLabelIds(int tariffPlanId) throws Exception
      Throws:
      Exception
    • removeTariffLabelTreeItem

      void removeTariffLabelTreeItem(int tariffLabelItemId) throws Exception
      Throws:
      Exception
    • getTariffListByLabelId

      List<TariffPlan> getTariffListByLabelId(int labelId) throws Exception
      Parameters:
      labelId - ID метки тарифа
      Returns:
      список тарифов на которых есть переданная метка
      Throws:
      Exception