Interface OrderService
public interface OrderService
-
Method Summary
Modifier and TypeMethodDescriptiongetComponentItems
(int copyId, boolean showHidden, boolean customer) getCostComponent
(String componentName, int count, int copyId) Вернет стоимость соответсвующего компонентаgetCountOrderedComponents
(String componentName, int copyId) Вернет кол-во заказанных, подтвержденных.getNewPermanentOrders
(int copyId) Получим список постоянных заказов со статусом новый.getNewTestOrders
(int copyId) Получим список тестовых заказов со статусом новый.Если все 3 фильтра незначимые (filterPermanentStatus=null ,filterTestStatus=null ,filterComponentItemId=-1 ), то выведит все заказы.getOrdersList
(int copyId, int type, int status, int componentId) int
orderCreate
(int contractId, Order order, boolean customer) ordersBillDataList
(int contractId, int copyId, Set<Integer> orderIds) Получение списка данных (общее/добавленное кол-во, стоимость) по заказам.void
ordersCopy
(int contractId, int copyId, Set<Integer> orderIds, int term) Копирование новых постоянных заказов в тестовые.void
ordersDelete
(int contractId, int copyId, Set<Integer> orderIds) Удаление заказов.
-
Method Details
-
getOrders
List<Order> getOrders(int copyId, String testFilter, String permanentFilter, int componentFilter) throws ru.bitel.bgbilling.common.BGException Если все 3 фильтра незначимые (filterPermanentStatus=null ,filterTestStatus=null ,filterComponentItemId=-1 ), то выведит все заказы.- Parameters:
copyId
-testFilter
- - фильтр для "тестовых" заказов в виде 0,1,3 или 3,1 или 0 , где в скобках соответсвующий id (0-новый , 1-отказано, 3 -подтвержден). Если передать null или пустую строку, фильтр не будет выводить "тестовые" заказы.permanentFilter
- - фильтр для "постоянных" заказов в виде 0,1,2 или 2,1 или 0 , где в скобках соответсвующий id (0-новый , 1-отказано, 2 -выполнен). Если передать null или пустую строку, фильтр не будет выводить "постоянные" заказы.componentFilter
- - id компонента, фильтр по компоненту ну там id email или id ipn или id npay ну и т.д. или -1 если фильтр по нему не нужен.- Returns:
- - отфильтрованный лист заказов
- Throws:
ru.bitel.bgbilling.common.BGException
-
getOrdersList
List<Order> getOrdersList(int copyId, int type, int status, int componentId) throws ru.bitel.bgbilling.common.BGException - Parameters:
copyId
- - код продуктаtype
- - тип, Тестовый - 0, Постоянный - 1. Все - <1status
- - статус, Новый - 0, Отказано - 1, Подтвержденные(тестовые) и Постоянные( не тестовые) - 2. Все - <1componentId
- - ид компонента. Все - <1- Returns:
- Throws:
ru.bitel.bgbilling.common.BGException
-
getComponentItems
List<Component> getComponentItems(int copyId, boolean showHidden, boolean customer) throws ru.bitel.bgbilling.common.BGException - Throws:
ru.bitel.bgbilling.common.BGException
-
getCostComponent
BigDecimal getCostComponent(String componentName, int count, int copyId) throws ru.bitel.bgbilling.common.BGException Вернет стоимость соответсвующего компонента- Parameters:
componentName
- - название компонентаcount
- - кол-во элементовcontractId
- - номер договора- Returns:
- Стоимость
- Throws:
ru.bitel.bgbilling.common.BGException
-
getCountOrderedComponents
Integer getCountOrderedComponents(String componentName, int copyId) throws ru.bitel.bgbilling.common.BGException Вернет кол-во заказанных, подтвержденных. Если кол-во == 0 , то вернет -1, если кол-во == неогранченно вернет 0 ))))- Parameters:
componentName
- - название компонентаcopyId
- - код копии продукта- Returns:
- Throws:
ru.bitel.bgbilling.common.BGException
-
getNewPermanentOrders
List<NewPermanentOrder> getNewPermanentOrders(int copyId) throws ru.bitel.bgbilling.common.BGException Получим список постоянных заказов со статусом новый.- Parameters:
copyId
- код копии продукта- Returns:
- List
- Throws:
ru.bitel.bgbilling.common.BGException
-
getNewTestOrders
Получим список тестовых заказов со статусом новый.- Parameters:
copyId
- код копии продукта- Returns:
- List
- Throws:
ru.bitel.bgbilling.common.BGException
-
orderCreate
int orderCreate(int contractId, Order order, boolean customer) throws ru.bitel.bgbilling.common.BGException, ru.bitel.bgbilling.common.BGMessageException, ru.bitel.bgbilling.common.BGIllegalArgumentException - Throws:
ru.bitel.bgbilling.common.BGException
ru.bitel.bgbilling.common.BGMessageException
ru.bitel.bgbilling.common.BGIllegalArgumentException
-
ordersCopy
void ordersCopy(int contractId, int copyId, Set<Integer> orderIds, int term) throws ru.bitel.bgbilling.common.BGException, ru.bitel.bgbilling.common.BGMessageException, ru.bitel.bgbilling.common.BGIllegalArgumentException Копирование новых постоянных заказов в тестовые.- Parameters:
contractId
-copyId
-orderIds
-term
-- Throws:
ru.bitel.bgbilling.common.BGException
ru.bitel.bgbilling.common.BGMessageException
ru.bitel.bgbilling.common.BGIllegalArgumentException
-
ordersDelete
void ordersDelete(int contractId, int copyId, Set<Integer> orderIds) throws ru.bitel.bgbilling.common.BGException, ru.bitel.bgbilling.common.BGMessageException, ru.bitel.bgbilling.common.BGIllegalArgumentException Удаление заказов.- Parameters:
contractId
-copyId
-orderIds
-term
-- Throws:
ru.bitel.bgbilling.common.BGException
ru.bitel.bgbilling.common.BGMessageException
ru.bitel.bgbilling.common.BGIllegalArgumentException
-
ordersBillDataList
List<OrderBillData> ordersBillDataList(int contractId, int copyId, Set<Integer> orderIds) throws ru.bitel.bgbilling.common.BGException, ru.bitel.bgbilling.common.BGMessageException, ru.bitel.bgbilling.common.BGIllegalArgumentException Получение списка данных (общее/добавленное кол-во, стоимость) по заказам.- Parameters:
contractId
-orderIds
-- Returns:
- Throws:
ru.bitel.bgbilling.common.BGException
ru.bitel.bgbilling.common.BGMessageException
ru.bitel.bgbilling.common.BGIllegalArgumentException
-