df9cd14beb996f55fb34f3c2e2dc9b62d1929a4d
[fa-stable.git] / gl / inquiry / tax_inquiry.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 = 8;
13 $path_to_root="../..";
14 include_once($path_to_root . "/includes/session.inc");
15
16
17 include_once($path_to_root . "/includes/date_functions.inc");
18 include_once($path_to_root . "/includes/ui.inc");
19 include_once($path_to_root . "/includes/data_checks.inc");
20
21 include_once($path_to_root . "/gl/includes/gl_db.inc");
22
23 $js = '';
24 set_focus('account');
25 if ($use_popup_windows)
26         $js .= get_js_open_window(800, 500);
27 if ($use_date_picker)
28         $js .= get_js_date_picker();
29
30 page(_("Tax Inquiry"), false, false, '', $js);
31
32 //----------------------------------------------------------------------------------------------------
33 // Ajax updates
34 //
35 if (get_post('Show')) 
36 {
37         $Ajax->activate('trans_tbl');
38 }
39
40 if (get_post('TransFromDate') == "" && get_post('TransToDate') == "")
41 {
42         $date = Today();
43         $row = get_company_prefs();
44         $edate = add_months($date, -$row['tax_last']);
45         $edate = end_month($edate);
46         $bdate = add_months($edate, -$row['tax_prd'] + 1);
47         $_POST["TransFromDate"] = begin_month($bdate);
48         $_POST["TransToDate"] = $edate;
49 }       
50
51 //----------------------------------------------------------------------------------------------------
52
53 function tax_inquiry_controls()
54 {
55         global $table_style2;
56
57     start_form();
58
59     //start_table($table_style2);
60     start_table("class='tablestyle_noborder'");
61         start_row();
62
63         date_cells(_("from:"), 'TransFromDate', '', null, -30);
64         date_cells(_("to:"), 'TransToDate');
65         submit_cells('Show',_("Show"),'','', true);
66
67     end_row();
68
69         end_table();
70
71     end_form();
72 }
73
74 //----------------------------------------------------------------------------------------------------
75
76 function show_results()
77 {
78         global $path_to_root, $table_style;
79
80     /*Now get the transactions  */
81         div_start('trans_tbl');
82         start_table($table_style);
83
84         $th = array(_("Type"), _("Description"), _("Amount"), _("Outputs")."/"._("Inputs"));
85         table_header($th);
86         $k = 0;
87         $total = 0;
88         $bdate = date2sql($_POST['TransFromDate']);
89         $edate  = date2sql($_POST['TransToDate']);
90
91         $taxes = get_tax_summary($_POST['TransFromDate'], $_POST['TransToDate']);
92
93         while ($tx = db_fetch($taxes))
94         {
95
96                 $payable = $tx['payable'];
97                 $collectible = $tx['collectible'];
98                 $net = $collectible + $payable;
99                 $total += $net;
100                 alt_table_row_color($k);
101                 label_cell($tx['name'] . " " . $tx['rate'] . "%");
102                 label_cell(_("Charged on sales") . " (" . _("Output Tax")."):");
103                 amount_cell($payable);
104                 amount_cell($tx['net_output']);
105                 end_row();
106                 alt_table_row_color($k);
107                 label_cell($tx['name'] . " " . $tx['rate'] . "%");
108                 label_cell(_("Paid on purchases") . " (" . _("Input Tax")."):");
109                 amount_cell($collectible);
110                 amount_cell($tx['net_input']);
111                 end_row();
112                 alt_table_row_color($k);
113                 label_cell("<b>".$tx['name'] . " " . $tx['rate'] . "%</b>");
114                 label_cell("<b>"._("Net payable or collectible") . ":</b>");
115                 amount_cell($net, true);
116                 label_cell("");
117                 end_row();
118         }       
119         alt_table_row_color($k);
120         label_cell("");
121         label_cell("<b>"._("Total payable or refund") . ":</b>");
122         amount_cell($total, true);
123         label_cell("");
124         end_row();
125
126         end_table(2);
127         div_end();
128 }
129
130 //----------------------------------------------------------------------------------------------------
131
132 tax_inquiry_controls();
133
134 show_results();
135
136 //----------------------------------------------------------------------------------------------------
137
138 end_page();
139
140 ?>