767c790c220c86421a618fb4956dc5b993f0f421
[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'] != $to_trans['settle_curr'])
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 = 1;
56         $colspan2 = 7;
57 }
58 else
59 {
60         $colspan1 = 3;
61         $colspan2 = 5;
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, $to_trans['trans_no']), "class='tableheader2'", "colspan=$colspan1");
72 if ($show_currencies)
73 {
74         label_cells(_("Settle currency"), $to_trans['settle_curr'], "class='tableheader2'");
75         label_cells(_("Settled amount"),  number_format2($to_trans['settled_amount'], user_price_dec()), "class='tableheader2'");
76 }
77 label_cells(_("Deposit Type"), $bank_transfer_types[$to_trans['account_type']], "class='tableheader2'");
78 end_row();
79 start_row();
80 label_cells(_("Reference"), $to_trans['ref'], "class='tableheader2'", "colspan=$colspan2");
81 end_row();
82 comments_display_row(ST_BANKDEPOSIT, $trans_no);
83
84 end_table(1);
85
86 is_voided_display(ST_BANKDEPOSIT, $trans_no, _("This deposit has been voided."));
87
88 $items = get_gl_trans(ST_BANKDEPOSIT, $trans_no);
89
90 if (db_num_rows($items) == 0)
91 {
92         display_note(_("There are no items for this deposit."));
93 }
94 else
95 {
96
97         display_heading2(_("Items for this Deposit"));
98         if ($show_currencies)
99                 display_heading2(_("Item Amounts are Shown in:") . " " . $company_currency);
100
101     start_table(TABLESTYLE, "width='80%'");
102     $dim = get_company_pref('use_dimension');
103     if ($dim == 2)
104         $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1", _("Dimension")." 2",
105             _("Amount"), _("Memo"));
106     elseif ($dim == 1)
107         $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
108             _("Amount"), _("Memo"));
109     else
110         $th = array(_("Account Code"), _("Account Description"),
111             _("Amount"), _("Memo"));
112     table_header($th);
113
114     $k = 0; //row colour counter
115         $total_amount = 0;
116
117     while ($item = db_fetch($items))
118     {
119
120                 if ($item["account"] != $to_trans["account_code"])
121                 {
122                 alt_table_row_color($k);
123
124                 label_cell($item["account"]);
125                 label_cell($item["account_name"]);
126             if ($dim >= 1)
127                 label_cell(get_dimension_string($item['dimension_id'], true));
128             if ($dim > 1)
129                 label_cell(get_dimension_string($item['dimension2_id'], true));
130             amount_cell(-$item["amount"]);
131                 label_cell($item["memo_"]);
132                 end_row();
133                 $total_amount += $item["amount"];
134                 }
135         }
136
137         label_row(_("Total"), number_format2(-$total_amount, user_price_dec()),"colspan=".(2+$dim)." align=right", "align=right");
138
139         end_table(1);
140
141         display_allocations_from($to_trans['person_type_id'], $to_trans['person_id'], 2, $trans_no, $to_trans['settled_amount']);
142 }
143
144 end_page(true, false, false, ST_BANKDEPOSIT, $trans_no);