|
|
|
|
|
|
|
|
<?php |
|
|
<?php |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
Copyright distrib (2018) |
|
|
|
|
|
|
|
|
|
|
|
contact@opendistrib.net |
|
|
|
|
|
|
|
|
|
|
|
Ce logiciel est un programme informatique servant à aider les producteurs |
|
|
|
|
|
à distribuer leur production en circuits courts. |
|
|
|
|
|
|
|
|
|
|
|
Ce logiciel est régi par la licence CeCILL soumise au droit français et |
|
|
|
|
|
respectant les principes de diffusion des logiciels libres. Vous pouvez |
|
|
|
|
|
utiliser, modifier et/ou redistribuer ce programme sous les conditions |
|
|
|
|
|
de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA |
|
|
|
|
|
sur le site "http://www.cecill.info". |
|
|
|
|
|
|
|
|
|
|
|
En contrepartie de l'accessibilité au code source et des droits de copie, |
|
|
|
|
|
de modification et de redistribution accordés par cette licence, il n'est |
|
|
|
|
|
offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, |
|
|
|
|
|
seule une responsabilité restreinte pèse sur l'auteur du programme, le |
|
|
|
|
|
titulaire des droits patrimoniaux et les concédants successifs. |
|
|
|
|
|
|
|
|
|
|
|
A cet égard l'attention de l'utilisateur est attirée sur les risques |
|
|
|
|
|
associés au chargement, à l'utilisation, à la modification et/ou au |
|
|
|
|
|
développement et à la reproduction du logiciel par l'utilisateur étant |
|
|
|
|
|
donné sa spécificité de logiciel libre, qui peut le rendre complexe à |
|
|
|
|
|
manipuler et qui le réserve donc à des développeurs et des professionnels |
|
|
|
|
|
avertis possédant des connaissances informatiques approfondies. Les |
|
|
|
|
|
utilisateurs sont donc invités à charger et tester l'adéquation du |
|
|
|
|
|
logiciel à leurs besoins dans des conditions permettant d'assurer la |
|
|
|
|
|
sécurité de leurs systèmes et ou de leurs données et, plus généralement, |
|
|
|
|
|
à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. |
|
|
|
|
|
|
|
|
|
|
|
Le fait que vous puissiez accéder à cet en-tête signifie que vous avez |
|
|
|
|
|
pris connaissance de la licence CeCILL, et que vous en avez accepté les |
|
|
|
|
|
termes. |
|
|
|
|
|
|
|
|
* Copyright distrib (2018) |
|
|
|
|
|
* |
|
|
|
|
|
* contact@opendistrib.net |
|
|
|
|
|
* |
|
|
|
|
|
* Ce logiciel est un programme informatique servant à aider les producteurs |
|
|
|
|
|
* à distribuer leur production en circuits courts. |
|
|
|
|
|
* |
|
|
|
|
|
* Ce logiciel est régi par la licence CeCILL soumise au droit français et |
|
|
|
|
|
* respectant les principes de diffusion des logiciels libres. Vous pouvez |
|
|
|
|
|
* utiliser, modifier et/ou redistribuer ce programme sous les conditions |
|
|
|
|
|
* de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA |
|
|
|
|
|
* sur le site "http://www.cecill.info". |
|
|
|
|
|
* |
|
|
|
|
|
* En contrepartie de l'accessibilité au code source et des droits de copie, |
|
|
|
|
|
* de modification et de redistribution accordés par cette licence, il n'est |
|
|
|
|
|
* offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, |
|
|
|
|
|
* seule une responsabilité restreinte pèse sur l'auteur du programme, le |
|
|
|
|
|
* titulaire des droits patrimoniaux et les concédants successifs. |
|
|
|
|
|
* |
|
|
|
|
|
* A cet égard l'attention de l'utilisateur est attirée sur les risques |
|
|
|
|
|
* associés au chargement, à l'utilisation, à la modification et/ou au |
|
|
|
|
|
* développement et à la reproduction du logiciel par l'utilisateur étant |
|
|
|
|
|
* donné sa spécificité de logiciel libre, qui peut le rendre complexe à |
|
|
|
|
|
* manipuler et qui le réserve donc à des développeurs et des professionnels |
|
|
|
|
|
* avertis possédant des connaissances informatiques approfondies. Les |
|
|
|
|
|
* utilisateurs sont donc invités à charger et tester l'adéquation du |
|
|
|
|
|
* logiciel à leurs besoins dans des conditions permettant d'assurer la |
|
|
|
|
|
* sécurité de leurs systèmes et ou de leurs données et, plus généralement, |
|
|
|
|
|
* à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. |
|
|
|
|
|
* |
|
|
|
|
|
* Le fait que vous puissiez accéder à cet en-tête signifie que vous avez |
|
|
|
|
|
* pris connaissance de la licence CeCILL, et que vous en avez accepté les |
|
|
|
|
|
* termes. |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
namespace backend\controllers; |
|
|
namespace backend\controllers; |
|
|
|
|
|
|
|
|
use common\helpers\GlobalParam; |
|
|
use common\helpers\GlobalParam; |
|
|
|
|
|
use common\models\Subscription; |
|
|
use Yii; |
|
|
use Yii; |
|
|
use yii\filters\AccessControl; |
|
|
use yii\filters\AccessControl; |
|
|
use yii\web\Controller; |
|
|
use yii\web\Controller; |
|
|
|
|
|
|
|
|
class SiteController extends BackendController |
|
|
class SiteController extends BackendController |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @inheritdoc |
|
|
|
|
|
*/ |
|
|
|
|
|
public function behaviors() |
|
|
|
|
|
{ |
|
|
|
|
|
return [ |
|
|
|
|
|
'access' => [ |
|
|
|
|
|
'class' => AccessControl::className(), |
|
|
|
|
|
'rules' => [ |
|
|
|
|
|
[ |
|
|
|
|
|
'actions' => ['login', 'error'], |
|
|
|
|
|
'allow' => true, |
|
|
|
|
|
], |
|
|
|
|
|
[ |
|
|
|
|
|
'actions' => ['logout', 'index'], |
|
|
|
|
|
'allow' => true, |
|
|
|
|
|
'roles' => ['@'], |
|
|
|
|
|
'matchCallback' => function ($rule, $action) { |
|
|
|
|
|
return User::hasAccessBackend() ; |
|
|
|
|
|
} |
|
|
|
|
|
], |
|
|
|
|
|
[ |
|
|
|
|
|
'actions' => ['change-producer'], |
|
|
|
|
|
'allow' => true, |
|
|
|
|
|
'roles' => ['@'], |
|
|
|
|
|
'matchCallback' => function ($rule, $action) { |
|
|
|
|
|
return User::getCurrentStatus() == User::STATUS_ADMIN ; |
|
|
|
|
|
} |
|
|
|
|
|
], |
|
|
|
|
|
], |
|
|
|
|
|
], |
|
|
|
|
|
'verbs' => [ |
|
|
|
|
|
'class' => VerbFilter::className(), |
|
|
|
|
|
'actions' => [ |
|
|
|
|
|
], |
|
|
|
|
|
], |
|
|
|
|
|
]; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @inheritdoc |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actions() |
|
|
|
|
|
{ |
|
|
|
|
|
return [ |
|
|
|
|
|
'error' => [ |
|
|
|
|
|
'class' => 'yii\web\ErrorAction', |
|
|
|
|
|
], |
|
|
|
|
|
]; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Affiche le tableau de bord du backend avec les dernières commandes |
|
|
|
|
|
* réalisée, les dernières inscriptions, la liste des clients ayant un crédit |
|
|
|
|
|
* négatif etc. |
|
|
|
|
|
* |
|
|
|
|
|
* @return mixed |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionIndex() |
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
// commandes |
|
|
|
|
|
$optionDashboardNumberDistributions = Producer::getConfig('option_dashboard_number_distributions') ; |
|
|
|
|
|
$dashboardNumberDistributions = $optionDashboardNumberDistributions ? $optionDashboardNumberDistributions : 3 ; |
|
|
|
|
|
|
|
|
|
|
|
$optionDashboardDateStart = Producer::getConfig('option_dashboard_date_start') ; |
|
|
|
|
|
$optionDashboardDateEnd = Producer::getConfig('option_dashboard_date_end') ; |
|
|
|
|
|
|
|
|
|
|
|
$queryDistributions = Distribution::find()->with('order') ; |
|
|
|
|
|
|
|
|
|
|
|
if($optionDashboardDateStart || $optionDashboardDateEnd) { |
|
|
|
|
|
if($optionDashboardDateStart) { |
|
|
|
|
|
$queryDistributions->andWhere(['>=', 'distribution.date', $optionDashboardDateStart]) ; |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @inheritdoc |
|
|
|
|
|
*/ |
|
|
|
|
|
public function behaviors() |
|
|
|
|
|
{ |
|
|
|
|
|
return [ |
|
|
|
|
|
'access' => [ |
|
|
|
|
|
'class' => AccessControl::className(), |
|
|
|
|
|
'rules' => [ |
|
|
|
|
|
[ |
|
|
|
|
|
'actions' => ['login', 'error'], |
|
|
|
|
|
'allow' => true, |
|
|
|
|
|
], |
|
|
|
|
|
[ |
|
|
|
|
|
'actions' => ['logout', 'index'], |
|
|
|
|
|
'allow' => true, |
|
|
|
|
|
'roles' => ['@'], |
|
|
|
|
|
'matchCallback' => function ($rule, $action) { |
|
|
|
|
|
return User::hasAccessBackend(); |
|
|
} |
|
|
} |
|
|
if($optionDashboardDateEnd) { |
|
|
|
|
|
$queryDistributions->andWhere(['<=', 'distribution.date', $optionDashboardDateEnd]) ; |
|
|
|
|
|
|
|
|
], |
|
|
|
|
|
[ |
|
|
|
|
|
'actions' => ['change-producer', 'bug-subscription-payment'], |
|
|
|
|
|
'allow' => true, |
|
|
|
|
|
'roles' => ['@'], |
|
|
|
|
|
'matchCallback' => function ($rule, $action) { |
|
|
|
|
|
return User::getCurrentStatus() == User::STATUS_ADMIN; |
|
|
} |
|
|
} |
|
|
|
|
|
], |
|
|
|
|
|
], |
|
|
|
|
|
], |
|
|
|
|
|
'verbs' => [ |
|
|
|
|
|
'class' => VerbFilter::className(), |
|
|
|
|
|
'actions' => [ |
|
|
|
|
|
], |
|
|
|
|
|
], |
|
|
|
|
|
]; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @inheritdoc |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actions() |
|
|
|
|
|
{ |
|
|
|
|
|
return [ |
|
|
|
|
|
'error' => [ |
|
|
|
|
|
'class' => 'yii\web\ErrorAction', |
|
|
|
|
|
], |
|
|
|
|
|
]; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public function actionBugSubscriptionPayment($fix = 0) |
|
|
|
|
|
{ |
|
|
|
|
|
$producerArray = Producer::find()->where(['active' => 1])->all(); |
|
|
|
|
|
|
|
|
|
|
|
//print_r($producerArray); |
|
|
|
|
|
//die(); |
|
|
|
|
|
|
|
|
|
|
|
foreach ($producerArray as $producer) { |
|
|
|
|
|
$orderArray = Order::searchAll([ |
|
|
|
|
|
'distribution.id_producer' => $producer->id, |
|
|
|
|
|
'origin' => Order::ORIGIN_AUTO, |
|
|
|
|
|
'auto_payment' => 0, |
|
|
|
|
|
], [ |
|
|
|
|
|
'conditions' => 'date_delete IS NULL AND point_sale.credit_functioning = \'mandatory\' AND subscription.auto_payment = 1 AND order.date > \'2022-12-01\'', |
|
|
|
|
|
'join_with' => ['pointSale', 'subscription', 'distribution'], |
|
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
|
|
/*$orderArray = Order::searchAll([ |
|
|
|
|
|
'distribution.id_producer' => $producer->id, |
|
|
|
|
|
'origin' => Order::ORIGIN_AUTO, |
|
|
|
|
|
'auto_payment' => 0, |
|
|
|
|
|
], [ |
|
|
|
|
|
'conditions' => 'date_delete IS NULL AND point_sale.credit_functioning = \'optional\' AND subscription.auto_payment = 1 AND order.date > \'2022-12-01\'', |
|
|
|
|
|
'join_with' => ['pointSale', 'subscription', 'distribution'], |
|
|
|
|
|
]);*/ |
|
|
|
|
|
|
|
|
|
|
|
$count = 0; |
|
|
|
|
|
if($orderArray) { |
|
|
|
|
|
foreach($orderArray as $order) { |
|
|
|
|
|
$amountRemaining = $order->getAmount(Order::AMOUNT_REMAINING); |
|
|
|
|
|
if($amountRemaining >= 0.01) { |
|
|
|
|
|
$count ++; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
|
|
|
$queryDistributions->andWhere(['>=', 'distribution.date', date('Y-m-d')]) ; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$distributionsArray = $queryDistributions->andWhere([ |
|
|
|
|
|
'distribution.id_producer' => GlobalParam::getCurrentProducerId(), |
|
|
|
|
|
'distribution.active' => 1 |
|
|
|
|
|
]) |
|
|
|
|
|
->orderBy('date ASC') |
|
|
|
|
|
->limit($dashboardNumberDistributions) |
|
|
|
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
// dernières commandes |
|
|
|
|
|
$paramsOrders = [] ; |
|
|
|
|
|
if($optionDashboardDateStart || $optionDashboardDateEnd) { |
|
|
|
|
|
$conditionsOrders = '' ; |
|
|
|
|
|
if($optionDashboardDateStart) { |
|
|
|
|
|
$conditionsOrders .= 'distribution.date >= :date_start' ; |
|
|
|
|
|
$paramsOrders[':date_start'] = $optionDashboardDateStart; |
|
|
|
|
|
} |
|
|
|
|
|
if($optionDashboardDateEnd) { |
|
|
|
|
|
if($optionDashboardDateStart) { |
|
|
|
|
|
$conditionsOrders .= ' AND ' ; |
|
|
|
|
|
} |
|
|
|
|
|
$conditionsOrders .= 'distribution.date <= :date_end' ; |
|
|
|
|
|
$paramsOrders[':date_end'] = $optionDashboardDateEnd ; |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if($count) { |
|
|
|
|
|
echo '<h1>' . $producer->name . '</h1>'; |
|
|
|
|
|
echo '<p>' . $count . ' commandes.</p>'; |
|
|
|
|
|
echo '<ul>'; |
|
|
|
|
|
foreach($orderArray as $order) { |
|
|
|
|
|
$amountRemaining = $order->getAmount(Order::AMOUNT_REMAINING); |
|
|
|
|
|
if($amountRemaining) { |
|
|
|
|
|
echo '<li>#'.$order->id.' : '.$order->distribution->date.' / '.$order->pointSale->name.' / '.$order->getAmount(Order::AMOUNT_REMAINING, true); |
|
|
|
|
|
if($fix) { |
|
|
|
|
|
$order->processCredit(); |
|
|
|
|
|
echo ' (payée)'; |
|
|
} |
|
|
} |
|
|
|
|
|
echo '</li>'; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
|
|
|
$conditionsOrders = 'distribution.date >= :date_start' ; |
|
|
|
|
|
$paramsOrders[':date_start'] = date('Y-m-d 00:00:00') ; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
echo '</ul>'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
$ordersArray = Order::searchAll([],[ |
|
|
|
|
|
'orderby' => 'date DESC', |
|
|
|
|
|
'conditions' => $conditionsOrders.' AND (origin = \'' . Order::ORIGIN_USER . '\' OR origin = \'' . Order::ORIGIN_ADMIN . '\' OR (origin = \'' . Order::ORIGIN_AUTO . '\' AND (date_update IS NOT NULL OR date_delete IS NOT NULL)))', |
|
|
|
|
|
'params' => $paramsOrders, |
|
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
|
|
// clients |
|
|
|
|
|
$usersArray = User::findBy() |
|
|
|
|
|
->orderBy('created_at DESC') |
|
|
|
|
|
->limit(5) |
|
|
|
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
$usersNegativeCredit = User::findBy(['id_producer' => GlobalParam::getCurrentProducerId()]) |
|
|
|
|
|
->andWhere('user_producer.credit < 0') |
|
|
|
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
// paramètres |
|
|
|
|
|
$producer = GlobalParam::getCurrentProducer(); |
|
|
|
|
|
|
|
|
|
|
|
$productsCount = Product::searchCount() ; |
|
|
|
|
|
$pointsSaleCount = PointSale::searchCount() ; |
|
|
|
|
|
|
|
|
|
|
|
return $this->render('index', [ |
|
|
|
|
|
'distributionsArray' => $distributionsArray, |
|
|
|
|
|
'ordersArray' => $ordersArray, |
|
|
|
|
|
'usersArray' => $usersArray, |
|
|
|
|
|
'usersNegativeCredit' => $usersNegativeCredit, |
|
|
|
|
|
'producer' => $producer, |
|
|
|
|
|
'productsCount' => $productsCount, |
|
|
|
|
|
'pointsSaleCount' => $pointsSaleCount |
|
|
|
|
|
]); |
|
|
|
|
|
|
|
|
die(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Affiche le tableau de bord du backend avec les dernières commandes |
|
|
|
|
|
* réalisée, les dernières inscriptions, la liste des clients ayant un crédit |
|
|
|
|
|
* négatif etc. |
|
|
|
|
|
* |
|
|
|
|
|
* @return mixed |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionIndex() |
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
// commandes |
|
|
|
|
|
$optionDashboardNumberDistributions = Producer::getConfig('option_dashboard_number_distributions'); |
|
|
|
|
|
$dashboardNumberDistributions = $optionDashboardNumberDistributions ? $optionDashboardNumberDistributions : 3; |
|
|
|
|
|
|
|
|
|
|
|
$optionDashboardDateStart = Producer::getConfig('option_dashboard_date_start'); |
|
|
|
|
|
$optionDashboardDateEnd = Producer::getConfig('option_dashboard_date_end'); |
|
|
|
|
|
|
|
|
|
|
|
$queryDistributions = Distribution::find()->with('order'); |
|
|
|
|
|
|
|
|
|
|
|
if ($optionDashboardDateStart || $optionDashboardDateEnd) { |
|
|
|
|
|
if ($optionDashboardDateStart) { |
|
|
|
|
|
$queryDistributions->andWhere(['>=', 'distribution.date', $optionDashboardDateStart]); |
|
|
|
|
|
} |
|
|
|
|
|
if ($optionDashboardDateEnd) { |
|
|
|
|
|
$queryDistributions->andWhere(['<=', 'distribution.date', $optionDashboardDateEnd]); |
|
|
|
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
$queryDistributions->andWhere(['>=', 'distribution.date', date('Y-m-d')]); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Affiche la page de connexion. |
|
|
|
|
|
* |
|
|
|
|
|
* @return mixed |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionLogin() |
|
|
|
|
|
{ |
|
|
|
|
|
if (!\Yii::$app->user->isGuest) { |
|
|
|
|
|
return $this->goHome(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$model = new LoginForm(); |
|
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->login()) { |
|
|
|
|
|
return $this->goBack(); |
|
|
|
|
|
} else { |
|
|
|
|
|
return $this->render('login', [ |
|
|
|
|
|
'model' => $model, |
|
|
|
|
|
]); |
|
|
|
|
|
|
|
|
$distributionsArray = $queryDistributions->andWhere([ |
|
|
|
|
|
'distribution.id_producer' => GlobalParam::getCurrentProducerId(), |
|
|
|
|
|
'distribution.active' => 1 |
|
|
|
|
|
]) |
|
|
|
|
|
->orderBy('date ASC') |
|
|
|
|
|
->limit($dashboardNumberDistributions) |
|
|
|
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
// dernières commandes |
|
|
|
|
|
$paramsOrders = []; |
|
|
|
|
|
if ($optionDashboardDateStart || $optionDashboardDateEnd) { |
|
|
|
|
|
$conditionsOrders = ''; |
|
|
|
|
|
if ($optionDashboardDateStart) { |
|
|
|
|
|
$conditionsOrders .= 'distribution.date >= :date_start'; |
|
|
|
|
|
$paramsOrders[':date_start'] = $optionDashboardDateStart; |
|
|
|
|
|
} |
|
|
|
|
|
if ($optionDashboardDateEnd) { |
|
|
|
|
|
if ($optionDashboardDateStart) { |
|
|
|
|
|
$conditionsOrders .= ' AND '; |
|
|
} |
|
|
} |
|
|
|
|
|
$conditionsOrders .= 'distribution.date <= :date_end'; |
|
|
|
|
|
$paramsOrders[':date_end'] = $optionDashboardDateEnd; |
|
|
|
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
$conditionsOrders = 'distribution.date >= :date_start'; |
|
|
|
|
|
$paramsOrders[':date_start'] = date('Y-m-d 00:00:00'); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Déconnecte l'utilisateur et le redirige à la page d'accueil. |
|
|
|
|
|
* |
|
|
|
|
|
* @return mixed |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionLogout() |
|
|
|
|
|
{ |
|
|
|
|
|
Yii::$app->user->logout(); |
|
|
|
|
|
|
|
|
|
|
|
return $this->goHome(); |
|
|
|
|
|
|
|
|
$ordersArray = Order::searchAll([], [ |
|
|
|
|
|
'orderby' => 'date DESC', |
|
|
|
|
|
'conditions' => $conditionsOrders . ' AND (origin = \'' . Order::ORIGIN_USER . '\' OR origin = \'' . Order::ORIGIN_ADMIN . '\' OR (origin = \'' . Order::ORIGIN_AUTO . '\' AND (date_update IS NOT NULL OR date_delete IS NOT NULL)))', |
|
|
|
|
|
'params' => $paramsOrders, |
|
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
|
|
// clients |
|
|
|
|
|
$usersArray = User::findBy() |
|
|
|
|
|
->orderBy('created_at DESC') |
|
|
|
|
|
->limit(5) |
|
|
|
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
$usersNegativeCredit = User::findBy(['id_producer' => GlobalParam::getCurrentProducerId()]) |
|
|
|
|
|
->andWhere('user_producer.credit < 0') |
|
|
|
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
// paramètres |
|
|
|
|
|
$producer = GlobalParam::getCurrentProducer(); |
|
|
|
|
|
|
|
|
|
|
|
$productsCount = Product::searchCount(); |
|
|
|
|
|
$pointsSaleCount = PointSale::searchCount(); |
|
|
|
|
|
|
|
|
|
|
|
return $this->render('index', [ |
|
|
|
|
|
'distributionsArray' => $distributionsArray, |
|
|
|
|
|
'ordersArray' => $ordersArray, |
|
|
|
|
|
'usersArray' => $usersArray, |
|
|
|
|
|
'usersNegativeCredit' => $usersNegativeCredit, |
|
|
|
|
|
'producer' => $producer, |
|
|
|
|
|
'productsCount' => $productsCount, |
|
|
|
|
|
'pointsSaleCount' => $pointsSaleCount |
|
|
|
|
|
]); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Affiche la page de connexion. |
|
|
|
|
|
* |
|
|
|
|
|
* @return mixed |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionLogin() |
|
|
|
|
|
{ |
|
|
|
|
|
if (!\Yii::$app->user->isGuest) { |
|
|
|
|
|
return $this->goHome(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Change le producteur courant de l'utilisateur connecté. |
|
|
|
|
|
* Permet de passer d'un producteur à un autre en tant qu'administrateur. |
|
|
|
|
|
* |
|
|
|
|
|
* @param integer $id |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionChangeProducer($id) |
|
|
|
|
|
{ |
|
|
|
|
|
Yii::$app->user->identity->id_producer = $id; |
|
|
|
|
|
Yii::$app->user->identity->save(); |
|
|
|
|
|
$this->redirect(['site/index']); |
|
|
|
|
|
|
|
|
$model = new LoginForm(); |
|
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->login()) { |
|
|
|
|
|
return $this->goBack(); |
|
|
|
|
|
} else { |
|
|
|
|
|
return $this->render('login', [ |
|
|
|
|
|
'model' => $model, |
|
|
|
|
|
]); |
|
|
} |
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Déconnecte l'utilisateur et le redirige à la page d'accueil. |
|
|
|
|
|
* |
|
|
|
|
|
* @return mixed |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionLogout() |
|
|
|
|
|
{ |
|
|
|
|
|
Yii::$app->user->logout(); |
|
|
|
|
|
|
|
|
|
|
|
return $this->goHome(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Change le producteur courant de l'utilisateur connecté. |
|
|
|
|
|
* Permet de passer d'un producteur à un autre en tant qu'administrateur. |
|
|
|
|
|
* |
|
|
|
|
|
* @param integer $id |
|
|
|
|
|
*/ |
|
|
|
|
|
public function actionChangeProducer($id) |
|
|
|
|
|
{ |
|
|
|
|
|
Yii::$app->user->identity->id_producer = $id; |
|
|
|
|
|
Yii::$app->user->identity->save(); |
|
|
|
|
|
$this->redirect(['site/index']); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |