67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use frontend\components\ReceptionMenuWidget;
|
|
use frontend\components\ReceptionCardNumberWidget;
|
|
use frontend\assets\TicketSellAsset;
|
|
use common\models\TicketType;
|
|
use yii\helpers\Url;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Ticket */
|
|
/* @var $receptionForm frotned\models\ReceptionForm */
|
|
|
|
$card = $receptionForm->card;
|
|
$customer = $receptionForm->customer;
|
|
|
|
TicketSellAsset::register($this);
|
|
|
|
$this->title = Yii::t('common/ticket', 'Create Ticket');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ticket', 'Tickets'), 'url' => ['index' , 'number' => $card->number ]];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
|
|
$options = [];
|
|
|
|
// $options['lookup_product_url'] = Url::toRoute(['product/lookup']);
|
|
$options['clear_cart_url'] = Url::toRoute(['product/clear-list']);
|
|
$options['types'] = TicketType::modelsToArray($ticketTypes);
|
|
$options['transfer_list'] = $userTransfers;
|
|
|
|
$this->registerJs ( 'new TicketSell( '. json_encode($options).');' );
|
|
|
|
?>
|
|
<div class="ticket-create">
|
|
|
|
<div class='row'>
|
|
<div class='col-md-3'>
|
|
<?php echo ReceptionMenuWidget::widget( [ 'customer' => $customer, 'card' => $card] ) ?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php echo ReceptionCardNumberWidget::widget( [ 'customer' => $customer, 'card' =>$card, 'route' => ['customer/reception'] ] )?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
'discounts' => $discounts,
|
|
'ticketTypes' => $ticketTypes,
|
|
'accounts' => $accounts,
|
|
]) ?>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<h1><?php echo Yii::t('frontend/ticket', 'Cart')?></h1>
|
|
<?php echo $this->render( "//common/_transfer_list" ) ?>
|
|
<?php echo Html::a(Yii::t('frontend/product', "Paid"),null,[ 'id' => 'btn_paid', 'class' => 'btn btn-primary' ]) ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|