do not show deleted menuitems #63

Merged
lubiana merged 3 commits from do-not-show-deleted-menuitems-on-order-add-item into main 2024-09-23 17:12:00 +00:00
3 changed files with 15 additions and 1 deletions
Showing only changes of commit 9e35499269 - Show all commits

View file

@ -13,7 +13,8 @@
"mutators": {
"@default": true,
"global-ignore": [
"App\\Service\\Favicon::__toString"
"App\\Service\\Favicon::__toString",
"ORM\\Column.*"
]
}
}

View file

@ -56,6 +56,7 @@ final class OrderItemController extends AbstractController
}
$menuItems = $menuItemRepository->findBy([
'foodVendor' => $foodOrder->getFoodVendor(),
'deletedAt' => null,
]);
return $this->render('order_item/new.html.twig', [

View file

@ -2,6 +2,7 @@
namespace App\Tests\Controller;
use App\Entity\FoodOrder;
use App\Entity\FoodVendor;
use App\Entity\MenuItem;
use App\Tests\DbWebTest;
@ -85,6 +86,10 @@ final class MenuItemControllerTest extends DbWebTest
$this->vendor->addMenuItem($menuItem);
$this->manager->persist($this->vendor);
$this->manager->persist($menuItem);
$order = new FoodOrder();
$order->setFoodVendor($this->vendor);
$this->manager->persist($order);
$this->manager->flush();
$this->assertFalse($menuItem->isDeleted());
@ -94,5 +99,12 @@ final class MenuItemControllerTest extends DbWebTest
$menuItem = $this->repository->find($menuItem->getId());
$this->assertTrue($menuItem->isDeleted());
$crawler = $this->client->request('GET', '/order/item/new/' . $order->getId());
$count = $crawler->filter('body > main:nth-child(2) > div:nth-child(5)')->children()->count();
$this->assertSame(0, $count);
$this->assertResponseIsSuccessful();
}
}