add contract, add door_log

This commit is contained in:
2016-01-25 12:50:14 +01:00
parent 0c3ff2c0f3
commit 8d29f47d49
27 changed files with 726 additions and 29 deletions

View File

@@ -51,7 +51,7 @@ use yii\helpers\Html;
</tr>
<tr>
<th>
Megbízás inditására irányzott dátum
Megbízás esedékességének dátuma
</th>
<td>
<?php echo \Yii::$app->formatter->asDatetime( $model['request_request_target_time_at'] );?>
@@ -84,8 +84,10 @@ use yii\helpers\Html;
<?php echo $model['ugiro_id_ugiro'] ;?>
</td>
<th>
Szerződés azonosító
</th>
<td>
<?php echo $model['request_id_contract'] ;?>
</td>
</tr>
@@ -145,6 +147,22 @@ use yii\helpers\Html;
<td>
</td>
</tr>
<tr>
<th>
Sorszám a kötegben belül
</th>
<td>
<?php echo ( $model['request_number'] ) ;?>
</td>
<th>
</th>
<td>
</td>
<th>
</th>
<td>
</td>
</tr>
</table>
<div >
<?php
@@ -153,7 +171,7 @@ use yii\helpers\Html;
}
echo Html::a("Megbízás részletek",['ticket-installment-request/view', 'id' => $model['request_id_ticket_installment_request']] ,[ 'class' => 'btn btn-primary']);
if ( !empty( $model['ticket_id_ticket'] )){
echo Html::a("Bérlet részletei",['ticket-installment-request/index', 'TicketInstallmentRequestSearch[id_ticket]' => $model['ticket_id_ticket']] ,[ 'class' => 'btn btn-primary']);
echo Html::a("Szerződés megbízásai",['ticket-installment-request/index', 'TicketInstallmentRequestSearch[id_contract]' => $model['request_id_contract']] ,[ 'class' => 'btn btn-primary']);
}
?>
</div>