add history of changes to all entitys

This commit is contained in:
vladrigos 2020-08-06 13:19:20 +03:00
parent 812bb2b23a
commit 6aff5567c4
16 changed files with 174 additions and 19 deletions

View File

@ -73,9 +73,17 @@ class BalanceController extends Controller
], ],
]); ]);
$changeDataProvider = new ActiveDataProvider([
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
'pagination' => [
'pageSize' => 200,
]
]);
return $this->render('view',[ return $this->render('view',[
'model' => $this->findModel($id), 'model' => $this->findModel($id),
'dataProviderF' => $dataProviderF 'dataProviderF' => $dataProviderF,
'changeDataProvider' => $changeDataProvider,
]); ]);
} }

View File

@ -20,5 +20,12 @@ use yii\helpers\ArrayHelper;
*/ */
class Balance extends \common\models\Balance class Balance extends \common\models\Balance
{ {
public function behaviors()
{
return [
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
];
}
} }

View File

@ -54,4 +54,16 @@ $this->params['breadcrumbs'][] = $this->title;
], ],
]); ?> ]); ?>
<h2>История изменений</h2>
<?= GridView::widget([
'dataProvider' => $changeDataProvider,
'columns' => [
'label',
'old_value',
'new_value',
'created_at',
],
]); ?>
</div> </div>

View File

@ -38,6 +38,9 @@ class CompanyController extends Controller
], ],
], ],
], ],
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
]; ];
} }
@ -72,9 +75,18 @@ class CompanyController extends Controller
'pageSize' => 200, 'pageSize' => 200,
], ],
]); ]);
$changeDataProvider = new ActiveDataProvider([
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
'pagination' => [
'pageSize' => 200,
]
]);
return $this->render('view', [ return $this->render('view', [
'model' => $this->findModel($id), 'model' => $this->findModel($id),
'dataProviderF' => $dataProviderF 'dataProviderF' => $dataProviderF,
'changeDataProvider' => $changeDataProvider,
]); ]);
} }

View File

@ -43,6 +43,15 @@ class Company extends \common\models\Company
} }
} }
public function behaviors()
{
return [
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
];
}
public function afterSave($insert, $changedAttributes) public function afterSave($insert, $changedAttributes)
{ {
$post = \Yii::$app->request->post('Company'); $post = \Yii::$app->request->post('Company');

View File

@ -50,4 +50,16 @@ $this->params['breadcrumbs'][] = $this->title;
], ],
]); ?> ]); ?>
<h2>История изменений</h2>
<?= GridView::widget([
'dataProvider' => $changeDataProvider,
'columns' => [
'label',
'old_value',
'new_value',
'created_at',
],
]); ?>
</div> </div>

View File

@ -6,6 +6,7 @@ use backend\modules\holiday\models\Holiday;
use backend\modules\holiday\models\HolidaySearch; use backend\modules\holiday\models\HolidaySearch;
use common\classes\Debug; use common\classes\Debug;
use Yii; use Yii;
use yii\data\ActiveDataProvider;
use yii\filters\AccessControl; use yii\filters\AccessControl;
use yii\filters\VerbFilter; use yii\filters\VerbFilter;
use yii\web\Controller; use yii\web\Controller;
@ -52,8 +53,16 @@ class HolidayController extends Controller
{ {
$model = $this->findModel($id); $model = $this->findModel($id);
$changeDataProvider = new ActiveDataProvider([
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
'pagination' => [
'pageSize' => 200,
]
]);
return $this->render('view', [ return $this->render('view', [
'model' => $model, 'model' => $model,
'changeDataProvider' => $changeDataProvider,
]); ]);
} }

View File

@ -4,5 +4,12 @@ namespace backend\modules\holiday\models;
class Holiday extends \common\models\Holiday class Holiday extends \common\models\Holiday
{ {
public function behaviors()
{
return [
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
];
}
} }

View File

@ -25,8 +25,7 @@ $this->params['breadcrumbs'][] = $this->title;
'attributes' => [ 'attributes' => [
[ [
'label' => 'ФИО', 'label' => 'ФИО',
'value' => function($model) 'value' => function ($model) {
{
return $model->users->fio; return $model->users->fio;
}, },
], ],
@ -34,3 +33,15 @@ $this->params['breadcrumbs'][] = $this->title;
'dt_end' 'dt_end'
], ],
]) ?> ]) ?>
<h2>История изменений</h2>
<?= \yii\grid\GridView::widget([
'dataProvider' => $changeDataProvider,
'columns' => [
'label',
'old_value',
'new_value',
'created_at',
],
]);
?>

View File

@ -91,9 +91,17 @@ class NotesController extends Controller
], ],
]); ]);
$changeDataProvider = new ActiveDataProvider([
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
'pagination' => [
'pageSize' => 200,
]
]);
return $this->render('view', [ return $this->render('view', [
'model' => Note::findOne($id), 'model' => Note::findOne($id),
'additionalDataProvider' => $additionalDataProvider 'additionalDataProvider' => $additionalDataProvider,
'changeDataProvider' => $changeDataProvider,
]); ]);
} }

View File

@ -44,6 +44,15 @@ class Note extends \common\models\Note
} }
} }
public function behaviors()
{
return [
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
];
}
public function afterSave($insert, $changedAttributes) public function afterSave($insert, $changedAttributes)
{ {
$post = \Yii::$app->request->post('Note'); $post = \Yii::$app->request->post('Note');

View File

@ -52,4 +52,16 @@ $this->params['breadcrumbs'][] = $this->title;
], ],
]); ?> ]); ?>
<h2>История изменений</h2>
<?= GridView::widget([
'dataProvider' => $changeDataProvider,
'columns' => [
'label',
'old_value',
'new_value',
'created_at',
],
]); ?>
</div> </div>

View File

@ -98,11 +98,19 @@ class ProjectController extends Controller
], ],
]); ]);
$changeDataProvider = new ActiveDataProvider([
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
'pagination' => [
'pageSize' => 200,
]
]);
return $this->render('view', [ return $this->render('view', [
'model' => $model, 'model' => $model,
'modelFildValue' => $dataProvider, 'modelFildValue' => $dataProvider,
'modelUser' => $dataProviderUser, 'modelUser' => $dataProviderUser,
'jobsProvider' => $jobsProvider, 'jobsProvider' => $jobsProvider,
'changeDataProvider' => $changeDataProvider,
]); ]);
} }

View File

@ -54,6 +54,15 @@ class Project extends \common\models\Project
} }
} }
public function behaviors()
{
return [
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
];
}
public function afterSave($insert, $changedAttributes) public function afterSave($insert, $changedAttributes)
{ {
$post = \Yii::$app->request->post('Project'); $post = \Yii::$app->request->post('Project');

View File

@ -104,4 +104,16 @@ $this->params['breadcrumbs'][] = $this->title;
], ],
]); ?> ]); ?>
<?php endif; ?> <?php endif; ?>
<h2>История изменений</h2>
<?= GridView::widget([
'dataProvider' => $changeDataProvider,
'columns' => [
'label',
'old_value',
'new_value',
'created_at',
],
]); ?>
</div> </div>

View File

@ -25,4 +25,14 @@ class ChangeHistory extends \yii\db\ActiveRecord
{ {
} }
public function afterFind()
{
parent::afterFind(); // TODO: Change the autogenerated stub
//milliseconds to date
if ($this->field_name == 'dt_start' || $this->field_name == 'dt_end' || $this->field_name == 'dt_add') {
$this->old_value = date('d-m-Y', $this->old_value);
$this->new_value = date('d-m-Y', $this->new_value);
}
}
} }