|
- <?php
-
- namespace Lc\ShopBundle\Controller\Admin;
-
- use App\Entity\Product;
- use App\Entity\ReductionCatalog;
- use Doctrine\DBAL\Types\FloatType;
- use Doctrine\ORM\EntityRepository;
- use EasyCorp\Bundle\EasyAdminBundle\Event\EasyAdminEvents;
- use Lc\ShopBundle\Context\ProductCategoryInterface;
- use Lc\ShopBundle\Context\ProductFamilyInterface;
- use Lc\ShopBundle\Context\ProductInterface;
- use Lc\ShopBundle\Context\ReductionCartInterface;
- use Lc\ShopBundle\Context\ReductionCatalogInterface;
- use Lc\ShopBundle\Context\TaxRateInterface;
- use Lc\ShopBundle\Context\UnitInterface;
- use Lc\ShopBundle\Form\ProductFamilyCategoriesType;
- use Lc\ShopBundle\Form\ProductType;
- use Lc\ShopBundle\Form\ReductionCatalogType;
- use Symfony\Bridge\Doctrine\Form\Type\EntityType;
- use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
- use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
- use Symfony\Component\Form\Extension\Core\Type\CollectionType;
- use Symfony\Component\Form\Extension\Core\Type\DateType;
- use Symfony\Component\Form\Extension\Core\Type\MoneyType;
- use Symfony\Component\Form\Extension\Core\Type\NumberType;
- use Symfony\Component\HttpFoundation\Response;
-
- class ProductFamilyController extends AdminController
- {
- private $taxRateClass;
- private $choicesTaxRateParam;
- private $choicesSupplierTaxRateParam;
-
- public function createEntityFormBuilder($entity, $view, $override = true)
- {
-
- $formBuilder = parent::createEntityFormBuilder($entity, $view, false);
-
- $class = $this->em->getClassMetadata(ProductCategoryInterface::class);
- $this->taxRateClass = $this->em->getClassMetadata(TaxRateInterface::class);
-
- $formBuilder->add('productCategories', ProductFamilyCategoriesType::class);
-
-
- $reductionCatalogRepo = $this->em->getRepository(ReductionCatalogInterface::class);
-
- $reductionCatalogClass = $this->em->getClassMetadata(ReductionCatalogInterface::class);
- $reductionCatalog = $reductionCatalogRepo->findOneBy(array('status'=>false, 'productFamily'=>$entity));
-
- if($reductionCatalog == null)$reductionCatalog = new $reductionCatalogClass->name;
- $formBuilder->add('reductionCatalog', ReductionCatalogType::class,array(
- 'mapped'=>false,
- 'data'=> $reductionCatalog
- ));
-
-
- $formBuilder->add('warningMessageType', ChoiceType::class, array(
- 'choices' => array(
- 'field.default.warningMessageTypeOptions.success' => 'success',
- 'field.default.warningMessageTypeOptions.error' => 'error',
- 'field.default.warningMessageTypeOptions.warning' => 'warning',
- 'field.default.warningMessageTypeOptions.info' => 'info'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => false,
- 'required' => false
- ));
-
- $formBuilder->add('behaviorCountStock', ChoiceType::class, array(
- 'empty_data' => 'by-product-family',
- 'choices' => array(
- 'field.ProductFamily.behaviorCountStockOptions.byQuantity' => 'by-quantity',
- 'field.ProductFamily.behaviorCountStockOptions.byProductFamily' => 'by-product-family',
- 'field.ProductFamily.behaviorCountStockOptions.byProduct' => 'by-product'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => true
- ));
-
- $formBuilder->add('behaviorAddToCart', ChoiceType::class, array(
- 'data' => $entity->getBehaviorAddToCart() ? $entity->getBehaviorAddToCart() : 'simple',
- 'choices' => array(
- 'field.ProductFamily.behaviorAddToCartOptions.simple' => 'simple',
- 'field.ProductFamily.behaviorAddToCartOptions.multiple' => 'multiple'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => true
- ));
-
- $formBuilder->add('behaviorPrice', ChoiceType::class, array(
- 'empty_data' => 'by-piece',
- 'choices' => array(
- 'field.ProductFamily.behaviorPriceOptions.byPiece' => 'by-piece',
- 'field.ProductFamily.behaviorPriceOptions.byRefUnit' => 'by-reference-unit'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => true
- ));
-
- $formBuilder->add('multiplyingFactor', NumberType::class, array(
- 'mapped'=> false,
- 'data'=> floatval($this->merchantUtils->getMerchantConfig('multiplying-factor')),
- ));
-
- $formBuilder->add('propertyOrganicLabel', ChoiceType::class, array(
- 'choices' => array(
- 'field.ProductFamily.organicLabelOptions.ab' => 'ab',
- 'field.ProductFamily.organicLabelOptions.natureProgres' => 'nature-progres',
- 'field.ProductFamily.organicLabelOptions.hVE' => 'hve'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => false,
- 'required' => false
- ));
-
- $formBuilder->add('typeExpirationDate', ChoiceType::class, array(
- 'choices' => array(
- 'field.default.dlc' => 'dlc',
- 'field.default.ddm' => 'ddm',
- 'field.default.dluo' => 'dluo'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => true,
- 'required'=>false
- ));
-
- $formBuilder->add('behaviorExpirationDate', ChoiceType::class, array(
- 'choices' => array(
- 'field.ProductFamily.behaviorExpirationDateOptions.productFamily' => 'by-product-family',
- 'field.ProductFamily.behaviorExpirationDateOptions.product' => 'by-product'
- ),
- 'translation_domain' => 'lcshop',
- 'multiple' => false,
- 'expanded' => true,
- 'required'=>false
- ));
-
-
- $formBuilder->add('products', CollectionType::class, array(
- 'label' => 'Déclinaisons',
- 'entry_type' => ProductType::class,
- 'entry_options' => ['label' => false],
- 'allow_add' => true,
- 'allow_delete' => true,
- 'required' => true
- )
- );
-
- $formBuilder = $this->overrideFormBuilder($formBuilder, $entity, $view);
-
- return $formBuilder;
- }
-
- public function updateProductFamilyEntity($entity, $editForm)
- {
- $this->processReductionCatalog($entity, $editForm);
- $this->processCategories($entity);
- $this->processProducts($entity);
- $this->processPrice($entity);
-
- parent::updateEntity($entity);
- }
-
- public function persistProductFamilyEntity($entity, $newForm)
- {
- $this->processReductionCatalog($entity, $newForm);
- $this->processCategories($entity);
- $this->processProducts($entity);
- $this->processPrice($entity);
-
- $this->em->persist($entity);
- $this->em->flush();
- }
-
- protected function processReductionCatalog($entity, $editForm){
- $reductionCatalog = $editForm->get('reductionCatalog')->getData();
- if($reductionCatalog instanceof ReductionCatalogInterface ) {
- if($reductionCatalog->getValue() && $reductionCatalog->getBehaviorTaxRate() && $reductionCatalog->getUnit()){
- $reductionCatalog->setMerchant($entity->getMerchant());
- $reductionCatalog->setStatus($editForm->get('activeReductionCatalog')->getData());
- $reductionCatalog->setProductFamily($entity);
- $this->em->persist($reductionCatalog);
- }
- }
- }
-
- protected function processPrice($entity){
- if($entity->getBehaviorPrice()=='by-piece'){
- $entity->setPriceByRefUnit(null);
- $entity->setBuyingPriceByRefUnit(null);
- }else if($entity->getBehaviorPrice()=='by-reference-unit') {
- $entity->setPrice(null);
- $entity->setBuyingPrice(null);
- }
- }
-
- protected function processProducts($entity)
- {
- //si il existe un et un seul produit pour ce product family n'ajoute rien supprime rien
- if (count($entity->getProducts()) == 0) {
- $product = new Product();
- $product->setProductFamily($entity);
- $this->em->persist($product);
- $entity->addProduct($product);
- } else {
- foreach ($entity->getProducts() as $i=>$product) {
- $product->setProductFamily($entity);
- $this->em->persist($product);
- $entity->addProduct($product);
- }
- }
-
- }
-
- protected function processCategories(ProductFamilyInterface $entity)
- {
- $productCategoryRepository = $this->getDoctrine()->getRepository(ProductCategoryInterface::class);
- $productCategories = $entity->getProductCategories();
-
- $entity->initProductCategories();
-
- foreach ($productCategories as $key => $bool) {
- if (is_bool($bool) && $bool) {
- if (strpos($key, 'category_children_') !== false) {
- $idCategory = (int)str_replace('category_children_', '', $key);
- } else {
- $idCategory = (int)str_replace('category_', '', $key);
- }
-
- $category = $productCategoryRepository->find($idCategory);
- $entity->addProductCategory($category);
- }
- }
- }
-
- protected function editAction()
- {
-
- $this->dispatch(EasyAdminEvents::PRE_EDIT);
-
- $id = $this->request->query->get('id');
- $easyadmin = $this->request->attributes->get('easyadmin');
- $entity = $easyadmin['item'];
-
- if ($this->request->isXmlHttpRequest() && $property = $this->request->query->get('property')) {
- $newValue = 'true' === mb_strtolower($this->request->query->get('newValue'));
- $fieldsMetadata = $this->entity['list']['fields'];
-
- if (!isset($fieldsMetadata[$property]) || 'toggle' !== $fieldsMetadata[$property]['dataType']) {
- throw new \RuntimeException(sprintf('The type of the "%s" property is not "toggle".', $property));
- }
-
- $this->updateEntityProperty($entity, $property, $newValue);
-
- // cast to integer instead of string to avoid sending empty responses for 'false'
- return new Response((int)$newValue);
- }
-
- $fields = $this->entity['edit']['fields'];
-
- $editForm = $this->executeDynamicMethod('create<EntityName>EditForm', [$entity, $fields]);
- $deleteForm = $this->createDeleteForm($this->entity['name'], $id);
-
- $sortableProductsField = array();
- foreach ($editForm->get('products')->getData() as $k => $product) {
- $sortableProductsField[$product->getPosition()] = $k;
- }
- ksort($sortableProductsField);
-
- $editForm->handleRequest($this->request);
- if ($editForm->isSubmitted() && $editForm->isValid()) {
-
- $this->processUploadedFiles($editForm);
-
- $this->dispatch(EasyAdminEvents::PRE_UPDATE, ['entity' => $entity]);
- $this->executeDynamicMethod('update<EntityName>Entity', [$entity, $editForm]);
- $this->dispatch(EasyAdminEvents::POST_UPDATE, ['entity' => $entity]);
-
- return $this->redirectToReferrer();
- }
-
- $this->dispatch(EasyAdminEvents::POST_EDIT);
-
- $parameters = [
- 'form' => $editForm->createView(),
- 'entity_fields' => $fields,
- 'entity' => $entity,
- 'delete_form' => $deleteForm->createView(),
- 'sortableProductsField' => $sortableProductsField
- ];
-
- return $this->executeDynamicMethod('render<EntityName>Template', ['edit', $this->entity['templates']['edit'], $parameters]);
- }
-
- protected function newAction()
- {
- $this->dispatch(EasyAdminEvents::PRE_NEW);
-
- $entity = $this->executeDynamicMethod('createNew<EntityName>Entity');
-
- $easyadmin = $this->request->attributes->get('easyadmin');
- $easyadmin['item'] = $entity;
- $this->request->attributes->set('easyadmin', $easyadmin);
-
- $fields = $this->entity['new']['fields'];
-
- $newForm = $this->executeDynamicMethod('create<EntityName>NewForm', [$entity, $fields]);
-
- $newForm->handleRequest($this->request);
-
- if ($newForm->isSubmitted() && $newForm->isValid()) {
- $this->processUploadedFiles($newForm);
-
- $this->dispatch(EasyAdminEvents::PRE_PERSIST, ['entity' => $entity]);
- $this->executeDynamicMethod('persist<EntityName>Entity', [$entity, $newForm]);
- $this->dispatch(EasyAdminEvents::POST_PERSIST, ['entity' => $entity]);
-
- return $this->redirectToReferrer();
- }
-
- $this->dispatch(EasyAdminEvents::POST_NEW, [
- 'entity_fields' => $fields,
- 'form' => $newForm,
- 'entity' => $entity
- ]);
-
- $productCategoryRepository = $this->getDoctrine()->getRepository(ProductCategoryInterface::class);
- $categories = $productCategoryRepository->findAllParents();
-
- $parameters = [
- 'form' => $newForm->createView(),
- 'entity_fields' => $fields,
- 'entity' => $entity,
- 'categories' => $categories,
- 'sortableProductsField' => array()
- ];
-
- return $this->executeDynamicMethod('render<EntityName>Template', ['new', $this->entity['templates']['new'], $parameters]);
- }
-
- }
|