@@ -39,6 +39,7 @@ | |||
namespace backend\controllers; | |||
use common\models\User ; | |||
use common\helpers\GlobalParam ; | |||
class DocumentController extends BackendController | |||
{ | |||
@@ -72,7 +73,7 @@ class DocumentController extends BackendController | |||
if ($model->load(Yii::$app->request->post())) { | |||
$model->id_producer = Producer::getId() ; | |||
$model->id_producer = GlobalParam::getCurrentProducerId() ; | |||
$model->reference = $model->generateReference() ; | |||
if($model->save()) { |
@@ -229,7 +229,7 @@ class UserController extends BackendController | |||
$model->setPassword($password); | |||
$model->save() ; | |||
$producer = Producer::getCurrent(); | |||
$producer = GlobalParam::getCurrentProducer() ; | |||
Yii::$app->mailer->compose(); | |||
$mail = Yii::$app->mailer->compose( | |||
['html' => 'newPasswordUserAdmin-html', 'text' => 'newPasswordUserAdmin-text'], ['user' => $model, 'producer' => $producer, 'password' => $password] |
@@ -61,7 +61,7 @@ class InvoiceSearch extends Invoice | |||
$query = Invoice::find() | |||
->with($optionsSearch['with']) | |||
->joinWith($optionsSearch['join_with'], true) | |||
->where(['invoice.id_producer' => Producer::getId()]) | |||
->where(['invoice.id_producer' => GlobalParam::getCurrentProducerId()]) | |||
->orderBy('invoice.reference DESC') | |||
; | |||