Kaynağa Gözat

Pastille product

packProduct
Fabien Normand 2 yıl önce
ebeveyn
işleme
2de3b68916
8 değiştirilmiş dosya ile 60 ekleme ve 10 silme
  1. +15
    -0
      Builder/Product/ProductFamilySectionPropertyBuilder.php
  2. +1
    -0
      Definition/Field/Product/ProductCategoryFieldDefinition.php
  3. +0
    -7
      Resources/views/admin/product/field/product_family_section_properties.html.twig
  4. +6
    -1
      Resources/views/admin/section/macros.html.twig
  5. +14
    -0
      Solver/Product/ProductCategorySolver.php
  6. +1
    -0
      Solver/Product/ProductFamilySectionPropertySolver.php
  7. +18
    -1
      Solver/Product/ProductFamilySolver.php
  8. +5
    -1
      Twig/StoreTwigExtension.php

+ 15
- 0
Builder/Product/ProductFamilySectionPropertyBuilder.php Dosyayı Görüntüle

@@ -25,6 +25,7 @@ class ProductFamilySectionPropertyBuilder
$this->productFamilySectionPropertySolver = $productFamilySectionPropertySolver;
}


public function enable(ProductFamilyInterface $productFamily, SectionInterface $section, bool $flush = true): void
{
$productFamilySectionProperty = $this->productFamilySectionPropertySolver->getProductFamilySectionProperty($productFamily, $section);
@@ -47,4 +48,18 @@ class ProductFamilySectionPropertyBuilder
}
}


public function disable(ProductFamilyInterface $productFamily, SectionInterface $section, bool $flush = true): void
{
$productFamilySectionProperty = $this->productFamilySectionPropertySolver->getProductFamilySectionProperty($productFamily, $section);

if ($productFamilySectionProperty) {
$productFamilySectionProperty->setStatus(0);
$this->entityManager->update($productFamilySectionProperty);
}
if($flush) {
$this->entityManager->flush();
}
}

}

+ 1
- 0
Definition/Field/Product/ProductCategoryFieldDefinition.php Dosyayı Görüntüle

@@ -61,6 +61,7 @@ class ProductCategoryFieldDefinition extends AbstractFieldDefinition
'title',
'description',
'image',
'status',
'saleStatus',
'isEligibleTicketRestaurant',
];

+ 0
- 7
Resources/views/admin/product/field/product_family_section_properties.html.twig Dosyayı Görüntüle

@@ -1,7 +0,0 @@
{% import '@LcCaracole/admin/section/macros.html.twig' as macros_section %}
{% set item = entity.instance %}
{% for section_property in item.productFamilySectionProperties %}
{{ macros_section.section_badge(section_property.section) }}
{% else %}
<span class="badge badge-secondary">Aucune</span>
{% endfor %}

+ 6
- 1
Resources/views/admin/section/macros.html.twig Dosyayı Görüntüle

@@ -1,4 +1,9 @@

{% macro section_badge(section) %}
<span class="badge badge-secondary {{ section_container.solver.getHtmlClass(section) }}">{{ section.title }}</span>
{% endmacro %}



{% macro section_badge_light_custom(section,title, status= 1) %}
<span class="badge badge-secondary {{ status !=1 ? 'stripped'}} {{ section_container.solver.getHtmlClass(section) }}-light">{{ title }}</span>
{% endmacro %}

+ 14
- 0
Solver/Product/ProductCategorySolver.php Dosyayı Görüntüle

@@ -2,9 +2,23 @@

namespace Lc\CaracoleBundle\Solver\Product;

use Lc\CaracoleBundle\Model\Product\ProductCategoryInterface;

class ProductCategorySolver
{

public function isOnline(ProductCategoryInterface $productCategory)
{
if ($productCategory->getParent()) {
if ($productCategory->getStatus() && $productCategory->getParent()->getStatus()) {
return true;
}
} elseif ($productCategory->getStatus()) {
return true;
}
return false;
}

}



+ 1
- 0
Solver/Product/ProductFamilySectionPropertySolver.php Dosyayı Görüntüle

@@ -18,6 +18,7 @@ class ProductFamilySectionPropertySolver
}
return null;
}

}



+ 18
- 1
Solver/Product/ProductFamilySolver.php Dosyayı Görüntüle

@@ -7,6 +7,7 @@ use Doctrine\Common\Collections\Collection;
use Lc\CaracoleBundle\Doctrine\Extension\ProductPropertyInterface;
use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
use Lc\CaracoleBundle\Model\Product\ProductFamilyModel;
use Lc\CaracoleBundle\Model\Product\ProductFamilySectionPropertyInterface;
use Lc\CaracoleBundle\Model\Product\ProductInterface;
use Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface;
use Lc\CaracoleBundle\Model\Section\SectionInterface;
@@ -15,10 +16,14 @@ class ProductFamilySolver
{

protected ProductSolver $productSolver;
protected ProductFamilySectionPropertySolver $productFamilySectionPropertySolver;
protected ProductCategorySolver $productCategorySolver;

public function __construct(ProductSolver $productSolver)
public function __construct(ProductSolver $productSolver, ProductFamilySectionPropertySolver $productFamilySectionPropertySolver, ProductCategorySolver $productCategorySolver)
{
$this->productSolver = $productSolver;
$this->productFamilySectionPropertySolver = $productFamilySectionPropertySolver;
$this->productCategorySolver = $productCategorySolver;
}


@@ -467,5 +472,17 @@ class ProductFamilySolver

return false;
}


public function isCategoriesOnlineInSection(ProductFamilyInterface $productFamily, SectionInterface $section):bool
{
$isCategoriesOnlineInSection =false;
foreach ($productFamily->getProductCategories() as $productCatgory){
if($productCatgory->getSection() === $section && $this->productCategorySolver->isOnline($productCatgory)){
$isCategoriesOnlineInSection = true;
}
}
return $isCategoriesOnlineInSection;
}
}


+ 5
- 1
Twig/StoreTwigExtension.php Dosyayı Görüntüle

@@ -113,11 +113,15 @@ class StoreTwigExtension extends AbstractExtension
return $this->sectionResolver->isOutOfSection();
}

private $sections = null;
public function getSections()
{
return $this->sectionStore
if(!$this->sections){
$this->sections = $this->sectionStore
->setMerchant($this->merchantResolver->getCurrent())
->getOnline();
}
return $this->sections;
}

public function getMerchants()

Yükleniyor…
İptal
Kaydet