Release 1.0.1 established on SourceForge, fixing the bugs and including a Date Picker...
[fa-stable.git] / gl / bank_transfer.php
1 <?php
2
3 $path_to_root="..";
4 $page_security = 5;
5
6 include_once($path_to_root . "/includes/session.inc");
7
8 include_once($path_to_root . "/includes/date_functions.inc");
9 include_once($path_to_root . "/includes/data_checks.inc");
10
11 include_once($path_to_root . "/gl/includes/gl_db.inc");
12 include_once($path_to_root . "/gl/includes/gl_ui.inc");
13
14 $js = "";
15 if ($use_popup_windows)
16         $js .= get_js_open_window(800, 500);
17 if ($use_date_picker)
18         $js .= get_js_date_picker();
19 page(_("Transfer between Bank Accounts"), false, false, "", $js);
20
21 check_db_has_bank_accounts(_("There are no bank accounts defined in the system."));
22 check_db_has_bank_trans_types(_("There are no bank transfer types defined in the system."));
23
24 //----------------------------------------------------------------------------------------
25
26 if (isset($_GET['AddedID'])) 
27 {
28         $trans_no = $_GET['AddedID'];
29         $trans_type = systypes::bank_transfer();
30
31         display_notification_centered( _("Transfer has been entered"));
32
33         display_note(get_gl_view_str($trans_type, $trans_no, _("View the GL Journal Entries for this Transfer")));
34
35         hyperlink_no_params($_SERVER['PHP_SELF'], _("Enter Another Transfer"));
36
37         safeExit();
38 }
39
40 //----------------------------------------------------------------------------------------
41
42 function gl_payment_controls()
43 {
44         global $table_style2;
45         $home_currency = get_company_currency();
46
47         start_form(false, true);
48
49         start_table($table_style2, 5, 7);
50         echo "<tr><td valign=top>"; // outer table
51
52         echo "<table>";
53         bank_accounts_list_row(_("From Account:"), 'FromBankAccount', null, true);
54
55     bank_accounts_list_row(_("To Account:"), 'ToBankAccount', null, true);
56
57     date_row(_("Transfer Date:"), 'DatePaid');
58
59         $from_currency = get_bank_account_currency($_POST['FromBankAccount']);
60         $to_currency = get_bank_account_currency($_POST['ToBankAccount']);
61         if ($from_currency != "" && $to_currency != "" && $from_currency != $to_currency) 
62         {
63                 amount_row(_("Amount:"), 'amount', null, null, $from_currency);
64
65                 exchange_rate_display($from_currency, $to_currency, $_POST['DatePaid']);
66         } 
67         else 
68         {
69                 amount_row(_("Amount:"), 'amount');
70         }
71
72         echo "</table>";
73         echo "</td><td valign=top class='tableseparator'>"; // outer table
74         echo "<table>";
75
76         bank_trans_types_list_row(_("Transfer Type:"), 'TransferType', null);
77
78     ref_row(_("Reference:"), 'ref', references::get_next(systypes::bank_transfer()));
79
80     textarea_row(_("Memo:"), 'memo_', null, 40,4);
81
82         end_table(1);
83
84         echo "</td></tr>";
85         end_table(1); // outer table
86
87     submit_center('AddPayment',_("Enter Transfer"));
88
89         end_form();
90 }
91
92 //----------------------------------------------------------------------------------------
93
94 function check_valid_entries()
95 {
96         if (!is_date($_POST['DatePaid'])) 
97         {
98                 display_error(_("The entered date is invalid."));
99                 return false;
100         }
101         if (!is_date_in_fiscalyear($_POST['DatePaid']))
102         {
103                 display_error(_("The entered date is not in fiscal year."));
104                 return false;
105         }
106
107         if (!is_numeric($_POST['amount'])) 
108         {
109                 display_error(_("The entered amount is invalid."));
110                 return false;
111         }
112         if ($_POST['amount'] <= 0) 
113         {
114                 display_error(_("The entered amount must be a positive number."));
115                 return false;
116         }
117
118         if (!references::is_valid($_POST['ref'])) 
119         {
120                 display_error(_("You must enter a reference."));
121                 return false;
122         }
123
124         if (!is_new_reference($_POST['ref'], systypes::bank_transfer())) 
125         {
126                 display_error(_("The entered reference is already in use."));
127                 return false;
128         }
129
130         if ($_POST['FromBankAccount'] == $_POST['ToBankAccount']) 
131         {
132                 display_error(_("The source and destination bank accouts cannot be the same."));
133                 return false;
134         }
135
136     return true;
137 }
138
139 //----------------------------------------------------------------------------------------
140
141 function handle_add_deposit()
142 {
143         global $path_to_root;
144
145         $trans_no = add_bank_transfer($_POST['FromBankAccount'], $_POST['ToBankAccount'],
146                 $_POST['DatePaid'], $_POST['amount'],
147                 $_POST['TransferType'], $_POST['ref'], $_POST['memo_']);
148
149         meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no");
150 }
151
152 //----------------------------------------------------------------------------------------
153
154 function safeExit()
155 {
156         global $path_to_root;
157         echo "<br><br>";
158         end_page();
159         exit;
160 }
161
162 //----------------------------------------------------------------------------------------
163
164 if (isset($_POST['AddPayment']))
165 {
166         if (check_valid_entries() == true) 
167         {
168                 handle_add_deposit();
169                 safeExit();
170         }
171 }
172
173 gl_payment_controls();
174
175 end_page();
176 ?>