Преглед на файлове

Anthély : rappatriement clients depuis le compte Anthéli #793

refactoring
Guillaume преди 1 година
родител
ревизия
66809e9684
променени са 1 файла, в които са добавени 23 реда и са изтрити 0 реда
  1. +23
    -0
      backend/controllers/ProducerAdminController.php

+ 23
- 0
backend/controllers/ProducerAdminController.php Целия файл

@@ -38,6 +38,7 @@ termes.

namespace backend\controllers;

use common\helpers\GlobalParam;
use Yii;
use common\models\User;
use yii\web\NotFoundHttpException;
@@ -129,6 +130,28 @@ class ProducerAdminController extends BackendController
}
}

public function actionUserTransfer($fromProducerId, $toProducerId)
{
$fromProducerId = (int) $fromProducerId;
$toProducerId = (int) $toProducerId;
$count = 0;
$usersArray = User::findBy(['id_producer' => $fromProducerId])->all();

foreach($usersArray as $user) {
Producer::addUser($user->id, $toProducerId);
$count ++;
}

if($count) {
Yii::$app->getSession()->setFlash('success', $count.' clients importés du producteur #'.$fromProducerId.' vers le producteur #'.$toProducerId.'.');
}
else {
Yii::$app->getSession()->setFlash('error', 'Aucun client à importer.');
}

return $this->redirect(['producer-admin/index']);
}

/**
* Génère la facture mensuelle d'un producteur.
*

Loading…
Отказ
Запис