Added company switch for placing company logo on certain views.
[fa-stable.git] / purchasing / view / view_supp_payment.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_SUPPTRANSVIEW';
13 $path_to_root = "../..";
14
15 include($path_to_root . "/includes/session.inc");
16
17 include_once($path_to_root . "/includes/ui.inc");
18 include_once($path_to_root . "/purchasing/includes/purchasing_db.inc");
19 $js = "";
20 if ($SysPrefs->use_popup_windows)
21         $js .= get_js_open_window(900, 500);
22 page(_($help_context = "View Payment to Supplier"), true, false, "", $js);
23
24 if (isset($_GET["trans_no"]))
25 {
26         $trans_no = $_GET["trans_no"];
27 }
28
29 $receipt = get_supp_trans($trans_no, ST_SUPPAYMENT);
30
31 $company_currency = get_company_currency();
32
33 $show_currencies = false;
34 $show_both_amounts = false;
35
36 if (($receipt['bank_curr_code'] != $company_currency) || ($receipt['curr_code'] != $company_currency))
37         $show_currencies = true;
38
39 if ($receipt['bank_curr_code'] != $receipt['curr_code']) 
40 {
41         $show_currencies = true;
42         $show_both_amounts = true;
43 }
44
45 if (!empty($SysPrefs->prefs['company_logo_on_views']))
46         company_logo_on_view();
47
48 echo "<center>";
49
50 display_heading(_("Payment to Supplier") . " #$trans_no");
51
52 echo "<br>";
53 start_table(TABLESTYLE2, "width='80%'");
54
55 start_row();
56 label_cells(_("To Supplier"), $receipt['supplier_name'], "class='tableheader2'");
57 label_cells(_("From Bank Account"), $receipt['bank_account_name'], "class='tableheader2'");
58 label_cells(_("Date Paid"), sql2date($receipt['tran_date']), "class='tableheader2'");
59 end_row();
60 start_row();
61 if ($show_currencies)
62         label_cells(_("Payment Currency"), $receipt['bank_curr_code'], "class='tableheader2'");
63 label_cells(_("Amount"), number_format2(-$receipt['bank_amount'], user_price_dec()), "class='tableheader2'");
64 if ($receipt['ov_discount'] != 0)
65         label_cells(_("Discount"), number_format2(-$receipt['ov_discount']*$receipt['rate'], user_price_dec()), "class='tableheader2'");
66 else
67         label_cells(_("Payment Type"), $bank_transfer_types[$receipt['BankTransType']], "class='tableheader2'");
68 end_row();
69 start_row();
70 if ($show_currencies) 
71 {
72         label_cells(_("Supplier's Currency"), $receipt['curr_code'], "class='tableheader2'");
73 }
74 if ($show_both_amounts)
75         label_cells(_("Amount"), number_format2(-$receipt['Total'], user_price_dec()), "class='tableheader2'");
76 label_cells(_("Reference"), $receipt['ref'], "class='tableheader2'");
77 end_row();
78 if ($receipt['ov_discount'] != 0)
79 {
80         start_row();
81         label_cells(_("Payment Type"), $bank_transfer_types[$receipt['BankTransType']], "class='tableheader2'");
82         end_row();
83 }
84 comments_display_row(ST_SUPPAYMENT, $trans_no);
85
86 end_table(1);
87
88 $voided = is_voided_display(ST_SUPPAYMENT, $trans_no, _("This payment has been voided."));
89
90 // now display the allocations for this payment
91 if (!$voided) 
92 {
93         display_allocations_from(PT_SUPPLIER, $receipt['supplier_id'], ST_SUPPAYMENT, $trans_no, -$receipt['Total']);
94 }
95
96 end_page(true, false, false, ST_SUPPAYMENT, $trans_no);