From 349f6570327704d0a5cd23965cfafebbea93fb1b Mon Sep 17 00:00:00 2001 From: Ilyas Salikhov Date: Tue, 4 Mar 2014 20:29:24 +0400 Subject: [PATCH] Add orderMethod methods --- lib/IntaroCrm/RestApi.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/lib/IntaroCrm/RestApi.php b/lib/IntaroCrm/RestApi.php index 6d316a0..49f3046 100644 --- a/lib/IntaroCrm/RestApi.php +++ b/lib/IntaroCrm/RestApi.php @@ -369,6 +369,35 @@ class RestApi return $result; } + + /** + * Получение списка способов оформления заказа + * + * @return array - массив способов оформления заказа + */ + public function orderMethodsList() + { + $url = $this->apiUrl.'reference/order-methods'; + $result = $this->curlRequest($url); + return $result; + } + + /** + * Редактирование способа оформления заказа + * + * @param array $orderMethod - информация о способе оформления заказа + * @return array + */ + public function orderMethodsEdit($orderMethod) + { + $dataJson = json_encode($orderMethod); + $this->parameters['orderMethod'] = $dataJson; + + $url = $this->apiUrl.'reference/order-methods/'.$orderType['code'].'/edit'; + $result = $this->curlRequest($url, 'POST'); + return $result; + } + /** * Получение списка статусов заказа *