-
Notifications
You must be signed in to change notification settings - Fork 58
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
Требование поля name для создания demand #46
Comments
'name' - номер или имя отгрузки в Моем Складе. Передается вот так: $demand = (new MsDemand($sklad, [
'name' => time()
]))
->buildCreation()
->addStore($store)
->addOrganization($organization)
->addCounterparty($party)
->addAttribute($attribute, $specs)
->addPositionList($positions)
->execute(); |
Смысл поста в том что для api поле 'name' необязательно для заполнения, но скрипт требует этого. |
Еще одна проблема (или нет?) Demand связана с тем что сейчас привязка к invoicesOut идет как к одна ссылка, но апи принимает массив ссылок, из-за чего невозможно привязать отгрузку к счету. Решение которое я нашел для себя:
->addInvoiceOut($invoiceOut, $invoiceOutSpecs) |
Demand requires these fields to be created: ["name","agent","organization","store"], has no these fields at the moment: ["name"]
tooyz\moysklad\src\Entities\Documents\Movements\AbstractMovement.php
return ['name', 'agent', Organization::$entityName, Store::$entityName];
The text was updated successfully, but these errors were encountered: