add reception global word listener,allow delete transactions, allow delete account_state

This commit is contained in:
2015-12-31 15:42:28 +01:00
parent f59eadd8cc
commit 0b58f628ed
13 changed files with 178 additions and 9 deletions

View File

@@ -1,13 +1,29 @@
<?php
use frontend\components\AccountStateBanknoteCountWidget;
use yii\base\Widget;
use yii\helpers\Html;
use yii\helpers\Url;
?>
<?php
echo AccountStateBanknoteCountWidget::widget([
'model' => $model,
'index' => $index
]);
if ( $index == 0){
?>
<div class="row">
<div class="col-md-12 text-right">
<?php ?>
</div>
</div>
<?php
}
?>

View File

@@ -12,6 +12,7 @@ use common\widgets\Alert;
use common\components\FrotnendMenuStructure;
use frontend\components\FrontendMenuStructure;
use kartik\widgets\AlertBlock;
use yii\helpers\Url;
AppAsset::register($this);
?>
@@ -23,6 +24,9 @@ AppAsset::register($this);
<meta name="viewport" content="width=device-width, initial-scale=1">
<?= Html::csrfMetaTags() ?>
<title><?= Html::encode($this->title) ?></title>
<script>
var reception_card_url = '<?php echo Url::toRoute('customer/reception');?>';
</script>
<?php $this->head() ?>
</head>
<body>

View File

@@ -37,4 +37,7 @@ use yii\bootstrap\Html;
<div class='col-md-3 '>
<?php echo Html::a(Yii::t('frontend/product', "Paid"),null,[ 'id' => 'btn_pay_customer_cart', 'class' => 'btn btn-primary btn-block' , 'name' => 'payout_customer_cart']) ?>
</div>
<div class='col-md-3 '>
<?php echo Html::a(Yii::t('frontend/product', "Frissít"),null,[ 'class' => 'btn btn-primary btn-block' , 'onclick' => 'location.reload();']) ?>
</div>
</div>

View File

@@ -40,4 +40,7 @@ use kartik\widgets\ActiveForm;
<?php echo Html::submitButton( Yii::t('frontend/product', "Paid"), [ 'id' => 'btn_pay_user_cart', 'class' => 'btn btn-primary btn-block' , 'name' => 'payout_user_cart']) ?>
<?php ActiveForm::end(); ?>
</div>
<div class='col-md-3 '>
<?php echo Html::a(Yii::t('frontend/product', "Frissít"),null,[ 'class' => 'btn btn-primary btn-block' , 'onclick' => 'location.reload();']) ?>
</div>
</div>

View File

@@ -2,6 +2,7 @@
use yii\helpers\Html;
use common\models\Transfer;
use yii\helpers\Url;
/* @var $this yii\web\View */
@@ -63,6 +64,17 @@ $formatter = Yii::$app->formatter;
</dl>
</div>
</div>
<div class="row">
<div class="col-md-11 text-right">
<?php echo Html::a('<span class="glyphicon glyphicon-trash"></span>Törlés', Url::toRoute(['delete','id' =>$model->id_transfer]), [
'title' => Yii::t('yii', 'Delete'),
'data-confirm' => Yii::t('yii', 'Are you sure to delete this item?'),
'data-method' => 'post',
'class' => 'btn btn-danger',
// 'style' =>'margin-right: 12px;'
]);?>
</div>
</div>
</div>
</div>