HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/crm.dmstech.online/application/views/admin/expenses/expenses_total_template.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<?php if (count($expenses_years) > 1 || isset($currencies)) { ?>
<div class="tw-flex tw-space-x-3 tw-mb-2">
    <?php if (isset($currencies)) { ?>
    <div class="!tw-w-28 simple-bootstrap-select">
        <select class="selectpicker !tw-w-28" data-width="auto" name="expenses_total_currency"
            onchange="init_expenses_total();">
            <?php foreach ($currencies as $currency) {
    $selected = '';
    if (!$this->input->post('currency')) {
        if ($currency['isdefault'] == 1 || isset($_currency) && $_currency == $currency['id']) {
            $selected = 'selected';
        }
    } else {
        if ($this->input->post('currency') == $currency['id']) {
            $selected = 'selected';
        }
    } ?>
            <option value="<?php echo e($currency['id']); ?>" <?php echo e($selected); ?>
                data-subtext="<?php echo e($currency['name']); ?>"><?php echo e($currency['symbol']); ?></option>
            <?php
} ?>
        </select>
    </div>
    <?php } ?>
    <?php if (count($expenses_years) > 1) { ?>
    <div class="simple-bootstrap-select !tw-max-w-xs">
        <select data-none-selected-text="<?php echo date('Y'); ?>" data-width="auto" class="selectpicker tw-w-full"
            multiple name="expenses_total_years" onchange="init_expenses_total();">
            <?php foreach ($expenses_years as $year) { ?>
                <option value="<?php echo e($year['year']); ?>" <?php if ($this->input->post('years') && in_array($year['year'], $this->input->post('years')) || !$this->input->post('years') && date('Y') == $year['year']) {
                    echo ' selected';
                } ?>>
                    <?php echo e($year['year']); ?>
                </option>
            <?php } ?>
        </select>
    </div>
    <?php } ?>
</div>
<?php } ?>

<dl class="tw-grid tw-grid-cols-1 md:tw-grid-cols-2 lg:tw-grid-cols-5 tw-gap-3 sm:tw-gap-5 tw-mb-0">
    <?php foreach ([
        ['key' => 'all', 'class' => 'text-warning', 'label' => _l('expenses_total')],
        ['key' => 'billable', 'class' => 'text-success', 'label' => _l('expenses_list_billable')],
        ['key' => 'non_billable', 'class' => 'text-warning', 'label' => _l('expenses_list_non_billable')],
        ['key' => 'unbilled', 'class' => 'text-danger', 'label' => _l('expenses_list_unbilled')],
        ['key' => 'billed', 'class' => 'text-success', 'label' => _l('expense_billed')],
    ] as $totalSection) { ?>
    <div class="tw-border tw-border-solid tw-border-neutral-200 tw-rounded-md tw-bg-white">
        <div class="tw-px-4 tw-py-5 sm:tw-px-4 sm:tw-py-2">
            <dt class="tw-font-medium <?php echo e($totalSection['class']); ?>">
                <?php echo e($totalSection['label']); ?>
            </dt>
            <dd class="tw-mt-1 tw-flex tw-items-baseline tw-justify-between md:tw-block lg:tw-flex">
                <div class="tw-flex tw-items-baseline tw-text-base tw-font-semibold tw-text-primary-600">
                    <?php echo e($totals[$totalSection['key']]['total']); ?>
                </div>
            </dd>
        </div>
    </div>
    <?php } ?>
</dl>
<script>
init_selectpicker();
</script>