You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

404 lines
21KB

  1. <?php
  2. namespace Lc\ShopBundle\Controller\Backend;
  3. use App\Entity\Product;
  4. use EasyCorp\Bundle\EasyAdminBundle\Event\EasyAdminEvents;
  5. use Lc\ShopBundle\Context\OrderShopInterface;
  6. use Lc\ShopBundle\Context\ProductCategoryInterface;
  7. use Lc\ShopBundle\Context\ProductFamilyInterface;
  8. use Lc\ShopBundle\Context\ReductionCatalogInterface;
  9. use Lc\ShopBundle\Context\TaxRateInterface;
  10. use Lc\ShopBundle\Form\Backend\Common\ReductionCatalogType;
  11. use Lc\ShopBundle\Form\Backend\ProductFamily\ProductType;
  12. use Lc\ShopBundle\Model\ProductFamily;
  13. use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
  14. use Symfony\Component\Form\Extension\Core\Type\CollectionType;
  15. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  16. use Symfony\Component\Form\Extension\Core\Type\NumberType;
  17. use Symfony\Component\Form\FormError;
  18. use Symfony\Component\HttpFoundation\Response;
  19. class ProductFamilyController extends AdminController
  20. {
  21. private $taxRateClass;
  22. private $choicesTaxRateParam;
  23. private $choicesSupplierTaxRateParam;
  24. public function createEntityFormBuilder($entity, $view, $override = true)
  25. {
  26. $formBuilder = parent::createEntityFormBuilder($entity, $view, false);
  27. $class = $this->em->getClassMetadata(ProductCategoryInterface::class);
  28. $this->taxRateClass = $this->em->getClassMetadata(TaxRateInterface::class);
  29. //$formBuilder->add('productCategories', ProductFamilyCategoriesType::class);
  30. $reductionCatalogRepo = $this->em->getRepository(ReductionCatalogInterface::class);
  31. $reductionCatalogClass = $this->em->getClassMetadata(ReductionCatalogInterface::class);
  32. $reductionCatalog = $reductionCatalogRepo->findOneBy(array('status' => false, 'productFamily' => $entity));
  33. if ($reductionCatalog == null) $reductionCatalog = new $reductionCatalogClass->name;
  34. $formBuilder->add('reductionCatalog', ReductionCatalogType::class, array(
  35. 'mapped' => false,
  36. 'data' => $reductionCatalog
  37. ));
  38. $formBuilder->add('stayOnPage', HiddenType::class, array(
  39. 'required'=>false,
  40. 'mapped'=>false,
  41. ));
  42. $formBuilder->add('warningMessageType', ChoiceType::class, array(
  43. 'choices' => array(
  44. 'field.default.warningMessageTypeOptions.' . ProductFamily::WARNING_MESSAGE_TYPE_SUCCESS => ProductFamily::WARNING_MESSAGE_TYPE_SUCCESS,
  45. 'field.default.warningMessageTypeOptions.' . ProductFamily::WARNING_MESSAGE_TYPE_ERROR => ProductFamily::WARNING_MESSAGE_TYPE_ERROR,
  46. 'field.default.warningMessageTypeOptions.' . ProductFamily::WARNING_MESSAGE_TYPE_WARNING => ProductFamily::WARNING_MESSAGE_TYPE_WARNING,
  47. 'field.default.warningMessageTypeOptions.' . ProductFamily::WARNING_MESSAGE_TYPE_INFO => ProductFamily::WARNING_MESSAGE_TYPE_INFO
  48. ),
  49. 'translation_domain' => 'lcshop',
  50. 'multiple' => false,
  51. 'expanded' => false,
  52. 'required' => false
  53. ));
  54. $formBuilder->add('behaviorCountStock', ChoiceType::class, array(
  55. 'empty_data' => ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY,
  56. 'choices' => array(
  57. 'field.ProductFamily.behaviorCountStockOptions.' . ProductFamily::BEHAVIOR_COUNT_STOCK_BY_MEASURE => ProductFamily::BEHAVIOR_COUNT_STOCK_BY_MEASURE,
  58. 'field.ProductFamily.behaviorCountStockOptions.' . ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY => ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY,
  59. 'field.ProductFamily.behaviorCountStockOptions.' . ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT => ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT,
  60. 'field.ProductFamily.behaviorCountStockOptions.' . ProductFamily::BEHAVIOR_COUNT_STOCK_UNLIMITED => ProductFamily::BEHAVIOR_COUNT_STOCK_UNLIMITED
  61. ),
  62. 'translation_domain' => 'lcshop',
  63. 'multiple' => false,
  64. 'expanded' => true
  65. ));
  66. $formBuilder->add('behaviorAddToCart', ChoiceType::class, array(
  67. 'data' => $entity->getBehaviorAddToCart() ? $entity->getBehaviorAddToCart() : 'simple',
  68. 'choices' => array(
  69. 'field.ProductFamily.behaviorAddToCartOptions.' . ProductFamily::BEHAVIOR_ADD_TO_CART_SIMPLE => ProductFamily::BEHAVIOR_ADD_TO_CART_SIMPLE,
  70. 'field.ProductFamily.behaviorAddToCartOptions.' . ProductFamily::BEHAVIOR_ADD_TO_CART_MULTIPLE => ProductFamily::BEHAVIOR_ADD_TO_CART_MULTIPLE
  71. ),
  72. 'translation_domain' => 'lcshop',
  73. 'multiple' => false,
  74. 'expanded' => true
  75. ));
  76. $formBuilder->add('behaviorPrice', ChoiceType::class, array(
  77. 'empty_data' => 'by-piece',
  78. 'choices' => array(
  79. 'field.ProductFamily.behaviorPriceOptions.' . ProductFamily::BEHAVIOR_PRICE_BY_PIECE => ProductFamily::BEHAVIOR_PRICE_BY_PIECE,
  80. 'field.ProductFamily.behaviorPriceOptions.' . ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT => ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT
  81. ),
  82. 'translation_domain' => 'lcshop',
  83. 'multiple' => false,
  84. 'expanded' => true
  85. ));
  86. $formBuilder->add('multiplyingFactor', NumberType::class, array(
  87. 'mapped' => false,
  88. 'data' => floatval($this->merchantUtils->getMerchantConfig('multiplying-factor')),
  89. ));
  90. $formBuilder->add('propertyOrganicLabel', ChoiceType::class, array(
  91. 'choices' => array(
  92. 'field.ProductFamily.organicLabelOptions.' . ProductFamily::PROPERTY_ORGANIC_LABEL_AB => ProductFamily::PROPERTY_ORGANIC_LABEL_AB,
  93. 'field.ProductFamily.organicLabelOptions.' . ProductFamily::PROPERTY_ORGANIC_LABEL_NP => ProductFamily::PROPERTY_ORGANIC_LABEL_NP,
  94. 'field.ProductFamily.organicLabelOptions.' . ProductFamily::PROPERTY_ORGANIC_LABEL_HVE => ProductFamily::PROPERTY_ORGANIC_LABEL_HVE
  95. ),
  96. 'translation_domain' => 'lcshop',
  97. 'multiple' => false,
  98. 'expanded' => false,
  99. 'required' => false
  100. ));
  101. $formBuilder->add('typeExpirationDate', ChoiceType::class, array(
  102. 'choices' => array(
  103. 'field.default.' . ProductFamily::TYPE_EXPIRATION_DATE_DLC => ProductFamily::TYPE_EXPIRATION_DATE_DLC,
  104. 'field.default.' . ProductFamily::TYPE_EXPIRATION_DATE_DDM => ProductFamily::TYPE_EXPIRATION_DATE_DDM,
  105. 'field.default.' . ProductFamily::TYPE_EXPIRATION_DATE_DLUO => ProductFamily::TYPE_EXPIRATION_DATE_DLUO
  106. ),
  107. 'translation_domain' => 'lcshop',
  108. 'multiple' => false,
  109. 'expanded' => true,
  110. 'required' => false
  111. ));
  112. $formBuilder->add('behaviorStockWeek', ChoiceType::class, array(
  113. 'choices' => array(
  114. 'field.ProductFamily.behaviorStockWeekOptions.' . ProductFamily::BEHAVIOR_STOCK_WEEK_RENEWABLE => ProductFamily::BEHAVIOR_STOCK_WEEK_RENEWABLE,
  115. 'field.ProductFamily.behaviorStockWeekOptions.' . ProductFamily::BEHAVIOR_STOCK_WEEK_RENEWABLE_VALIDATION => ProductFamily::BEHAVIOR_STOCK_WEEK_RENEWABLE_VALIDATION,
  116. 'field.ProductFamily.behaviorStockWeekOptions.' . ProductFamily::BEHAVIOR_STOCK_WEEK_NON_RENEWABLE => ProductFamily::BEHAVIOR_STOCK_WEEK_NON_RENEWABLE
  117. ),
  118. 'translation_domain' => 'lcshop',
  119. 'multiple' => false,
  120. 'expanded' => true,
  121. 'required' => true
  122. ));
  123. $formBuilder->add('behaviorExpirationDate', ChoiceType::class, array(
  124. 'choices' => array(
  125. 'field.ProductFamily.behaviorExpirationDateOptions.' . ProductFamily::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT_FAMILY => ProductFamily::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT_FAMILY,
  126. 'field.ProductFamily.behaviorExpirationDateOptions.' . ProductFamily::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT => ProductFamily::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT
  127. ),
  128. 'translation_domain' => 'lcshop',
  129. 'multiple' => false,
  130. 'expanded' => true,
  131. 'required' => false
  132. ));
  133. $formBuilder->add('products', CollectionType::class, array(
  134. 'label' => 'Déclinaisons',
  135. 'entry_type' => ProductType::class,
  136. 'entry_options' => ['label' => false],
  137. 'allow_add' => true,
  138. 'allow_delete' => true,
  139. 'required' => true
  140. )
  141. );
  142. $formBuilder = $this->overrideFormBuilder($formBuilder, $entity, $view);
  143. return $formBuilder;
  144. }
  145. public function updateProductFamilyEntity($entity, $editForm=false)
  146. {
  147. if($editForm) {
  148. $this->processReductionCatalog($entity, $editForm);
  149. $this->processCategories($entity);
  150. $this->processProducts($entity);
  151. $this->processPrice($entity);
  152. }
  153. parent::updateEntity($entity);
  154. }
  155. public function persistProductFamilyEntity($entity, $newForm)
  156. {
  157. $this->processReductionCatalog($entity, $newForm);
  158. $this->processCategories($entity);
  159. $this->processProducts($entity);
  160. $this->processPrice($entity);
  161. $this->em->persist($entity);
  162. $this->em->flush();
  163. }
  164. protected function processReductionCatalog($entity, $editForm)
  165. {
  166. $reductionCatalog = $editForm->get('reductionCatalog')->getData();
  167. if ($reductionCatalog instanceof ReductionCatalogInterface) {
  168. if ($reductionCatalog->getValue() && $reductionCatalog->getBehaviorTaxRate() && $reductionCatalog->getUnit()) {
  169. $reductionCatalog->setMerchant($entity->getMerchant());
  170. $reductionCatalog->setStatus($editForm->get('activeReductionCatalog')->getData());
  171. $reductionCatalog->setProductFamily($entity);
  172. $this->em->persist($reductionCatalog);
  173. }
  174. }
  175. }
  176. protected function processPrice($entity)
  177. {
  178. if ($entity->getBehaviorPrice() == 'by-piece') {
  179. $entity->setPriceByRefUnit(null);
  180. $entity->setBuyingPriceByRefUnit(null);
  181. } else if ($entity->getBehaviorPrice() == 'by-reference-unit') {
  182. $entity->setPrice(null);
  183. $entity->setBuyingPrice(null);
  184. }
  185. }
  186. protected function processProducts($entity)
  187. {
  188. //si il existe un et un seul produit pour ce product family n'ajoute rien supprime rien
  189. if (count($entity->getProducts()) == 0) {
  190. $product = new Product();
  191. $product->setProductFamily($entity);
  192. $this->em->persist($product);
  193. $entity->addProduct($product);
  194. } else {
  195. foreach ($entity->getProducts() as $i => $product) {
  196. $product->setProductFamily($entity);
  197. $this->em->persist($product);
  198. $entity->addProduct($product);
  199. }
  200. }
  201. }
  202. protected function processCategories(ProductFamilyInterface $entity)
  203. {
  204. $productCategoryRepository = $this->getDoctrine()->getRepository(ProductCategoryInterface::class);
  205. $productCategories = $entity->getProductCategories();
  206. $entity->initProductCategories();
  207. foreach ($productCategories as $key => $bool) {
  208. if (is_bool($bool) && $bool) {
  209. if (strpos($key, 'category_children_') !== false) {
  210. $idCategory = (int)str_replace('category_children_', '', $key);
  211. } else {
  212. $idCategory = (int)str_replace('category_', '', $key);
  213. }
  214. $category = $productCategoryRepository->find($idCategory);
  215. $entity->addProductCategory($category);
  216. }
  217. }
  218. }
  219. protected function editAction()
  220. {
  221. $this->dispatch(EasyAdminEvents::PRE_EDIT);
  222. $id = $this->request->query->get('id');
  223. $easyadmin = $this->request->attributes->get('easyadmin');
  224. $entity = $easyadmin['item'];
  225. if ($this->request->isXmlHttpRequest() && $property = $this->request->query->get('property')) {
  226. $newValue = 'true' === mb_strtolower($this->request->query->get('newValue'));
  227. $fieldsMetadata = $this->entity['list']['fields'];
  228. if (!isset($fieldsMetadata[$property]) || 'toggle' !== $fieldsMetadata[$property]['dataType']) {
  229. throw new \RuntimeException(sprintf('The type of the "%s" property is not "toggle".', $property));
  230. }
  231. $this->updateEntityProperty($entity, $property, $newValue);
  232. $this->utils->addFlash('success', 'success.common.fieldChange');
  233. $response['flashMessages'] = $this->utils->getFlashMessages();
  234. return new Response(json_encode($response));
  235. }
  236. $fields = $this->entity['edit']['fields'];
  237. $editForm = $this->executeDynamicMethod('create<EntityName>EditForm', [$entity, $fields]);
  238. $deleteForm = $this->createDeleteForm($this->entity['name'], $id);
  239. $sortableProductsField = array();
  240. foreach ($editForm->get('products')->getData() as $k => $product) {
  241. $sortableProductsField[$product->getPosition()] = $k;
  242. }
  243. ksort($sortableProductsField);
  244. $editForm->handleRequest($this->request);
  245. if ($editForm->isSubmitted() && count($entity->getProductCategories()) == 0) {
  246. $editForm->get('productCategories')->addError(new FormError('Vous devez choisir au moins une catégorie'));
  247. }
  248. if ($editForm->isSubmitted() && $editForm->isValid() && count($entity->getProductCategories()) > 0) {
  249. $this->processUploadedFiles($editForm);
  250. $this->dispatch(EasyAdminEvents::PRE_UPDATE, ['entity' => $entity]);
  251. $this->executeDynamicMethod('update<EntityName>Entity', [$entity, $editForm]);
  252. $this->dispatch(EasyAdminEvents::POST_UPDATE, ['entity' => $entity]);
  253. $this->utils->addFlash('success', 'Produit sauvegardé');
  254. if($editForm->get('stayOnPage')->getData()!="false" || $this->request->get('submitAndStay')!==null){
  255. $refererUrl = $this->request->query->get('referer', '');
  256. return $this->redirectToRoute('easyadmin', ['entity' => 'ProductFamily', 'action' => 'edit', 'id' => $id, 'referer' => $refererUrl]) ;
  257. }else {
  258. return $this->redirectToReferrer();
  259. }
  260. }
  261. $this->dispatch(EasyAdminEvents::POST_EDIT);
  262. $parameters = [
  263. 'form' => $editForm->createView(),
  264. 'entity_fields' => $fields,
  265. 'entity' => $entity,
  266. 'delete_form' => $deleteForm->createView(),
  267. 'sortableProductsField' => $sortableProductsField,
  268. 'totalProductOrdered' => $this->getTotalProductOrdered($entity)
  269. ];
  270. return $this->executeDynamicMethod('render<EntityName>Template', ['edit', $this->entity['templates']['edit'], $parameters]);
  271. }
  272. protected function newAction()
  273. {
  274. $this->dispatch(EasyAdminEvents::PRE_NEW);
  275. $entity = $this->executeDynamicMethod('createNew<EntityName>Entity');
  276. $easyadmin = $this->request->attributes->get('easyadmin');
  277. $easyadmin['item'] = $entity;
  278. $this->request->attributes->set('easyadmin', $easyadmin);
  279. $fields = $this->entity['new']['fields'];
  280. $newForm = $this->executeDynamicMethod('create<EntityName>NewForm', [$entity, $fields]);
  281. $newForm->handleRequest($this->request);
  282. if ($newForm->isSubmitted() && array_search(true, $newForm->get('productCategories')->getData()->toArray()) === false) {
  283. $newForm->get('productCategories')->addError(new FormError('Vous devez choisir au moins une catégorie'));
  284. }
  285. if ($newForm->isSubmitted() && $newForm->isValid() && array_search(true, $newForm->get('productCategories')->getData()->toArray()) !== false) {
  286. $this->processUploadedFiles($newForm);
  287. $this->dispatch(EasyAdminEvents::PRE_PERSIST, ['entity' => $entity]);
  288. $this->executeDynamicMethod('persist<EntityName>Entity', [$entity, $newForm]);
  289. $this->dispatch(EasyAdminEvents::POST_PERSIST, ['entity' => $entity]);
  290. if($newForm->get('stayOnPage')->getData()!="false" || $this->request->get('submitAndStay')!==null){
  291. return $this->redirectToRoute('easyadmin', ['entity' => 'ProductFamily', 'action' => 'edit', 'id' => $entity->getId()]) ;
  292. }else {
  293. return $this->redirectToReferrer();
  294. }
  295. }
  296. $this->dispatch(EasyAdminEvents::POST_NEW, [
  297. 'entity_fields' => $fields,
  298. 'form' => $newForm,
  299. 'entity' => $entity
  300. ]);
  301. $productCategoryRepository = $this->getDoctrine()->getRepository(ProductCategoryInterface::class);
  302. $categories = $productCategoryRepository->findAllParents();
  303. $parameters = [
  304. 'form' => $newForm->createView(),
  305. 'entity_fields' => $fields,
  306. 'entity' => $entity,
  307. 'categories' => $categories,
  308. 'sortableProductsField' => array(),
  309. 'totalProductOrdered' => array()
  310. ];
  311. return $this->executeDynamicMethod('render<EntityName>Template', ['new', $this->entity['templates']['new'], $parameters]);
  312. }
  313. public function getTotalProductOrdered($entity){
  314. $orderShopRepo = $this->em->getRepository(OrderShopInterface::class);
  315. $totalProductOrdered = array();
  316. foreach ($entity->getProducts() as $product) {
  317. $currentWeekNumber = $this->orderUtils->getWeekNumberCurrent();
  318. //Les commandes sont ouvertes ont récupèrent les commandes en cours et celle de la semaine dernière
  319. if ($this->orderUtils->isOpenSale()) {
  320. $totalProductOrdered[$product->getId()][$currentWeekNumber] = $orderShopRepo->countValidOrderProductsOfWeekByProduct($currentWeekNumber, $product->getId());
  321. $totalProductOrdered[$product->getId()][$currentWeekNumber - 1] = $orderShopRepo->countValidOrderProductsOfWeekByProduct($currentWeekNumber - 1, $product->getId());
  322. } else {
  323. $totalProductOrdered[$product->getId()][$currentWeekNumber] = $orderShopRepo->countValidOrderProductsOfWeekByProduct($currentWeekNumber, $product->getId());
  324. }
  325. }
  326. return $totalProductOrdered;
  327. }
  328. }