?? GreyFile — Mystic File Browser

Current path: home/webdevt/cryptoimpot.fr/module/Application/view/layout/



?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/view

?? Viewing: annexe-acquisition-avant-01-01-2019.phtml

<?= $this->doctype() ?>

<html lang="en">

    <body>
        <!--<h1>Annexe calcul du prix d'acquisition avant le 1er janvier 2019</h1>-->


        <?php
        $str = '';
        $str3 = ''; //echo $this->partial('partial/report/table-header-annexe-V');
        $strDebug = '';
        ?>


        <?php foreach ($this->arrayAcquisitionBefore2019 as $code => $walletDevise) : ?>

            <?php
            $qtyTmp = 0;
            $valueTotaleEurTmp = 0;
            $strDebug .= '<tr><td>Détail des prix d\'acquisition pour ' . $code .'</td></tr>';
            ?>
            <?php foreach ($walletDevise as $walletDeviseLine) : ?>
                <?php

            $strDebug .= '<tr><td>' . $walletDeviseLine['qte'] . ' ' . $code . ' : ' . $walletDeviseLine['prixEuro'] .'</td></tr>';
                $qtyTmp = $qtyTmp + $walletDeviseLine['qte'];
                $valueTotaleEurTmp = $valueTotaleEurTmp + $walletDeviseLine['prixEuro'];
//                $this->totalPrixAcquisitionBefore2019 += $valueTotaleEurTmp;
                ?>

            <?php endforeach; ?>

            <?php $str .= '<tr><td>' . $qtyTmp . ' ' . $code . '</td></tr>'; ?>
            <?php $str3 .= '<tr><td>' . $qtyTmp . ' ' . $code . ' : ' . $valueTotaleEurTmp . '</td></tr>'; ?>
            <?php $strDebug .= '<tr><td>--------------------------------------</td></tr>';?>
        <?php endforeach; ?>
        <h2>Etape 1 : Détermination de la composition du portefeuille global au 1er janvier 2019</h2>


        <table>
            <?php echo $str ?>
        </table>

        <h2>Etape2 : Détail des prix d\'acquisition au 1er janvier 2019</h2>

        <table>
            <?php echo $strDebug ?>
        </table>

        <h2>Etape3 : Détermination du prix d\'acquisition au 1er janvier 2019</h2>

        <table>
            <?php echo $str3 ?>
        </table>
        
        <?php //foreach ($this->arrayValuesWalletEUR as $dateCession => $walletArray) : ?>
<!--        <table>
                    <?php //foreach ($walletArray as $wallet) : ?>
            <tr>
                <td><?php // $wallet['devise'] ?><td>
                <td><?php // $wallet['qty'] ?><td>
                <td><?php // $wallet['unitPrice'] ?><td>
                <td><?php // $wallet['total'] ?><td>
            </tr>
             <?php //endforeach; ?>

        </table>-->
         <?php //endforeach; ?>




    </body>
</html>


??

??