Browse Source

Points de vente partagés

feature/rotating_product
Guillaume Bourgeois 5 months ago
parent
commit
0839d4c545
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      backend/views/point-sale/index.php

+ 3
- 0
backend/views/point-sale/index.php View File

* termes. * termes.
*/ */


use domain\Feature\Feature\Feature;
use domain\PointSale\UserPointSale\UserPointSale; use domain\PointSale\UserPointSale\UserPointSale;
use domain\Producer\Producer\Producer; use domain\Producer\Producer\Producer;
use yii\grid\GridView; use yii\grid\GridView;


$pointSaleModule = $this->getPointSaleModule(); $pointSaleModule = $this->getPointSaleModule();
$sharedPointSaleModule = $this->getSharedPointSaleModule(); $sharedPointSaleModule = $this->getSharedPointSaleModule();
$featureChecker = $this->getFeatureModule()->getChecker();


$this->setTitle('Points de vente'); $this->setTitle('Points de vente');
$this->addBreadcrumb($this->getTitle()); $this->addBreadcrumb($this->getTitle());
} }
], ],
[ [
'visible' => $featureChecker->isEnabled(Feature::ALIAS_SHARED_POINT_SALE),
'label' => 'Partages', 'label' => 'Partages',
'format' => 'raw', 'format' => 'raw',
'headerOptions' => ['class' => 'column-hide-on-mobile'], 'headerOptions' => ['class' => 'column-hide-on-mobile'],

Loading…
Cancel
Save