示例#1
0
 public function createSecondPelmet()
 {
     $curtainPriceBand = $this->cpbRepository->findOneById(1);
     $curtainPelmet = new CurtainPelmet();
     $curtainPelmet->setCurtainPriceBand($curtainPriceBand);
     $curtainPelmet->setSize(230);
     $curtainPelmet->setPrice(130.95);
     $this->em->persist($curtainPelmet);
     $this->em->flush();
     return $curtainPelmet;
 }
示例#2
0
 public function updateAction()
 {
     if ($this->getRequest()->get('save_new') != null) {
         $repository = $this->getDoctrine()->getRepository('ElmetSiteBundle:CurtainPriceBand');
         $curtainPriceBand = $repository->findOneById($this->getRequest()->get('priceband_new'));
         $pelmet = new CurtainPelmet();
         $pelmet->setCurtainPriceBand($curtainPriceBand);
         $pelmet->setSize($this->getRequest()->get('size_new'));
         $pelmet->setPrice($this->getRequest()->get('price_new'));
         $em = $this->getDoctrine()->getEntityManager();
         $em->persist($pelmet);
         $em->flush();
     } else {
         if ($this->getRequest()->get('submit_all') != null) {
             $pelmetRepository = $this->getDoctrine()->getRepository('ElmetSiteBundle:CurtainPelmet');
             $priceBandRepository = $this->getDoctrine()->getRepository('ElmetSiteBundle:CurtainPriceBand');
             $pelmets = $pelmetRepository->findAll();
             foreach ($pelmets as $pelmet) {
                 $curtainPriceBand = $priceBandRepository->findOneById($this->getRequest()->get('all:priceband_' . $pelmet->getId()));
                 $pelmet->setCurtainPriceBand($curtainPriceBand);
                 $pelmet->setSize($this->getRequest()->get('all:size_' . $pelmet->getId()));
                 $pelmet->setPrice($this->getRequest()->get('all:price_' . $pelmet->getId()));
                 $em = $this->getDoctrine()->getEntityManager();
                 $em->merge($pelmet);
             }
             $em->flush();
         } else {
             $params = $this->getRequest()->request->all();
             $keys = array_keys($params);
             $pelmet_id = 0;
             foreach ($keys as $key) {
                 $param = $params[$key];
                 if ($param == 'Save') {
                     $index = stripos($key, '_');
                     $pelmet_id = substr($key, $index + 1);
                 }
             }
             if ($pelmet_id != 0) {
                 $repository = $this->getDoctrine()->getRepository('ElmetSiteBundle:CurtainPelmet');
                 $pelmet = $repository->findOneById($pelmet_id);
                 $repository = $this->getDoctrine()->getRepository('ElmetSiteBundle:CurtainPriceBand');
                 $curtainPriceBand = $repository->findOneById($this->getRequest()->get('single:priceband_' . $pelmet_id));
                 $pelmet->setCurtainPriceBand($curtainPriceBand);
                 $pelmet->setSize($this->getRequest()->get('single:size_' . $pelmet_id));
                 $pelmet->setPrice($this->getRequest()->get('single:price_' . $pelmet_id));
                 $em = $this->getDoctrine()->getEntityManager();
                 $em->merge($pelmet);
                 $em->flush();
             }
         }
     }
     return $this->viewAction();
 }