add editable account on reception/customer-cart, add towel handling
This commit is contained in:
@@ -32,7 +32,13 @@ $this->registerJs ( 'new TransferCustomerCart( '. json_encode($options).');' );
|
||||
|
||||
<div class="transfer-form">
|
||||
<?php $form = ActiveForm::begin(); ?>
|
||||
<?php echo $form->field($model, 'payment_method')->dropDownList( ['' => 'Aktuális'] + Transfer::paymentMethods())->label("Fizetése mód") ?>
|
||||
<?php echo $form->field($model, 'payment_method')->dropDownList( ['' => 'Aktuális fizetési mód'] + Transfer::paymentMethods())->label("Fizetése mód") ?>
|
||||
<?php echo $form->field($model, 'id_account')
|
||||
->dropDownList( ['' => 'Aktuális kassza'] + array_reduce( $model->hiddenAccounts, function( $result, $item ){
|
||||
$result[$item->id_account] = $item->name;
|
||||
return $result;
|
||||
} ,array()) )
|
||||
->label("Kassza") ?>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<span style="font-weight: bold;">Összesen:</span>
|
||||
|
||||
Reference in New Issue
Block a user