Skip to content

Commit

Permalink
Add country code
Browse files Browse the repository at this point in the history
  • Loading branch information
Salawat Gafetdinov committed Dec 18, 2024
1 parent 30b3511 commit ed05ab7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ $bbClient->setToken('main', 'bb_api_token');


<a name="links"><h1>Changelog</h1></a>
- 0.8.9 - Добавлено поддержка country_code при получении списка ПВЗ
- 0.8.8 - Добавлены зависимости guzzle ^7.0 и psr/log ^2.0|^3.0
- 0.8.7 - Совместимость с Guzzle 7.4;
- 0.8.6 - Добавлен метод для получения списка заказов по трек номерам или по номерам заказа магазина. Доработкой занимался [Maxim Rodionov](https://github.com/maxbrown1);
Expand Down Expand Up @@ -554,6 +555,7 @@ catch (\Exception $e) {
- *$prepaid (boolean)* - false с возможностью оплаты при получении, true работающие с любым типом посылок (по умолчанию false)
- *$short (boolean)* - краткая информация о ПВЗ с датой последнего изменения (по умолчанию false)
- *$city_code (integer)* - позволяет выбрать ПВЗ только в заданном городе BoxBerry (по умолчанию null)
- *$country_code (integer)* - позволяет выбрать ПВЗ по странам (по умолчанию null)

**Выходные параметры:**
Ассоциативный массив данных
Expand Down
6 changes: 5 additions & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,11 @@ private function callApi($type, $method, $params = [])
* @param boolean $prepaid true - все ПВЗ, false - с возможностью оплаты при получении
* @param boolean $short - true - краткая информация о ПВЗ с датой последнего изменения
* @param int $city_code - код города BB, если нужны ПВЗ в заданном городе
* @param int $country_code - код страны BB
* @return array
* @throws BoxBerryException
*/
public function getPvzList($prepaid = false, $short = false, $city_code = null)
public function getPvzList($prepaid = false, $short = false, $city_code = null, $country_code = null)
{
$method = 'ListPoints';
$params = [];
Expand All @@ -172,6 +173,9 @@ public function getPvzList($prepaid = false, $short = false, $city_code = null)
if ($city_code)
$params['CityCode'] = $city_code;

if ($country_code)
$params['CountryCode'] = $country_code;

return $this->callApi('GET', $method, $params);
}

Expand Down

0 comments on commit ed05ab7

Please sign in to comment.