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/invoices/view.php
<div class="page-content invoice-details-view clearfix">
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12">
                <div id="invoice-details-top-bar">
                    <?php echo view("invoices/invoice_top_bar"); ?>
                </div>

                <div class="details-view-wrapper d-flex">
                    <div class="w-100">
                        <?php echo view("invoices/details"); ?>
                    </div>
                    <div class="flex-shrink-0 details-view-right-section">
                        <?php echo view("invoices/invoice_info"); ?>

                        <?php echo view("invoices/invoice_actions"); ?>

                        <?php if ($invoice_info->type == "invoice") {
                            echo view("invoices/payments/index");

                            if ($invoice_info->recurring) {
                                echo view("invoices/sub_invoices");
                            }
                        }
                        ?>

                        <div id="invoice-tasks-section">
                            <?php echo view("invoices/tasks/index"); ?>
                        </div>

                        <?php if (can_access_reminders_module()) { ?>
                            <div class="card reminders-card" id="invoice-reminders">
                                <div class="card-header fw-bold">
                                    <i data-feather="clock" class="icon-16"></i> &nbsp;<?php echo app_lang("reminders") . " (" . app_lang('private') . ")"; ?>
                                </div>
                                <div class="card-body">
                                    <?php echo view("reminders/reminders_view_data", array("invoice_id" => $invoice_info->id, "hide_form" => true, "reminder_view_type" => "invoice")); ?>
                                </div>
                            </div>
                        <?php } ?>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<script type="text/javascript">
    $(document).ready(function() {
        //modify the delete confirmation texts
        $(".mark-as-cancelled-btn").click(function() {
            $("#confirmationModalTitle").html("<?php echo app_lang('cancel') . "?"; ?>");
            $("#confirmDeleteButton").html("<i data-feather='x' class='icon-16'></i> <?php echo app_lang("cancel"); ?>");
            feather.replace();
        });

        if (isMobile()) {
            $(".pdf-view-btn").addClass("d-none");

            $(".mobile-pdf-view-btn").on('click', function(e) {
                setTimeout(function() {
                    $(".app-modal-content-area").css({
                        "height": "100%",
                        "width": "100%"
                    });
                })
            })
        }

        <?php if ($can_edit_invoices) { ?>

            $('body').on('click', '[data-act=invoice-modifier]', function(e) {
                $(this).appModifier({
                    dropdownData: {
                        labels: <?php echo json_encode($label_suggestions); ?>
                    }
                });
                return false;
            });

        <?php } ?>


        appContentBuilder.init("<?php echo get_uri('invoices/view/' . $invoice_info->id); ?>", {
            id: "invoice-details-page-builder",
            data: {
                view_type: "invoice_meta"
            },
            reloadHooks: [{
                    type: "app_form",
                    id: "invoice-form"
                },
                {
                    type: "app_form",
                    id: "discount-form"
                },
                {
                    type: "app_form",
                    id: "invoice-payment-form"
                },
                {
                    type: "app_form",
                    id: "invoice-item-form"
                },
                {
                    type: "app_form",
                    id: "send-invoice-form"
                },
                {
                    type: "ajax_request",
                    group: "invoice_status"
                },
                {
                    type: "app_modifier",
                    group: "invoice_info"
                },
                {
                    type: "app_table_row_delete",
                    tableId: "invoice-details-page-payment-table"
                },
                {
                    type: "app_table_row_delete",
                    tableId: "invoice-item-table"
                }
            ],
            reload: function(bind, result) {
                bind("#invoice-details-top-bar", result.top_bar);
                bind("#invoice-total-section", result.invoice_total_section);
            }
        });

    });


    //print invoice
    $("#print-invoice-btn").click(function() {
        appLoader.show();

        appAjaxRequest({
            url: "<?php echo get_uri('invoices/print_invoice/' . $invoice_info->id) ?>",
            dataType: 'json',
            success: function(result) {
                if (result.success) {
                    document.body.innerHTML = result.print_view; //add invoice's print view to the page
                    $("html").css({
                        "overflow": "visible"
                    });

                    setTimeout(function() {
                        window.print();
                    }, 200);
                } else {
                    appAlert.error(result.message);
                }

                appLoader.hide();
            }
        });
    });

    //reload page after finishing print action
    window.onafterprint = function() {
        location.reload();
    };
</script>