@@ -7,111 +7,111 @@ |
||
| 7 | 7 | |
| 8 | 8 | class AvoidanceZone extends Common |
| 9 | 9 | { |
| 10 | - public $territory_id; // Avoidance zone id |
|
| 11 | - public $territory_name; |
|
| 12 | - public $territory_color; |
|
| 13 | - public $orders; |
|
| 14 | - public $member_id; |
|
| 15 | - public $territory; // Territory parameters |
|
| 10 | + public $territory_id; // Avoidance zone id |
|
| 11 | + public $territory_name; |
|
| 12 | + public $territory_color; |
|
| 13 | + public $orders; |
|
| 14 | + public $member_id; |
|
| 15 | + public $territory; // Territory parameters |
|
| 16 | 16 | |
| 17 | - public static function fromArray(array $params) |
|
| 18 | - { |
|
| 19 | - if (!isset($params['territory_name'])) { |
|
| 20 | - throw new BadParam('Territory name must be provided'); |
|
| 21 | - } |
|
| 17 | + public static function fromArray(array $params) |
|
| 18 | + { |
|
| 19 | + if (!isset($params['territory_name'])) { |
|
| 20 | + throw new BadParam('Territory name must be provided'); |
|
| 21 | + } |
|
| 22 | 22 | |
| 23 | - if (!isset($params['territory_color'])) { |
|
| 24 | - throw new BadParam('Territory color must be provided'); |
|
| 25 | - } |
|
| 23 | + if (!isset($params['territory_color'])) { |
|
| 24 | + throw new BadParam('Territory color must be provided'); |
|
| 25 | + } |
|
| 26 | 26 | |
| 27 | - if (!isset($params['territory'])) { |
|
| 28 | - throw new BadParam('Territory must be provided'); |
|
| 29 | - } |
|
| 27 | + if (!isset($params['territory'])) { |
|
| 28 | + throw new BadParam('Territory must be provided'); |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - $avoidanceZoneParameters = new AvoidanceZone(); |
|
| 31 | + $avoidanceZoneParameters = new AvoidanceZone(); |
|
| 32 | 32 | |
| 33 | - foreach ($params as $key => $value) { |
|
| 34 | - if (property_exists($avoidanceZoneParameters, $key)) { |
|
| 35 | - $avoidanceZoneParameters->{$key} = $value; |
|
| 36 | - } |
|
| 37 | - } |
|
| 33 | + foreach ($params as $key => $value) { |
|
| 34 | + if (property_exists($avoidanceZoneParameters, $key)) { |
|
| 35 | + $avoidanceZoneParameters->{$key} = $value; |
|
| 36 | + } |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - return $avoidanceZoneParameters; |
|
| 40 | - } |
|
| 39 | + return $avoidanceZoneParameters; |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - public static function getAvoidanceZone($territory_id) |
|
| 43 | - { |
|
| 44 | - $avoidanceZone = Route4Me::makeRequst(array( |
|
| 45 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 46 | - 'method' => 'GET', |
|
| 47 | - 'query' => array( |
|
| 48 | - 'territory_id' => $territory_id |
|
| 49 | - ) |
|
| 50 | - )); |
|
| 42 | + public static function getAvoidanceZone($territory_id) |
|
| 43 | + { |
|
| 44 | + $avoidanceZone = Route4Me::makeRequst(array( |
|
| 45 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 46 | + 'method' => 'GET', |
|
| 47 | + 'query' => array( |
|
| 48 | + 'territory_id' => $territory_id |
|
| 49 | + ) |
|
| 50 | + )); |
|
| 51 | 51 | |
| 52 | - return $avoidanceZone; |
|
| 53 | - } |
|
| 52 | + return $avoidanceZone; |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - public static function getAvoidanceZones($params) |
|
| 56 | - { |
|
| 57 | - $avoidanceZones = Route4Me::makeRequst(array( |
|
| 58 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 59 | - 'method' => 'GET', |
|
| 60 | - 'query' => array( |
|
| 61 | - 'offset' => isset($params->offset) ? $params->offset : null, |
|
| 62 | - 'limit' => isset($params->limit) ? $params->limit : null, |
|
| 63 | - ) |
|
| 64 | - )); |
|
| 55 | + public static function getAvoidanceZones($params) |
|
| 56 | + { |
|
| 57 | + $avoidanceZones = Route4Me::makeRequst(array( |
|
| 58 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 59 | + 'method' => 'GET', |
|
| 60 | + 'query' => array( |
|
| 61 | + 'offset' => isset($params->offset) ? $params->offset : null, |
|
| 62 | + 'limit' => isset($params->limit) ? $params->limit : null, |
|
| 63 | + ) |
|
| 64 | + )); |
|
| 65 | 65 | |
| 66 | - return $avoidanceZones; |
|
| 67 | - } |
|
| 66 | + return $avoidanceZones; |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - public static function addAvoidanceZone($params) |
|
| 70 | - { |
|
| 71 | - $terParams = array(); |
|
| 69 | + public static function addAvoidanceZone($params) |
|
| 70 | + { |
|
| 71 | + $terParams = array(); |
|
| 72 | 72 | |
| 73 | - if (isset($params->territory['type'])) { |
|
| 74 | - $terParams['type'] = $params->territory['type']; |
|
| 75 | - } |
|
| 73 | + if (isset($params->territory['type'])) { |
|
| 74 | + $terParams['type'] = $params->territory['type']; |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - if (isset($params->territory['data'])) { |
|
| 78 | - $terParams['data'] = $params->territory['data']; |
|
| 79 | - } |
|
| 77 | + if (isset($params->territory['data'])) { |
|
| 78 | + $terParams['data'] = $params->territory['data']; |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - $abContacts = Route4Me::makeRequst(array( |
|
| 82 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 83 | - 'method' => 'POST', |
|
| 84 | - 'body' => array( |
|
| 85 | - 'territory_name' => isset($params->territory_name) ? $params->territory_name : null, |
|
| 86 | - 'territory_color' => isset($params->territory_color) ? $params->territory_color : null, |
|
| 87 | - 'territory' => $terParams |
|
| 88 | - ) |
|
| 89 | - )); |
|
| 81 | + $abContacts = Route4Me::makeRequst(array( |
|
| 82 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 83 | + 'method' => 'POST', |
|
| 84 | + 'body' => array( |
|
| 85 | + 'territory_name' => isset($params->territory_name) ? $params->territory_name : null, |
|
| 86 | + 'territory_color' => isset($params->territory_color) ? $params->territory_color : null, |
|
| 87 | + 'territory' => $terParams |
|
| 88 | + ) |
|
| 89 | + )); |
|
| 90 | 90 | |
| 91 | - return $abContacts; |
|
| 92 | - } |
|
| 91 | + return $abContacts; |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - public function deleteAvoidanceZone($territory_id) |
|
| 95 | - { |
|
| 96 | - $result = Route4Me::makeRequst(array( |
|
| 97 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 98 | - 'method' => 'DELETEARRAY', |
|
| 99 | - 'query' => array( |
|
| 100 | - 'territory_id' => $territory_id |
|
| 101 | - ) |
|
| 102 | - )); |
|
| 94 | + public function deleteAvoidanceZone($territory_id) |
|
| 95 | + { |
|
| 96 | + $result = Route4Me::makeRequst(array( |
|
| 97 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 98 | + 'method' => 'DELETEARRAY', |
|
| 99 | + 'query' => array( |
|
| 100 | + 'territory_id' => $territory_id |
|
| 101 | + ) |
|
| 102 | + )); |
|
| 103 | 103 | |
| 104 | - return $result; |
|
| 105 | - } |
|
| 104 | + return $result; |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | - public function updateAvoidanceZone($params) |
|
| 108 | - { |
|
| 109 | - $avoidanceZone = Route4Me::makeRequst(array( |
|
| 110 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 111 | - 'method' => 'PUT', |
|
| 112 | - 'body' => $params, |
|
| 113 | - )); |
|
| 107 | + public function updateAvoidanceZone($params) |
|
| 108 | + { |
|
| 109 | + $avoidanceZone = Route4Me::makeRequst(array( |
|
| 110 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
| 111 | + 'method' => 'PUT', |
|
| 112 | + 'body' => $params, |
|
| 113 | + )); |
|
| 114 | 114 | |
| 115 | - return $avoidanceZone; |
|
| 116 | - } |
|
| 115 | + return $avoidanceZone; |
|
| 116 | + } |
|
| 117 | 117 | } |