コード例 #1
0
ファイル: _cost.php プロジェクト: alexus007/budget
    $relAmmount = \app\components\helpers\CurrencyConverter::currencyAsRub($rel->currency_id, $rel->ammount);
    $modelAmmount = \app\components\helpers\CurrencyConverter::currencyAsRub($model->currency_id, $model->ammount);
    if ($rel->ammount && $modelAmmount > $relAmmount) {
        echo "<br><span class='alert-danger'>Превышение лимита по статье на " . ($modelAmmount - $relAmmount) . " ₽</span>";
    }
} else {
    return '';
}
?>
            </div>
            <div class="col-sm-3">
                <?php 
echo $model->ammount;
?>
                <?php 
echo \app\models\Currency::getSign($model->currency_id);
?>
            </div>
            <div class="col-sm-3"><?php 
echo Yii::$app->formatter->asDate($model->date);
?>
</div>
            <div class="col-sm-2">
                <?php 
echo Html::a('<span class="glyphicon glyphicon-trash"></span> ', ['delete-history', 'id' => $model->id], ['class' => 'btn btn-danger btn-xs', 'data-confirm' => '' . Yii::t('app', 'Are you sure to delete this item?') . '', 'data-method' => 'post']);
?>
            </div>
        </div>
    </div>
</div>