| Current Path : /var/www/html/crm/controllers/ |
| Current File : /var/www/html/crm/controllers/ContactController.php |
<?php
namespace app\controllers;
use Yii;
use app\models\Contact;
use app\models\ContactSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use Ramsey\Uuid\Uuid;
use Ramsey\Uuid\Exception\UnsatisfiedDependencyException;
use yii\helpers\Url;
use app\models\Log;
use app\models\LogSearch;
use app\models\Vendor;
use app\models\Company;
use app\models\Customer;
/**
* ContactController implements the CRUD actions for Contact model.
*/
class ContactController extends Controller {
public $menu_id = 43;
/**
* {@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 Contact models.
* @return mixed
*/
public function actionIndex() {
$searchModel = new ContactSearch();
$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 Contact model.
* @param double $id
* @param string $uuid
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id, $uuid) {
return $this->render('view', [
'model' => $this->findModel($id, $uuid),
]);
}
/**
* Creates a new Contact model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate() {
$model = new Contact();
$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())) {
if ($model->save()) {
$Log = new Log();
$Log->insertlog($this->menu_id, 'create', $model->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('contact/index') . "';});");
}
}
return $this->render('create', ['model' => $model, 'menu_id' => $this->menu_id]);
}
/**
* Updates an existing Contact model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param double $id
* @param string $uuid
* @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;
if ($model->load(Yii::$app->request->post())) {
if ($model->save()) {
$Log = new Log();
$Log->insertlog($this->menu_id, 'update', $model->uuid);
if ($model->main_contact == 1) {
if ($model->type == 'ctc_com') {
$modelUpdate = Company::findOne($model->data_id);
}
if ($model->type == 'ctc_vendor') {
$modelUpdate = Vendor::findOne($model->data_id);
$modelUpdate->contact_fax = $model->fax;
}
if ($model->type == 'ctc_cust') {
$modelUpdate = Customer::findOne($model->data_id);
$modelUpdate->contact_fax = $model->fax;
}
if ($modelUpdate !== null) {
$modelUpdate->contact_name = $model->name;
$modelUpdate->contact_email = $model->email;
$modelUpdate->contact_no = $model->phone;
$modelUpdate->save();
}
}
$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('contact/index') . "';});");
}
}
return $this->render('update', ['model' => $model, 'menu_id' => $this->menu_id]);
}
/**
* Deletes an existing Contact model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param double $id
* @param string $uuid
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionDelete($id, $uuid) {
$this->findModel($id, $uuid)->delete();
return $this->redirect(['index']);
}
/**
* Finds the Contact model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param double $id
* @param string $uuid
* @return Contact the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($uuid) {
if (($model = Contact::findOne(['uuid' => $uuid])) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
public function actionGetdatalist() {
$type = $_POST['type'];
$output = '';
if ($type == 'ctc_com')
$query = Company::find();
if ($type == 'ctc_vendor')
$query = Vendor::find();
if ($type == 'ctc_cust')
$query = Customer::find();
$query->orderBy(['name' => SORT_ASC]);
$model = $query->all();
if (!empty($model)) {
foreach ($model as $row) {
$output.= '<option value="' . $row->id . '">' . $row->name . '</option>';
}
}
return $output;
}
public function actionGetcontactlist() {
$output = '<table class="table table-bordered table-striped">
<thead class="thead-dark">
<tr>
<th width="1%">#</th>
<th>Name</th>
<th>Position</th>
<th>Phone No.</th>
<th width="1%"></th>
</tr>
</thead>
<tbody>';
$type = $_POST['type'];
$data_id = $_POST['data_id'];
$model = Contact::find()->where(['type' => $type, 'data_id' => $data_id])->orderBy(['name' => SORT_ASC])->all();
if (!empty($model)) {
$count = 0;
foreach ($model as $row) {
$count++;
$val = $row->name . "<->" . $row->phone;
$output.='<tr>
<td style="vertical-align:middle;">' . $count . '</td>
<td style="vertical-align:middle;">' . $row->name . '</td>
<td style="vertical-align:middle;">' . $row->position . '</td>
<td style="vertical-align:middle;">' . $row->phone . '</td>
<td style="vertical-align:middle;"><button class="btn btn-sm btn-outline-brand" onclick="changecontact(\'' . $val . '\')">Choose</button></td>
</tr>';
}
} else {
$output.='<tr><td colspan="5">No record found</td></tr>';
}
$output.='</tbody></table>';
return $output;
}
}