Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Невозможность создать ТТН(при некоторых выбранных городах) #10

Open
testniger opened this issue Nov 2, 2015 · 1 comment

Comments

@testniger
Copy link

Николаев, Отделение №12 (до 30 кг): ул. Пушкинская, 33 - вот выбранный город получателя

if (!isset($sender['CityRecipient']) || ! $recipient['CityRecipient']) {
$recipientCity = $this->getCity($recipient['City'], $recipient['Region']);
print_r($recipientCity)

[data] => Array
(
[0] => Array
(
[0] => Array
(
[Description] => Миколаїв
[DescriptionRu] => Николаев
[Ref] => db5c888c-391c-11dd-90d9-001a92567626
[Delivery1] => 1
[Delivery2] => 1
[Delivery3] => 1
[Delivery4] => 1
[Delivery5] => 1
[Delivery6] => 1
[Delivery7] => 0
[Area] => 71508135-9b87-11de-822f-000c2965ae0e
[Conglomerates] =>
[CityID] => 9
)

            )

    )

Undefined index: Ref in

$recipient['CityRecipient'] = $recipientCity['data'][0]['Ref']; - на этой строке затыкается. вверху массив, который есть перед этой строкой.

Как я понял. У нас тут вот массив вложенный еще раз, и тут должно быть $recipientCity['data'][0][0]['Ref']; Но иногда. в большинстве городов массив вложен 1 раз. И тогда все верно

Не поможете с решением?

@testniger
Copy link
Author

Пока внес такой вот костыль, чтобы работало - может знаете как исправить правильнее?

if (isset($recipientCity['data'][0]['Ref'])) {
$recipient['CityRecipient'] = $recipientCity['data'][0]['Ref'];
}
else {
$recipient['CityRecipient'] = $recipientCity['data'][0][0]['Ref'];
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant