98 lines
4.4 KiB
PHP
98 lines
4.4 KiB
PHP
<?php
|
|
$pagination_baseurl = $this->getUrl($Mod,"Index");
|
|
$pagination_baseurl_params = ["filter" => $filter];
|
|
$pagination_entity_name = "Verträge";
|
|
?>
|
|
<?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>
|
|
|
|
<?php include(realpath(dirname(__FILE__)."/../")."/tpl/pagination.php"); ?>
|
|
<?php include(realpath(dirname(__FILE__)."/../")."/tpl/pagination-summary.php"); ?>
|
|
|
|
<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><a href="<?=self::getUrl("Address", "Edit", ["id" => $contract->owner_id])?>" target="_blank"><?=$contract->owner->getCompanyOrName()?></a></td>
|
|
<td><?=$contract->product->product->name?></td>
|
|
<td>
|
|
<?php if($contract->termination_id): ?>
|
|
<?=$contract->termination->building->street?><br />
|
|
<?=$contract->termination->building->zip?> <?=$contract->termination->building->city?><br />
|
|
<a href="<?=self::getUrl("Building", "Index",["filter" => ['code' => $contract->termination->building->code]])?>#building=<?=$contract->termination->building_id?>" target="_blank">
|
|
<span class="text-monospace text-pink"><?=$contract->termination->code?></span>
|
|
</a>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td><?=$contract->price?></td>
|
|
<td><?=$contract->price_setup?></td>
|
|
<td>
|
|
<?php if($contract->billing_period == 1): ?>
|
|
monatlich
|
|
<?php elseif($contract->billing_period == 24): ?>
|
|
biennal
|
|
<?php elseif($contract->billing_period == 36): ?>
|
|
triennal
|
|
<?php else: ?>
|
|
<?=(12 / $contract->billing_period)?>x Jährlich
|
|
<?php endif; ?>
|
|
</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("Order", "edit", ["id" => $contract->product->order_id])?>"><i class="far fa-file-signature" title="Bestellung anzeigen"></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>
|
|
|
|
<?php include(realpath(dirname(__FILE__)."/../")."/tpl/pagination-summary.php"); ?>
|
|
<?php include(realpath(dirname(__FILE__)."/../")."/tpl/pagination.php"); ?>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/footer.php"); ?>
|