app/Customize/Controller/ConstructionController.php line 134

Open in your IDE?
  1. <?php
  2. namespace Customize\Controller;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Customize\Repository\BlogRepository;
  5. use Eccube\Repository\PageRepository;
  6. use Symfony\Component\HttpFoundation\Response;
  7. use Eccube\Controller\AbstractController;
  8. use Eccube\Entity\BaseInfo;
  9. use Eccube\Entity\Master\ProductStatus;
  10. use Eccube\Entity\Product;
  11. use Eccube\Event\EccubeEvents;
  12. use Eccube\Event\EventArgs;
  13. use Eccube\Form\Type\AddCartType;
  14. use Customize\Form\Type\SearchProductType;
  15. use Eccube\Repository\BaseInfoRepository;
  16. use Eccube\Repository\CustomerFavoriteProductRepository;
  17. use Eccube\Repository\Master\ProductListMaxRepository;
  18. use Eccube\Repository\ProductRepository;
  19. use Eccube\Repository\CategoryRepository;
  20. use Eccube\Service\CartService;
  21. use Eccube\Service\PurchaseFlow\PurchaseContext;
  22. use Eccube\Service\PurchaseFlow\PurchaseFlow;
  23. use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
  24. use Knp\Component\Pager\PaginatorInterface;
  25. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  26. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  27. use Symfony\Component\HttpFoundation\Request;
  28. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  29. use Symfony\Component\Routing\Annotation\Route;
  30. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  31. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  32. class ConstructionController extends AbstractController
  33. {
  34.     /**
  35.      * @var PurchaseFlow
  36.      */
  37.     protected $purchaseFlow;
  38.     /**
  39.      * @var CustomerFavoriteProductRepository
  40.      */
  41.     protected $customerFavoriteProductRepository;
  42.     /**
  43.      * @var CartService
  44.      */
  45.     protected $cartService;
  46.     /**
  47.      * @var ProductRepository
  48.      */
  49.     protected $productRepository;
  50.     protected $categoryRepository;
  51.     /**
  52.      * @var BaseInfo
  53.      */
  54.     protected $BaseInfo;
  55.     /**
  56.      * @var AuthenticationUtils
  57.      */
  58.     protected $helper;
  59.     /**
  60.      * @var ProductListMaxRepository
  61.      */
  62.     protected $productListMaxRepository;
  63.     private $title '';
  64.     /**
  65.      * ProductController constructor.
  66.      *
  67.      * @param PurchaseFlow $cartPurchaseFlow
  68.      * @param CustomerFavoriteProductRepository $customerFavoriteProductRepository
  69.      * @param CartService $cartService
  70.      * @param ProductRepository $productRepository
  71.      * @param ProductRepository $categoryRepository
  72.      * @param BaseInfoRepository $baseInfoRepository
  73.      * @param AuthenticationUtils $helper
  74.      * @param ProductListMaxRepository $productListMaxRepository
  75.      */
  76.     public function __construct(
  77.         PurchaseFlow $cartPurchaseFlow,
  78.         CustomerFavoriteProductRepository $customerFavoriteProductRepository,
  79.         CartService $cartService,
  80.         ProductRepository $productRepository,
  81.         CategoryRepository $categoryRepository,
  82.         BaseInfoRepository $baseInfoRepository,
  83.         AuthenticationUtils $helper,
  84.         ProductListMaxRepository $productListMaxRepository
  85.     ) {
  86.         $this->purchaseFlow $cartPurchaseFlow;
  87.         $this->customerFavoriteProductRepository $customerFavoriteProductRepository;
  88.         $this->cartService $cartService;
  89.         $this->productRepository $productRepository;
  90.         $this->categoryRepository $categoryRepository;
  91.         $this->BaseInfo $baseInfoRepository->get();
  92.         $this->helper $helper;
  93.         $this->productListMaxRepository $productListMaxRepository;
  94.     }
  95.     /**
  96.      * カートから工事入力
  97.      *
  98.      * @Route("/construction/", name="construction")
  99.      * @Template("@user_data/construction.twig")
  100.      *
  101.      * @param Request $request
  102.      *
  103.      * @return array
  104.      */
  105.     public function construction(Request $request)
  106.     {
  107.         return $this->getData();
  108.     }
  109.     /**
  110.      * 工事のみ
  111.      *
  112.      * @Route("/construction_only/", name="construction_only")
  113.      * @Template("@user_data/construction_only.twig")
  114.      *
  115.      * @param Request $request
  116.      *
  117.      * @return array
  118.      */
  119.     public function construction_only(Request $request)
  120.     {
  121.         return $this->getData();
  122.     }
  123.     /**
  124.      * getData
  125.      */
  126.     private function getData() {
  127.         // 工事費用の商品
  128.         if ($_SERVER['APP_ENV'] == 'prod') {
  129.             $Product $this->productRepository->find(1289);
  130.         }
  131.         else {
  132.             $Product $this->productRepository->find(1289);
  133.         }
  134.         // カートデータ取得
  135.         $constructionItem null;
  136.         $productTotalPrice 0;
  137.         $productLoanPrice 0;
  138.         $listCatProduct = [];
  139.         $checkCategory 0;
  140.         $tatamis = array();
  141.         $Carts $this->cartService->getCarts();
  142.         foreach ($Carts as $Cart) {
  143.             foreach ($Cart->getCartItems() as $CartItem) {
  144.                 $product $CartItem->getProductClass()->getProduct();
  145.                 $categories $product->getProductCategories();
  146.                 foreach ($categories as $category) {
  147.                     $listCatProduct[$product->getId()] = $category->getCategory()->getId();
  148.                     if( $category->getCategory()->getId() == 118) {
  149.                         $checkCategory 1;
  150.                         $productLoanPrice += ($CartItem->getPrice() * $CartItem->getQuantity());
  151.                     }
  152.                 }
  153.                 if ($CartItem->getProductClass()->getProduct()->getId() == $Product->getId()) {
  154.                     $constructionItem $CartItem;
  155.                 }
  156.                 else {
  157.                     $productTotalPrice += ($CartItem->getPrice() * $CartItem->getQuantity());
  158.                 }
  159.             }
  160.         }
  161.         $builder $this->formFactory->createNamedBuilder(
  162.             '',
  163.             AddCartType::class,
  164.             $constructionItem,
  165.             [
  166.                 'product' => $Product,
  167.                 'id_add_product_id' => false,
  168.             ]
  169.         );        
  170.         return [
  171.             'title' => $this->title,
  172.             'subtitle' => $Product->getName(),
  173.             'form' => $builder->getForm()->createView(),
  174.             'Product' => $Product,
  175.             'Carts' => $Carts,
  176.             'productTotalPrice' => $productTotalPrice,
  177.             'productLoanPrice' => $productLoanPrice,
  178.             'checkCategory' => $checkCategory,
  179.             'listCatProduct' => $listCatProduct,
  180.         ];
  181.     }
  182. }