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

Требование поля name для создания demand #46

Open
smadrom opened this issue Sep 9, 2019 · 4 comments
Open

Comments

@smadrom
Copy link

smadrom commented Sep 9, 2019

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];

@alexeyvolodin
Copy link
Contributor

alexeyvolodin commented Sep 16, 2019

'name' - номер или имя отгрузки в Моем Складе. Передается вот так:

$demand = (new MsDemand($sklad, [
            'name' => time()
            ]))
            ->buildCreation()
            ->addStore($store)
            ->addOrganization($organization)
            ->addCounterparty($party)
            ->addAttribute($attribute, $specs)
            ->addPositionList($positions)
            ->execute();

@smadrom
Copy link
Author

smadrom commented Sep 17, 2019

Смысл поста в том что для api поле 'name' необязательно для заполнения, но скрипт требует этого.

@smadrom
Copy link
Author

smadrom commented Sep 19, 2019

Еще одна проблема (или нет?) Demand связана с тем что сейчас привязка к invoicesOut идет как к одна ссылка, но апи принимает массив ссылок, из-за чего невозможно привязать отгрузку к счету.

Решение которое я нашел для себя:

$invoiceOutSpecs = LinkingSpecs::create([
    'name' => 'invoicesOut',
    'multiple' => true
]);

->addInvoiceOut($invoiceOut, $invoiceOutSpecs)

@vodnicearv
Copy link
Contributor

#97

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

3 participants