guild/backend/modules/document/controllers/DocumentController.php

211 lines
5.8 KiB
PHP
Raw Normal View History

2022-11-08 18:01:42 +03:00
<?php
namespace backend\modules\document\controllers;
2022-12-01 14:11:29 +03:00
use backend\modules\company\models\CompanyManager;
2022-11-08 18:01:42 +03:00
use backend\modules\document\models\Document;
use backend\modules\document\models\DocumentSearch;
2022-11-16 14:24:52 +03:00
use common\services\DocumentService;
use Yii;
use yii\filters\VerbFilter;
2022-11-08 18:01:42 +03:00
use yii\web\Controller;
use yii\web\NotFoundHttpException;
2022-12-01 14:11:29 +03:00
use yii\web\Response;
2022-11-08 18:01:42 +03:00
/**
* DocumentController implements the CRUD actions for Document model.
*/
class DocumentController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all Document models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new DocumentSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single Document model.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id)
{
return $this->render('view', [
'model' => $this->findModel($id),
]);
}
/**
* Creates a new Document model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new Document();
2022-11-16 14:24:52 +03:00
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
DocumentService::generateDocumentBody($model);
2022-11-10 16:00:43 +03:00
$model->save(false);
2022-11-08 18:01:42 +03:00
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('create', [
'model' => $model,
]);
}
/**
* Updates an existing Document model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('update', [
'model' => $model,
]);
}
/**
* Deletes an existing Document model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionDelete($id)
{
$this->findModel($id)->delete();
return $this->redirect(['index']);
}
/**
* Finds the Document model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Document the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = Document::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
2022-11-10 16:00:43 +03:00
public function actionDownload($id): string
{
return $this->render('download', [
'model' => Document::findOne($id)
]);
}
/**
* @param integer $id
* @throws NotFoundHttpException
*/
2022-11-16 14:24:52 +03:00
public function actionUpdateDocumentBody($id): string
2022-11-10 16:00:43 +03:00
{
$model = $this->findModel($id);
$model->scenario = $model::SCENARIO_UPDATE_DOCUMENT_BODY;
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
$model->updated_at = date('Y-m-d h:i:s');
$model->save();
}
return $this->render('download', [
'model' => $model
]);
}
2022-11-16 14:24:52 +03:00
public function actionDownloadPdf($id): string
2022-11-10 16:00:43 +03:00
{
2022-11-16 14:24:52 +03:00
$model = $this->findModel($id);
$model->scenario = $model::SCENARIO_DOWNLOAD_DOCUMENT;
if ($model->validate()) {
DocumentService::downloadPdf($id);
2022-11-10 16:00:43 +03:00
}
2022-11-16 14:24:52 +03:00
Yii::$app->session->setFlash('error', $model->getFirstError('body'));
return $this->render('download', [
'model' => Document::findOne($id)
]);
2022-11-10 16:00:43 +03:00
}
2022-11-16 14:24:52 +03:00
public function actionDownloadDocx($id): string
2022-11-10 16:00:43 +03:00
{
2022-11-16 14:24:52 +03:00
$model = $this->findModel($id);
$model->scenario = $model::SCENARIO_DOWNLOAD_DOCUMENT;
2022-11-10 16:00:43 +03:00
2022-11-16 14:24:52 +03:00
if ($model->validate()) {
2022-12-01 14:11:29 +03:00
DocumentService::downloadDocx($id);
2022-11-16 14:24:52 +03:00
}
2022-11-10 16:00:43 +03:00
2022-11-16 14:24:52 +03:00
Yii::$app->session->setFlash('error', $model->getFirstError('body'));
return $this->render('download', [
'model' => Document::findOne($id)
]);
2022-11-10 16:00:43 +03:00
}
2022-12-01 14:11:29 +03:00
public function actionManagers(): array
{
Yii::$app->response->format = Response::FORMAT_JSON;
if (isset($_POST['depdrop_parents'])) {
$parents = $_POST['depdrop_parents'];
if ($parents != null) {
$company_id = $parents[0];
/** @var CompanyManager[] $managers */
$managers = CompanyManager::getManagersByCompany($company_id);
$formattedManagersArr = array();
foreach ($managers as $manager){
$formattedManagersArr[] = array('id' => $manager->id, 'name' => $manager->userCard->fio);
}
return ['output'=>$formattedManagersArr, 'selected'=>''];
}
}
return ['output'=>'', 'selected'=>''];
}
2022-11-08 18:01:42 +03:00
}