src/Eccube/Controller/Admin/Order/EditController.php 1 location
|
@@ 552-559 (lines=8) @@
|
| 549 |
|
} |
| 550 |
|
|
| 551 |
|
$forms = array(); |
| 552 |
|
foreach ($Products as $Product) { |
| 553 |
|
/* @var $builder \Symfony\Component\Form\FormBuilderInterface */ |
| 554 |
|
$builder = $app['form.factory']->createNamedBuilder('', AddCartType::class, null, array( |
| 555 |
|
'product' => $Product, |
| 556 |
|
)); |
| 557 |
|
$addCartForm = $builder->getForm(); |
| 558 |
|
$forms[$Product->getId()] = $addCartForm->createView(); |
| 559 |
|
} |
| 560 |
|
|
| 561 |
|
$event = new EventArgs( |
| 562 |
|
array( |
src/Eccube/Controller/Admin/Shipping/EditController.php 1 location
|
@@ 292-297 (lines=6) @@
|
| 289 |
|
} |
| 290 |
|
|
| 291 |
|
$forms = array(); |
| 292 |
|
foreach ($ShipmentItems as $ShipmentItem) { |
| 293 |
|
/* @var $builder \Symfony\Component\Form\FormBuilderInterface */ |
| 294 |
|
$builder = $app['form.factory']->createNamedBuilder('', ShipmentItemType::class, $ShipmentItem); |
| 295 |
|
$addCartForm = $builder->getForm(); |
| 296 |
|
$forms[$ShipmentItem->getId()] = $addCartForm->createView(); |
| 297 |
|
} |
| 298 |
|
|
| 299 |
|
$event = new EventArgs( |
| 300 |
|
array( |