Performance optimizations
This commit is contained in:
@@ -146,6 +146,8 @@
|
||||
<th>Kundenkabel</th>
|
||||
<th>Spleiß Netz</th>
|
||||
<th>Spleiß Kunde</th>
|
||||
<th>FTU</th>
|
||||
<th>FTU verlegt</th>
|
||||
<th>Fertig</th>
|
||||
</tr>
|
||||
<?php $bcount = 0;
|
||||
@@ -161,6 +163,8 @@
|
||||
<th>Kundenkabel</th>
|
||||
<th>Spleiß Netz</th>
|
||||
<th>Spleiß Kunde</th>
|
||||
<th>FTU</th>
|
||||
<th>FTU verlegt</th>
|
||||
<th>Fertig</th>
|
||||
</tr>
|
||||
<?php endif ?>
|
||||
@@ -190,6 +194,17 @@
|
||||
<td onclick="togglePipework(<?=$term->id?>)"><?=($term->getWorkflowvalue('customer_cable_injected') != "1") ? "<i class='fas fa-times text-danger'></i>" : "<i class='fas fa-check text-success'></i>" ?></td>
|
||||
<td onclick="togglePipework(<?=$term->id?>)"><?=($term->getWorkflowvalue('spliced_network') != "1") ? "<i class='fas fa-times text-danger'></i>" : "<i class='fas fa-check text-success'></i>" ?></td>
|
||||
<td onclick="togglePipework(<?=$term->id?>)"><?=($term->getWorkflowvalue('spliced_customer') != "1") ? "<i class='fas fa-times text-danger'></i>" : "<i class='fas fa-check text-success'></i>" ?></td>
|
||||
<td onclick="togglePipework(<?=$term->id?>)">
|
||||
<?php if(($term->getWorkflowvalue('abschlusstyp') == "SC/APC in FTU" && empty($term->getWorkflowvalue('ist_abschlusstyp'))) || $term->getWorkflowvalue('ist_abschlusstyp') == "SC/APC in FTU"): ?>
|
||||
<?=($term->getWorkflowvalue('inhouse_cabling_supplied') != "1") ? "<i class='fas fa-times text-danger'></i>" : "<i class='fas fa-check text-success'></i>" ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td onclick="togglePipework(<?=$term->id?>)">
|
||||
<?php if(($term->getWorkflowvalue('abschlusstyp') == "SC/APC in FTU" && empty($term->getWorkflowvalue('ist_abschlusstyp'))) || $term->getWorkflowvalue('ist_abschlusstyp') == "SC/APC in FTU"): ?>
|
||||
<?=($term->getWorkflowvalue('inhouse_cabling_deployed') != "1") ? "<i class='fas fa-times text-danger'></i>" : "<i class='fas fa-check text-success'></i>" ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
|
||||
<td onclick="togglePipework(<?=$term->id?>)"><?=($term->getWorkflowvalue('customer_passive_finished') != "1") ? "<i class='fas fa-times text-danger'></i>" : "<i class='fas fa-check text-success'></i>" ?></td>
|
||||
</tr>
|
||||
<tr id="termination-<?=$term->id?>" class="table-bg-<?=($bcount % 2 == 0) ? "even" : "odd"?> hidden">
|
||||
@@ -242,7 +257,7 @@
|
||||
Nicht fertiggestellt.
|
||||
</div>
|
||||
</td>
|
||||
<td colspan="8">
|
||||
<td colspan="10">
|
||||
<table class="table workflow-table table-bordered table-sm table-bg-<?=($bcount % 2 == 0) ? "odd" : "even"?>">
|
||||
<tr>
|
||||
<th>AP-Typ</th>
|
||||
@@ -377,6 +392,8 @@
|
||||
<th>Kundenkabel</th>
|
||||
<th>Spleiß Netz</th>
|
||||
<th>Spleiß Kunde</th>
|
||||
<th>FTU</th>
|
||||
<th>FTU verlegt</th>
|
||||
<th>Fertig</th>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
|
||||
Reference in New Issue
Block a user