103 lines
5.2 KiB
PHP
103 lines
5.2 KiB
PHP
<?php include(realpath(dirname(__FILE__) . "/../../$mfLayoutPackage") . "/header.php"); ?>
|
|
<link href="<?=self::getResourcePath()?>assets/css/datatables-std.css?<?=date('U')?>" rel="stylesheet"
|
|
type="text/css"/>
|
|
<!-- 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"><a href="<?=self::getUrl("Admin")?>">Admin</a></li>
|
|
<li class="breadcrumb-item active">IVT Contract Import</li>
|
|
</ol>
|
|
</div>
|
|
<h4 class="page-title">IVT Import</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end page title -->
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
|
|
<div class="card border-top-primary">
|
|
<div class="card-body">
|
|
|
|
<table id="datatable" class="table table-sm table-striped table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th>Kunde</th>
|
|
<th>IVT Kunde</th>
|
|
<th>IVT Produkt</th>
|
|
<th>Produkt</th>
|
|
<th>Preis Setup</th>
|
|
<th>Preis</th>
|
|
<th>Rech. Interval</th>
|
|
<th>Herstellungsd.</th>
|
|
<th>Aktion</th>
|
|
<th>Bestellung</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($data['contracts'] as $d): ?>
|
|
<tr>
|
|
<td><?=$d["customer"]->getCompanyOrName()?>
|
|
(<?=$d["customer"]->customer_number?>)
|
|
</td>
|
|
<td><?=$d["ivtcustomer"]->id?></td>
|
|
<td><?=$d["ivtproduct"]->name?></td>
|
|
<td><?=$d["product"]->name?></td>
|
|
<td><?=$d["contract"]->price_setup?></td>
|
|
<td><?=$d["contract"]->price?></td>
|
|
<td>
|
|
<?=$d["contract"]->billing_period?>
|
|
(
|
|
<?=($d["contract"]->billing_period == 1) ? "Monatlich" : ""?>
|
|
<?=($d["contract"]->billing_period == 12) ? "Jährlich" : ""?>
|
|
<?=($d["contract"]->billing_period == 24) ? "Zweijährlich" : ""?>
|
|
<?=($d["contract"]->billing_period == 36) ? "Dreijährlich" : ""?>
|
|
)
|
|
</td>
|
|
<td><?=date("d.m.Y H:i", $d["contract"]->finish_date)?></td>
|
|
<td><?=$d["action"]?></td>
|
|
<td>
|
|
<?php if(array_key_exists("orderproduct", $d) && $d["orderproduct"] && $d["orderproduct"]->order_id): ?>
|
|
<a href="<?=self::getUrl("Order", "", ["id" => $d["orderproduct"]->order_id])?>" target="_blank"><?=$d["orderproduct"]->order_id?></a>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div>
|
|
<a href="<?=self::getUrl("Admin", "ivtContractImport", ["doit" => 1])?>">
|
|
<button class="btn btn-primary" id="doitbutton"><i
|
|
class="far fa-fw fa-exclamation-circle"></i> Jetzt importieren
|
|
</button>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript"
|
|
src="<?=self::getResourcePath()?>assets/js/datatables-std.js?<?=date('U')?>"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$("#doitbutton").click(function () {
|
|
$("#doitbutton").text("Bitte warten...");
|
|
$("#doitbutton").prop("disabled", true);
|
|
});
|
|
});
|
|
</script>
|
|
<?php include(realpath(dirname(__FILE__) . "/../../$mfLayoutPackage") . "/footer.php"); ?>
|