Closed exemplari closed 3 years ago
Thank you for your bug report. Can you create a PR fixing the issue?
Just went over your docs for submitting PR. I will setup the environment to use in the future but it will be a few days before so whomever gets the fix first is fine.
Environment "aimeos/aimeos-laravel": "~2020.10"
Describe the bug order.base.service.attribute not saving
To Reproduce Steps to reproduce the behavior:
Expected behavior The attribute should be attached to the delivery. Like trackingid.
Screenshots
Additional context How i solved this. There seemed to be multiple problems customer controller . Aimeos\Admin\JQAdm\Order\Mycontroller Aimeos\Admin\JQAdm\Order\Standard Line 452 - this basket list is not indexed by serviceid foreach( $services as $serviceId => $service ) { $list = []; $attrItems = $service->getAttributeItems();
foreach( $services as $idx => $service ) { $serviceId = $service->getServiceId(); $list = []; $attrItems = $service->getAttributeItems();
Line 476 - patched in the name as required, possibly frontend issue +$array['order.base.service.attribute.name'] = $array['order.base.service.attribute.code'];
Line 478 - this was erroring $attrItem->fromArray( $array, true );
$attrItem->fromArray( $array, false );