Allowed multiply bank accounts on same gl account, removed bank trans type.
[fa-stable.git] / sales / customer_payments.php
1 <?php
2
3 $path_to_root="..";
4 $page_security = 3;
5 include_once($path_to_root . "/includes/session.inc");
6 include_once($path_to_root . "/includes/date_functions.inc");
7 include_once($path_to_root . "/includes/ui.inc");
8 include_once($path_to_root . "/includes/banking.inc");
9 include_once($path_to_root . "/includes/data_checks.inc");
10 include_once($path_to_root . "/sales/includes/sales_db.inc");
11
12 $js = "";
13 if ($use_popup_windows) {
14         $js .= get_js_open_window(900, 500);
15 }
16 if ($use_date_picker) {
17         $js .= get_js_date_picker();
18 }
19 page(_("Customer Payment Entry"), false, false, "", $js);
20
21 //----------------------------------------------------------------------------------------------
22
23 check_db_has_customers(_("There are no customers defined in the system."));
24
25 check_db_has_bank_accounts(_("There are no bank accounts defined in the system."));
26
27 //----------------------------------------------------------------------------------------
28 if ($ret = context_restore()) {
29         if(isset($ret['customer_id']))
30                 $_POST['customer_id'] = $ret['customer_id'];
31         if(isset($ret['branch_id']))
32                 $_POST['BranchID'] = $ret['branch_id'];
33 }
34 if (isset($_POST['_customer_id_editor'])) {
35         context_call($path_to_root.'/sales/manage/customers.php?debtor_no='.$_POST['customer_id'], 
36                 array( 'customer_id', 'BranchID', 'bank_account', 'DateBanked', 
37                         'ref', 'amount', 'discount', 'memo_') );
38 }
39
40 if (isset($_GET['AddedID'])) {
41         $payment_no = $_GET['AddedID'];
42
43         display_notification_centered(_("The customer payment has been successfully entered."));
44
45         display_note(get_gl_view_str(12, $payment_no, _("&View the GL Journal Entries for this Customer Payment")));
46
47         hyperlink_params($path_to_root . "/sales/allocations/customer_allocate.php", _("&Allocate this Customer Payment"), "trans_no=$payment_no&trans_type=12");
48
49         hyperlink_no_params($path_to_root . "/sales/customer_payments.php", _("Enter Another &Customer Payment"));
50         br(1);
51         end_page();
52         exit;
53 }
54
55 //----------------------------------------------------------------------------------------------
56
57 function can_process()
58 {
59         if (!isset($_POST['DateBanked']) || !is_date($_POST['DateBanked'])) {
60                 display_error(_("The entered date is invalid. Please enter a valid date for the payment."));
61                 set_focus('DateBanked');
62                 return false;
63         } elseif (!is_date_in_fiscalyear($_POST['DateBanked'])) {
64                 display_error(_("The entered date is not in fiscal year."));
65                 set_focus('DateBanked');
66                 return false;
67         }
68
69         if (!references::is_valid($_POST['ref'])) {
70                 display_error(_("You must enter a reference."));
71                 set_focus('ref');
72                 return false;
73         }
74
75         if (!is_new_reference($_POST['ref'], 12)) {
76                 display_error(_("The entered reference is already in use."));
77                 set_focus('ref');
78                 return false;
79         }
80
81         if (!check_num('amount', 0)) {
82                 display_error(_("The entered amount is invalid or negative and cannot be processed."));
83                 set_focus('amount');
84                 return false;
85         }
86
87         if (!check_num('discount')) {
88                 display_error(_("The entered discount is not a valid number."));
89                 set_focus('discount');
90                 return false;
91         }
92
93         if ((input_num('amount') - input_num('discount') <= 0)) {
94                 display_error(_("The balance of the amount and discout is zero or negative. Please enter valid amounts."));
95                 set_focus('discount');
96                 return false;
97         }
98
99         return true;
100 }
101
102 //----------------------------------------------------------------------------------------------
103
104 // validate inputs
105 if (isset($_POST['AddPaymentItem'])) {
106
107         if (!can_process()) {
108                 unset($_POST['AddPaymentItem']);
109         }
110 }
111 if (isset($_POST['_customer_id_button'])) {
112 //      unset($_POST['branch_id']);
113         $Ajax->activate('BranchID');
114 }
115 if (isset($_POST['_DateBanked_changed'])) {
116   $Ajax->activate('_ex_rate');
117 }
118 //----------------------------------------------------------------------------------------------
119
120 if (isset($_POST['AddPaymentItem'])) {
121         $payment_no = write_customer_payment(0, $_POST['customer_id'], $_POST['BranchID'],
122                 $_POST['bank_account'], $_POST['DateBanked'], $_POST['ref'],
123                 input_num('amount'), input_num('discount'), $_POST['memo_']);
124         meta_forward($_SERVER['PHP_SELF'], "AddedID=$payment_no");
125 }
126
127 //----------------------------------------------------------------------------------------------
128
129 function read_customer_data()
130 {
131         $sql = "SELECT ".TB_PREF."debtors_master.pymt_discount,
132                 ".TB_PREF."credit_status.dissallow_invoices
133                 FROM ".TB_PREF."debtors_master, ".TB_PREF."credit_status
134                 WHERE ".TB_PREF."debtors_master.credit_status = ".TB_PREF."credit_status.id
135                         AND ".TB_PREF."debtors_master.debtor_no = '" . $_POST['customer_id'] . "'";
136
137         $result = db_query($sql, "could not query customers");
138
139         $myrow = db_fetch($result);
140
141         $_POST['HoldAccount'] = $myrow["dissallow_invoices"];
142         $_POST['pymt_discount'] = $myrow["pymt_discount"];
143         $_POST['ref'] = references::get_next(12);
144 }
145
146 //-------------------------------------------------------------------------------------------------
147
148 function display_item_form()
149 {
150         global $table_style2;
151         start_table($table_style2, 5, 7);
152         echo "<tr><td valign=top>"; // outer table
153
154         echo "<table>";
155
156         if (!isset($_POST['customer_id']))
157                 $_POST['customer_id'] = get_global_customer(false);
158         if (!isset($_POST['DateBanked'])) {
159                 $_POST['DateBanked'] = Today();
160                 if (!is_date_in_fiscalyear($_POST['DateBanked'])) {
161                         $_POST['DateBanked'] = end_fiscalyear();
162                 }
163         }
164         customer_list_row(_("From Customer:"), 'customer_id', null, false, true);
165         if (db_customer_has_branches($_POST['customer_id'])) {
166                 customer_branches_list_row(_("Branch:"), $_POST['customer_id'], 'BranchID', null, false, true, true);
167         } else {
168                 hidden('BranchID', reserved_words::get_any_numeric());
169         }
170
171         read_customer_data();
172
173         set_global_customer($_POST['customer_id']);
174         if (isset($_POST['HoldAccount']) && $_POST['HoldAccount'] != 0) {
175                 echo "</table></table>";
176                 display_note(_("This customer account is on hold."), 0, 0, "class='redfb'");
177         } else {
178                 $display_discount_percent = percent_format($_POST['pymt_discount']*100) . "%";
179
180                 amount_row(_("Amount:"), 'amount');
181
182                 amount_row(_("Amount of Discount:"), 'discount');
183
184                 label_row(_("Customer prompt payment discount :"), $display_discount_percent);
185
186                 date_row(_("Date of Deposit:"), 'DateBanked','',null, 0, 0, 0, null, true);
187
188                 echo "</table>";
189                 echo "</td><td valign=top class='tableseparator'>"; // outer table
190                 echo "<table>";
191
192                 bank_accounts_list_row(_("Into Bank Account:"), 'bank_account', null, true);
193
194                 $cust_currency = get_customer_currency($_POST['customer_id']);
195                 $bank_currency = get_bank_account_currency($_POST['bank_account']);
196
197                 if ($cust_currency != $bank_currency) {
198                         exchange_rate_display($cust_currency, $bank_currency, $_POST['DateBanked']);
199                 }
200
201                 text_row(_("Reference:"), 'ref', null, 20, 40);
202
203                 textarea_row(_("Memo:"), 'memo_', null, 22, 4);
204
205                 echo "</table>";
206
207                 echo "</td></tr>";
208                 end_table(); // outer table
209
210                 if ($cust_currency != $bank_currency)
211                         display_note(_("Amount and discount are in customer's currency."));
212
213                 echo"<br>";
214
215                 submit_center('AddPaymentItem', _("Add Payment"), true, '', true);
216         }
217
218         echo "<br>";
219 }
220
221 //----------------------------------------------------------------------------------------------
222
223 start_form();
224
225 display_item_form();
226
227 end_form();
228 end_page();
229 ?>