| Current Path : /var/www/html/crm/controllers/ |
| Current File : /var/www/html/crm/controllers/CompanyController.php |
<?php
namespace app\controllers;
use Yii;
use Ramsey\Uuid\Uuid;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;
use app\models\Company;
use app\models\CompanySearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\helpers\Url;
use app\models\Log;
use app\models\LogSearch;
use yii\web\UploadedFile;
use yii\helpers\ArrayHelper;
use app\models\Contact;
/**
* CompanyController implements the CRUD actions for Company model.
*/
class CompanyController extends Controller {
public $menu_id = 36;
/**
* {@inheritdoc}
*/
public function behaviors() {
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['post'],
],
],
'access' => [
'class' => \yii\filters\AccessControl::className(),
'only' => ['index', 'create', 'update', 'view'],
'rules' => [
// allow authenticated users
[
'allow' => true,
'roles' => ['@'],
],
// everything else is denied
],
],
];
}
/**
* Lists all Company models.
* @return mixed
*/
public function actionIndex() {
$searchModel = new CompanySearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider, 'menu_id' => $this->menu_id,]);
}
public function actionLog($uuid) {
$searchModel = new LogSearch();
$searchModel->menu_id = $this->menu_id;
$searchModel->data_uuid = $uuid;
$dataProvider = $searchModel->log(Yii::$app->request->queryParams);
return $this->render('log', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider, 'menu_id' => $this->menu_id]);
}
/**
* Displays a single Company 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 Company model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate() {
$model = new Company();
$model->scenario = 'create';
$model->created_dt = date("Y-m-d H:i:s");
$model->created_by = Yii::$app->user->identity->id;
$model->updated_dt = date("Y-m-d H:i:s");
$model->updated_by = Yii::$app->user->identity->id;
$model->uuid = Uuid::uuid4();
if ($model->load(Yii::$app->request->post())) {
$model->file = UploadedFile::getInstance($model, 'file');
if (!empty($model->file)) {
$file_name = $model->short_code . '_' . date("YmdHis") . '.' . $model->file->extension;
if ($model->file->saveAs('uploads/' . $file_name))
$model->logo = $file_name;
}
$model->stamp = UploadedFile::getInstance($model, 'stamp');
if (!empty($model->stamp)) {
$stamp_name = $model->short_code . '_stamp_' . date("YmdHis") . '.' . $model->stamp->extension;
if ($model->stamp->saveAs('uploads/' . $stamp_name))
$model->stamp = $stamp_name;
}
if ($model->save()) {
$Log = new Log();
$Log->insertlog($this->menu_id, 'create', $model->uuid);
//add into table contact & log
$modelContact = new Contact();
$modelContact->uuid = Uuid::uuid4();
$modelContact->type = 'ctc_com';
$modelContact->data_id = $model->id;
$modelContact->name = $model->contact_name;
$modelContact->email = $model->contact_email;
$modelContact->phone = $model->contact_no;
$modelContact->office_no = $model->contact_officeno;
$modelContact->main_contact = '1';
$modelContact->created_dt = date("Y-m-d H:i:s");
$modelContact->created_by = Yii::$app->user->identity->id;
$modelContact->updated_dt = date("Y-m-d H:i:s");
$modelContact->updated_by = Yii::$app->user->identity->id;
if ($modelContact->save()) {
$Log = new Log();
$Log->insertlog(43, 'create', $modelContact->uuid);
}
$this->getView()->registerJs("swal.fire({position: 'center-center',type: 'success',title: 'Data has been saved',showConfirmButton: false,timer: 1500,}).then(function(result){window.location = '" . Url::toRoute('company/index') . "';});");
}
}
return $this->render('create', ['model' => $model, 'menu_id' => $this->menu_id]);
}
/**
* Updates an existing Company 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($uuid) {
$model = $this->findModel($uuid);
$model->updated_dt = date("Y-m-d H:i:s");
$model->updated_by = Yii::$app->user->identity->id;
$original_stamp = $model->stamp;
if ($model->load(Yii::$app->request->post())) {
$model->file = UploadedFile::getInstance($model, 'file');
if (!empty($model->file)) {
$file_name = $model->short_code . '_' . date("YmdHis") . '.' . $model->file->extension;
if ($model->file->saveAs('uploads/' . $file_name))
$model->logo = $file_name;
}
$model->stamp = UploadedFile::getInstance($model, 'stamp');
if (!empty($model->stamp)) {
$stamp_name = $model->short_code . '_stamp_' . date("YmdHis") . '.' . $model->stamp->extension;
if ($model->stamp->saveAs('uploads/' . $stamp_name))
$model->stamp = $stamp_name;
}else{
$model->stamp = $original_stamp;
}
if ($model->save()) {
$Log = new Log();
$Log->insertlog($this->menu_id, 'update', $model->uuid);
//update into table contact & log
if (($modelContact = Contact::findOne(['type' => 'ctc_com', 'data_id' => $model->id, 'main_contact' => '1'])) !== null) {
$modelContact->name = $model->contact_name;
$modelContact->email = $model->contact_email;
$modelContact->phone = $model->contact_no;
$modelContact->office_no = $model->contact_officeno;
$modelContact->updated_dt = date("Y-m-d H:i:s");
$modelContact->updated_by = Yii::$app->user->identity->id;
if ($modelContact->save()) {
$Log = new Log();
$Log->insertlog(43, 'update', $modelContact->uuid);
}
}
$this->getView()->registerJs("swal.fire({position: 'center-center',type: 'success',title: 'Data has been saved',showConfirmButton: false,timer: 1500,}).then(function(result){window.location = '" . Url::toRoute('company/index') . "';});");
}
}
return $this->render('update', ['model' => $model, 'menu_id' => $this->menu_id]);
}
/**
* Deletes an existing Company 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 Company model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Company the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($uuid) {
if (($model = Company::findOne(['uuid' => $uuid])) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}