Finish kulcs
This commit is contained in:
commit
bb5978c1df
28
backend/assets/PendingRequestAsset.php
Normal file
28
backend/assets/PendingRequestAsset.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace backend\assets;
|
||||
|
||||
use yii\web\AssetBundle;
|
||||
|
||||
/**
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
class PendingRequestAsset extends AssetBundle
|
||||
{
|
||||
public $basePath = '@webroot';
|
||||
public $baseUrl = '@web';
|
||||
public $css = [
|
||||
];
|
||||
public $js = [
|
||||
'js/index.pending.js',
|
||||
];
|
||||
public $depends = [
|
||||
'backend\assets\AppAsset',
|
||||
];
|
||||
}
|
||||
@ -103,6 +103,20 @@ class AdminMenuStructure{
|
||||
$this->menuItems[] = ['label' => 'Pénzügy', 'url' => $this->emptyUrl,
|
||||
'items' => $items
|
||||
];
|
||||
/////////////////////////////
|
||||
// Tartós megbízások
|
||||
/////////////////////////////
|
||||
$items = [];
|
||||
$items[] = ['label' => 'Megbízások', 'url' => ['/ticket-installment-request/index' , 'TicketInstallmentRequestSearch[start]' =>$today,'TicketInstallmentRequestSearch[end]' => $tomorrow ] ];
|
||||
$items[] = ['label' => 'Giro kötegbe jelölés', 'url' => ['/ticket-installment-request/pending' , 'TicketInstallmentRequestSearchPending[end]' => $tomorrow ] ];
|
||||
$items[] = ['label' => 'GIRO köteg létrehozás', 'url' => ['/ticket-installment-request/download-giro' ] ];
|
||||
$items[] = ['label' => 'GIRO kötegek', 'url' => ['/ugiro/index' ] ];
|
||||
// $items[] = ['label' => 'Bevétel', 'url' => ['/transfer/summary' , 'TransferSummarySearch[start]' =>$today,'TransferSummarySearch[end]' => $tomorrow ] ];
|
||||
// $items[] = ['label' => 'Napi bevételek', 'url' => ['/transfer/list', 'TransferListSearch[start]' =>$todayDatetime,'TransferListSearch[end]' => $tomorrowDatetime ] ];
|
||||
// $items[] = ['label' => 'Kassza müveletek', 'url' => ['/account-state/index'] ];
|
||||
$this->menuItems[] = ['label' => 'Tartós megbízások', 'url' => $this->emptyUrl,
|
||||
'items' => $items
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
|
||||
175
backend/controllers/TicketInstallmentRequestController.php
Normal file
175
backend/controllers/TicketInstallmentRequestController.php
Normal file
@ -0,0 +1,175 @@
|
||||
<?php
|
||||
|
||||
namespace backend\controllers;
|
||||
|
||||
use Yii;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use backend\models\TicketInstallmentRequestSearch;
|
||||
use yii\web\Controller;
|
||||
use yii\web\NotFoundHttpException;
|
||||
use yii\filters\VerbFilter;
|
||||
use backend\models\TicketInstallmentRequestSearchPending;
|
||||
use backend\models\TicketInstallmentMarkForSendForm;
|
||||
use backend\models\TicketInstallmentRequestSearchDownloadGiro;
|
||||
use backend\models\GiroKotegForm;
|
||||
|
||||
/**
|
||||
* TicketInstallmentRequestController implements the CRUD actions for TicketInstallmentRequest model.
|
||||
*/
|
||||
class TicketInstallmentRequestController extends Controller
|
||||
{
|
||||
public function behaviors()
|
||||
{
|
||||
return [
|
||||
'verbs' => [
|
||||
'class' => VerbFilter::className(),
|
||||
'actions' => [
|
||||
'delete' => ['post'],
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists all TicketInstallmentRequest models.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionIndex()
|
||||
{
|
||||
$searchModel = new TicketInstallmentRequestSearch();
|
||||
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
||||
|
||||
return $this->render('index', [
|
||||
'searchModel' => $searchModel,
|
||||
'dataProvider' => $dataProvider,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists pending TicketInstallmentRequest models.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionPending()
|
||||
{
|
||||
$model = new TicketInstallmentMarkForSendForm();
|
||||
if ($model->load(Yii::$app->request->post()) ) {
|
||||
$model->markForSend();
|
||||
}
|
||||
|
||||
$searchModel = new TicketInstallmentRequestSearchPending();
|
||||
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
||||
|
||||
return $this->render('index_pending', [
|
||||
'searchModel' => $searchModel,
|
||||
'dataProvider' => $dataProvider,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists pending TicketInstallmentRequest models.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionDownloadGiro()
|
||||
{
|
||||
$model = new GiroKotegForm();
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) ) {
|
||||
$model->createKoteg();
|
||||
return $this->redirect(['ugiro/view', 'id' => $model->koteg->id_ugiro]);
|
||||
}
|
||||
|
||||
$searchModel = new TicketInstallmentRequestSearchDownloadGiro();
|
||||
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
||||
|
||||
$model->action = "create";
|
||||
return $this->render('index_download_giro', [
|
||||
'searchModel' => $searchModel,
|
||||
'dataProvider' => $dataProvider,
|
||||
'model' => $model,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays a single TicketInstallmentRequest model.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionView($id)
|
||||
{
|
||||
return $this->render('view', [
|
||||
'model' => $this->findModel($id),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new TicketInstallmentRequest model.
|
||||
* If creation is successful, the browser will be redirected to the 'view' page.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionCreate()
|
||||
{
|
||||
$model = new TicketInstallmentRequest();
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
||||
return $this->redirect(['view', 'id' => $model->id_ticket_installment_request]);
|
||||
} else {
|
||||
return $this->render('create', [
|
||||
'model' => $model,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates an existing TicketInstallmentRequest model.
|
||||
* If update is successful, the browser will be redirected to the 'view' page.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionUpdate($id)
|
||||
{
|
||||
$model = $this->findModel($id);
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
||||
return $this->redirect(['view', 'id' => $model->id_ticket_installment_request]);
|
||||
} else {
|
||||
return $this->render('update', [
|
||||
'model' => $model,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes an existing TicketInstallmentRequest model.
|
||||
* If deletion is successful, the browser will be redirected to the 'index' page.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionDelete($id)
|
||||
{
|
||||
$this->findModel($id)->delete();
|
||||
|
||||
return $this->redirect(['index']);
|
||||
}
|
||||
|
||||
public function actionTest( )
|
||||
{
|
||||
|
||||
return $this->render('test');
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the TicketInstallmentRequest model based on its primary key value.
|
||||
* If the model is not found, a 404 HTTP exception will be thrown.
|
||||
* @param integer $id
|
||||
* @return TicketInstallmentRequest the loaded model
|
||||
* @throws NotFoundHttpException if the model cannot be found
|
||||
*/
|
||||
protected function findModel($id)
|
||||
{
|
||||
if (($model = TicketInstallmentRequest::findOne($id)) !== null) {
|
||||
return $model;
|
||||
} else {
|
||||
throw new NotFoundHttpException('The requested page does not exist.');
|
||||
}
|
||||
}
|
||||
}
|
||||
121
backend/controllers/UgiroController.php
Normal file
121
backend/controllers/UgiroController.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
|
||||
namespace backend\controllers;
|
||||
|
||||
use Yii;
|
||||
use common\models\Ugiro;
|
||||
use backend\models\UgiroSearch;
|
||||
use yii\web\Controller;
|
||||
use yii\web\NotFoundHttpException;
|
||||
use yii\filters\VerbFilter;
|
||||
|
||||
/**
|
||||
* UgiroController implements the CRUD actions for Ugiro model.
|
||||
*/
|
||||
class UgiroController extends Controller
|
||||
{
|
||||
public function behaviors()
|
||||
{
|
||||
return [
|
||||
'verbs' => [
|
||||
'class' => VerbFilter::className(),
|
||||
'actions' => [
|
||||
'delete' => ['post'],
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists all Ugiro models.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionIndex()
|
||||
{
|
||||
$searchModel = new UgiroSearch();
|
||||
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
||||
|
||||
return $this->render('index', [
|
||||
'searchModel' => $searchModel,
|
||||
'dataProvider' => $dataProvider,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays a single Ugiro model.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionView($id)
|
||||
{
|
||||
return $this->render('view', [
|
||||
'model' => $this->findModel($id),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new Ugiro model.
|
||||
* If creation is successful, the browser will be redirected to the 'view' page.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionCreate()
|
||||
{
|
||||
$model = new Ugiro();
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
||||
return $this->redirect(['view', 'id' => $model->id_ugiro]);
|
||||
} else {
|
||||
return $this->render('create', [
|
||||
'model' => $model,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates an existing Ugiro model.
|
||||
* If update is successful, the browser will be redirected to the 'view' page.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionUpdate($id)
|
||||
{
|
||||
$model = $this->findModel($id);
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
||||
return $this->redirect(['view', 'id' => $model->id_ugiro]);
|
||||
} else {
|
||||
return $this->render('update', [
|
||||
'model' => $model,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes an existing Ugiro model.
|
||||
* If deletion is successful, the browser will be redirected to the 'index' page.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionDelete($id)
|
||||
{
|
||||
$this->findModel($id)->delete();
|
||||
|
||||
return $this->redirect(['index']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the Ugiro model based on its primary key value.
|
||||
* If the model is not found, a 404 HTTP exception will be thrown.
|
||||
* @param integer $id
|
||||
* @return Ugiro the loaded model
|
||||
* @throws NotFoundHttpException if the model cannot be found
|
||||
*/
|
||||
protected function findModel($id)
|
||||
{
|
||||
if (($model = Ugiro::findOne($id)) !== null) {
|
||||
return $model;
|
||||
} else {
|
||||
throw new NotFoundHttpException('The requested page does not exist.');
|
||||
}
|
||||
}
|
||||
}
|
||||
2
backend/giro2710txt
Normal file
2
backend/giro2710txt
Normal file
@ -0,0 +1,2 @@
|
||||
01BESZED1A25366936T2442016012000015860025215371128 00000000BEEmovar
|
||||
030000000000000000000000
|
||||
2
backend/giro5459txt
Normal file
2
backend/giro5459txt
Normal file
@ -0,0 +1,2 @@
|
||||
01BESZED1A25366936T2442016012000015860025215371128 00000000BEEmovar
|
||||
030000000000000000000000
|
||||
2
backend/giro9077txt
Normal file
2
backend/giro9077txt
Normal file
@ -0,0 +1,2 @@
|
||||
01BESZED1A25366936T2442016012000015860025215371128 00000000BEEmovar
|
||||
030000000000000000000000
|
||||
2
backend/giro9550txt
Normal file
2
backend/giro9550txt
Normal file
@ -0,0 +1,2 @@
|
||||
01BESZED1A25366936T2442016012000015860025215371128 00000000BEEmovar
|
||||
030000000000000000000000
|
||||
@ -89,6 +89,9 @@ class CustomerCreate extends \common\models\Customer
|
||||
|
||||
[['phone', 'tax_number', 'country'], 'string', 'max' => 20],
|
||||
|
||||
[['bank_account'], 'string', 'max' => 24],
|
||||
[['bank_name'], 'string', 'max' => 100],
|
||||
|
||||
[['phone'], 'required', 'when' => function($model) {
|
||||
return !isset( $model->email ) || empty( $model->email ) ;
|
||||
} ,
|
||||
|
||||
@ -88,6 +88,8 @@ class CustomerUpdate extends \common\models\Customer
|
||||
[[ 'description', 'address'], 'string', 'max' => 255],
|
||||
|
||||
[['phone', 'tax_number', 'country'], 'string', 'max' => 20],
|
||||
[['bank_account'], 'string', 'max' => 24],
|
||||
[['bank_name'], 'string', 'max' => 100],
|
||||
|
||||
[['phone'], 'required', 'when' => function($model) {
|
||||
return !isset( $model->email ) || empty( $model->email ) ;
|
||||
|
||||
137
backend/models/GiroKotegForm.php
Normal file
137
backend/models/GiroKotegForm.php
Normal file
@ -0,0 +1,137 @@
|
||||
<?php
|
||||
|
||||
namespace backend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use common\models\Card;
|
||||
use common\models\Customer;
|
||||
use common\models\Ticket;
|
||||
use common\models\Account;
|
||||
use yii\web\UploadedFile;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use common\models\Ugiro;
|
||||
use common\components\giro\GiroBeszed;
|
||||
use yii\helpers\FileHelper;
|
||||
use yii\helpers\Inflector;
|
||||
use yii\helpers\BaseInflector;
|
||||
use common\models\UgiroRequestAssignment;
|
||||
|
||||
/**
|
||||
* ContactForm is the model behind the contact form.
|
||||
* @property \Yii\web\UploadedFile $file
|
||||
*/
|
||||
class GiroKotegForm extends Model{
|
||||
|
||||
public $action;
|
||||
|
||||
public $requests;
|
||||
public $content;
|
||||
public $koteg;
|
||||
public $success;
|
||||
|
||||
public function rules(){
|
||||
return [
|
||||
[['action'], 'safe']
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
public function createKoteg(){
|
||||
$this->readRequests();
|
||||
$this->success = true;
|
||||
if ( count( $this->requests ) > 0 ){
|
||||
$connection = \Yii::$app->db;
|
||||
$transaction = $connection->beginTransaction();
|
||||
|
||||
try {
|
||||
$this->createUGiroKoteg();
|
||||
$this->assignRequestsToUgiro();
|
||||
$this->changeRequestsStatusToSent();
|
||||
$this->generateFileContent();
|
||||
$this->saveFile();
|
||||
|
||||
if ($this->success) {
|
||||
$transaction->commit();
|
||||
\Yii::$app->session->setFlash('success',"Fájl létrehozva");
|
||||
return true;
|
||||
} else {
|
||||
$transaction->rollback();
|
||||
throw new NotFoundHttpException( "Hiba történt!");
|
||||
}
|
||||
|
||||
} catch (\Exception $e) {
|
||||
$transaction->rollback();
|
||||
throw $e;
|
||||
}
|
||||
}else{
|
||||
\Yii::$app->session->setFlash('danger', "Megbízások száma 0!");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function changeRequestsStatusToSent(){
|
||||
foreach ($this->requests as $request){
|
||||
$request->status = TicketInstallmentRequest::$STATUS_SENT;
|
||||
$this->success &= $request->save(false);
|
||||
}
|
||||
}
|
||||
|
||||
public function assignRequestsToUgiro(){
|
||||
foreach ($this->requests as $request){
|
||||
$assignment = new UgiroRequestAssignment();
|
||||
$assignment->id_request = $request->id_ticket_installment_request;
|
||||
$assignment->id_ugiro = $this->koteg->id_ugiro;
|
||||
$this->success &= $assignment->save(false);
|
||||
}
|
||||
}
|
||||
|
||||
public function createUGiroKoteg(){
|
||||
$this->koteg = new Ugiro();
|
||||
$this->koteg->status = Ugiro::$STATUS_SENT;
|
||||
$this->koteg->id_user = \Yii::$app->user->id;
|
||||
$this->success &= $this->koteg->save(false);
|
||||
}
|
||||
public function readRequests(){
|
||||
$this->requests = TicketInstallmentRequest::find()->andWhere(['status' => TicketInstallmentRequest::$STATUS_MARKED_TO_SEND])->all();
|
||||
}
|
||||
|
||||
public function generateFileContent(){
|
||||
$this->content = GiroBeszed::createFileContent($this->koteg->id_ugiro, $this->requests);
|
||||
}
|
||||
|
||||
public function saveFile( ) {
|
||||
// $data = static::transliterate($this->content);
|
||||
$data = $this->content;
|
||||
$data = iconv("utf-8","ASCII",$data);
|
||||
$path = Ugiro::$PATH_MEGBIZAS . DIRECTORY_SEPARATOR ."giro" . $this->koteg->id_ugiro."_". date('Ymd' ) .".txt";
|
||||
$filename = Yii::getAlias('@backend/web').DIRECTORY_SEPARATOR .$path;
|
||||
$dir = Yii::getAlias('@backend/web').DIRECTORY_SEPARATOR .Ugiro::$PATH_MEGBIZAS;
|
||||
$this->koteg->path = $path;
|
||||
$this->koteg->save(false);
|
||||
if(!FileHelper::createDirectory($dir)){
|
||||
throw new HttpException(500, 'Cannot create "'.$dir.'". Please check write permissions.');
|
||||
}
|
||||
$myfile = fopen($filename,'a');
|
||||
fwrite($myfile, $data);
|
||||
fclose($myfile);
|
||||
}
|
||||
|
||||
public static function transliterate($string)
|
||||
{
|
||||
// if (static::hasIntl()) {
|
||||
// return transliterator_transliterate(BaseInflector::$transliterator, $string);
|
||||
// } else {
|
||||
return str_replace(array_keys(BaseInflector::$transliteration), BaseInflector::$transliteration, $string);
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
* @return boolean if intl extension is loaded
|
||||
*/
|
||||
protected static function hasIntl()
|
||||
{
|
||||
return extension_loaded('intl');
|
||||
}
|
||||
}
|
||||
40
backend/models/TicketInstallmentMarkForSendForm.php
Normal file
40
backend/models/TicketInstallmentMarkForSendForm.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace backend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use common\models\Card;
|
||||
use common\models\Customer;
|
||||
use common\models\Ticket;
|
||||
use common\models\Account;
|
||||
use yii\web\UploadedFile;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
|
||||
/**
|
||||
* ContactForm is the model behind the contact form.
|
||||
* @property \Yii\web\UploadedFile $file
|
||||
*/
|
||||
class TicketInstallmentMarkForSendForm extends Model{
|
||||
|
||||
public $items;
|
||||
|
||||
public function rules(){
|
||||
return [
|
||||
['items', 'each', 'rule' => ['integer']],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function markForSend(){
|
||||
if ( $this->validate() && isset($this->items ) && is_array($this->items ) ){
|
||||
$updated = 0;
|
||||
$updated = TicketInstallmentRequest::updateAll(['status' => TicketInstallmentRequest::$STATUS_MARKED_TO_SEND ],['in', 'id_ticket_installment_request' , $this->items]);
|
||||
\Yii::$app->session->setFlash('success', $updated . " megbízás küldésre jelölve " );
|
||||
}else{
|
||||
\Yii::$app->session->setFlash('success', " Nem történt küldésre jelölés! " );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
130
backend/models/TicketInstallmentRequestSearch.php
Normal file
130
backend/models/TicketInstallmentRequestSearch.php
Normal file
@ -0,0 +1,130 @@
|
||||
<?php
|
||||
|
||||
namespace backend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use yii\data\ActiveDataProvider;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use yii\db\Query;
|
||||
use yii\data\ArrayDataProvider;
|
||||
|
||||
/**
|
||||
* TicketInstallmentRequestSearch represents the model behind the search form about `common\models\TicketInstallmentRequest`.
|
||||
*/
|
||||
class TicketInstallmentRequestSearch extends TicketInstallmentRequest
|
||||
{
|
||||
public $start;
|
||||
public $end;
|
||||
public $timestampStart;
|
||||
public $timestampEnd;
|
||||
public $processedStart;
|
||||
public $processedEnd;
|
||||
public $timestampProcessedStart;
|
||||
public $timestampProcessedEnd;
|
||||
public $sentStart;
|
||||
public $sentEnd;
|
||||
public $timestampSentStart;
|
||||
public $timestampSentEnd;
|
||||
|
||||
public $customer_name;
|
||||
public $id_ticket_type;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_ticket_installment_request', 'id_ticket', 'id_customer', 'status' ,'id_ticket_type'], 'integer'],
|
||||
[['customer_name' ], 'safe'],
|
||||
[[ 'start', ], 'date' , 'timestampAttribute' => 'timestampStart' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'end' , ], 'date' , 'timestampAttribute' => 'timestampEnd' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'processedStart', ], 'date' , 'timestampAttribute' => 'timestampProcessedStart' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'processedEnd' , ], 'date' , 'timestampAttribute' => 'timestampProcessedEnd' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'sentStart', ], 'date' , 'timestampAttribute' => 'timestampSentStart' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'sentEnd' , ], 'date' , 'timestampAttribute' => 'timestampSentEnd' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function scenarios()
|
||||
{
|
||||
// bypass scenarios() implementation in the parent class
|
||||
return Model::scenarios();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates data provider instance with search query applied
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return ActiveDataProvider
|
||||
*/
|
||||
public function search($params)
|
||||
{
|
||||
$query = new Query();
|
||||
|
||||
$this->load($params);
|
||||
|
||||
if (!$this->validate()) {
|
||||
// uncomment the following line if you do not want to return any records when validation fails
|
||||
// $query->where('0=1');
|
||||
}
|
||||
|
||||
$query->select([
|
||||
'ticket_installment_request.id_ticket_installment_request as request_id_ticket_installment_request', //id
|
||||
'ticket_installment_request.request_target_time_at as request_request_target_time_at',//target time
|
||||
'ticket_installment_request.money as request_money',//money
|
||||
'ticket_installment_request.status as request_status',//status
|
||||
'ticket_installment_request.request_sent_at as request_sent_at',//sent_at
|
||||
'ticket_installment_request.priority as request_priority',//sent_at
|
||||
'ticket_installment_request.request_processed_at as request_processed_at',//request_processed_at
|
||||
'customer.id_customer as customer_id_customer',//id_customer
|
||||
'customer.name as customer_name',//customer_name
|
||||
'ticket_type.name as ticket_type_name',//ticket_type_name
|
||||
'ticket.status as ticket_status',//ticket_status
|
||||
'ticket.start as ticket_start',//ticket_start
|
||||
'ticket.end as ticket_end',//ticket_send
|
||||
'ticket.id_ticket as ticket_id_ticket',//id_ticket
|
||||
]);
|
||||
$query->from("ticket_installment_request");
|
||||
$query->innerJoin("customer","customer.id_customer = ticket_installment_request.id_customer");
|
||||
$query->innerJoin("ticket","ticket.id_ticket = ticket_installment_request.id_ticket");
|
||||
$query->innerJoin("ticket_type","ticket.id_ticket_type = ticket_type.id_ticket_type");
|
||||
|
||||
$query->orderBy(["ticket_installment_request.request_target_time_at" => SORT_ASC]);
|
||||
|
||||
$query->andFilterWhere([
|
||||
'ticket_installment_request.id_ticket_installment_request' => $this->id_ticket_installment_request,
|
||||
'ticket.id_ticket' => $this->id_ticket,
|
||||
'customer.id_customer' => $this->id_customer,
|
||||
'ticket_installment_request.status' => $this->status,
|
||||
'ticket_type.id_ticket_type' => $this->id_ticket_type,
|
||||
]);
|
||||
$query->andFilterWhere(['like', 'customer.name', $this->customer_name]);
|
||||
//target time
|
||||
$query->andFilterWhere(['>=', 'ticket_installment_request.request_target_time_at', $this->timestampStart]);
|
||||
$query->andFilterWhere(['<', 'ticket_installment_request.request_target_time_at', $this->timestampEnd]);
|
||||
//sent time
|
||||
$query->andFilterWhere(['>=', 'ticket_installment_request.request_sent_at', $this->timestampSentStart]);
|
||||
$query->andFilterWhere(['<', 'ticket_installment_request.request_sent_at', $this->timestampSentEnd]);
|
||||
//processed time
|
||||
$query->andFilterWhere(['>=', 'ticket_installment_request.request_processed_at', $this->timestampProcessedStart]);
|
||||
$query->andFilterWhere(['<', 'ticket_installment_request.request_processed_at', $this->timestampProcessedEnd]);
|
||||
|
||||
$dataProvider = new ArrayDataProvider([
|
||||
'allModels' => $query->all(),
|
||||
// 'sort' => [
|
||||
// 'attributes' => ['id', 'username', 'email'],
|
||||
// ],
|
||||
// 'pagination' => [
|
||||
// 'pageSize' => 10,
|
||||
// ],
|
||||
]);
|
||||
|
||||
return $dataProvider;
|
||||
}
|
||||
}
|
||||
114
backend/models/TicketInstallmentRequestSearchDownloadGiro.php
Normal file
114
backend/models/TicketInstallmentRequestSearchDownloadGiro.php
Normal file
@ -0,0 +1,114 @@
|
||||
<?php
|
||||
|
||||
namespace backend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use yii\data\ActiveDataProvider;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use yii\db\Query;
|
||||
use yii\data\ArrayDataProvider;
|
||||
|
||||
/**
|
||||
* TicketInstallmentRequestSearch represents the model behind the search form about `common\models\TicketInstallmentRequest`.
|
||||
*/
|
||||
class TicketInstallmentRequestSearchDownloadGiro extends TicketInstallmentRequest
|
||||
{
|
||||
public $start;
|
||||
public $end;
|
||||
public $timestampStart;
|
||||
public $timestampEnd;
|
||||
|
||||
public $customer_name;
|
||||
public $id_ticket_type;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_ticket_installment_request', 'id_ticket', 'id_customer', 'status' ,'id_ticket_type'], 'integer'],
|
||||
[['customer_name' ], 'safe'],
|
||||
[[ 'start', ], 'date' , 'timestampAttribute' => 'timestampStart' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'end' , ], 'date' , 'timestampAttribute' => 'timestampEnd' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function scenarios()
|
||||
{
|
||||
// bypass scenarios() implementation in the parent class
|
||||
return Model::scenarios();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates data provider instance with search query applied
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return ActiveDataProvider
|
||||
*/
|
||||
public function search($params)
|
||||
{
|
||||
$query = new Query();
|
||||
|
||||
$this->load($params);
|
||||
|
||||
if (!$this->validate()) {
|
||||
// uncomment the following line if you do not want to return any records when validation fails
|
||||
// $query->where('0=1');
|
||||
}
|
||||
|
||||
$query->select([
|
||||
'ticket_installment_request.id_ticket_installment_request as request_id_ticket_installment_request', //id
|
||||
'ticket_installment_request.request_target_time_at as request_request_target_time_at',//target time
|
||||
'ticket_installment_request.money as request_money',//money
|
||||
'ticket_installment_request.status as request_status',//status
|
||||
'ticket_installment_request.request_sent_at as request_sent_at',//sent_at
|
||||
'ticket_installment_request.priority as request_priority',//sent_at
|
||||
'ticket_installment_request.request_processed_at as request_processed_at',//request_processed_at
|
||||
'customer.id_customer as customer_id_customer',//id_customer
|
||||
'customer.name as customer_name',//customer_name
|
||||
'ticket_type.name as ticket_type_name',//ticket_type_name
|
||||
'ticket.status as ticket_status',//ticket_status
|
||||
'ticket.start as ticket_start',//ticket_start
|
||||
'ticket.end as ticket_end',//ticket_send
|
||||
'ticket.id_ticket as ticket_id_ticket',//id_ticket
|
||||
]);
|
||||
$query->from("ticket_installment_request");
|
||||
$query->innerJoin("customer","customer.id_customer = ticket_installment_request.id_customer");
|
||||
$query->innerJoin("ticket","ticket.id_ticket = ticket_installment_request.id_ticket");
|
||||
$query->innerJoin("ticket_type","ticket.id_ticket_type = ticket_type.id_ticket_type");
|
||||
|
||||
$query->andWhere(['ticket_installment_request.status' => TicketInstallmentRequest::$STATUS_MARKED_TO_SEND]);
|
||||
|
||||
$query->orderBy(["ticket_installment_request.request_target_time_at" => SORT_ASC]);
|
||||
|
||||
// $query->andFilterWhere([
|
||||
// 'ticket_installment_request.id_ticket_installment_request' => $this->id_ticket_installment_request,
|
||||
// 'ticket.id_ticket' => $this->id_ticket,
|
||||
// 'customer.id_customer' => $this->id_customer,
|
||||
// 'ticket_installment_request.status' => $this->status,
|
||||
// 'ticket_type.id_ticket_type' => $this->id_ticket_type,
|
||||
// ]);
|
||||
// $query->andFilterWhere(['like', 'customer.name', $this->customer_name]);
|
||||
//target time
|
||||
// $query->andFilterWhere(['>=', 'ticket_installment_request.request_target_time_at', $this->timestampStart]);
|
||||
// $query->andFilterWhere(['<', 'ticket_installment_request.request_target_time_at', $this->timestampEnd]);
|
||||
|
||||
$dataProvider = new ArrayDataProvider([
|
||||
'allModels' => $query->all(),
|
||||
// 'sort' => [
|
||||
// 'attributes' => ['id', 'username', 'email'],
|
||||
// ],
|
||||
// 'pagination' => [
|
||||
// 'pageSize' => 10,
|
||||
// ],
|
||||
]);
|
||||
|
||||
return $dataProvider;
|
||||
}
|
||||
}
|
||||
114
backend/models/TicketInstallmentRequestSearchPending.php
Normal file
114
backend/models/TicketInstallmentRequestSearchPending.php
Normal file
@ -0,0 +1,114 @@
|
||||
<?php
|
||||
|
||||
namespace backend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use yii\data\ActiveDataProvider;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use yii\db\Query;
|
||||
use yii\data\ArrayDataProvider;
|
||||
|
||||
/**
|
||||
* TicketInstallmentRequestSearch represents the model behind the search form about `common\models\TicketInstallmentRequest`.
|
||||
*/
|
||||
class TicketInstallmentRequestSearchPending extends TicketInstallmentRequest
|
||||
{
|
||||
public $start;
|
||||
public $end;
|
||||
public $timestampStart;
|
||||
public $timestampEnd;
|
||||
|
||||
public $customer_name;
|
||||
public $id_ticket_type;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_ticket_installment_request', 'id_ticket', 'id_customer', 'status' ,'id_ticket_type'], 'integer'],
|
||||
[['customer_name' ], 'safe'],
|
||||
[[ 'start', ], 'date' , 'timestampAttribute' => 'timestampStart' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'end' , ], 'date' , 'timestampAttribute' => 'timestampEnd' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function scenarios()
|
||||
{
|
||||
// bypass scenarios() implementation in the parent class
|
||||
return Model::scenarios();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates data provider instance with search query applied
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return ActiveDataProvider
|
||||
*/
|
||||
public function search($params)
|
||||
{
|
||||
$query = new Query();
|
||||
|
||||
$this->load($params);
|
||||
|
||||
if (!$this->validate()) {
|
||||
// uncomment the following line if you do not want to return any records when validation fails
|
||||
// $query->where('0=1');
|
||||
}
|
||||
|
||||
$query->select([
|
||||
'ticket_installment_request.id_ticket_installment_request as request_id_ticket_installment_request', //id
|
||||
'ticket_installment_request.request_target_time_at as request_request_target_time_at',//target time
|
||||
'ticket_installment_request.money as request_money',//money
|
||||
'ticket_installment_request.status as request_status',//status
|
||||
'ticket_installment_request.request_sent_at as request_sent_at',//sent_at
|
||||
'ticket_installment_request.priority as request_priority',//sent_at
|
||||
'ticket_installment_request.request_processed_at as request_processed_at',//request_processed_at
|
||||
'customer.id_customer as customer_id_customer',//id_customer
|
||||
'customer.name as customer_name',//customer_name
|
||||
'ticket_type.name as ticket_type_name',//ticket_type_name
|
||||
'ticket.status as ticket_status',//ticket_status
|
||||
'ticket.start as ticket_start',//ticket_start
|
||||
'ticket.end as ticket_end',//ticket_send
|
||||
'ticket.id_ticket as ticket_id_ticket',//id_ticket
|
||||
]);
|
||||
$query->from("ticket_installment_request");
|
||||
$query->innerJoin("customer","customer.id_customer = ticket_installment_request.id_customer");
|
||||
$query->innerJoin("ticket","ticket.id_ticket = ticket_installment_request.id_ticket");
|
||||
$query->innerJoin("ticket_type","ticket.id_ticket_type = ticket_type.id_ticket_type");
|
||||
|
||||
$query->andWhere(['ticket_installment_request.status' => TicketInstallmentRequest::$STATUS_PENDING]);
|
||||
|
||||
$query->orderBy(["ticket_installment_request.request_target_time_at" => SORT_ASC]);
|
||||
|
||||
$query->andFilterWhere([
|
||||
'ticket_installment_request.id_ticket_installment_request' => $this->id_ticket_installment_request,
|
||||
'ticket.id_ticket' => $this->id_ticket,
|
||||
'customer.id_customer' => $this->id_customer,
|
||||
'ticket_installment_request.status' => $this->status,
|
||||
'ticket_type.id_ticket_type' => $this->id_ticket_type,
|
||||
]);
|
||||
$query->andFilterWhere(['like', 'customer.name', $this->customer_name]);
|
||||
//target time
|
||||
$query->andFilterWhere(['>=', 'ticket_installment_request.request_target_time_at', $this->timestampStart]);
|
||||
$query->andFilterWhere(['<', 'ticket_installment_request.request_target_time_at', $this->timestampEnd]);
|
||||
|
||||
$dataProvider = new ArrayDataProvider([
|
||||
'allModels' => $query->all(),
|
||||
// 'sort' => [
|
||||
// 'attributes' => ['id', 'username', 'email'],
|
||||
// ],
|
||||
// 'pagination' => [
|
||||
// 'pageSize' => 10,
|
||||
// ],
|
||||
]);
|
||||
|
||||
return $dataProvider;
|
||||
}
|
||||
}
|
||||
@ -37,7 +37,7 @@ class TicketSearch extends Ticket
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[[ 'id_user', 'id_ticket_type', 'id_account'], 'integer'],
|
||||
[[ 'id_ticket', 'id_user', 'id_ticket_type', 'id_account'], 'integer'],
|
||||
[[ 'start', ], 'date' , 'timestampAttribute' => 'timestampStart' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[[ 'end' , ], 'date' , 'timestampAttribute' => 'timestampEnd' ,'timestampAttributeFormat' => 'yyyy-MM-dd' ],
|
||||
[['valid_in_interval','created_in_interval','expire_in_interval'],'boolean'] ,
|
||||
@ -117,6 +117,7 @@ class TicketSearch extends Ticket
|
||||
'id_ticket_type' => $this->id_ticket_type,
|
||||
'id_account' => $this->id_account,
|
||||
'id_card' => $this->id_card,
|
||||
'id_ticket' => $this->id_ticket
|
||||
]);
|
||||
|
||||
|
||||
|
||||
67
backend/models/UgiroSearch.php
Normal file
67
backend/models/UgiroSearch.php
Normal file
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
namespace backend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use yii\data\ActiveDataProvider;
|
||||
use common\models\Ugiro;
|
||||
|
||||
/**
|
||||
* UgiroSearch represents the model behind the search form about `common\models\Ugiro`.
|
||||
*/
|
||||
class UgiroSearch extends Ugiro
|
||||
{
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_ugiro', 'id_user'], 'integer'],
|
||||
[['created_at', 'updated_at'], 'safe'],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function scenarios()
|
||||
{
|
||||
// bypass scenarios() implementation in the parent class
|
||||
return Model::scenarios();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates data provider instance with search query applied
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return ActiveDataProvider
|
||||
*/
|
||||
public function search($params)
|
||||
{
|
||||
$query = Ugiro::find();
|
||||
|
||||
$dataProvider = new ActiveDataProvider([
|
||||
'query' => $query,
|
||||
]);
|
||||
|
||||
$this->load($params);
|
||||
|
||||
if (!$this->validate()) {
|
||||
// uncomment the following line if you do not want to return any records when validation fails
|
||||
// $query->where('0=1');
|
||||
return $dataProvider;
|
||||
}
|
||||
|
||||
$query->andFilterWhere([
|
||||
'id_ugiro' => $this->id_ugiro,
|
||||
'id_user' => $this->id_user,
|
||||
'created_at' => $this->created_at,
|
||||
'updated_at' => $this->updated_at,
|
||||
]);
|
||||
|
||||
return $dataProvider;
|
||||
}
|
||||
}
|
||||
@ -75,6 +75,16 @@ use kartik\widgets\DatePicker;
|
||||
<?= $form->field($model, 'tax_number')->textInput(['maxlength' => true]) ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-6'>
|
||||
<?= $form->field($model, 'bank_name')->textInput(['maxlength' => true])->label("Bank neve") ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-6'>
|
||||
<?= $form->field($model, 'bank_account')->textInput(['maxlength' => true])->label("Bankszámlaszám") ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-6'>
|
||||
<?= $form->field($model, 'country')->textInput(['maxlength' => true]) ?>
|
||||
|
||||
@ -79,6 +79,16 @@ use kartik\widgets\DatePicker;
|
||||
<?= $form->field($model, 'tax_number')->textInput(['maxlength' => true]) ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-6'>
|
||||
<?= $form->field($model, 'bank_name')->textInput(['maxlength' => true])->label("Bank neve") ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-6'>
|
||||
<?= $form->field($model, 'bank_account')->textInput(['maxlength' => true])->label("Bankszámlaszám") ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-6'>
|
||||
<?= $form->field($model, 'country')->textInput(['maxlength' => true]) ?>
|
||||
|
||||
@ -44,6 +44,8 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
'image',
|
||||
'description',
|
||||
'tax_number',
|
||||
'bank_name',
|
||||
'bank_account',
|
||||
'country',
|
||||
'zip',
|
||||
'city',
|
||||
|
||||
124
backend/views/ticket-installment-request/_download_giro_view.php
Normal file
124
backend/views/ticket-installment-request/_download_giro_view.php
Normal file
@ -0,0 +1,124 @@
|
||||
<?php
|
||||
|
||||
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use common\models\Ticket;
|
||||
?>
|
||||
|
||||
<table class="table table-striped">
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "".$model['request_id_ticket_installment_request'];?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás státusza
|
||||
</th>
|
||||
<td>
|
||||
<?php echo TicketInstallmentRequest::toStatusName( $model['request_status'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás összege
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['request_money'] ." Ft";?>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás inditására irányzott dátum
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_request_target_time_at'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás elindításának ideje
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_sent_at'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás feldoglozásának ideje
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_processed_at'] );?>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás prioritása
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['request_priority'] ;?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Vendég azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "". $model['customer_id_customer'];?>
|
||||
</td>
|
||||
<th>
|
||||
Vendég neve
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['customer_name'];?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Bérlet azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "". $model['ticket_id_ticket'];?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet típus
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['ticket_type_name'];?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet státusza
|
||||
</th>
|
||||
<td>
|
||||
<?php echo Ticket::toStatusName( $model['ticket_status'] );?>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Bérlet érvényességének kezdete
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDate( $model['ticket_start'] ) ;?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet érvényességének vége
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDate( $model['ticket_end'] ) ;?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
51
backend/views/ticket-installment-request/_form.php
Normal file
51
backend/views/ticket-installment-request/_form.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\ActiveForm;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\TicketInstallmentRequest */
|
||||
/* @var $form yii\widgets\ActiveForm */
|
||||
?>
|
||||
|
||||
<div class="ticket-installment-request-form">
|
||||
|
||||
<?php $form = ActiveForm::begin(); ?>
|
||||
|
||||
<?= $form->field($model, 'id_ticket')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'id_customer')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'id_transfer')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'status')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'money')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'customer_name')->textInput(['maxlength' => true]) ?>
|
||||
|
||||
<?= $form->field($model, 'bank_name')->textInput(['maxlength' => true]) ?>
|
||||
|
||||
<?= $form->field($model, 'bank_address')->textInput(['maxlength' => true]) ?>
|
||||
|
||||
<?= $form->field($model, 'bank_account')->textInput(['maxlength' => true]) ?>
|
||||
|
||||
<?= $form->field($model, 'priority')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'request_sent_at')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'request_processed_at')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'request_target_time_at')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'created_at')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'updated_at')->textInput() ?>
|
||||
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton($model->isNewRecord ? Yii::t('common/ticket_installment_request', 'Create') : Yii::t('common/ticket_installment_request', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
124
backend/views/ticket-installment-request/_index_view.php
Normal file
124
backend/views/ticket-installment-request/_index_view.php
Normal file
@ -0,0 +1,124 @@
|
||||
<?php
|
||||
|
||||
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use common\models\Ticket;
|
||||
?>
|
||||
|
||||
<table class="table table-striped">
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "".$model['request_id_ticket_installment_request'];?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás státusza
|
||||
</th>
|
||||
<td>
|
||||
<?php echo TicketInstallmentRequest::toStatusName( $model['request_status'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás összege
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['request_money'] ." Ft";?>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás inditására irányzott dátum
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_request_target_time_at'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás elindításának ideje
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_sent_at'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás feldoglozásának ideje
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_processed_at'] );?>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás prioritása
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['request_priority'] ;?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Vendég azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "". $model['customer_id_customer'];?>
|
||||
</td>
|
||||
<th>
|
||||
Vendég neve
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['customer_name'];?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Bérlet azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "". $model['ticket_id_ticket'];?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet típus
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['ticket_type_name'];?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet státusza
|
||||
</th>
|
||||
<td>
|
||||
<?php echo Ticket::toStatusName( $model['ticket_status'] );?>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Bérlet érvényességének kezdete
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDate( $model['ticket_start'] ) ;?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet érvényességének vége
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDate( $model['ticket_end'] ) ;?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
142
backend/views/ticket-installment-request/_pending_view.php
Normal file
142
backend/views/ticket-installment-request/_pending_view.php
Normal file
@ -0,0 +1,142 @@
|
||||
<?php
|
||||
|
||||
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use common\models\Ticket;
|
||||
use yii\helpers\Html;
|
||||
?>
|
||||
|
||||
<table class="table table-striped">
|
||||
<tr>
|
||||
<th>
|
||||
Beküldésre jelöl
|
||||
</th>
|
||||
<td>
|
||||
<?php echo Html::checkbox("TicketInstallmentMarkForSendForm[items][]",false, ['class' => 'pending-request', 'value' => $model['request_id_ticket_installment_request']])?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "".$model['request_id_ticket_installment_request'];?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás státusza
|
||||
</th>
|
||||
<td>
|
||||
<?php echo TicketInstallmentRequest::toStatusName( $model['request_status'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás összege
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['request_money'] ." Ft";?>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás inditására irányzott dátum
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_request_target_time_at'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás elindításának ideje
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_sent_at'] );?>
|
||||
</td>
|
||||
<th>
|
||||
Megbízás feldoglozásának ideje
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDatetime( $model['request_processed_at'] );?>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Megbízás prioritása
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['request_priority'] ;?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Vendég azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "". $model['customer_id_customer'];?>
|
||||
</td>
|
||||
<th>
|
||||
Vendég neve
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['customer_name'];?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Bérlet azonosító
|
||||
</th>
|
||||
<td>
|
||||
<?php echo "". $model['ticket_id_ticket'];?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet típus
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $model['ticket_type_name'];?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet státusza
|
||||
</th>
|
||||
<td>
|
||||
<?php echo Ticket::toStatusName( $model['ticket_status'] );?>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th>
|
||||
Bérlet érvényességének kezdete
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDate( $model['ticket_start'] ) ;?>
|
||||
</td>
|
||||
<th>
|
||||
Bérlet érvényességének vége
|
||||
</th>
|
||||
<td>
|
||||
<?php echo \Yii::$app->formatter->asDate( $model['ticket_end'] ) ;?>
|
||||
</td>
|
||||
<th>
|
||||
</th>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
137
backend/views/ticket-installment-request/_search.php
Normal file
137
backend/views/ticket-installment-request/_search.php
Normal file
@ -0,0 +1,137 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\ActiveForm;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use common\models\TicketType;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use kartik\widgets\DatePicker;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\models\TicketInstallmentRequestSearch */
|
||||
/* @var $form yii\widgets\ActiveForm */
|
||||
?>
|
||||
|
||||
<?php
|
||||
$ticketTypeOptions = ['' => 'Mind'] + ArrayHelper::map(TicketType::read(), 'id_ticket_type', 'name');
|
||||
|
||||
?>
|
||||
|
||||
<div class="ticket-installment-request-search">
|
||||
|
||||
<?php $form = ActiveForm::begin([
|
||||
'action' => ['index'],
|
||||
'method' => 'get',
|
||||
]); ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_ticket_installment_request')->label("Megbízás azonosító") ?>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_ticket')->label("Bérlet azonosító") ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_customer')->label("Vendég azonosító") ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'customer_name')->label("Vendég neve") ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'status')->label("Megbízás státusza")->dropDownList( ['' => 'Mind' ] + TicketInstallmentRequest::statuses()) ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_ticket_type')->label("Bérlet típus")->dropDownList( $ticketTypeOptions) ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'start')->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás inditására irányzott kezdete ( inklúzív )') ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'end') ->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás inditására irányzott dátum vége ( exklúzív )') ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'sentStart')->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás elindításának időszak kezdete ( inklúzív )') ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'sentEnd') ->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás elindításának időszak vége ( exklúzív )') ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'processedStart')->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás feldolgozása időszak kezdete ( inklúzív )') ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'processedEnd') ->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás feldolgozása időszak vége ( exklúzív )') ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<?php // echo $form->field($model, 'money') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'customer_name') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'bank_name') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'bank_address') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'bank_account') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'priority') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'request_sent_at') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'request_processed_at') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'request_target_time_at') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'created_at') ?>
|
||||
|
||||
<?php // echo $form->field($model, 'updated_at') ?>
|
||||
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton(Yii::t('common/ticket_installment_request', 'Search'), ['class' => 'btn btn-primary']) ?>
|
||||
<?= Html::resetButton(Yii::t('common/ticket_installment_request', 'Reset'), ['class' => 'btn btn-default']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
76
backend/views/ticket-installment-request/_search_pending.php
Normal file
76
backend/views/ticket-installment-request/_search_pending.php
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\ActiveForm;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
use common\models\TicketType;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use kartik\widgets\DatePicker;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\models\TicketInstallmentRequestSearch */
|
||||
/* @var $form yii\widgets\ActiveForm */
|
||||
?>
|
||||
|
||||
<?php
|
||||
$ticketTypeOptions = ['' => 'Mind'] + ArrayHelper::map(TicketType::read(), 'id_ticket_type', 'name');
|
||||
|
||||
?>
|
||||
|
||||
<div class="ticket-installment-request-search">
|
||||
|
||||
<?php $form = ActiveForm::begin([
|
||||
'action' => ['pending'],
|
||||
'method' => 'get',
|
||||
]); ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_ticket_installment_request')->label("Megbízás azonosító") ?>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_ticket')->label("Bérlet azonosító") ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_customer')->label("Vendég azonosító") ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'customer_name')->label("Vendég neve") ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'id_ticket_type')->label("Bérlet típus")->dropDownList( $ticketTypeOptions) ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'start')->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás inditására irányzott kezdete ( inklúzív )') ?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?= $form->field($model, 'end') ->widget(DatePicker::classname(), [
|
||||
'pluginOptions' => [
|
||||
'autoclose'=>true,
|
||||
'format' => 'yyyy.mm.dd'
|
||||
]
|
||||
])->label('Megbízás inditására irányzott dátum vége ( exklúzív )') ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton(Yii::t('common/ticket_installment_request', 'Search'), ['class' => 'btn btn-primary']) ?>
|
||||
<?= Html::resetButton(Yii::t('common/ticket_installment_request', 'Reset'), ['class' => 'btn btn-default']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
21
backend/views/ticket-installment-request/create.php
Normal file
21
backend/views/ticket-installment-request/create.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\TicketInstallmentRequest */
|
||||
|
||||
$this->title = Yii::t('common/ticket_installment_request', 'Create Ticket Installment Request');
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ticket_installment_request', 'Ticket Installment Requests'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ticket-installment-request-create">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
29
backend/views/ticket-installment-request/index.php
Normal file
29
backend/views/ticket-installment-request/index.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\grid\GridView;
|
||||
use yii\widgets\ListView;
|
||||
use yii\base\Widget;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $searchModel backend\models\TicketInstallmentRequestSearch */
|
||||
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||
|
||||
$this->title = Yii::t('common/ticket_installment_request', 'Bérlet fizetési megbízások');
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ticket-installment-request-index">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
<?php echo $this->render('_search', ['model' => $searchModel]); ?>
|
||||
|
||||
|
||||
<?php
|
||||
echo ListView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'itemView' => '_index_view'
|
||||
]);
|
||||
?>
|
||||
|
||||
|
||||
</div>
|
||||
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\grid\GridView;
|
||||
use yii\widgets\ListView;
|
||||
use yii\base\Widget;
|
||||
use kartik\widgets\ActiveForm;
|
||||
use backend\assets\PendingRequestAsset;
|
||||
use yii\helpers\Url;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $searchModel backend\models\TicketInstallmentRequestSearch */
|
||||
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||
|
||||
$this->title = Yii::t('common/ticket_installment_request', 'Giro köteg létrehozása');
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<?php
|
||||
PendingRequestAsset::register($this);
|
||||
?>
|
||||
<div class="ticket-installment-request-index">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
|
||||
<?php
|
||||
echo ListView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'itemView' => '_download_giro_view'
|
||||
]);
|
||||
?>
|
||||
|
||||
<?php $form = ActiveForm::begin([
|
||||
'action' => Url::current(),
|
||||
'method' => 'post',
|
||||
]); ?>
|
||||
<?php echo $form->field($model, 'action')->hiddenInput()->label(false) ?>
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton("Köteg létrehozása", ['class' => 'btn btn-primary']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
50
backend/views/ticket-installment-request/index_pending.php
Normal file
50
backend/views/ticket-installment-request/index_pending.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\grid\GridView;
|
||||
use yii\widgets\ListView;
|
||||
use yii\base\Widget;
|
||||
use kartik\widgets\ActiveForm;
|
||||
use backend\assets\PendingRequestAsset;
|
||||
use yii\helpers\Url;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $searchModel backend\models\TicketInstallmentRequestSearch */
|
||||
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||
|
||||
$this->title = Yii::t('common/ticket_installment_request', 'Indításra váró bérlet fizetési megbízások');
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<?php
|
||||
PendingRequestAsset::register($this);
|
||||
?>
|
||||
<div class="ticket-installment-request-index">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
<?php echo $this->render('_search_pending', ['model' => $searchModel]); ?>
|
||||
|
||||
|
||||
<div>
|
||||
<label>
|
||||
Mindent ki/be
|
||||
<?php echo Html::checkbox("select-all",false, ['id' => 'select-all-pending' ]);?>
|
||||
</label>
|
||||
</div>
|
||||
<?php $form = ActiveForm::begin([
|
||||
'action' => Url::current(),
|
||||
'method' => 'post',
|
||||
]); ?>
|
||||
|
||||
<?php
|
||||
echo ListView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'itemView' => '_pending_view'
|
||||
]);
|
||||
?>
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton("Beküldendőnek jelöl", ['class' => 'btn btn-primary']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
85
backend/views/ticket-installment-request/test.php
Normal file
85
backend/views/ticket-installment-request/test.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
use common\components\giro\GiroBeszedLab;
|
||||
use common\components\giro\GiroBeszedFej;
|
||||
use yii\helpers\Html;
|
||||
use common\components\giro\GiroBeszedTetel;
|
||||
use common\components\giro\GiroBeszed;
|
||||
use common\components\giro\GiroDETSTAFej;
|
||||
|
||||
$data = iconv("utf-8","CP852","árvíztűrő tükörfúrógép");
|
||||
echo $data;
|
||||
|
||||
echo mb_detect_encoding($data, "auto");
|
||||
|
||||
$fej = new GiroBeszedFej();
|
||||
$fej->duplumKod = 1;
|
||||
$fej->kezdemenyezoAzonosito = "A25366936T244" ;//"66658092128";
|
||||
$fej->uzenetSorszam ->osszeallitasDatuma = "20160120";
|
||||
$fej->uzenetSorszam->sorszam = 1;
|
||||
$fej->kezdemenyezoBankszamla->szamlaszam = "5860025215371128";//"5860025215371128";
|
||||
// $fej->kezdemenyezoBankszamla->bankszerv = "58600252"; //"TAKBHUHB";
|
||||
$fej->ertesitesiHatarido = "";
|
||||
$fej->kezdemenyezoCegNeve = "Cutler Four kft";
|
||||
|
||||
echo "fej<br>";
|
||||
echo "'".str_replace(' ', ' ',Html::encode($fej->toString()) )."'";
|
||||
echo "<br>";
|
||||
|
||||
$tetel = new GiroBeszedTetel();
|
||||
$tetel->tetelSorszam = 1;
|
||||
$tetel->terhelesiDatum = "20160122";
|
||||
$tetel->osszeg = "1000";
|
||||
// $tetel->kotelezettBankszamla->bankszerv = "58600252";
|
||||
$tetel->kotelezettBankszamla->szamlaszam = "5860025215371128";
|
||||
$tetel->ugyfelazonositoAKezdemenyezonel = 1;
|
||||
$tetel->ugyfelNeve = "Schneider Roland";
|
||||
$tetel->ugyfelCime = "Mosonmagyarovar, Gardonyi 31";
|
||||
$tetel->szamlaTulajdonosNeve = "Schneider Roland";
|
||||
$tetel->kozlemeny = "Berlet";
|
||||
|
||||
echo "tetel<br>";
|
||||
echo "'".str_replace(' ', ' ',($tetel->toString())) ."'";
|
||||
echo "<br>";
|
||||
|
||||
|
||||
$lab = new GiroBeszedLab();
|
||||
|
||||
$lab->tetelekOsszerteke = 1000;
|
||||
$lab->tetelekSzama=1;
|
||||
|
||||
echo "<br>lab<br>";
|
||||
echo str_replace(' ', ' ', $lab->toString() );
|
||||
|
||||
|
||||
$content = GiroBeszed::createFileContent(1, []);
|
||||
echo "'".str_replace(' ', ' ', Html::encode(GiroBeszed::createFileContent(1, [])) ."'");
|
||||
|
||||
|
||||
$data = iconv("windows-1252","ASCII",$content);
|
||||
|
||||
|
||||
// $filename = \Yii::$app->basePath . "/" ."giro" . rand(0,10000)."txt";
|
||||
// $myfile = fopen($filename,'a');
|
||||
// fwrite($myfile, $data);
|
||||
// fclose($myfile);
|
||||
|
||||
$dfej = new GiroDETSTAFej();
|
||||
$dfej->kezdemenyezoAzonosito = "A25366936T244";
|
||||
$dfej->csoportosUzenetSorszam ->osszeallitasDatuma = "20160120";
|
||||
$dfej->csoportosUzenetSorszam->sorszam = 1;
|
||||
$dfej->detstaUzenetSorszam ->osszeallitasDatuma = "20160120";
|
||||
$dfej->detstaUzenetSorszam->sorszam = 1;
|
||||
$dfej->ido = "100000";
|
||||
echo "dfej<br>";
|
||||
echo $dfej->toString();
|
||||
|
||||
echo "<br>";
|
||||
|
||||
$s = "01DETSTA0A25366936T244201601200001201601200001100000";
|
||||
$def2 = GiroDETSTAFej::parse($s);
|
||||
|
||||
print_r($def2);
|
||||
|
||||
|
||||
?>
|
||||
23
backend/views/ticket-installment-request/update.php
Normal file
23
backend/views/ticket-installment-request/update.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\TicketInstallmentRequest */
|
||||
|
||||
$this->title = Yii::t('common/ticket_installment_request', 'Update {modelClass}: ', [
|
||||
'modelClass' => 'Ticket Installment Request',
|
||||
]) . ' ' . $model->id_ticket_installment_request;
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ticket_installment_request', 'Ticket Installment Requests'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->id_ticket_installment_request, 'url' => ['view', 'id' => $model->id_ticket_installment_request]];
|
||||
$this->params['breadcrumbs'][] = Yii::t('common/ticket_installment_request', 'Update');
|
||||
?>
|
||||
<div class="ticket-installment-request-update">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
50
backend/views/ticket-installment-request/view.php
Normal file
50
backend/views/ticket-installment-request/view.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\DetailView;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\TicketInstallmentRequest */
|
||||
|
||||
$this->title = $model->id_ticket_installment_request;
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ticket_installment_request', 'Ticket Installment Requests'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ticket-installment-request-view">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<p>
|
||||
<?= Html::a(Yii::t('common/ticket_installment_request', 'Update'), ['update', 'id' => $model->id_ticket_installment_request], ['class' => 'btn btn-primary']) ?>
|
||||
<?= Html::a(Yii::t('common/ticket_installment_request', 'Delete'), ['delete', 'id' => $model->id_ticket_installment_request], [
|
||||
'class' => 'btn btn-danger',
|
||||
'data' => [
|
||||
'confirm' => Yii::t('common/ticket_installment_request', 'Are you sure you want to delete this item?'),
|
||||
'method' => 'post',
|
||||
],
|
||||
]) ?>
|
||||
</p>
|
||||
|
||||
<?= DetailView::widget([
|
||||
'model' => $model,
|
||||
'attributes' => [
|
||||
'id_ticket_installment_request',
|
||||
'id_ticket',
|
||||
'id_customer',
|
||||
'id_transfer',
|
||||
'status',
|
||||
'money',
|
||||
'customer_name',
|
||||
'bank_name',
|
||||
'bank_address',
|
||||
'bank_account',
|
||||
'priority',
|
||||
'request_sent_at',
|
||||
'request_processed_at',
|
||||
'request_target_time_at',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
],
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
@ -56,8 +56,12 @@ use yii\helpers\ArrayHelper;
|
||||
<?= $form->field($model, 'status')->checkbox( ['value' => 10, 'label' => Yii::t('common/ticket_type', "Active") ]) ?>
|
||||
|
||||
<?= $form->field($model, 'flag_student')->checkbox( ['value' => 1, 'label' => Yii::t('common/ticket_type', "Student") ]) ?>
|
||||
|
||||
|
||||
|
||||
<?= mkTitle("Csoportos beszedés")?>
|
||||
<?= $form->field($model, 'installment_enabled')->checkbox( ['value' => 1, 'label' => Yii::t('common/ticket_type', "Csoportos beszedéses a bruttó áron felül") ]) ?>
|
||||
<p>A részletek havonta kerülnek beszedésre</p>
|
||||
<?= $form->field($model, 'installment_money')->textInput() ?>
|
||||
<?= $form->field($model, 'installment_count')->textInput() ?>
|
||||
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton($model->isNewRecord ? Yii::t('common/ticket_type', 'Create') : Yii::t('common/ticket_type', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
|
||||
|
||||
@ -52,6 +52,12 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
],
|
||||
'created_at:datetime',
|
||||
'updated_at:datetime',
|
||||
[
|
||||
'attribute' => 'installment_enabled',
|
||||
'value' => ( $model->isInstallment() ? Yii::t('common', 'Yes' ) : Yii::t('common', 'No' ) ),
|
||||
],
|
||||
'installment_money',
|
||||
'installment_count',
|
||||
],
|
||||
]) ?>
|
||||
|
||||
|
||||
@ -54,6 +54,9 @@ $userOptions = ['' => 'Mind'] + ArrayHelper::map($model->users, 'id', 'userna
|
||||
]
|
||||
]) ?>
|
||||
</div>
|
||||
<div class='col-md-4'>
|
||||
<?= $form->field($model, 'id_ticket')->textInput() ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-md-4'>
|
||||
|
||||
@ -77,6 +77,11 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
<?= GridView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'columns' => [
|
||||
[
|
||||
'attribute' => 'id_ticket',
|
||||
'value' => 'id_ticket',
|
||||
'label' => 'B. Azonosító'
|
||||
],
|
||||
[
|
||||
'attribute' => 'id_customer',
|
||||
'value' => 'customerName'
|
||||
|
||||
27
backend/views/ugiro/_form.php
Normal file
27
backend/views/ugiro/_form.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\ActiveForm;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\Ugiro */
|
||||
/* @var $form yii\widgets\ActiveForm */
|
||||
?>
|
||||
|
||||
<div class="ugiro-form">
|
||||
|
||||
<?php $form = ActiveForm::begin(); ?>
|
||||
|
||||
<?= $form->field($model, 'id_user')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'created_at')->textInput() ?>
|
||||
|
||||
<?= $form->field($model, 'updated_at')->textInput() ?>
|
||||
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton($model->isNewRecord ? Yii::t('common/ugiro', 'Create') : Yii::t('common/ugiro', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
33
backend/views/ugiro/_search.php
Normal file
33
backend/views/ugiro/_search.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\ActiveForm;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\models\UgiroSearch */
|
||||
/* @var $form yii\widgets\ActiveForm */
|
||||
?>
|
||||
|
||||
<div class="ugiro-search">
|
||||
|
||||
<?php $form = ActiveForm::begin([
|
||||
'action' => ['index'],
|
||||
'method' => 'get',
|
||||
]); ?>
|
||||
|
||||
<?= $form->field($model, 'id_ugiro') ?>
|
||||
|
||||
<?= $form->field($model, 'id_user') ?>
|
||||
|
||||
<?= $form->field($model, 'created_at') ?>
|
||||
|
||||
<?= $form->field($model, 'updated_at') ?>
|
||||
|
||||
<div class="form-group">
|
||||
<?= Html::submitButton(Yii::t('common/ugiro', 'Search'), ['class' => 'btn btn-primary']) ?>
|
||||
<?= Html::resetButton(Yii::t('common/ugiro', 'Reset'), ['class' => 'btn btn-default']) ?>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
|
||||
</div>
|
||||
21
backend/views/ugiro/create.php
Normal file
21
backend/views/ugiro/create.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\Ugiro */
|
||||
|
||||
$this->title = Yii::t('common/ugiro', 'Create Ugiro');
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ugiro', 'Ugiros'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ugiro-create">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
46
backend/views/ugiro/index.php
Normal file
46
backend/views/ugiro/index.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\grid\GridView;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $searchModel backend\models\UgiroSearch */
|
||||
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||
|
||||
$this->title = Yii::t('common/ugiro', 'Kötegek');
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ugiro-index">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
|
||||
|
||||
|
||||
<?= GridView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'columns' => [
|
||||
[
|
||||
'attribute' => 'id_ugiro',
|
||||
'label' => 'Köteg azonosító'
|
||||
],
|
||||
[
|
||||
'attribute' => 'user.username',
|
||||
'label' => 'Felhasnáló'
|
||||
],
|
||||
[
|
||||
'attribute' => 'statusName',
|
||||
'label' => 'Státusz'
|
||||
],
|
||||
[
|
||||
'attribute' => 'created_at',
|
||||
'label' => 'Létrehozva',
|
||||
'format' =>'datetime'
|
||||
],
|
||||
|
||||
['class' => 'yii\grid\ActionColumn',
|
||||
'template' => '{view}'
|
||||
],
|
||||
],
|
||||
]); ?>
|
||||
|
||||
</div>
|
||||
23
backend/views/ugiro/update.php
Normal file
23
backend/views/ugiro/update.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\Ugiro */
|
||||
|
||||
$this->title = Yii::t('common/ugiro', 'Update {modelClass}: ', [
|
||||
'modelClass' => 'Ugiro',
|
||||
]) . ' ' . $model->id_ugiro;
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ugiro', 'Ugiros'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->id_ugiro, 'url' => ['view', 'id' => $model->id_ugiro]];
|
||||
$this->params['breadcrumbs'][] = Yii::t('common/ugiro', 'Update');
|
||||
?>
|
||||
<div class="ugiro-update">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
58
backend/views/ugiro/view.php
Normal file
58
backend/views/ugiro/view.php
Normal file
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\DetailView;
|
||||
use yii\helpers\Url;
|
||||
use common\models\Ugiro;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\Ugiro */
|
||||
|
||||
$this->title = "Köteg részletei";
|
||||
$this->params['breadcrumbs'][] = ['label' => "Kötegek", 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ugiro-view">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
|
||||
<?php
|
||||
$attributes = [
|
||||
[
|
||||
'attribute' => 'id_ugiro',
|
||||
'label' => 'Köteg azonosító'
|
||||
],
|
||||
[
|
||||
'attribute' => 'user.username',
|
||||
'label' => 'Felhasználó'
|
||||
],
|
||||
[
|
||||
'attribute' => 'statusName',
|
||||
'label' => 'Státusz'
|
||||
],
|
||||
[
|
||||
'attribute' => 'created_at',
|
||||
'label' => 'Létrehozva',
|
||||
'format' =>'datetime'
|
||||
],
|
||||
[
|
||||
'attribute' => 'path',
|
||||
'label' => 'Köteg Fájl',
|
||||
'value' => Html::a( "Letöltés" , Url::base() ."/". $model->path , ['target' =>'_blank' ,'download' =>'CS-BESZED.' .$model->id_ugiro ] ),
|
||||
'format' => 'raw'
|
||||
],
|
||||
];
|
||||
if ( $model->status == Ugiro::$STATUS_FINISHED){
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?= DetailView::widget([
|
||||
'model' => $model,
|
||||
'attributes' => $attributes,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
3
backend/web/giro/megbizas/giro10_20160120txt
Normal file
3
backend/web/giro/megbizas/giro10_20160120txt
Normal file
@ -0,0 +1,3 @@
|
||||
01BESZED1A25366936T2442016012000105860025215371128 00000000BEEmovar
|
||||
02000001201601250000007800 1 roland Berlet :614
|
||||
030000010000000000007800
|
||||
3
backend/web/giro/megbizas/giro11_20160120txt
Normal file
3
backend/web/giro/megbizas/giro11_20160120txt
Normal file
@ -0,0 +1,3 @@
|
||||
01BESZED1A25366936T2442016012000115860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland Berlet :614
|
||||
030000010000000000007800
|
||||
4
backend/web/giro/megbizas/giro12_20160120txt
Normal file
4
backend/web/giro/megbizas/giro12_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000125860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland Berlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro14_20160120txt
Normal file
4
backend/web/giro/megbizas/giro14_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000145860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland rv¡ztûr‹ t<>k”rfûr¢gBerlet :614
|
||||
020000022016012500000078005860025215371128 1 roland rv¡ztûr‹ t<>k”rfûr¢gBerlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro15_20160120txt
Normal file
4
backend/web/giro/megbizas/giro15_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000155860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland rv¡ztûr‹ t<>k”rfûr¢ Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland rv¡ztûr‹ t<>k”rfûr¢ Berlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro16_20160120txt
Normal file
4
backend/web/giro/megbizas/giro16_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000165860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro17_20160120txt
Normal file
4
backend/web/giro/megbizas/giro17_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000175860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro18_20160120txt
Normal file
4
backend/web/giro/megbizas/giro18_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000185860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukor Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukor Berlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro19_20160120txt
Normal file
4
backend/web/giro/megbizas/giro19_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000195860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukor Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukor Berlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro20_20160120txt
Normal file
4
backend/web/giro/megbizas/giro20_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000205860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland a Berlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro21_20160120txt
Normal file
4
backend/web/giro/megbizas/giro21_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000215860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro22_20160120txt
Normal file
4
backend/web/giro/megbizas/giro22_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000225860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro23_20160120txt
Normal file
4
backend/web/giro/megbizas/giro23_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000235860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogBerlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro26_20160120txt
Normal file
4
backend/web/giro/megbizas/giro26_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000265860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
030000020000000000015600
|
||||
4
backend/web/giro/megbizas/giro27_20160120txt
Normal file
4
backend/web/giro/megbizas/giro27_20160120txt
Normal file
@ -0,0 +1,4 @@
|
||||
01BESZED1A25366936T2442016012000275860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
030000020000000000015600
|
||||
3
backend/web/giro/megbizas/giro28_20160120txt
Normal file
3
backend/web/giro/megbizas/giro28_20160120txt
Normal file
@ -0,0 +1,3 @@
|
||||
01BESZED1A25366936T2442016012000285860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
030000010000000000007800
|
||||
3
backend/web/giro/megbizas/giro29_20160120.txt
Normal file
3
backend/web/giro/megbizas/giro29_20160120.txt
Normal file
@ -0,0 +1,3 @@
|
||||
01BESZED1A25366936T2442016012000295860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
030000010000000000007800
|
||||
13
backend/web/giro/megbizas/giro30_20160120.txt
Normal file
13
backend/web/giro/megbizas/giro30_20160120.txt
Normal file
@ -0,0 +1,13 @@
|
||||
01BESZED1A25366936T2442016012000305860025215371128 00000000BEEmovar
|
||||
020000012016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000022016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000032016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000042016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000052016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000062016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000072016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000082016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000092016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000102016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
020000112016012500000078005860025215371128 1 roland arvizturo tukorfurogep Berlet :614
|
||||
030000110000000000085800
|
||||
3
backend/web/giro/megbizas/giro9_20160120txt
Normal file
3
backend/web/giro/megbizas/giro9_20160120txt
Normal file
@ -0,0 +1,3 @@
|
||||
01BESZED1A25366936T2442016012000095860025215371128 00000000BEEmovar
|
||||
02000001201601250000007800 1 roland Berlet :614
|
||||
030000010000000000007800
|
||||
8
backend/web/js/index.pending.js
Normal file
8
backend/web/js/index.pending.js
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
$("#select-all-pending").click(function() {
|
||||
var checkBoxes = $(".pending-request");
|
||||
checkBoxes.prop("checked", $("#select-all-pending").prop("checked"));
|
||||
});
|
||||
});
|
||||
120
bkr.html
Normal file
120
bkr.html
Normal file
@ -0,0 +1,120 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf8">
|
||||
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
|
||||
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
|
||||
<style>
|
||||
table{
|
||||
border: 1px solid black;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
td{
|
||||
border: 1px solid black;
|
||||
border-collapse: collapse;
|
||||
padding: 3px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript">
|
||||
function build(){
|
||||
var s = "";
|
||||
s += $("#f210").val();
|
||||
s += $("#F211").val();
|
||||
s += $("#F212").val();
|
||||
|
||||
$("#result").val(s);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form>
|
||||
<table>
|
||||
<tr>
|
||||
<td>pozíció</td>
|
||||
<td>mező-név</td>
|
||||
<td>tartalom</td>
|
||||
<td>típus</td>
|
||||
<td>hossz</td>
|
||||
<td>érték</td>
|
||||
<td>K / V</td>
|
||||
<td>megjegyzés</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>1 – 2</td>
|
||||
<td>F210</td>
|
||||
<td>rekordtípus</td>
|
||||
<td>N</td>
|
||||
<td>2</td>
|
||||
<td>01</td>
|
||||
<td>K</td>
|
||||
<td></td>
|
||||
<td><input id="f210" type="text" value="01"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>3 – 8</td>
|
||||
<td>F211</td>
|
||||
<td>üzenettípus</td>
|
||||
<td>A</td>
|
||||
<td>6</td>
|
||||
<td>BESZED</td>
|
||||
<td>K</td>
|
||||
<td></td>
|
||||
<td><input id="F211" type="text" value="BESZED"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>9</td>
|
||||
<td>F212**</td>
|
||||
<td>duplum-kód</td>
|
||||
<td>N</td>
|
||||
<td>1</td>
|
||||
<td>0 - 9</td>
|
||||
<td>K</td>
|
||||
<td>a feldolgozás menetére nincs hatással</td>
|
||||
<td><input id="F212" type="text" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>10-22</td>
|
||||
<td>F213</td>
|
||||
<td>kezdeményező azonosítója</td>
|
||||
<td>AN</td>
|
||||
<td>13</td>
|
||||
<td></td>
|
||||
<td>K</td>
|
||||
<td>a CSBESZ-t összeállító
|
||||
szolgáltató / beszedő
|
||||
- adószáma
|
||||
(Aaaaaaaaa[Tttt]),
|
||||
- EAN kódja,
|
||||
- egyéb azonosítója
|
||||
(Ebbbsssss)</td>
|
||||
<td><input id="F212" type="text" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>9</td>
|
||||
<td>F212**</td>
|
||||
<td>duplum-kód</td>
|
||||
<td>N</td>
|
||||
<td>1</td>
|
||||
<td>0 - 9</td>
|
||||
<td>K</td>
|
||||
<td>a feldolgozás menetére nincs hatással</td>
|
||||
<td><input id="F212" type="text" value="0"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<textarea id="result" rows="3" cols="80"></textarea>
|
||||
|
||||
<a class="btn btn-primary" onclick='javascript: build(); ' >Generál</a>
|
||||
|
||||
<table>
|
||||
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@ -252,6 +252,10 @@ class DailyListing
|
||||
$query->andFilterWhere(['or' , $created_condition , $paid_condition]);
|
||||
|
||||
$query->andWhere(['transfer.status' => Transfer::STATUS_PAID]);
|
||||
|
||||
if ( $this->isModeReception() || $this->isModeAccountState() ){
|
||||
$query->andWhere(['transfer.payment_method' => Transfer::PAYMENT_METHOD_CASH]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
16
common/components/giro/GiroBankszamla.php
Normal file
16
common/components/giro/GiroBankszamla.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace common\components\giro;
|
||||
|
||||
use common\components\giro\GiroBase;
|
||||
|
||||
class GiroBankszamla extends GiroBase{
|
||||
|
||||
// public $bankszerv;
|
||||
public $szamlaszam;
|
||||
|
||||
|
||||
public function toString(){
|
||||
return $this->szovegKitolt( $this->szamlaszam, 24 );
|
||||
}
|
||||
|
||||
}
|
||||
43
common/components/giro/GiroBase.php
Normal file
43
common/components/giro/GiroBase.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace common\components\giro;
|
||||
|
||||
use backend\models\GiroKotegForm;
|
||||
class GiroBase {
|
||||
|
||||
public function mezoKitolt($input, $hossz, $pad_string = "") {
|
||||
return str_pad($input, $hossz, $pad_string, STR_PAD_LEFT);
|
||||
}
|
||||
|
||||
|
||||
public function szamKitolt($input, $hossz, $pad_string = "0") {
|
||||
return str_pad($input, $hossz, $pad_string, STR_PAD_LEFT);
|
||||
}
|
||||
public function szamKitoltJobb($input, $hossz, $pad_string = "0") {
|
||||
return str_pad($input, $hossz, $pad_string, STR_PAD_RIGHT);
|
||||
}
|
||||
|
||||
public function szovegKitolt($input, $hossz, $pad_string = " ") {
|
||||
$data = $input;
|
||||
$data = GiroKotegForm::transliterate($data);
|
||||
if ( strlen($data) > $hossz){
|
||||
$data = substr($data, 0, $hossz );
|
||||
}
|
||||
$data = str_pad($data, $hossz, $pad_string, STR_PAD_RIGHT);
|
||||
echo $data;
|
||||
// echo strlen($data);
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function szovegOlvas($row,$start,$length, $padchar = " "){
|
||||
return rtrim(substr($row, $start,$length),$padchar);
|
||||
}
|
||||
|
||||
public function szamOlvas($row,$start,$length, $padchar = "0"){
|
||||
return ltrim(substr($row, $start,$length),$padchar);
|
||||
}
|
||||
|
||||
public function rekordVege(){
|
||||
return "\r\n";
|
||||
}
|
||||
}
|
||||
80
common/components/giro/GiroBeszed.php
Normal file
80
common/components/giro/GiroBeszed.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
namespace common\components\giro;
|
||||
|
||||
use common\components\giro\GiroBase;
|
||||
|
||||
/**
|
||||
*
|
||||
* @property common\components\giro\GiroUzenetsorszam $uzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
*
|
||||
*/
|
||||
class GiroBeszed extends GiroBase {
|
||||
|
||||
|
||||
public function __construct() {
|
||||
}
|
||||
public static function createFileContent($id, $requests) {
|
||||
$s = self::createFej($id);
|
||||
$s .= self::createTetelek($requests);
|
||||
$s .= self::createLab($requests);
|
||||
return $s;
|
||||
}
|
||||
|
||||
public static function createFej($id) {
|
||||
$fej = new GiroBeszedFej ();
|
||||
$fej->duplumKod = \Yii::$app->params['ugiro_duplom_kod'];
|
||||
$fej->kezdemenyezoAzonosito = \Yii::$app->params['ugiro_kezdemenyezo_azonosito'];//"A25366936T244"; // "66658092128";
|
||||
$fej->uzenetSorszam->osszeallitasDatuma = date('Ymd' );
|
||||
$fej->uzenetSorszam->sorszam = $id;
|
||||
$fej->kezdemenyezoBankszamla->szamlaszam = \Yii::$app->params['ugiro_kezdemenyezo_szamlaszam']; // "5860025215371128";
|
||||
// $fej->kezdemenyezoBankszamla->bankszerv = "58600252"; // "TAKBHUHB";
|
||||
$fej->ertesitesiHatarido = "";
|
||||
$fej->kezdemenyezoCegNeve = \Yii::$app->params['company'];
|
||||
|
||||
return $fej->toString ();
|
||||
}
|
||||
|
||||
public static function createTetelek($requests){
|
||||
$s = "";
|
||||
foreach ($requests as $request){
|
||||
$s .= self::createTetel($request);
|
||||
}
|
||||
return $s;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param common\models\TicketInstallmentRequest $request
|
||||
* */
|
||||
public static function createTetel($request) {
|
||||
$tetel = new GiroBeszedTetel ();
|
||||
$customer = $request->customer;
|
||||
$tetel->tetelSorszam = $request->id_ticket_installment_request;
|
||||
$tetel->terhelesiDatum = date('Ymd' ,strtotime("+5 day"));;
|
||||
$tetel->osszeg = $request->money;
|
||||
// $tetel->kotelezettBankszamla->bankszerv = "58600252";
|
||||
$tetel->kotelezettBankszamla->szamlaszam = $customer->bank_account;
|
||||
$tetel->ugyfelazonositoAKezdemenyezonel = $customer->id_customer;
|
||||
// $tetel->ugyfelNeve = "Schneider Roland";
|
||||
// $tetel->ugyfelCime = "Mosonmagyarovar, Gardonyi 31";
|
||||
$tetel->szamlaTulajdonosNeve = $customer->name;
|
||||
$tetel->kozlemeny = "Berlet :" . $request->id_ticket;
|
||||
|
||||
return $tetel->toString();
|
||||
}
|
||||
|
||||
public static function createLab($requests) {
|
||||
$lab = new GiroBeszedLab ();
|
||||
|
||||
$osszeg = 0;
|
||||
foreach ($requests as $request ){
|
||||
$osszeg += $request->money;
|
||||
}
|
||||
|
||||
$lab->tetelekOsszerteke = $osszeg;
|
||||
$lab->tetelekSzama = count($requests);
|
||||
|
||||
return $lab->toString ();
|
||||
}
|
||||
}
|
||||
45
common/components/giro/GiroBeszedFej.php
Normal file
45
common/components/giro/GiroBeszedFej.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
namespace common\components\giro;
|
||||
/**
|
||||
* @property common\components\giro\GiroUzenetsorszam $uzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
* */
|
||||
class GiroBeszedFej extends GiroBase{
|
||||
|
||||
public $recordTipus = "01";
|
||||
public $uzenetTipus = "BESZED";
|
||||
public $duplumKod = "";
|
||||
public $kezdemenyezoAzonosito = "";
|
||||
|
||||
public $uzenetSorszam;
|
||||
public $kezdemenyezoBankszamla;
|
||||
|
||||
public $ertesitesiHatarido;
|
||||
public $jogcim = "BEE";
|
||||
public $kezdemenyezoCegNeve;
|
||||
public $kozlemeny;
|
||||
|
||||
|
||||
public function __construct(){
|
||||
$this->uzenetSorszam = new GiroUzenetsorszam();
|
||||
$this->kezdemenyezoBankszamla = new GiroBankszamla();
|
||||
}
|
||||
|
||||
|
||||
public function toString( ) {
|
||||
return $this->recordTipus
|
||||
.$this->uzenetTipus
|
||||
. $this->duplumKod
|
||||
. $this->szamKitolt( $this->kezdemenyezoAzonosito , 13)
|
||||
. $this->uzenetSorszam->toString()
|
||||
. $this->kezdemenyezoBankszamla->toString()
|
||||
. $this->szamKitolt($this->ertesitesiHatarido,8)
|
||||
. $this->jogcim
|
||||
. $this->szovegKitolt($this->kezdemenyezoCegNeve, 35)
|
||||
. $this->szovegKitolt($this->kozlemeny, 70)
|
||||
. $this->rekordVege()
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
30
common/components/giro/GiroBeszedLab.php
Normal file
30
common/components/giro/GiroBeszedLab.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
namespace common\components\giro;
|
||||
|
||||
use common\components\giro\GiroBase;
|
||||
/**
|
||||
* @property common\components\giro\GiroUzenetsorszam $uzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
* */
|
||||
class GiroBeszedLab extends GiroBase{
|
||||
|
||||
public $rekordTipus = "03";
|
||||
public $tetelekSzama = 0;
|
||||
public $tetelekOsszerteke = 0;
|
||||
|
||||
|
||||
public function GiroBeszedLab(){
|
||||
|
||||
}
|
||||
|
||||
public function toString(){
|
||||
return $this->rekordTipus
|
||||
. $this->szamKitolt($this->tetelekSzama,6)
|
||||
. $this->szamKitolt($this->tetelekOsszerteke,16)
|
||||
. $this->rekordVege()
|
||||
;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
44
common/components/giro/GiroBeszedTetel.php
Normal file
44
common/components/giro/GiroBeszedTetel.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
namespace common\components\giro;
|
||||
|
||||
use common\components\giro\GiroBase;
|
||||
/**
|
||||
* @property common\components\giro\GiroUzenetsorszam $uzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kotelezettBankszamla
|
||||
* */
|
||||
class GiroBeszedTetel extends GiroBase{
|
||||
|
||||
public $rekordTipus = "02";
|
||||
public $tetelSorszam = 0;
|
||||
public $terhelesiDatum = "";
|
||||
public $osszeg;
|
||||
public $kotelezettBankszamla;
|
||||
public $ugyfelazonositoAKezdemenyezonel;
|
||||
public $ugyfelNeve;
|
||||
public $ugyfelCime;
|
||||
public $szamlaTulajdonosNeve;
|
||||
public $kozlemeny;
|
||||
|
||||
|
||||
public function __construct(){
|
||||
$this->kotelezettBankszamla = new GiroBankszamla();
|
||||
}
|
||||
|
||||
public function toString(){
|
||||
return $this->rekordTipus
|
||||
. $this->szamKitolt($this->tetelSorszam,6)
|
||||
. $this->terhelesiDatum
|
||||
. $this->szamKitolt($this->osszeg, 10)
|
||||
. $this->kotelezettBankszamla->toString()
|
||||
. $this->szovegKitolt($this->ugyfelazonositoAKezdemenyezonel ,24)
|
||||
. $this->szovegKitolt( $this->ugyfelNeve ,35 )
|
||||
. $this->szovegKitolt($this->ugyfelCime , 35 )
|
||||
. $this->szovegKitolt($this->szamlaTulajdonosNeve , 35 )
|
||||
. $this->szovegKitolt($this->kozlemeny , 70 )
|
||||
. $this->rekordVege()
|
||||
;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
38
common/components/giro/GiroDETSTA.php
Normal file
38
common/components/giro/GiroDETSTA.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace common\components\giro;
|
||||
|
||||
use common\components\giro\GiroBase;
|
||||
|
||||
/**
|
||||
*
|
||||
* @property common\components\giro\GiroUzenetsorszam $uzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
*
|
||||
*/
|
||||
class GiroDETSTA extends GiroBase {
|
||||
|
||||
public $fej;
|
||||
public $lab;
|
||||
public $tetelek = [];
|
||||
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static function parse($content){
|
||||
$detsta = new GiroDETSTA();
|
||||
$array = preg_split("/\r\n|\n|\r/", $content);
|
||||
$detsta->fej = GiroDETSTAFej::parse($array[0]);
|
||||
$detsta->lab = GiroDETSTALab::parse($array[count($array) -1]);
|
||||
|
||||
for ( $i = 1 ; $i < count($array) -1; $i++ ){
|
||||
$row = $array[$i];
|
||||
$tetel = GiroDETSTATetel::parse($row);
|
||||
$detsta->tetelek[] = $tetel;
|
||||
}
|
||||
return $detsta;
|
||||
}
|
||||
|
||||
}
|
||||
55
common/components/giro/GiroDETSTAFej.php
Normal file
55
common/components/giro/GiroDETSTAFej.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
namespace common\components\giro;
|
||||
|
||||
|
||||
/**
|
||||
* @property common\components\giro\GiroUzenetsorszam $csoportosUzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
* */
|
||||
class GiroDETSTAFej extends GiroBase{
|
||||
|
||||
public $recordTipus = "01";
|
||||
public $uzenetTipus = "DETSTA";
|
||||
public $jelentesJelzo = "9";
|
||||
public $kezdemenyezoAzonosito = "";
|
||||
|
||||
public $csoportosUzenetSorszam;
|
||||
public $detstaUzenetSorszam;
|
||||
public $ido;
|
||||
|
||||
|
||||
public function __construct(){
|
||||
$this->csoportosUzenetSorszam = new GiroUzenetsorszam();
|
||||
$this->detstaUzenetSorszam = new GiroUzenetsorszam();
|
||||
}
|
||||
|
||||
public function toString( ) {
|
||||
return $this->recordTipus
|
||||
.$this->uzenetTipus
|
||||
. $this->jelentesJelzo
|
||||
. $this->szamKitolt( $this->kezdemenyezoAzonosito , 13)
|
||||
. $this->csoportosUzenetSorszam->toString()
|
||||
. $this->detstaUzenetSorszam->toString()
|
||||
. $this->ido
|
||||
. $this->rekordVege()
|
||||
;
|
||||
}
|
||||
|
||||
public static function parse($row){
|
||||
$fej = new GiroDETSTAFej();
|
||||
|
||||
$fej->recordTipus = substr($row,0,2 );
|
||||
$fej->uzenetTipus = substr($row, 2,6 );
|
||||
$fej->jelentesJelzo = substr($row, 8,1);
|
||||
$fej->kezdemenyezoAzonosito = substr($row, 9,13);
|
||||
$fej->csoportosUzenetSorszam ->osszeallitasDatuma = substr($row, 22, 8);
|
||||
$fej->csoportosUzenetSorszam->sorszam = substr($row, 30, 4);
|
||||
$fej->detstaUzenetSorszam ->osszeallitasDatuma = substr($row, 34,8);
|
||||
$fej->detstaUzenetSorszam->sorszam = substr($row, 42,4);
|
||||
$fej->ido = substr($row, 46,6);
|
||||
|
||||
return $fej;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
44
common/components/giro/GiroDETSTALab.php
Normal file
44
common/components/giro/GiroDETSTALab.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace common\components\giro;
|
||||
|
||||
/**
|
||||
*
|
||||
* @property common\components\giro\GiroUzenetsorszam $csoportosUzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
*
|
||||
*/
|
||||
class GiroDETSTALab extends GiroBase {
|
||||
|
||||
public $recordTipus = "03";
|
||||
public $teljesitettTetelekSzama = "0";
|
||||
public $teljesitettTetelekOsszerteke = "0";
|
||||
public $visszautasitottTetelekSzama = "0";
|
||||
public $visszautasitottTetelekOsszerteke = "0";
|
||||
public $megNemValaszoltTetelekSzama = "0";
|
||||
public $megNemValaszoltTetelekOsszerteke = "0";
|
||||
public function __construct() {
|
||||
}
|
||||
public function toString() {
|
||||
return $this->recordTipus
|
||||
. $this->szamKitolt ( $this->teljesitettTetelekSzama, 6 )
|
||||
. $this->szamKitolt ( $this->teljesitettTetelekOsszerteke, 16 )
|
||||
. $this->szamKitolt ( $this->visszautasitottTetelekSzama, 6 )
|
||||
. $this->szamKitolt ( $this->visszautasitottTetelekOsszerteke, 16 )
|
||||
. $this->szamKitolt ( $this->megNemValaszoltTetelekSzama, 6 )
|
||||
. $this->szamKitolt ( $this->megNemValaszoltTetelekOsszerteke, 16 )
|
||||
. $this->rekordVege();
|
||||
;
|
||||
}
|
||||
public static function parse($row) {
|
||||
$lab = new GiroDETSTALab ();
|
||||
$lab->recordTipus = substr($row,0,2 );
|
||||
$lab->teljesitettTetelekSzama = substr($row,2,6 );
|
||||
$lab->teljesitettTetelekOsszerteke = substr($row,8,16 );
|
||||
$lab->visszautasitottTetelekSzama = substr($row,24,6 );
|
||||
$lab->visszautasitottTetelekOsszerteke = substr($row,30,16 );
|
||||
$lab->megNemValaszoltTetelekSzama = substr($row,46,6 );
|
||||
$lab->megNemValaszoltTetelekOsszerteke = substr($row,52, 16 );
|
||||
return $lab;
|
||||
}
|
||||
}
|
||||
61
common/components/giro/GiroDETSTATetel.php
Normal file
61
common/components/giro/GiroDETSTATetel.php
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
namespace common\components\giro;
|
||||
|
||||
/**
|
||||
*
|
||||
* @property common\components\giro\GiroUzenetsorszam $csoportosUzenetSorszam
|
||||
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
|
||||
*
|
||||
*/
|
||||
class GiroDETSTATetel extends GiroBase {
|
||||
public static $INFORMACIO_TELJESITETT = "00";
|
||||
public static $INFORMACIO_VISSZAUTASIOTT_VALASZ_NELKUL = "NO";
|
||||
public static $INFORMACIOK = [
|
||||
'02' => "nem létező 'címzett' számlaszám",
|
||||
'03' => "megszűnt 'címzett' számlaszám",
|
||||
'06' => "a 'címzett' számlaszáma nem értelmezhető (az ügyfél számlaszáma helyett a bank ügyfélforgalmi számlaszáma szerepel)",
|
||||
'10' => "a számlatulajdonos neve és a megadott számlaszám nem tartozik össze szemantikai, 'teljesíthetetlen' ok miatti visszaküldés (RETURN)",
|
||||
'50' => "fedezethiány miatti visszaküldés",
|
||||
'51' => "felhatalmazás hiánya miatti visszaküldés",
|
||||
'54' => "általános visszaküldés (az ügyfél megbízása alapján)",
|
||||
'65' => "összeghatár feletti beszedési megbízás",
|
||||
'99' => "egyéb hiba"
|
||||
];
|
||||
|
||||
public $recordTipus = "01";
|
||||
public $tetelSorszam = "0";
|
||||
public $osszeg = "0";
|
||||
public $eredetiTetelElszamolasiDatuma = "";
|
||||
public $visszajelzesInformacio;
|
||||
public $feldolgozasDatum;
|
||||
public $terhelesiDatum;
|
||||
public $valaszHivatkozasiKod;
|
||||
public $eredetiHivatkozasiKod;
|
||||
public $ugyfelAzonosito;
|
||||
|
||||
public function __construct() {
|
||||
$this->csoportosUzenetSorszam = new GiroUzenetsorszam ();
|
||||
$this->detstaUzenetSorszam = new GiroUzenetsorszam ();
|
||||
}
|
||||
public function toString() {
|
||||
return $this->recordTipus . $this->szamKitolt ( $this->tetelSorszam, 6 ) . $this->szamKitolt ( $this->osszeg, 10 ) . $this->eredetiTetelElszamolasiDatuma . $this->visszajelzesInformacio . $this->feldolgozasDatum . $this->terhelesiDatum . $this->szovegKitolt ( $this->valaszHivatkozasiKod, 29 ) . $this->szovegKitolt ( $this->eredetiHivatkozasiKod, 29 ) . $this->szovegKitolt ( $this->ugyfelAzonosito, 29 );
|
||||
}
|
||||
|
||||
public static function parse($row) {
|
||||
|
||||
$tetel = new GiroDETSTATetel ();
|
||||
$tetel->recordTipus = substr ( $row, 0, 2 );
|
||||
$tetel->tetelSorszam = substr ( $row, 2, 6 );
|
||||
$tetel->osszeg = substr ( $row, 8, 10 );
|
||||
$tetel->eredetiTetelElszamolasiDatuma = substr ( $row, 18, 8 );
|
||||
$tetel->visszajelzesInformacio = substr ( $row, 26, 2 );
|
||||
$tetel->feldolgozasDatum = substr ( $row, 28, 8 );
|
||||
$tetel->terhelesiDatum = substr ( $row, 36, 8 );
|
||||
$tetel->valaszHivatkozasiKod = substr ( $row, 44, 29 );
|
||||
$tetel->eredetiHivatkozasiKod = substr ( $row, 73, 29 );
|
||||
$tetel->ugyfelAzonosito = substr ( $row, 102, 24 );
|
||||
|
||||
return $tetel;
|
||||
}
|
||||
}
|
||||
16
common/components/giro/GiroUzenetSorszam.php
Normal file
16
common/components/giro/GiroUzenetSorszam.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace common\components\giro;
|
||||
|
||||
use common\components\giro\GiroBase;
|
||||
|
||||
class GiroUzenetsorszam extends GiroBase{
|
||||
|
||||
public $osszeallitasDatuma;
|
||||
public $sorszam;
|
||||
|
||||
public function toString( ) {
|
||||
return $this->osszeallitasDatuma . $this->szamKitolt( $this->sorszam,4);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
@ -13,5 +13,8 @@ return [
|
||||
'login_reception_email' => true, //if reception login should send email
|
||||
'login_admin_email' => true, //if admin login should send email
|
||||
'account_state_close_preload_money' => 'true',//preload money wnen show account state close page
|
||||
|
||||
'ugiro_duplom_kod' => 1,
|
||||
'ugiro_kezdemenyezo_szamlaszam' => '5860025215371128',
|
||||
'ugiro_kezdemenyezo_azonosito' => 'A25366936T244',
|
||||
|
||||
];
|
||||
|
||||
62
common/models/CardKeyAssignment.php
Normal file
62
common/models/CardKeyAssignment.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace common\models;
|
||||
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use yii\behaviors\TimestampBehavior;
|
||||
|
||||
/**
|
||||
* This is the model class for table "card_key_assignment".
|
||||
*
|
||||
* @property integer $id_card
|
||||
* @property integer $id_key
|
||||
* @property integer $id_user
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
*/
|
||||
class CardKeyAssignment extends \yii\db\ActiveRecord
|
||||
{
|
||||
|
||||
public function behaviors()
|
||||
{
|
||||
return ArrayHelper::merge( [
|
||||
[
|
||||
'class' => TimestampBehavior::className(),
|
||||
'value' => function(){ return date('Y-m-d H:i:s' ); }
|
||||
],
|
||||
], parent::behaviors());
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public static function tableName()
|
||||
{
|
||||
return 'card_key_assignment';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_card', 'id_key', 'id_user'], 'integer'],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
'id_card' => Yii::t('common/image', 'Id Card'),
|
||||
'id_key' => Yii::t('common/image', 'Id Key'),
|
||||
'id_user' => Yii::t('common/image', 'Id User'),
|
||||
'created_at' => Yii::t('common/image', 'Created At'),
|
||||
'updated_at' => Yii::t('common/image', 'Updated At'),
|
||||
];
|
||||
}
|
||||
}
|
||||
@ -57,7 +57,7 @@ class CardSearch extends Card
|
||||
{
|
||||
|
||||
$query = new Query();
|
||||
$query->select(['card.number as card_number' , 'customer.name as customer_name', 'customer.email as customer_email','customer.phone as customer_phone']);
|
||||
$query->select(['card.id_card as card_id_card', 'card.number as card_number' , 'customer.name as customer_name', 'customer.email as customer_email','customer.phone as customer_phone']);
|
||||
$query->from('card');
|
||||
$query->innerJoin('customer','card.id_card = customer.id_customer_card');
|
||||
$query->orderBy(['customer.name' => SORT_ASC]);
|
||||
|
||||
@ -46,7 +46,7 @@ class Ticket extends \common\models\BaseFitnessActiveRecord
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_user', 'id_ticket_type', 'id_account', 'id_discount', 'max_usage_count', 'usage_count', 'status', 'price_brutto'], 'integer'],
|
||||
[[ 'id_user', 'id_ticket_type', 'id_account', 'id_discount', 'max_usage_count', 'usage_count', 'status', 'price_brutto'], 'integer'],
|
||||
[['start', 'end', 'created_at', 'updated_at'], 'safe'],
|
||||
[['comment'], 'required'],
|
||||
[['comment'], 'string', 'max' => 255]
|
||||
@ -59,7 +59,7 @@ class Ticket extends \common\models\BaseFitnessActiveRecord
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
'id_ticket' => Yii::t('common/ticket', 'Id Ticket'),
|
||||
'id_ticket' => Yii::t('common/ticket', 'Bérlet azonosító'),
|
||||
'id_user' => Yii::t('common/ticket', 'Id User'),
|
||||
'id_ticket_type' => Yii::t('common/ticket', 'Id Ticket Type'),
|
||||
'id_account' => Yii::t('common/ticket', 'Id Account'),
|
||||
@ -233,4 +233,20 @@ class Ticket extends \common\models\BaseFitnessActiveRecord
|
||||
return $query;
|
||||
}
|
||||
|
||||
public static function statuses( ) {
|
||||
return [
|
||||
Ticket::STATUS_ACTIVE => 'Aktív',
|
||||
Ticket::STATUS_DELETED => 'Törölve',
|
||||
];
|
||||
}
|
||||
|
||||
public static function toStatusName($id_status){
|
||||
$result = "Ismeretlen";
|
||||
$statuses = Ticket::statuses();
|
||||
if ( array_key_exists($id_status, $statuses)){
|
||||
$result = $statuses[$id_status];
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
156
common/models/TicketInstallmentRequest.php
Normal file
156
common/models/TicketInstallmentRequest.php
Normal file
@ -0,0 +1,156 @@
|
||||
<?php
|
||||
|
||||
namespace common\models;
|
||||
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use yii\behaviors\TimestampBehavior;
|
||||
|
||||
/**
|
||||
* This is the model class for table "ticket_installment_request".
|
||||
*
|
||||
* @property integer $id_ticket_installment_request
|
||||
* @property integer $id_ticket
|
||||
* @property integer $id_customer
|
||||
* @property integer $id_transfer
|
||||
* @property integer $status
|
||||
* @property integer $money
|
||||
* @property string $customer_name
|
||||
* @property string $bank_name
|
||||
* @property string $bank_address
|
||||
* @property string $bank_account
|
||||
* @property integer $priority
|
||||
* @property string $request_sent_at
|
||||
* @property string $request_processed_at
|
||||
* @property string $request_target_time_at
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
*/
|
||||
class TicketInstallmentRequest extends \yii\db\ActiveRecord
|
||||
{
|
||||
///status //pending | marked_to_send | sent | canceled | rejected | accepted |
|
||||
|
||||
public static $STATUS_PENDING = 0;
|
||||
public static $STATUS_MARKED_TO_SEND = 10;
|
||||
public static $STATUS_SENT = 20;
|
||||
public static $STATUS_CANCELED = 30;
|
||||
public static $STATUS_REJECTED = 40;
|
||||
public static $STATUS_ACCEPTED = 50;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public static function tableName()
|
||||
{
|
||||
return 'ticket_installment_request';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_ticket', 'id_customer', 'id_transfer', 'status', 'money', 'priority'], 'integer'],
|
||||
[['request_sent_at', 'request_processed_at', 'request_target_time_at', 'created_at', 'updated_at'], 'required'],
|
||||
[['request_sent_at', 'request_processed_at', 'request_target_time_at', 'created_at', 'updated_at'], 'safe'],
|
||||
[['customer_name', 'bank_name', 'bank_address', 'bank_account'], 'string', 'max' => 255]
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
'id_ticket_installment_request' => Yii::t('common/ticket_installment_request', 'Id Ticket Installment Request'),
|
||||
'id_ticket' => Yii::t('common/ticket_installment_request', 'Id Ticket'),
|
||||
'id_customer' => Yii::t('common/ticket_installment_request', 'Id Customer'),
|
||||
'id_transfer' => Yii::t('common/ticket_installment_request', 'Id Transfer'),
|
||||
'status' => Yii::t('common/ticket_installment_request', 'Status'),
|
||||
'money' => Yii::t('common/ticket_installment_request', 'Money'),
|
||||
'customer_name' => Yii::t('common/ticket_installment_request', 'Customer Name'),
|
||||
'bank_name' => Yii::t('common/ticket_installment_request', 'Bank Name'),
|
||||
'bank_address' => Yii::t('common/ticket_installment_request', 'Bank Address'),
|
||||
'bank_account' => Yii::t('common/ticket_installment_request', 'Bank Account'),
|
||||
'priority' => Yii::t('common/ticket_installment_request', 'Priority'),
|
||||
'request_sent_at' => Yii::t('common/ticket_installment_request', 'Request Sent At'),
|
||||
'request_processed_at' => Yii::t('common/ticket_installment_request', 'Request Processed At'),
|
||||
'request_target_time_at' => Yii::t('common/ticket_installment_request', 'Request Target Time At'),
|
||||
'created_at' => Yii::t('common/ticket_installment_request', 'Created At'),
|
||||
'updated_at' => Yii::t('common/ticket_installment_request', 'Updated At'),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
public function behaviors()
|
||||
{
|
||||
return ArrayHelper::merge( [
|
||||
[
|
||||
'class' => TimestampBehavior::className(),
|
||||
'value' => function(){ return date('Y-m-d H:i:s' ); }
|
||||
],
|
||||
], parent::behaviors());
|
||||
}
|
||||
|
||||
public function getCustomer(){
|
||||
return $this->hasOne( Customer::className(), ["id_customer" =>"id_customer" ] );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param common\models\Ticket $ticket
|
||||
* @param common\models\TicketType $type
|
||||
* @return common\models\TicketInstallmentRequest[]
|
||||
* */
|
||||
public static function createInstallments($ticket,$type,$customer){
|
||||
$result = [];
|
||||
if ( $type->isInstallment() ){
|
||||
$count = $type->installment_count;
|
||||
$ticketCreatedAt = time();
|
||||
$money = $type->price_brutto;
|
||||
for ( $i = 1; $i <= $count; $i++){
|
||||
$request = TicketInstallmentRequest::createInstallment($ticket, $type, $customer, $money, $ticketCreatedAt, $i);
|
||||
$result[] = $request;
|
||||
}
|
||||
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function createInstallment($ticket,$type,$customer,$money,$ticketCreated,$index){
|
||||
$request = new TicketInstallmentRequest();
|
||||
$request->id_ticket = $ticket->id_ticket;
|
||||
$request->id_customer = $customer->id_customer;
|
||||
$request->status = TicketInstallmentRequest::$STATUS_PENDING;
|
||||
$request->priority = $index;
|
||||
$request->request_target_time_at = date('Y-m-d H:i:s', strtotime("+".$index." month" ));
|
||||
$request->request_processed_at = null;
|
||||
$request->request_sent_at = null;
|
||||
$request->money = $money;
|
||||
|
||||
return $request;
|
||||
}
|
||||
|
||||
public static function statuses(){
|
||||
return [
|
||||
TicketInstallmentRequest::$STATUS_PENDING => 'Indításra vár',
|
||||
TicketInstallmentRequest::$STATUS_MARKED_TO_SEND=> 'Beküldésre jelölve',
|
||||
TicketInstallmentRequest::$STATUS_SENT=> 'Beküldve',
|
||||
TicketInstallmentRequest::$STATUS_CANCELED=> 'Törölve',
|
||||
TicketInstallmentRequest::$STATUS_REJECTED=> 'Visszautasítva',
|
||||
TicketInstallmentRequest::$STATUS_ACCEPTED=> 'Sikeresen végrehajtva',
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
public static function toStatusName($id_status){
|
||||
$result = "Ismeretlen";
|
||||
$statuses = TicketInstallmentRequest::statuses();
|
||||
if ( array_key_exists($id_status, $statuses)){
|
||||
$result = $statuses[$id_status];
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
@ -18,6 +18,9 @@ use yii\helpers\ArrayHelper;
|
||||
* @property integer $id_account
|
||||
* @property integer $flag_student
|
||||
* @property integer $status
|
||||
* @property integer installment_enabled
|
||||
* @property integer installment_count
|
||||
* @property integer installment_money
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
*/
|
||||
@ -33,6 +36,9 @@ class TicketType extends \common\models\BaseFitnessActiveRecord {
|
||||
const FLAG_STUDENT_OFF = 0;
|
||||
const FLAG_STUDENT_ON = 1;
|
||||
|
||||
const INSTALLMENT_OFF = 0;
|
||||
const INSTALLMENT_ON = 1;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
@ -89,6 +95,15 @@ class TicketType extends \common\models\BaseFitnessActiveRecord {
|
||||
////////////////
|
||||
[['id_account',], 'integer'],
|
||||
[['id_account',], 'validateIdAccount'],
|
||||
|
||||
/////////////////////
|
||||
//INSTALLMENT ENABLED
|
||||
/////////////////////
|
||||
[['installment_enabled',], 'integer'],
|
||||
[['installment_enabled',], 'in', 'range' => [ self::INSTALLMENT_ON, self::INSTALLMENT_OFF ]],
|
||||
|
||||
[['installment_money',], 'integer'],
|
||||
[['installment_count',], 'integer'],
|
||||
];
|
||||
}
|
||||
|
||||
@ -110,6 +125,9 @@ class TicketType extends \common\models\BaseFitnessActiveRecord {
|
||||
'status' => Yii::t('common/ticket_type', 'Status'),
|
||||
'created_at' => Yii::t('common/ticket_type', 'Created At'),
|
||||
'updated_at' => Yii::t('common/ticket_type', 'Updated At'),
|
||||
'installment_enabled' => Yii::t('common/ticket_type', 'Részlet fizetés a brutto áron felül'),
|
||||
'installment_count' => Yii::t('common/ticket_type', 'Havi részletek száma'),
|
||||
'installment_money' => Yii::t('common/ticket_type', 'Havi részlet összege'),
|
||||
];
|
||||
}
|
||||
|
||||
@ -170,6 +188,9 @@ class TicketType extends \common\models\BaseFitnessActiveRecord {
|
||||
public function isStudent(){
|
||||
return $this->flag_student == ( self::FLAG_STUDENT_ON);
|
||||
}
|
||||
public function isInstallment(){
|
||||
return $this->installment_enabled == ( self::INSTALLMENT_ON);
|
||||
}
|
||||
|
||||
|
||||
public function validateIdAccount($attribute,$params){
|
||||
|
||||
@ -51,7 +51,10 @@ class Transfer extends \common\models\BaseFitnessActiveRecord
|
||||
const DIRECTION_IN = 20;//MONEY GOES IN TO THE ACCOUNT ( COMPANY EARN MONEY )
|
||||
|
||||
const PAYMENT_METHOD_CASH = 10;
|
||||
const PAYMENT_METHOD_TRANSFER = 20;
|
||||
const PAYMENT_METHOD_BANCCARD = 20; //BANKKÁRTYA
|
||||
const PAYMENT_METHOD_TRANSFER= 30; // ÁTUTALÁS
|
||||
const PAYMENT_METHOD_CAFETERY = 40;//SZÉCHENYI KÁRTYA
|
||||
// const PAYMENT_METHOD_DEBIT_MANDATE = 50;//CSOPORTOS BESZEDÉSI MEGBÍZÁS
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
@ -464,7 +467,10 @@ class Transfer extends \common\models\BaseFitnessActiveRecord
|
||||
public static function paymentMethods( ) {
|
||||
return [
|
||||
self::PAYMENT_METHOD_CASH=> Yii::t('common/transfer','Készpénz'),
|
||||
self::PAYMENT_METHOD_TRANSFER => Yii::t('common/transfer','Bankkártyás fizetés'),
|
||||
self::PAYMENT_METHOD_BANCCARD => Yii::t('common/transfer','Bankkártyás fizetés'),
|
||||
self::PAYMENT_METHOD_TRANSFER => Yii::t('common/transfer','Átutalás'),
|
||||
self::PAYMENT_METHOD_CAFETERY => Yii::t('common/transfer','Széchenyi kártya'),
|
||||
// self::PAYMENT_METHOD_DEBIT_MANDATE => Yii::t('common/transfer','Csoportos beszedési megbízás'),
|
||||
];
|
||||
}
|
||||
public static function statuses( ) {
|
||||
|
||||
86
common/models/Ugiro.php
Normal file
86
common/models/Ugiro.php
Normal file
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace common\models;
|
||||
|
||||
use Yii;
|
||||
use yii\behaviors\TimestampBehavior;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
/**
|
||||
* This is the model class for table "ugiro".
|
||||
*
|
||||
* @property integer $id_ugiro
|
||||
* @property integer $id_user
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
*/
|
||||
class Ugiro extends \yii\db\ActiveRecord
|
||||
{
|
||||
|
||||
public static $PATH_MEGBIZAS = "giro/megbizas";
|
||||
public static $STATUS_SENT = 0;
|
||||
public static $STATUS_FINISHED = 1;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public static function tableName()
|
||||
{
|
||||
return 'ugiro';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
public function behaviors()
|
||||
{
|
||||
return ArrayHelper::merge( [
|
||||
[
|
||||
'class' => TimestampBehavior::className(),
|
||||
'value' => function(){ return date('Y-m-d H:i:s' ); }
|
||||
],
|
||||
], parent::behaviors());
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
'id_ugiro' => Yii::t('common/ticket_installment_request', 'Id Ugiro'),
|
||||
'id_user' => Yii::t('common/ticket_installment_request', 'Id User'),
|
||||
'created_at' => Yii::t('common/ticket_installment_request', 'Created At'),
|
||||
'updated_at' => Yii::t('common/ticket_installment_request', 'Updated At'),
|
||||
];
|
||||
}
|
||||
|
||||
public function getUser(){
|
||||
return $this->hasOne( User::className(), ["id" =>"id_user" ] );
|
||||
}
|
||||
|
||||
public static function statuses() {
|
||||
return [
|
||||
static::$STATUS_SENT =>"Folyamatban",
|
||||
static::$STATUS_FINISHED =>"Befejezve",
|
||||
]
|
||||
;
|
||||
}
|
||||
|
||||
public function getStatusName( ) {
|
||||
$statuses = static::statuses() ;
|
||||
$result = "Ismeretlen";
|
||||
if ( array_key_exists($this->status, $statuses)){
|
||||
$result = $statuses[$this->status];
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
51
common/models/UgiroRequestAssignment.php
Normal file
51
common/models/UgiroRequestAssignment.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
namespace common\models;
|
||||
|
||||
use Yii;
|
||||
|
||||
/**
|
||||
* This is the model class for table "ugiro_request_assignment".
|
||||
*
|
||||
* @property integer $id_ugiro_request_assignment
|
||||
* @property integer $id_ugiro
|
||||
* @property integer $id_request
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
*/
|
||||
class UgiroRequestAssignment extends \yii\db\ActiveRecord
|
||||
{
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public static function tableName()
|
||||
{
|
||||
return 'ugiro_request_assignment';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_ugiro', 'id_request'], 'integer'],
|
||||
[['created_at', 'updated_at'], 'required'],
|
||||
[['created_at', 'updated_at'], 'safe']
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
'id_ugiro_request_assignment' => Yii::t('common/ugiro_request_assignment', 'Id Ugiro Request Assignment'),
|
||||
'id_ugiro' => Yii::t('common/ugiro_request_assignment', 'Id Ugiro'),
|
||||
'id_request' => Yii::t('common/ugiro_request_assignment', 'Id Request'),
|
||||
'created_at' => Yii::t('common/ugiro_request_assignment', 'Created At'),
|
||||
'updated_at' => Yii::t('common/ugiro_request_assignment', 'Updated At'),
|
||||
];
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160117_182720_add_card_key_assignment extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$tableOptions = null;
|
||||
if ($this->db->driverName === 'mysql') {
|
||||
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
|
||||
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
|
||||
}
|
||||
|
||||
$this->createTable('{{%card_key_assignment}}', [
|
||||
'id_card' => $this->integer(11),
|
||||
'id_key' => $this->integer(11),
|
||||
'id_user' => $this->integer(11),
|
||||
'created_at' => $this->dateTime()->notNull(),
|
||||
'updated_at' => $this->dateTime()->notNull(),
|
||||
], $tableOptions);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Schema;
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160119_103347_alter__table__ticket_type__add_installment_fields extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$this->addColumn("ticket_type", "installment_enabled", "int default 0");
|
||||
$this->addColumn("ticket_type", "installment_count", "int");
|
||||
$this->addColumn("ticket_type", "installment_money", "int");
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Schema;
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160119_110151_create__table__ticket__installment_request extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$tableOptions = null;
|
||||
if ($this->db->driverName === 'mysql') {
|
||||
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
|
||||
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
|
||||
}
|
||||
|
||||
$this->createTable('{{%ticket_installment_request}}', [
|
||||
'id_ticket_installment_request' => $this->primaryKey(),
|
||||
'id_ticket' => $this->integer(11),
|
||||
'id_customer' => $this->integer(11),
|
||||
'id_transfer' => $this->integer(11),
|
||||
'status' => $this->integer(11),
|
||||
'money' => $this->integer(11),
|
||||
'customer_name' => $this->string(),
|
||||
'bank_name' => $this->string(),
|
||||
'bank_address' => $this->string(),
|
||||
'bank_account' => $this->string(),
|
||||
'priority' => $this->integer(11),
|
||||
'request_sent_at' => $this->dateTime(),
|
||||
'request_processed_at' => $this->dateTime(),
|
||||
'request_target_time_at' => $this->dateTime(),
|
||||
'created_at' => $this->dateTime()->notNull(),
|
||||
'updated_at' => $this->dateTime()->notNull(),
|
||||
], $tableOptions);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
52
console/migrations/m160120_044951_add__ugiro_tables.php
Normal file
52
console/migrations/m160120_044951_add__ugiro_tables.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Schema;
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160120_044951_add__ugiro_tables extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$tableOptions = null;
|
||||
if ($this->db->driverName === 'mysql') {
|
||||
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
|
||||
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
|
||||
}
|
||||
|
||||
$this->createTable('{{%ugiro}}', [
|
||||
'id_ugiro' => $this->primaryKey(),
|
||||
'id_user' => $this->integer(11),
|
||||
'created_at' => $this->dateTime()->notNull(),
|
||||
'updated_at' => $this->dateTime()->notNull(),
|
||||
], $tableOptions);
|
||||
|
||||
$tableOptions = null;
|
||||
if ($this->db->driverName === 'mysql') {
|
||||
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
|
||||
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
|
||||
}
|
||||
|
||||
$this->createTable('{{%ugiro_request_assignment}}', [
|
||||
'id_ugiro_request_assignment' => $this->primaryKey(),
|
||||
'id_ugiro' => $this->integer(11),
|
||||
'id_request' => $this->integer(11),
|
||||
'created_at' => $this->dateTime()->notNull(),
|
||||
'updated_at' => $this->dateTime()->notNull(),
|
||||
], $tableOptions);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Schema;
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160120_050556_alter__table__ugiro_add_column_path extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$this->addColumn("ugiro", "path", "string");
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
echo "m160120_050556_alter__table__ugiro_add_column_path cannot be reverted.\n";
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Schema;
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160120_054556_alter__table__customer__add__column__bankaccount extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$this->addColumn("customer", "bank_account", "string");
|
||||
$this->addColumn("customer", "bank_name", "string");
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
echo "m160120_054556_alter__table__customer__add__column__bankaccount cannot be reverted.\n";
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Schema;
|
||||
use yii\db\Migration;
|
||||
|
||||
class m160120_093445_alter__table__ugiro__add__status extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$this->addColumn("ugiro", "status", "int");
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
// Use safeUp/safeDown to run migration code within a transaction
|
||||
public function safeUp()
|
||||
{
|
||||
}
|
||||
|
||||
public function safeDown()
|
||||
{
|
||||
}
|
||||
*/
|
||||
}
|
||||
109
frontend/controllers/KeyController.php
Normal file
109
frontend/controllers/KeyController.php
Normal file
@ -0,0 +1,109 @@
|
||||
<?php
|
||||
|
||||
namespace frontend\controllers;
|
||||
|
||||
use Yii;
|
||||
use common\models\Key;
|
||||
use yii\web\Controller;
|
||||
use yii\web\NotFoundHttpException;
|
||||
use yii\filters\VerbFilter;
|
||||
use yii\base\Object;
|
||||
use yii\db\Query;
|
||||
use yii\helpers\Json;
|
||||
use frontend\models\KeySearch;
|
||||
use frontend\models\ReceptionForm;
|
||||
use frontend\models\KeyToggleForm;
|
||||
use common\models\Customer;
|
||||
use common\models\Card;
|
||||
use common\models\CardKeyAssignment;
|
||||
|
||||
/**
|
||||
* KeyController implements the CRUD actions for Key model.
|
||||
*/
|
||||
class KeyController extends Controller
|
||||
{
|
||||
public function behaviors()
|
||||
{
|
||||
return [
|
||||
'verbs' => [
|
||||
'class' => VerbFilter::className(),
|
||||
'actions' => [
|
||||
'delete' => ['post'],
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists all Key models.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionIndex( $id_card )
|
||||
{
|
||||
$card = Card::findOne($id_card);
|
||||
if ( !isset( $card ) ){
|
||||
throw new NotFoundHttpException("Vendég nem található");
|
||||
}
|
||||
|
||||
$searchModel = new KeySearch();
|
||||
$searchModel->card = $card;
|
||||
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
||||
|
||||
return $this->render('index', [
|
||||
'searchModel' => $searchModel,
|
||||
'dataProvider' => $dataProvider,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes an existing CardKeyAssignment model.
|
||||
* If deletion is successful, the browser will be redirected to the 'index' page.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionDelete($id_key)
|
||||
{
|
||||
$key = Key::findOne($id_key);
|
||||
if ( !isset($key)){
|
||||
throw new NotFoundHttpException("Kulcs nem található");
|
||||
}
|
||||
|
||||
|
||||
CardKeyAssignment::deleteAll(['id_key' => $key->id_key]);
|
||||
|
||||
\Yii::$app->session->setFlash('success','Kulcs visszaadva');
|
||||
|
||||
return $this->redirect(['customer/reception' ]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Lists all Key models.
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionToggle($number = null)
|
||||
{
|
||||
// $this->findByNumber($number);
|
||||
$receptionForm = new ReceptionForm();
|
||||
$receptionForm->number = $number;
|
||||
$receptionForm->readCard ();
|
||||
|
||||
$customer = $receptionForm->customer;
|
||||
$card = $receptionForm->card;
|
||||
|
||||
|
||||
$model = new KeyToggleForm();
|
||||
$model->card = $receptionForm->card;
|
||||
$model->customer = $receptionForm->customer;
|
||||
|
||||
if ( $model->load ( Yii::$app->request->post () )) {
|
||||
$model->toggleKey();
|
||||
}
|
||||
|
||||
|
||||
return $this->redirect(['customer/reception', 'number' => $number ]);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@ -88,6 +88,9 @@ class CustomerCreate extends \common\models\Customer
|
||||
|
||||
[['phone', 'tax_number', 'country'], 'string', 'max' => 20],
|
||||
|
||||
[['bank_account'], 'string', 'max' => 24],
|
||||
[['bank_name'], 'string', 'max' => 100],
|
||||
|
||||
[['phone'], 'required', 'when' => function($model) {
|
||||
return !isset( $model->email ) || empty( $model->email ) ;
|
||||
} ,
|
||||
|
||||
@ -89,6 +89,9 @@ class CustomerUpdate extends \common\models\Customer
|
||||
|
||||
[['phone', 'tax_number', 'country'], 'string', 'max' => 20],
|
||||
|
||||
[['bank_account'], 'string', 'max' => 24],
|
||||
[['bank_name'], 'string', 'max' => 100],
|
||||
|
||||
[['phone'], 'required', 'when' => function($model) {
|
||||
return !isset( $model->email ) || empty( $model->email ) ;
|
||||
} ,
|
||||
|
||||
76
frontend/models/KeySearch.php
Normal file
76
frontend/models/KeySearch.php
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
namespace frontend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use yii\data\ActiveDataProvider;
|
||||
use common\models\Key;
|
||||
use yii\db\Query;
|
||||
|
||||
/**
|
||||
* KeySearch represents the model behind the search form about `common\models\Key`.
|
||||
*/
|
||||
class KeySearch extends Key
|
||||
{
|
||||
|
||||
public $card;
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function scenarios()
|
||||
{
|
||||
// bypass scenarios() implementation in the parent class
|
||||
return Model::scenarios();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates data provider instance with search query applied
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return ActiveDataProvider
|
||||
*/
|
||||
public function search($params)
|
||||
{
|
||||
$query = new Query();
|
||||
$query->select([ 'user.username as user_username', 'card.id_card as card_id_card', 'key.id_key as key_id_key', 'card.number as card_number' , 'key.number as key_number','card_key_assignment.created_at as assign_created_at'] );
|
||||
$query->from('card');
|
||||
$query->innerJoin('card_key_assignment','card.id_card = card_key_assignment.id_card' );
|
||||
$query->innerJoin('key','key.id_key = card_key_assignment.id_key' );
|
||||
$query->innerJoin('user','user.id = card_key_assignment.id_user' );
|
||||
$query->andWhere(['card_key_assignment.id_card' => $this->card->id_card]);
|
||||
$query->orderBy( ['card_key_assignment.created_at' => SORT_ASC] );
|
||||
|
||||
$dataProvider = new ActiveDataProvider([
|
||||
'query' => $query,
|
||||
]);
|
||||
|
||||
$this->load($params);
|
||||
|
||||
if (!$this->validate()) {
|
||||
// uncomment the following line if you do not want to return any records when validation fails
|
||||
// $query->where('0=1');
|
||||
return $dataProvider;
|
||||
}
|
||||
|
||||
$query->andFilterWhere([
|
||||
'type' => $this->type,
|
||||
]);
|
||||
|
||||
$query->andFilterWhere(['like', 'number', $this->number])
|
||||
->andFilterWhere(['like', 'rfid_key', $this->rfid_key]);
|
||||
|
||||
return $dataProvider;
|
||||
}
|
||||
}
|
||||
75
frontend/models/KeyToggleForm.php
Normal file
75
frontend/models/KeyToggleForm.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
namespace frontend\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Model;
|
||||
use common\models\CardKeyAssignment;
|
||||
use common\models\Key;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ContactForm is the model behind the contact form.
|
||||
*/
|
||||
class KeyToggleForm extends Model
|
||||
{
|
||||
public $key;
|
||||
public $card;
|
||||
public $customer;
|
||||
public $keyModel;
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['key'], 'safe' ]
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
];
|
||||
}
|
||||
|
||||
public function toggleKey(){
|
||||
$this->keyModel = Key::find()->andWhere(['rfid_key' => $this->key])->one();
|
||||
if ( isset($this->keyModel) ){
|
||||
$assignments = CardKeyAssignment::find()->andWhere(['id_key' => $this->keyModel->id_key])->all();
|
||||
if ( count($assignments) > 0){
|
||||
$this->unassign();
|
||||
}else{
|
||||
$this->assign();
|
||||
}
|
||||
}else{
|
||||
\Yii::$app->session->setFlash ( 'danger', 'Kulcs nem található!' );
|
||||
}
|
||||
}
|
||||
|
||||
public function assign(){
|
||||
if ( isset($this->card) && isset($this->customer) ){
|
||||
$assignment = new CardKeyAssignment();
|
||||
$assignment->id_card = $this->card->id_card;
|
||||
$assignment->id_key = $this->keyModel->id_key;
|
||||
$assignment->id_user = \Yii::$app->user->id;
|
||||
$assignment->save(false);
|
||||
\Yii::$app->session->setFlash ( 'success', 'Kulcs kiadva!' );
|
||||
}else{
|
||||
\Yii::$app->session->setFlash ( 'danger', 'Nincs vendég kiválasztva vagy érvénytelen kártya!' );
|
||||
}
|
||||
}
|
||||
|
||||
public function unassign(){
|
||||
CardKeyAssignment::deleteAll(['id_key' => $this->keyModel->id_key]);
|
||||
\Yii::$app->session->setFlash ( 'success', 'Kulcs visszaadva!' );
|
||||
}
|
||||
|
||||
}
|
||||
@ -10,6 +10,8 @@ use common\models\Ticket;
|
||||
use common\models\Account;
|
||||
use common\models\CardSearch;
|
||||
use common\models\AccountState;
|
||||
use common\models\Key;
|
||||
use common\models\CardKeyAssignment;
|
||||
|
||||
/**
|
||||
* ContactForm is the model behind the contact form.
|
||||
@ -23,7 +25,7 @@ class ReceptionForm extends Model
|
||||
public $defaultAccount;
|
||||
public $cardSearchModel;
|
||||
public $lastCassaState;
|
||||
|
||||
public $keys;
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
@ -53,6 +55,7 @@ class ReceptionForm extends Model
|
||||
if ( $this->card != null ){
|
||||
$this->customer = $this->card->customer;
|
||||
$this->readValidTickets();
|
||||
$this->readAssignedKeys();
|
||||
}
|
||||
|
||||
$defaultAccount = Account::readDefault();
|
||||
@ -65,6 +68,14 @@ class ReceptionForm extends Model
|
||||
|
||||
}
|
||||
|
||||
public function readAssignedKeys(){
|
||||
$query = Key::find();
|
||||
$query->join( 'INNER JOIN', CardKeyAssignment::tableName() , Key::tableName().".id_key = " . CardKeyAssignment::tableName() . ".id_key");
|
||||
$query->andWhere([ "card_key_assignment.id_card" => $this->card->id_card ]);
|
||||
$this->keys = $query->all();
|
||||
|
||||
}
|
||||
|
||||
public function readLastCassaState(){
|
||||
$a = Account::readDefault();
|
||||
if ( isset($a)){
|
||||
@ -136,4 +147,23 @@ class ReceptionForm extends Model
|
||||
}
|
||||
|
||||
|
||||
public function getCardNumber(){
|
||||
if ( isset($this->card)){
|
||||
return $this->card->number;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public function getKeysText(){
|
||||
$keyNumbers = [];
|
||||
$result = "-";
|
||||
if ( isset($this->keys)){
|
||||
foreach ($this->keys as $k ){
|
||||
$keyNumbers[] = $k->number;
|
||||
}
|
||||
$result = implode(", ",$keyNumbers);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -9,6 +9,7 @@ use common\models\Transfer;
|
||||
use common\models\UserSoldItem;
|
||||
use common\models\ShoppingCart;
|
||||
use yii\base\Object;
|
||||
use common\models\TicketInstallmentRequest;
|
||||
|
||||
/**
|
||||
* @property $cart string name of cart, into we put the ticket
|
||||
@ -111,9 +112,21 @@ class TicketCreate extends Ticket{
|
||||
$this->addTransfer();
|
||||
$this->appendToUserCart();
|
||||
$this->appendToCustomerCart();
|
||||
|
||||
$this->addTicketInstallmentRequests($insert);
|
||||
|
||||
}
|
||||
|
||||
public function addTicketInstallmentRequests($insert){
|
||||
if ($insert){
|
||||
$ticketType = TicketType::findOne($this->id_ticket_type);
|
||||
if ( isset($ticketType) && $ticketType->isInstallment() ){
|
||||
$requests = TicketInstallmentRequest::createInstallments($this, $ticketType, $this->customer);
|
||||
foreach ($requests as $request){
|
||||
$request->save(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function addTransfer(){
|
||||
$transfer = Transfer::createTicketTransfer($this->_account, $this->_discount, null, 1, $this);
|
||||
|
||||
@ -45,7 +45,7 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
|
||||
|
||||
['class' => 'yii\grid\ActionColumn',
|
||||
'template' => '{ticket} {ticket_history}',
|
||||
'template' => '{ticket} {ticket_history} {keys}',
|
||||
'buttons' => [
|
||||
'ticket' => function ($url, $model, $key) {
|
||||
return Html::a('Új bérlet', $url, ['class'=> 'btn btn-xs btn-success' ]) ;
|
||||
@ -53,6 +53,9 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
'ticket_history' => function ($url, $model, $key) {
|
||||
return Html::a('Befizetések', $url, ['class'=> 'btn btn-xs btn-success' ]) ;
|
||||
},
|
||||
'keys' => function ($url, $model, $key) {
|
||||
return Html::a('Kulcsok', $url, ['class'=> 'btn btn-xs btn-success' ]) ;
|
||||
},
|
||||
],
|
||||
'urlCreator' => function ($action, $model, $key, $index){
|
||||
$url = "";
|
||||
@ -60,6 +63,8 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
$url = Url::to(['ticket/create','number' => $model['card_number']]);
|
||||
}else if ( 'ticket_history' == $action ){
|
||||
$url = Url::to(['ticket/index','number' => $model['card_number']]);
|
||||
}else if ( 'keys' == $action ){
|
||||
$url = Url::to(['key/index','id_card' => $model['card_id_card']]);
|
||||
}
|
||||
return $url;
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user