HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/sitepacket.com/system/app/Views/orders/reports/orders_summary.php
<?php echo get_reports_topbar(); ?>

<div id="page-content" class="page-wrapper clearfix grid-button">
    <div class="card clearfix">
        <ul id="orders-summary-tabs" data-bs-toggle="ajax-tab" class="nav nav-tabs bg-white inner" role="tablist">
            <li class="title-tab"><h4 class="pl15 pt10 pr15"><?php echo app_lang("orders_summary"); ?></h4></li>
            <li><a role="presentation" data-bs-toggle="tab"  href="javascript:;" data-bs-target="#yearly-orders-summary"><?php echo app_lang("yearly"); ?></a></li>
            <li><a role="presentation" data-bs-toggle="tab" href="<?php echo_uri("orders/monthly_orders_summary"); ?>" data-bs-target="#monthly-orders-summary"><?php echo app_lang('monthly'); ?></a></li>
            <li><a role="presentation" data-bs-toggle="tab" href="<?php echo_uri("orders/custom_orders_summary"); ?>" data-bs-target="#custom-orders-summary"><?php echo app_lang('custom'); ?></a></li>
        </ul>

        <div class="tab-content">
            <div role="tabpanel" class="tab-pane fade" id="yearly-orders-summary">
                <div class="table-responsive">
                    <table id="yearly-orders-summary-table" class="display" width="100%">
                    </table>
                </div>
            </div>
            <div role="tabpanel" class="tab-pane fade" id="monthly-orders-summary"></div>
            <div role="tabpanel" class="tab-pane fade" id="custom-orders-summary"></div>
        </div>
    </div>
</div>

<script type="text/javascript">
    loadOrdersSummaryTable = function (selector, dateRange) {
        var customDatePicker = "";
        if (dateRange === "custom") {
            customDatePicker = [{startDate: {name: "start_date", value: ""}, endDate: {name: "end_date", value: ""}, showClearButton: true}];

            dateRange = "";
        }
        var currency_dropdown = <?php echo $currencies_dropdown; ?>;

        var filtrDropdown = [];
        if (currency_dropdown.length > 1) {
            filtrDropdown = [
                {name: "currency", class: "w150", options: <?php echo $currencies_dropdown; ?>}
            ];
        }


        $(selector).appTable({
            source: '<?php echo_uri("orders/orders_summary_list_data") ?>',
            dateRangeType: dateRange,
            filterDropdown: filtrDropdown,
            rangeDatepicker: customDatePicker,
            columns: [
                {title: '<?php echo app_lang("client_name") ?> '},
                {title: '<?php echo app_lang("count") ?>', class: "text-right"},
                {title: '<?php echo app_lang("order_total") ?>', class: "text-right"},
                {title: '<?php echo app_lang("discount") ?>', class: "text-right"},
                {title: '<?php echo app_lang("tax") ?>', class: "text-right"},
                {title: '<?php echo app_lang("second_tax") ?>', class: "text-right"}
            ],
            printColumns: [0, 1, 2, 3, 4, 5],
            xlsColumns: [0, 1, 2, 3, 4, 5],
            summation: [
                {column: 1, dataType: 'number'},
                {column: 2, dataType: 'currency', dynamicSymbol: true},
                {column: 3, dataType: 'currency', dynamicSymbol: true},
                {column: 4, dataType: 'currency', dynamicSymbol: true},
                {column: 5, dataType: 'currency', dynamicSymbol: true}
            ]
        });
    };

    $(document).ready(function () {
        loadOrdersSummaryTable("#yearly-orders-summary-table", "yearly");
    });
</script>