123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2023
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- //includes files
- require_once dirname(__DIR__, 2) . "/resources/require.php";
- require_once "resources/check_auth.php";
- //check permissions
- if (permission_exists('invoice_view')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
- //additional includes
- require_once "resources/header.php";
- require_once "resources/paging.php";
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //get variables used to control the order
- $order_by = $_GET["order_by"];
- $order = $_GET["order"];
- //get the contact id
- $contact_uuid = check_str($_REQUEST["id"]);
- //show the content
- echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
- echo " <tr>\n";
- echo " <td width='50%' align='left' valign='top' nowrap='nowrap'><b>".$text['title-invoices']."</b><br><br></td>\n";
- echo " <td width='50%' align=\"right\" valign='top'>\n";
- if ($contact_uuid != '') {
- echo " <input type='button' class='btn' name='' alt='back' onclick=\"history.go(-1);\" value='Back'>\n";
- }
- echo " </td>\n";
- echo " </tr>\n";
- echo "</table>\n";
- //prepare to page the results
- $sql = "SELECT count(*) as num_rows FROM v_invoices ";
- $sql .= "LEFT OUTER JOIN v_contacts ";
- $sql .= "ON v_invoices.contact_uuid_to = v_contacts.contact_uuid ";
- $sql .= "where v_invoices.domain_uuid = '$domain_uuid' ";
- if (strlen($contact_uuid) > 0) {
- $sql .= "and v_invoices.contact_uuid_to = '$contact_uuid' ";
- }
- $prep_statement = $db->prepare($sql);
- if ($prep_statement) {
- $prep_statement->execute();
- $row = $prep_statement->fetch(PDO::FETCH_ASSOC);
- if ($row['num_rows'] > 0) {
- $num_rows = $row['num_rows'];
- }
- else {
- $num_rows = '0';
- }
- }
- //prepare to page the results
- $rows_per_page = 150;
- $param = "";
- $page = $_GET['page'];
- if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
- list($paging_controls, $rows_per_page, $var3) = paging($num_rows, $param, $rows_per_page);
- $offset = $rows_per_page * $page;
- //get the list
- $sql = "SELECT * FROM v_invoices ";
- $sql .= "LEFT OUTER JOIN v_contacts ";
- $sql .= "ON v_invoices.contact_uuid_to = v_contacts.contact_uuid ";
- $sql .= "where v_invoices.domain_uuid = '$domain_uuid' ";
- if (strlen($contact_uuid) > 0) {
- $sql .= "and v_invoices.contact_uuid_to = '$contact_uuid' ";
- }
- if (strlen($order_by) == 0) {
- $sql .= "order by v_invoices.invoice_number desc ";
- }
- else {
- $sql .= "order by v_invoices.$order_by $order ";
- }
- $sql .= "limit $rows_per_page offset $offset ";
- $prep_statement = $db->prepare(check_sql($sql));
- $prep_statement->execute();
- $invoices = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- unset ($prep_statement, $sql);
- //set the row style
- $c = 0;
- $row_style["0"] = "row_style0";
- $row_style["1"] = "row_style1";
- //show the invoices
- echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
- echo "<tr>\n";
- echo "<th> </th>\n";
- echo th_order_by('invoice_number', $text['label-invoice_number'], $order_by, $order);
- echo th_order_by('invoice_type', $text['label-invoice_type'], $order_by, $order);
- echo th_order_by('contact_organization', $text['label-contact_to_organization'], $order_by, $order);
- echo th_order_by('contact_name_given', $text['label-contact_to_given_name'], $order_by, $order);
- echo th_order_by('contact_name_family', $text['label-contact_to_family_name'], $order_by, $order);
- echo th_order_by('invoice_date', $text['label-invoice_date'], $order_by, $order);
- echo "<td align='right' width='42'>\n";
- if (permission_exists('invoice_add')) {
- echo " <a href='invoice_edit.php?contact_uuid=".$_GET['id']."' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
- }
- else {
- echo " \n";
- }
- echo "</td>\n";
- echo "<tr>\n";
- if (is_array($invoices)) {
- foreach($invoices as $row) {
- $back = ($contact_uuid != '') ? "&back=".urlencode("invoices.php?id=".$contact_uuid) : null;
- $tr_link = (permission_exists('invoice_edit')) ? "href='invoice_edit.php?contact_uuid=".escape($row['contact_uuid'])."&id=".escape($row['invoice_uuid']).escape($back)."'" : null;
- echo "<tr ".$tr_link.">\n";
- echo " <td align='center' valign='middle' class='".$row_style[$c]."' style='padding: 0px 0px 0px 5px;'>";
- if ($row['invoice_paid'] == 1) {
- echo "<img src='paid.png' style='width: 16px; height: 16px; border; none;'>";
- }
- else {
- echo "<img src='unpaid.png' style='width: 16px; height: 16px; border; none;'>";
- }
- echo " </td>\n";
- echo " <td valign='top' class='".$row_style[$c]."'><a href='invoice_edit.php?contact_uuid=".escape($row['contact_uuid'])."&id=".escape($row['invoice_uuid']).escape($back)."' alt='".$text['button-edit']."'>".escape($row['invoice_number'])."</a> </td>\n";
- echo " <td valign='top' class='".$row_style[$c]."'>".$text['label-invoice_type_'.escape($row['invoice_type'])]." </td>\n";
- echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['contact_organization'])." </td>\n";
- echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['contact_name_given'])." </td>\n";
- echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['contact_name_family'])." </td>\n";
- echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['invoice_date'])." </td>\n";
- echo " <td class='list_control_icons'>\n";
- if (permission_exists('invoice_edit')) {
- echo "<a href='invoice_edit.php?contact_uuid=".escape($row['contact_uuid'])."&id=".escape($row['invoice_uuid']).escape($back)."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
- }
- if (permission_exists('invoice_delete')) {
- echo "<a href='invoice_delete.php?contact_uuid=".escape($row['contact_uuid'])."&id=".escape($row['invoice_uuid']).escape($back)."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
- }
- echo "</td>\n";
- echo "</tr>\n";
- if ($c==0) { $c=1; } else { $c=0; }
- } //end foreach
- unset($invoices);
- } //end if results
- echo "<tr>\n";
- echo "<td colspan='10' align='left'>\n";
- echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
- echo " <tr>\n";
- echo " <td width='33.3%' nowrap='nowrap'> </td>\n";
- echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
- echo " <td width='33.3%' align='right'>\n";
- if (permission_exists('invoice_add')) {
- echo " <a href='invoice_edit.php?contact_uuid=".$_GET['id']."' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
- }
- else {
- echo " \n";
- }
- echo " </td>\n";
- echo " </tr>\n";
- echo " </table>\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "</table>";
- echo "<br /><br />";
- //include the footer
- require_once "resources/footer.php";
- ?>
|