From cd5f791b6d1522b496a4a12dde1fbfa11dc05195 Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Wed, 8 Oct 2014 23:24:26 +0400 Subject: [PATCH] restapi client fix --- intaro.intarocrm/classes/general/RestApi.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/intaro.intarocrm/classes/general/RestApi.php b/intaro.intarocrm/classes/general/RestApi.php index 1bf120a2..ac2be520 100644 --- a/intaro.intarocrm/classes/general/RestApi.php +++ b/intaro.intarocrm/classes/general/RestApi.php @@ -133,7 +133,8 @@ class RestApi */ public function orderHistory($startDate = null, $endDate = null, $limit = 100, $offset = 0) { - $url = $this->apiUrl.'orders/history&skipMychanges=true'; + $url = $this->apiUrl.'orders/history'; + $this->parameters['skipMyChanges'] = true; $this->parameters['startDate'] = $startDate; $this->parameters['endDate'] = $endDate; $this->parameters['limit'] = $limit;