Browse Source

Merge branch 'develop' of https://forge.laclic.fr/Laclic/CaracoleBundle into develop

packProduct
Charly 3 years ago
parent
commit
17b4cfe898
21 changed files with 376 additions and 52 deletions
  1. +3
    -0
      Builder/Order/OrderShopBuilder.php
  2. +4
    -2
      Builder/Product/ProductFamilySectionPropertyBuilder.php
  3. +31
    -33
      Builder/Setting/SettingBuilder.php
  4. +34
    -0
      Command/MerchantSettingInitCommand.php
  5. +34
    -0
      Command/SectionSettingInitCommand.php
  6. +15
    -0
      Controller/ControllerTrait.php
  7. +2
    -3
      Controller/Merchant/SwitchMerchantController.php
  8. +2
    -1
      Controller/User/UserAdminController.php
  9. +1
    -0
      Definition/Field/Product/ProductCategoryFieldDefinition.php
  10. +9
    -3
      Definition/Field/User/UserMerchantFieldDefinition.php
  11. +54
    -0
      EventSubscriber/Product/UpdateProductFamilySectionPropertyEventSubscriber.php
  12. +38
    -0
      Field/Filter/User/UserMerchantEmailFilter.php
  13. +38
    -0
      Field/Filter/User/UserMerchantFirstnameFilter.php
  14. +41
    -0
      Field/Filter/User/UserMerchantLastnameFilter.php
  15. +1
    -1
      Repository/File/DocumentRepositoryQuery.php
  16. +1
    -5
      Repository/File/DocumentStore.php
  17. +2
    -1
      Repository/Product/ProductFamilyRepositoryQuery.php
  18. +2
    -1
      Repository/StoreTrait.php
  19. +43
    -2
      Repository/User/UserMerchantRepositoryQuery.php
  20. +4
    -0
      Resolver/SectionResolver.php
  21. +17
    -0
      Solver/Config/UnitSolver.php

+ 3
- 0
Builder/Order/OrderShopBuilder.php View File

OrderShopInterface $orderShop2, OrderShopInterface $orderShop2,
$persist = true $persist = true
): OrderShopInterface { ): OrderShopInterface {
//TODO essayer de comprendre prk on doit faire un refresh ici ???
$this->entityManager->refresh($orderShop1);
$this->entityManager->refresh($orderShop2);
if ($orderShop1 && $orderShop2) { if ($orderShop1 && $orderShop2) {
foreach ($orderShop2->getOrderProducts() as $orderProduct) { foreach ($orderShop2->getOrderProducts() as $orderProduct) {
$orderProductAlreadyInCart = $this->orderShopSolver->hasOrderProductAlreadyInCart($orderShop1, $orderProduct); $orderProductAlreadyInCart = $this->orderShopSolver->hasOrderProductAlreadyInCart($orderShop1, $orderProduct);

+ 4
- 2
Builder/Product/ProductFamilySectionPropertyBuilder.php View File

$this->productFamilySectionPropertyStore = $productFamilySectionPropertyStore; $this->productFamilySectionPropertyStore = $productFamilySectionPropertyStore;
} }


public function enable(ProductFamilyInterface $productFamily, SectionInterface $section): void
public function enable(ProductFamilyInterface $productFamily, SectionInterface $section, bool $flush = true): void
{ {
$productFamilySectionProperty = $this->productFamilySectionPropertyStore $productFamilySectionProperty = $this->productFamilySectionPropertyStore
->setSection($section) ->setSection($section)
$this->entityManager->create($productFamilySectionProperty); $this->entityManager->create($productFamilySectionProperty);
} }


$this->entityManager->flush();
if($flush) {
$this->entityManager->flush();
}
} }


} }

EventSubscriber/SettingEventSubscriber.php → Builder/Setting/SettingBuilder.php View File

<?php <?php


namespace Lc\CaracoleBundle\EventSubscriber;
namespace Lc\CaracoleBundle\Builder\Setting;


use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Lc\CaracoleBundle\Definition\MerchantSettingDefinitionInterface;
use Lc\CaracoleBundle\Definition\MerchantSettingDefinition;
use Lc\CaracoleBundle\Definition\SectionSettingDefinition; use Lc\CaracoleBundle\Definition\SectionSettingDefinition;
use Lc\CaracoleBundle\Factory\Setting\MerchantSettingFactory; use Lc\CaracoleBundle\Factory\Setting\MerchantSettingFactory;
use Lc\CaracoleBundle\Factory\Setting\SectionSettingFactory; use Lc\CaracoleBundle\Factory\Setting\SectionSettingFactory;
use Lc\CaracoleBundle\Model\Section\SectionInterface; use Lc\CaracoleBundle\Model\Section\SectionInterface;
use Lc\CaracoleBundle\Repository\Merchant\MerchantStore; use Lc\CaracoleBundle\Repository\Merchant\MerchantStore;
use Lc\CaracoleBundle\Repository\Section\SectionStore;
use Lc\SovBundle\Definition\SiteSettingDefinition;
use Lc\SovBundle\Factory\Setting\SiteSettingFactory;
use Lc\SovBundle\Repository\Site\SiteStore;
use Lc\SovBundle\Solver\Setting\SettingSolver; use Lc\SovBundle\Solver\Setting\SettingSolver;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelEvents;
use Lc\SovBundle\Builder\Setting\SettingBuilder as SovSettingBuilder;


class SettingEventSubscriber implements EventSubscriberInterface
class SettingBuilder extends SovSettingBuilder
{ {
protected EntityManagerInterface $entityManager;
protected MerchantSettingDefinitionInterface $merchantSettingDefinition;
protected SectionSettingDefinition $sectionSettingDefinition;
protected MerchantStore $merchantStore; protected MerchantStore $merchantStore;
protected SectionStore $sectionStore;
protected MerchantSettingDefinition $merchantSettingDefinition;
protected MerchantSettingFactory $merchantSettingFactory; protected MerchantSettingFactory $merchantSettingFactory;
protected SectionSettingDefinition $sectionSettingDefinition;
protected SectionSettingFactory $sectionSettingFactory; protected SectionSettingFactory $sectionSettingFactory;
protected SettingSolver $settingSolver;


public function __construct( public function __construct(
EntityManagerInterface $entityManager, EntityManagerInterface $entityManager,
MerchantSettingDefinitionInterface $merchantSettingDefinition,
SectionSettingDefinition $sectionSettingDefinition,
SettingSolver $settingSolver,
SiteStore $siteStore,
SiteSettingDefinition $siteSettingDefinition,
SiteSettingFactory $siteSettingFactory,
MerchantStore $merchantStore, MerchantStore $merchantStore,
SectionStore $sectionStore,
MerchantSettingDefinition $merchantSettingDefinition,
MerchantSettingFactory $merchantSettingFactory, MerchantSettingFactory $merchantSettingFactory,
SectionSettingFactory $sectionSettingFactory,
SettingSolver $settingSolver
SectionSettingDefinition $sectionSettingDefinition,
SectionSettingFactory $sectionSettingFactory
) { ) {
$this->entityManager = $entityManager;
parent::__construct($entityManager, $settingSolver, $siteStore, $siteSettingDefinition, $siteSettingFactory);

$this->merchantStore = $merchantStore; $this->merchantStore = $merchantStore;
$this->sectionStore = $sectionStore;
$this->merchantSettingDefinition = $merchantSettingDefinition; $this->merchantSettingDefinition = $merchantSettingDefinition;
$this->sectionSettingDefinition = $sectionSettingDefinition;
$this->merchantSettingFactory = $merchantSettingFactory; $this->merchantSettingFactory = $merchantSettingFactory;
$this->sectionSettingDefinition = $sectionSettingDefinition;
$this->sectionSettingFactory = $sectionSettingFactory; $this->sectionSettingFactory = $sectionSettingFactory;
$this->settingSolver = $settingSolver;
} }


public static function getSubscribedEvents()
{
return [
KernelEvents::CONTROLLER => ['initSettings']
];
}

public function initSettings()
public function initMerchantSettings()
{ {
$merchants = $this->merchantStore->get(); $merchants = $this->merchantStore->get();


$this->initSettingsGeneric( $this->initSettingsGeneric(
'merchant',
$this->merchantSettingDefinition->getSettings(), $this->merchantSettingDefinition->getSettings(),
//TODO vérifier que ce soit bien les online que l'on souhaite
$merchants, $merchants,
$this->merchantSettingFactory $this->merchantSettingFactory
); );
}

public function initSectionSettings()
{
$merchants = $this->merchantStore->get();


foreach($merchants as $merchant) { foreach($merchants as $merchant) {
$this->initSettingsGeneric( $this->initSettingsGeneric(
'section',
$this->sectionSettingDefinition->getSettings(), $this->sectionSettingDefinition->getSettings(),
$merchant->getSections(), $merchant->getSections(),
$this->sectionSettingFactory $this->sectionSettingFactory
} }
} }


public function initSettingsGeneric($type, $settings, $entities, $factory)
protected function initSettingsGeneric($settings, $entities, $factory)
{ {
if($entities) { if($entities) {
foreach ($entities as $entity) { foreach ($entities as $entity) {


$this->entityManager->refresh($entity);

foreach ($settings as $category => $settingList) { foreach ($settings as $category => $settingList) {
foreach ($settingList as $settingName => $setting) { foreach ($settingList as $settingName => $setting) {

$entitySetting = $this->settingSolver->getSetting($entity, $settingName); $entitySetting = $this->settingSolver->getSetting($entity, $settingName);


if (!$entitySetting) { if (!$entitySetting) {

// gestion du cas des SectionSetting spécifiques à une section // gestion du cas des SectionSetting spécifiques à une section
$createEntitySetting = true; $createEntitySetting = true;
if ($entity instanceof SectionInterface && isset($setting['section']) && $setting['section'] != $entity) { if ($entity instanceof SectionInterface && isset($setting['section']) && $setting['section'] != $entity) {


$entitySetting = $factory->create($entity, $setting['name'], $text, $date, $file); $entitySetting = $factory->create($entity, $setting['name'], $text, $date, $file);


$this->entityManager->persist($entitySetting);
$this->entityManager->create($entitySetting);
} }
} else { } else {
if ($this->settingSolver->getValue($entitySetting) === null if ($this->settingSolver->getValue($entitySetting) === null

+ 34
- 0
Command/MerchantSettingInitCommand.php View File

<?php

namespace Lc\CaracoleBundle\Command;

use Lc\SovBundle\Builder\Setting\SettingBuilder;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;

class MerchantSettingInitCommand extends Command
{
protected static $defaultName = 'setting:merchant:init';
protected static $defaultDescription = 'Initialise les MerchantSetting.';

protected SettingBuilder $settingBuilder;

public function __construct(string $name = null, SettingBuilder $settingBuilder)
{
parent::__construct($name);
$this->settingBuilder = $settingBuilder;
}

/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->io = new SymfonyStyle($input, $output);
$this->settingBuilder->initMerchantSettings();
$this->io->success('Les MerchantSetting ont bien été initialisées.');
return Command::SUCCESS;
}
}

+ 34
- 0
Command/SectionSettingInitCommand.php View File

<?php

namespace Lc\CaracoleBundle\Command;

use Lc\SovBundle\Builder\Setting\SettingBuilder;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;

class SectionSettingInitCommand extends Command
{
protected static $defaultName = 'setting:section:init';
protected static $defaultDescription = 'Initialise les SectionSetting.';

protected SettingBuilder $settingBuilder;

public function __construct(string $name = null, SettingBuilder $settingBuilder)
{
parent::__construct($name);
$this->settingBuilder = $settingBuilder;
}

/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->io = new SymfonyStyle($input, $output);
$this->settingBuilder->initSectionSettings();
$this->io->success('Les SectionSetting ont bien été initialisées.');
return Command::SUCCESS;
}
}

+ 15
- 0
Controller/ControllerTrait.php View File

return $this->get(SectionResolver::class)->getCurrent(true); return $this->get(SectionResolver::class)->getCurrent(true);
} }


public function getSectionCurrentVisited(): ?SectionInterface
{
return $this->get(SectionResolver::class)->getCurrent(false, true);
}

public function isOutOfSection() public function isOutOfSection()
{ {
return $this->get(SectionResolver::class)->isOutOfSection(); return $this->get(SectionResolver::class)->isOutOfSection();
); );
} }


public function getCartCurrentVisited(): OrderShopInterface
{
return $this->getOrderShopContainer()->getBuilder()->createIfNotExist(
$this->getSectionCurrentVisited(),
$this->getUserCurrent(),
$this->getVisitorCurrent(),
true
);
}

public function getPriceSolver(): PriceSolver public function getPriceSolver(): PriceSolver
{ {
return $this->get(PriceSolver::class); return $this->get(PriceSolver::class);

+ 2
- 3
Controller/Merchant/SwitchMerchantController.php View File

namespace Lc\CaracoleBundle\Controller\Merchant; namespace Lc\CaracoleBundle\Controller\Merchant;


use Lc\CaracoleBundle\Container\Merchant\MerchantContainer; use Lc\CaracoleBundle\Container\Merchant\MerchantContainer;
use Lc\CaracoleBundle\Controller\AbstractController;
use Lc\CaracoleBundle\Definition\MerchantSettingDefinition; use Lc\CaracoleBundle\Definition\MerchantSettingDefinition;
use Lc\CaracoleBundle\Form\Merchant\SwitchMerchantFormType; use Lc\CaracoleBundle\Form\Merchant\SwitchMerchantFormType;
use Lc\CaracoleBundle\Repository\Merchant\MerchantRepository;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\Routing\Annotation\Route;


$context = $form->get('context')->getData(); $context = $form->get('context')->getData();


if ($merchant) { if ($merchant) {
$url = $this->get(MerchantContainer::class)->getSettingSolver()->getSettingValue(
$url = $this->getSettingValue(
$merchant, $merchant,
MerchantSettingDefinition::SETTING_URL MerchantSettingDefinition::SETTING_URL
); );

+ 2
- 1
Controller/User/UserAdminController.php View File

foreach ($entity->getActions() as $action){ foreach ($entity->getActions() as $action){
if($action->getName() == ActionDefinition::SWITCH_USER){ if($action->getName() == ActionDefinition::SWITCH_USER){
$sectionDefault = $this->getSectionContainer()->getStore()->setMerchant($this->getMerchantCurrent())->getOneDefault(); $sectionDefault = $this->getSectionContainer()->getStore()->setMerchant($this->getMerchantCurrent())->getOneDefault();
$url = $this->generateUrl($this->getParameter('lc_sov.homepage_route'), array('_switch_user' => $entity->getInstance()->getEmail(), 'section'=> $sectionDefault));
dump($sectionDefault);
$url = $this->generateUrl($this->getParameter('lc_sov.homepage_route'), array('_switch_user' => $entity->getInstance()->getEmail(), 'section'=> $sectionDefault->getSlug()));
$action->setLinkUrl($url); $action->setLinkUrl($url);
} }
} }

+ 1
- 0
Definition/Field/Product/ProductCategoryFieldDefinition.php View File

'title', 'title',
'position', 'position',
'createdAt', 'createdAt',
'updatedAt',
'status', 'status',
'saleStatus', 'saleStatus',
'isEligibleTicketRestaurant' 'isEligibleTicketRestaurant'

+ 9
- 3
Definition/Field/User/UserMerchantFieldDefinition.php View File

use EasyCorp\Bundle\EasyAdminBundle\Field\TextField; use EasyCorp\Bundle\EasyAdminBundle\Field\TextField;
use Lc\CaracoleBundle\Context\MerchantContextTrait; use Lc\CaracoleBundle\Context\MerchantContextTrait;
use Lc\CaracoleBundle\Field\AssociationField; use Lc\CaracoleBundle\Field\AssociationField;
use Lc\CaracoleBundle\Field\Filter\User\UserMerchantEmailFilter;
use Lc\CaracoleBundle\Field\Filter\User\UserMerchantFirstnameFilter;
use Lc\CaracoleBundle\Field\Filter\User\UserMerchantLastnameFilter;
use Lc\SovBundle\Definition\Field\AbstractFieldDefinition; use Lc\SovBundle\Definition\Field\AbstractFieldDefinition;






return [ return [
'id'=> IntegerField::new('id')->onlyOnIndex()->setSortable(true), 'id'=> IntegerField::new('id')->onlyOnIndex()->setSortable(true),
'lastname'=> TextField::new('user.lastname')->setSortable(true),
'firstname'=> TextField::new('user.firstname')->setSortable(true),
'email'=> TextField::new('user.email')->setSortable(true),
'lastname'=> TextField::new('user.lastname')->setSortable(true)
->setCustomOption('filter_fqcn', UserMerchantLastnameFilter::class),
'firstname'=> TextField::new('user.firstname')->setSortable(true)
->setCustomOption('filter_fqcn', UserMerchantFirstnameFilter::class),
'email'=> TextField::new('user.email')->setSortable(true)
->setCustomOption('filter_fqcn', UserMerchantEmailFilter::class),
'credit'=> NumberField::new('credit')->setSortable(true) 'credit'=> NumberField::new('credit')->setSortable(true)
->setTemplatePath('@LcSov/adminlte/crud/field/amount.html.twig') ->setTemplatePath('@LcSov/adminlte/crud/field/amount.html.twig')
->setCustomOption('appendHtml', '&euro;'), ->setCustomOption('appendHtml', '&euro;'),

+ 54
- 0
EventSubscriber/Product/UpdateProductFamilySectionPropertyEventSubscriber.php View File

<?php

namespace Lc\CaracoleBundle\EventSubscriber\Product;

use Doctrine\ORM\EntityManagerInterface;

use Lc\CaracoleBundle\Model\Product\ProductFamilySectionPropertyInterface;
use Lc\SovBundle\Event\EntityManager\EntityManagerEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

class UpdateProductFamilySectionPropertyEventSubscriber implements EventSubscriberInterface
{
protected EntityManagerInterface $entityManager;

public function __construct(EntityManagerInterface $entityManager)
{
$this->entityManager = $entityManager;
}

public static function getSubscribedEvents()
{
return [
EntityManagerEvent::PRE_CREATE_EVENT => ['processBeforePersistProductFamilySectionInterface'],
EntityManagerEvent::PRE_UPDATE_EVENT => ['processBeforePersistProductFamilySectionInterface'],
];
}

public function processBeforePersistProductFamilySectionInterface(EntityManagerEvent $event)
{
$productFamilySectionProperty = $event->getEntity();

if($productFamilySectionProperty instanceof ProductFamilySectionPropertyInterface) {
$section = $productFamilySectionProperty->getSection();
if($productFamilySectionProperty->getStatus() == 1) {
$productCategoryArray = $productFamilySectionProperty->getProductFamily()->getProductCategories();
foreach($productCategoryArray as $productCategory) {
if($productCategory->getSection() == $section) {
// mise à jour du statut
$productCategory->setStatus(1);
$this->entityManager->update($productCategory);

// mise à jour du statut du parent
$productCategoryParent = $productCategory->getParent();
if($productCategoryParent) {
$productCategoryParent->setStatus(1);
$this->entityManager->update($productCategoryParent);
}
}
}
}
}
}

}

+ 38
- 0
Field/Filter/User/UserMerchantEmailFilter.php View File

<?php

namespace Lc\CaracoleBundle\Field\Filter\User;

use EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto;
use Lc\SovBundle\Field\Filter\AssociationFilter;
use Lc\SovBundle\Repository\RepositoryQueryInterface;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;

/**
* @author La clic ! <contact@laclic.fr>
*/
class UserMerchantEmailFilter extends AssociationFilter
{
public function buildProperty(FormBuilderInterface $builder, FieldDto $fieldDto, $options = array())
{
$builder->add(
$this->getFieldPropertySnake($fieldDto->getProperty()),
TextType::class,
array(
'required' => false,
'attr' => array(
'class' => ' input-sm',
'form' => 'filters-form',
),
)
);
}

public function applyFilter(RepositoryQueryInterface $repositoryQuery, FieldDto $fieldDto, $filteredValue = null)
{
if ($filteredValue !== null) {
$repositoryQuery->filterByEmail('%'.$filteredValue.'%');
}
}

}

+ 38
- 0
Field/Filter/User/UserMerchantFirstnameFilter.php View File

<?php

namespace Lc\CaracoleBundle\Field\Filter\User;

use EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto;
use Lc\SovBundle\Field\Filter\AssociationFilter;
use Lc\SovBundle\Repository\RepositoryQueryInterface;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;

/**
* @author La clic ! <contact@laclic.fr>
*/
class UserMerchantFirstnameFilter extends AssociationFilter
{
public function buildProperty(FormBuilderInterface $builder, FieldDto $fieldDto, $options = array())
{
$builder->add(
$this->getFieldPropertySnake($fieldDto->getProperty()),
TextType::class,
array(
'required' => false,
'attr' => array(
'class' => ' input-sm',
'form' => 'filters-form',
),
)
);
}

public function applyFilter(RepositoryQueryInterface $repositoryQuery, FieldDto $fieldDto, $filteredValue = null)
{
if ($filteredValue !== null) {
$repositoryQuery->filterByFirstname('%'.$filteredValue.'%');
}
}

}

+ 41
- 0
Field/Filter/User/UserMerchantLastnameFilter.php View File

<?php

namespace Lc\CaracoleBundle\Field\Filter\User;

use EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto;
use Lc\SovBundle\Field\Filter\AssociationFilter;
use Lc\SovBundle\Field\Filter\FilterTrait;
use Lc\SovBundle\Repository\RepositoryQueryInterface;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;

/**
* @author La clic ! <contact@laclic.fr>
*/
class UserMerchantLastnameFilter
{
use FilterTrait;
public function buildProperty(FormBuilderInterface $builder, FieldDto $fieldDto, $options = array())
{

$builder->add(
$this->getFieldPropertySnake($fieldDto->getProperty()),
TextType::class,
array(
'required' => false,
'attr' => array(
'class' => ' input-sm',
'form' => 'filters-form',
),
)
);
}

public function applyFilter(RepositoryQueryInterface $repositoryQuery, FieldDto $fieldDto, $filteredValue = null)
{
if ($filteredValue !== null) {
$repositoryQuery->filterByLastname('%'.$filteredValue.'%');
}
}

}

+ 1
- 1
Repository/File/DocumentRepositoryQuery.php View File



class DocumentRepositoryQuery extends AbstractRepositoryQuery class DocumentRepositoryQuery extends AbstractRepositoryQuery
{ {
use SectionRepositoryQueryTrait;
use MerchantRepositoryQueryTrait;


public function __construct(DocumentRepository $repository, PaginatorInterface $paginator) public function __construct(DocumentRepository $repository, PaginatorInterface $paginator)
{ {

+ 1
- 5
Repository/File/DocumentStore.php View File



class DocumentStore extends AbstractStore class DocumentStore extends AbstractStore
{ {
use SectionStoreTrait;
use MerchantStoreTrait; use MerchantStoreTrait;


protected DocumentRepositoryQuery $query; protected DocumentRepositoryQuery $query;
{ {
$query->filterIsOnlineAndOffline(); $query->filterIsOnlineAndOffline();


if(isset($this->section) && $this->section) {
$query->filterBySection($this->section);
}


if(isset($this->merchant) && $this->merchant) { if(isset($this->merchant) && $this->merchant) {
$query->filterByMerchantViaSection($this->merchant);
$query->filterByMerchant($this->merchant);
} }


return $query; return $query;

+ 2
- 1
Repository/Product/ProductFamilyRepositoryQuery.php View File



$this->leftJoin('.productFamilySectionProperties', 'productFamilySectionProperties'); $this->leftJoin('.productFamilySectionProperties', 'productFamilySectionProperties');
if ($addSelect) { if ($addSelect) {
$this->addSelect('productFamilySectionProperties');
//NB : Ici le select est en commentaire car si il est actif doctrine n'hydrate pas correectement ProductFamilySectionProperties (si filtre sur section les ProductFamilySectionProperties des autres sections ne sont pas chargé et ça peut être problématique pr la gestion des stocks)
//$this->addSelect('productFamilySectionProperties');
} }
} }
return $this; return $this;

+ 2
- 1
Repository/StoreTrait.php View File



trait StoreTrait trait StoreTrait
{ {
public function resetContext(): void
public function resetContext(): self
{ {
if(method_exists($this, 'setMerchant')) { if(method_exists($this, 'setMerchant')) {
$this->setMerchant(null); $this->setMerchant(null);
if(method_exists($this, 'setSection')) { if(method_exists($this, 'setSection')) {
$this->setSection(null); $this->setSection(null);
} }
return $this;
} }
} }

+ 43
- 2
Repository/User/UserMerchantRepositoryQuery.php View File

{ {
use MerchantRepositoryQueryTrait; use MerchantRepositoryQueryTrait;


protected $isJoinUser = false;


public function __construct(UserMerchantRepository $repository, PaginatorInterface $paginator) public function __construct(UserMerchantRepository $repository, PaginatorInterface $paginator)
{ {
parent::__construct($repository, 'userMerchant', $paginator); parent::__construct($repository, 'userMerchant', $paginator);
public function filterByUser(UserInterface $user) public function filterByUser(UserInterface $user)
{ {
return $this return $this
->andWhere('.user = :user')
->setParameter('user', $user);
->andWhere('.user = :user')
->setParameter('user', $user);
}

public function joinUser(): self
{
if (!$this->isJoinUser) {
$this->isJoinUser = true;

return $this
->leftJoin('.user', 'user');
}
return $this;
}

public function filterByFirstname(string $firstname)
{
$this->joinUser();

return $this
->andWhere('user.firstname LIKE :firstname')
->setParameter('firstname', $firstname);
}

public function filterByLastname(string $lastname)
{
$this->joinUser();

return $this
->andWhere('user.lastname LIKE :lastname')
->setParameter('lastname', $lastname);
}

public function filterByEmail(string $email)
{
$this->joinUser();

return $this
->andWhere('user.email LIKE :email')
->setParameter('email', $email);
} }


public function filterIsCreditActive() public function filterIsCreditActive()

+ 4
- 0
Resolver/SectionResolver.php View File

use Lc\CaracoleBundle\Repository\Section\SectionStore; use Lc\CaracoleBundle\Repository\Section\SectionStore;
use Lc\SovBundle\Resolver\UrlResolver; use Lc\SovBundle\Resolver\UrlResolver;
use Symfony\Component\HttpFoundation\RequestStack; use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Security\Core\Security; use Symfony\Component\Security\Core\Security;


class SectionResolver class SectionResolver
$sectionCurrent = $sectionStore $sectionCurrent = $sectionStore
->setMerchant($merchantCurrent) ->setMerchant($merchantCurrent)
->getOneBySlug($requestAttributesArray['section']); ->getOneBySlug($requestAttributesArray['section']);
if($sectionCurrent===null){
throw new NotFoundHttpException('Aucun espace n\'a été trouvé');
}
} }


if ($sectionCurrent) { if ($sectionCurrent) {

+ 17
- 0
Solver/Config/UnitSolver.php View File

<?php

namespace Lc\CaracoleBundle\Solver\Config;



use Lc\CaracoleBundle\Model\Config\UnitInterface;

class UnitSolver
{

public function getWeight(UnitInterface $unit, int $quantityProduct, int $quantity){
return ($quantityProduct / $unit->getCoefficient()) * $quantity;
}


}

Loading…
Cancel
Save