72 lines
3.0 KiB
PHP
72 lines
3.0 KiB
PHP
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/header.php"); ?>
|
|
|
|
<!-- start page title -->
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="page-title-box">
|
|
<div class="page-title-right">
|
|
<ol class="breadcrumb m-0">
|
|
<li class="breadcrumb-item"><a href="<?=self::getUrl("Dashboard")?>"><?=MFAPPNAME_SLUG?></a></li>
|
|
<li class="breadcrumb-item active">Verträge</li>
|
|
</ol>
|
|
</div>
|
|
<h4 class="page-title">Verträge</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end page title -->
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
|
|
<div class="card">
|
|
<div class="card-body mb-3">
|
|
<div class="float-left">
|
|
<h4 class="header-title">Liste aller Verträge</h4>
|
|
</div>
|
|
<div class="float-right">
|
|
<a class="btn btn-primary mb-2" href="<?=self::getUrl("Contract", "add")?>"><i class="fas fa-plus"></i> Neuen Vertrag anlegen</a>
|
|
</div>
|
|
|
|
<table class="table table-striped table-hover">
|
|
<tr>
|
|
<th>Inhaber</th>
|
|
<th>Produkt</th>
|
|
<th>Anschluss</th>
|
|
<th>Preis</th>
|
|
<th>Preis Setup</th>
|
|
<th>Rechnungsperiode</th>
|
|
<th>Erstellt</th>
|
|
<th>Zuletzt bearbeitet</th>
|
|
<th></th>
|
|
</tr>
|
|
<?php foreach($contracts as $contract): ?>
|
|
<tr>
|
|
<td><?=$contract->owner->getCompanyOrName()?></td>
|
|
<td><?=$contract->product->name?></td>
|
|
<td>
|
|
<?php if($contract->termination_id): ?>
|
|
<?=$contract->termination->building->street?><br />
|
|
<?=$contract->termination->building->zip?> <?=$contract->termination->building->city?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td><?=$contract->price?></td>
|
|
<td><?=$contract->price_setup?></td>
|
|
<td><?=(12 / $contract->billing_period)?>x Jährlich</td>
|
|
<td><?=date('d.m.Y H:i', $contract->create)?> (<?=$contract->creator->name?>)</td>
|
|
<td><?=date('d.m.Y H:i', $contract->edit)?> (<?=$contract->editor->name?>)</td>
|
|
<td style="text-align: left; letter-spacing: 4px; font-size: 1.1em;">
|
|
<a href="<?=self::getUrl("Contract", "edit", ["id" => $contract->id])?>"><i class="far fa-edit" title="Vertrag bearbeiten"></i></a>
|
|
<a href="<?=self::getUrl("Contract", "cancel", ["id" => $contract->id])?>" class="text-danger" title="Vertrag kündigen"><i class="fas fa-trash"></i></a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/footer.php"); ?>
|