Merged changes up to 2.3.16 into unstable
[fa-stable.git] / gl / view / gl_deposit_view.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_BANKTRANSVIEW';
13 $path_to_root = "../..";
14
15 include($path_to_root . "/includes/session.inc");
16
17 page(_($help_context = "View Bank Deposit"), true);
18
19 include_once($path_to_root . "/includes/date_functions.inc");
20 include_once($path_to_root . "/includes/ui.inc");
21
22 include_once($path_to_root . "/gl/includes/gl_db.inc");
23
24 if (isset($_GET["trans_no"]))
25 {
26         $trans_no = $_GET["trans_no"];
27 }
28
29 // get the pay-to bank payment info
30 $result = get_bank_trans(ST_BANKDEPOSIT, $trans_no);
31
32 if (db_num_rows($result) != 1)
33         display_db_error("duplicate payment bank transaction found", "");
34
35 $to_trans = db_fetch($result);
36
37 $company_currency = get_company_currency();
38
39 $show_currencies = false;
40
41 if ($to_trans['bank_curr_code'] != $company_currency)
42 {
43         $show_currencies = true;
44 }
45
46 echo "<center>";
47
48 display_heading(_("GL Deposit") . " #$trans_no");
49
50 echo "<br>";
51 start_table(TABLESTYLE, "width=80%");
52
53 if ($show_currencies)
54 {
55         $colspan1 = 5;
56         $colspan2 = 8;
57 }
58 else
59 {
60         $colspan1 = 3;
61         $colspan2 = 6;
62 }
63 start_row();
64 label_cells(_("To Bank Account"), $to_trans['bank_account_name'], "class='tableheader2'");
65 if ($show_currencies)
66         label_cells(_("Currency"), $to_trans['bank_curr_code'], "class='tableheader2'");
67 label_cells(_("Amount"), number_format2($to_trans['amount'], user_price_dec()), "class='tableheader2'", "align=right");
68 label_cells(_("Date"), sql2date($to_trans['trans_date']), "class='tableheader2'");
69 end_row();
70 start_row();
71 label_cells(_("From"), get_counterparty_name(ST_BANKDEPOSIT, $trans_no), "class='tableheader2'", "colspan=$colspan1");
72 label_cells(_("Deposit Type"), $bank_transfer_types[$to_trans['account_type']], "class='tableheader2'");
73 end_row();
74 start_row();
75 label_cells(_("Reference"), $to_trans['ref'], "class='tableheader2'", "colspan=$colspan2");
76 end_row();
77 comments_display_row(ST_BANKDEPOSIT, $trans_no);
78
79 end_table(1);
80
81 is_voided_display(ST_BANKDEPOSIT, $trans_no, _("This deposit has been voided."));
82
83 $items = get_gl_trans(ST_BANKDEPOSIT, $trans_no);
84
85 if (db_num_rows($items) == 0)
86 {
87         display_note(_("There are no items for this deposit."));
88 }
89 else
90 {
91
92         display_heading2(_("Items for this Deposit"));
93         if ($show_currencies)
94                 display_heading2(_("Item Amounts are Shown in :") . " " . $company_currency);
95
96     start_table(TABLESTYLE, "width=80%");
97     $dim = get_company_pref('use_dimension');
98     if ($dim == 2)
99         $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1", _("Dimension")." 2",
100             _("Amount"), _("Memo"));
101     else if ($dim == 1)
102         $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
103             _("Amount"), _("Memo"));
104     else
105         $th = array(_("Account Code"), _("Account Description"),
106             _("Amount"), _("Memo"));
107     table_header($th);
108
109     $k = 0; //row colour counter
110         $total_amount = 0;
111
112     while ($item = db_fetch($items))
113     {
114
115                 if ($item["account"] != $to_trans["account_code"])
116                 {
117                 alt_table_row_color($k);
118
119                 label_cell($item["account"]);
120                 label_cell($item["account_name"]);
121             if ($dim >= 1)
122                 label_cell(get_dimension_string($item['dimension_id'], true));
123             if ($dim > 1)
124                 label_cell(get_dimension_string($item['dimension2_id'], true));
125             amount_cell(-$item["amount"]);
126                 label_cell($item["memo_"]);
127                 end_row();
128                 $total_amount += $item["amount"];
129                 }
130         }
131
132         label_row(_("Total"), number_format2(-$total_amount, user_price_dec()),"colspan=".(2+$dim)." align=right", "align=right");
133
134         end_table(1);
135
136         display_allocations_from($to_trans['person_type_id'], $to_trans['person_id'], 2, $trans_no, $to_trans['amount']);
137 }
138
139 end_page(true, false, false, ST_BANKDEPOSIT, $trans_no);
140 ?>