mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
Merge pull request #799 from gradido/community_gdt_fix_euro
fix euro after comma gdt view
This commit is contained in:
commit
540bcaeb89
@ -50,8 +50,8 @@ $this->assign('header', $header);
|
||||
<?php if(intval($entry['gdt_entry_type_id']) == 7) : ?>
|
||||
<?= $this->element('printGDT', ['number' => $entry['amount']*100.0]); ?>
|
||||
<?php else : ?>
|
||||
<?= $this->element('printEuro', ['number' => $entry['amount']]); ?>
|
||||
<?php if($entry['amount2']) echo ' + ' . $this->element('printEuro', ['number' => $entry['amount2']]) ?>
|
||||
<?= $this->element('printEuro', ['number' => $entry['amount']*100.0]); ?>
|
||||
<?php if($entry['amount2']) echo ' + ' . $this->element('printEuro', ['number' => $entry['amount2']*100.0]) ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="cell c2">
|
||||
@ -96,8 +96,8 @@ $this->assign('header', $header);
|
||||
<?php if(intval($gdtEntry['gdt_entry_type_id']) == 7) : ?>
|
||||
<?= $this->element('printGDT', ['number' => $gdtEntry['amount']*100.0]); ?>
|
||||
<?php else : ?>
|
||||
<?= $this->element('printEuro', ['number' => $gdtEntry['amount']]); ?>
|
||||
<?php if($gdtEntry['amount2']) echo ' + ' . $this->element('printEuro', ['number' => $gdtEntry['amount2']]) ?>
|
||||
<?= $this->element('printEuro', ['number' => $gdtEntry['amount']*100.0]); ?>
|
||||
<?php if($gdtEntry['amount2']) echo ' + ' . $this->element('printEuro', ['number' => $gdtEntry['amount2']*100.0]) ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="cell c2">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user