add kulcsok, add tartós beszedés, add ticket type with intallments

This commit is contained in:
2016-01-20 14:48:34 +01:00
parent d1638a19de
commit d7cc84e78f
111 changed files with 4077 additions and 12 deletions

View 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>