add contract, add door_log
This commit is contained in:
96
common/models/DoorLog.php
Normal file
96
common/models/DoorLog.php
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
namespace common\models;
|
||||
|
||||
use Yii;
|
||||
|
||||
/**
|
||||
* This is the model class for table "door_log".
|
||||
*
|
||||
* @property integer $id_door_log
|
||||
* @property integer $id_card
|
||||
* @property integer $id_customer
|
||||
* @property integer $id_key
|
||||
* @property integer $direction
|
||||
* @property integer $type
|
||||
* @property string $created_at
|
||||
*/
|
||||
class DoorLog extends \yii\db\ActiveRecord
|
||||
{
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public static function tableName()
|
||||
{
|
||||
return 'door_log';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['id_card', 'id_customer', 'id_key', 'direction', 'type'], 'integer'],
|
||||
[['created_at'], 'required'],
|
||||
[['created_at'], 'safe']
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function attributeLabels()
|
||||
{
|
||||
return [
|
||||
'id_door_log' => Yii::t('common/door_log', 'Id Door Log'),
|
||||
'id_card' => Yii::t('common/door_log', 'Bérlet kártya'),
|
||||
'id_customer' => Yii::t('common/door_log', 'Vendég'),
|
||||
'id_key' => Yii::t('common/door_log', 'Kulcs'),
|
||||
'direction' => Yii::t('common/door_log', 'Irány'),
|
||||
'type' => Yii::t('common/door_log', 'Típus'),
|
||||
'created_at' => Yii::t('common/door_log', 'Időpont'),
|
||||
];
|
||||
}
|
||||
|
||||
public function getCustomer(){
|
||||
return $this->hasOne( Customer::className(), ["id_customer" =>"id_customer" ] );
|
||||
}
|
||||
|
||||
public function getCustomerName(){
|
||||
$result = "";
|
||||
if (isset($this->customer)){
|
||||
$result = $this->customer->name;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
public function getCard(){
|
||||
return $this->hasOne( Card::className(), ["id_card" =>"id_card" ] );
|
||||
}
|
||||
|
||||
public function getCardNumber(){
|
||||
$result = "";
|
||||
if (isset($this->card)){
|
||||
$result = $this->card->number;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
public function getKey(){
|
||||
return $this->hasOne( Key::className(), ["id_key" =>"id_key" ] );
|
||||
}
|
||||
|
||||
public function getKeyNumber(){
|
||||
$result = "";
|
||||
if (isset($this->key)){
|
||||
$result = $this->key->number;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
public function getDirectionName(){
|
||||
$result = "";
|
||||
if (isset($this->direction)){
|
||||
$result = $this->direction;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
@@ -192,6 +192,7 @@ class TicketInstallmentRequest extends \yii\db\ActiveRecord
|
||||
$this->comment = $comment;
|
||||
$this->request_processed_at = Helper::getDateTimeString();
|
||||
$this->save(false);
|
||||
$contract->status = Contract::$STATUS_NOT_PAID;
|
||||
$contract->save(false);
|
||||
// $this->applyNewTicketState($partRequired);
|
||||
\Yii::info("Megbízás visszautasítva: " . $this->id_ticket_installment_request);
|
||||
@@ -257,7 +258,7 @@ class TicketInstallmentRequest extends \yii\db\ActiveRecord
|
||||
|
||||
public static function createInstallment($ticket,$type,$customer,$contract,$money,$ticketCreated,$index){
|
||||
$request = new TicketInstallmentRequest();
|
||||
$request->id_ticket = $ticket->id_ticket;
|
||||
// $request->id_ticket = $ticket->id_ticket;
|
||||
$request->id_customer = $customer->id_customer;
|
||||
$request->status = TicketInstallmentRequest::$STATUS_PENDING;
|
||||
$request->priority = $index;
|
||||
|
||||
@@ -977,7 +977,7 @@ class Transfer extends \common\models\BaseFitnessActiveRecord {
|
||||
$ticket->price_brutto = $request->money;
|
||||
$ticket->id_card = $card->id_card;
|
||||
$ticket->part = $request->priority;
|
||||
$this->id_contract = $contract->id_contract;
|
||||
$ticket->id_contract = $contract->id_contract;
|
||||
$ticket->save ( false );
|
||||
|
||||
$transfer = new Transfer ();
|
||||
|
||||
Reference in New Issue
Block a user