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

Добавление кастомных полей в модель заказа #889

Open
biz87 opened this issue Jun 18, 2023 · 1 comment
Labels

Comments

@biz87
Copy link
Member

biz87 commented Jun 18, 2023

Сообщение об ошибке / Error message

Резюме / Summary

В случае, если в модель заказа добавлены дополнительные поля, их невозможно заполнить.
Проблема заключается в следующем:

Метод order->add('custom_field', 'value') упирается в конструкцию

switch ($key) {
            case 'delivery':
            case 'payment':
                $this->msOrder->set($key, $value);
                break;
            default:
                $this->address->set($key, $value);
        }

Как видно для модели заказа допускается ограниченный список полей, все остальное отправляется в адрес, где кастомное поле заказа не будет найдено.

Нужно придумать более удачный способ управления-распределения данных

@biz87 biz87 added the bug label Jun 18, 2023
@biz87
Copy link
Member Author

biz87 commented Jun 18, 2023

Скорее всего нужно получать доступ к полям моделей заказа и адреса и смотреть куда направлять входящие данные

@biz87 biz87 added refactor and removed bug labels Jun 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant