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/www/pm/app/Views/invoices/clients_payment_summary.php
<div class="table-responsive">
    <table id="clients-payment-summary-table" class="display" width="100%">
    </table>
</div>

<script type="text/javascript">
    $(document).ready(function () {
        $("#clients-payment-summary-table").appTable({
            source: '<?php echo_uri("invoice_payments/clients_payment_summary_list_data/") ?>',
            order: [[0, "asc"]],
            rangeDatepicker: [{
                    startDate: {name: "start_date", value: ""},
                    endDate: {name: "end_date", value: ""},
                    showClearButton: true
                }],
            columns: [
                {title: '<?php echo app_lang("client") ?> '},
                {title: '<?php echo app_lang("amount") ?>', "class": "text-right w15p"}
            ],
            summation: [{column: 1, dataType: 'currency', currencySymbol: AppHelper.settings.currencySymbol, conversionRate: <?php echo $conversion_rate; ?>}],
            printColumns: [0, 1],
            xlsColumns: [0, 1]
        });
    });
</script>