Fix getHtml para type

This commit is contained in:
Dennis Eichhorn 2019-04-27 18:29:24 +02:00
parent b2e5d3e874
commit 6620361de1

View File

@ -31,8 +31,8 @@ echo $this->getData('nav')->render(); ?>
<thead> <thead>
<tr> <tr>
<td><?= $this->getHtml('Status') ?> <td><?= $this->getHtml('Status') ?>
<td><?= $this->getHtml('ID', 0, 0); ?> <td><?= $this->getHtml('ID', '0', '0'); ?>
<td><?= $this->getHtml('ID', 0, 0); ?> <td><?= $this->getHtml('ID', '0', '0'); ?>
<td class="wf-100"><?= $this->getHtml('Article') ?> <td class="wf-100"><?= $this->getHtml('Article') ?>
<td><?= $this->getHtml('Quantity') ?> <td><?= $this->getHtml('Quantity') ?>
<td><?= $this->getHtml('Start') ?> <td><?= $this->getHtml('Start') ?>
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?> <?php endforeach; ?>
<?php if ($c === 0) : ?> <?php if ($c === 0) : ?>
<tr> <tr>
<td colspan="8" class="empty"><?= $this->getHtml('Empty', 0, 0); ?> <td colspan="8" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>