[0000085] Fixed session conflicts during document edition in multiply browser tabs.
[fa-stable.git] / sales / customer_credit_invoice.php
1 <?php
2 //---------------------------------------------------------------------------
3 //
4 //      Entry/Modify Credit Note for selected Sales Invoice
5 //
6
7 $page_security = 3;
8 $path_to_root = "..";
9
10 include_once($path_to_root . "/sales/includes/cart_class.inc");
11 include_once($path_to_root . "/includes/session.inc");
12 include_once($path_to_root . "/includes/data_checks.inc");
13 include_once($path_to_root . "/includes/manufacturing.inc");
14 include_once($path_to_root . "/sales/includes/sales_db.inc");
15 include_once($path_to_root . "/sales/includes/sales_ui.inc");
16 include_once($path_to_root . "/reporting/includes/reporting.inc");
17
18 $js = "";
19 if ($use_popup_windows) {
20         $js .= get_js_open_window(900, 500);
21 }
22
23 if ($use_date_picker) {
24         $js .= get_js_date_picker();
25 }
26
27 if (isset($_GET['ModifyCredit'])) {
28         $_SESSION['page_title'] = sprintf(_("Modifying Credit Invoice # %d."), $_GET['ModifyCredit']);
29         $help_page_title =_("Modifying Credit Invoice");
30         processing_start();
31 } elseif (isset($_GET['InvoiceNumber'])) {
32         $_SESSION['page_title'] = _("Credit all or part of an Invoice");
33         processing_start();
34 }
35 page($_SESSION['page_title'], false, false, "", $js);
36
37 //-----------------------------------------------------------------------------
38
39 if (isset($_GET['AddedID'])) {
40         $credit_no = $_GET['AddedID'];
41         $trans_type = 11;
42
43         display_notification_centered(_("Credit Note has been processed"));
44
45         display_note(get_customer_trans_view_str($trans_type, $credit_no, _("&View This Credit Note")), 0, 0);
46
47         display_note(print_document_link($credit_no, _("&Print This Credit Note"), true, 11),1);
48
49         display_note(get_gl_view_str($trans_type, $credit_no, _("View the GL &Journal Entries for this Credit Note")),1);
50
51         display_footer_exit();
52
53 } elseif (isset($_GET['UpdatedID'])) {
54         $credit_no = $_GET['UpdatedID'];
55         $trans_type = 11;
56
57         display_notification_centered(_("Credit Note has been updated"));
58
59         display_note(get_customer_trans_view_str($trans_type, $credit_no, _("&View This Credit Note")), 0, 0);
60
61         display_note(print_document_link($credit_no, _("&Print This Credit Note"), true, 11),1);
62
63         display_note(get_gl_view_str($trans_type, $credit_no, _("View the GL &Journal Entries for this Credit Note")),1);
64
65         display_footer_exit();
66 } else
67         check_edit_conflicts();
68
69
70 //-----------------------------------------------------------------------------
71
72 function can_process()
73 {
74         if (!is_date($_POST['CreditDate'])) {
75                 display_error(_("The entered date is invalid."));;
76                 set_focus('CreditDate');
77                 return false;
78         } elseif (!is_date_in_fiscalyear($_POST['CreditDate'])) {
79                 display_error(_("The entered date is not in fiscal year."));
80                 set_focus('CreditDate');
81                 return false;
82         }
83
84     if ($_SESSION['Items']->trans_no==0) {
85                 if (!references::is_valid($_POST['ref'])) {
86                         display_error(_("You must enter a reference."));;
87                         set_focus('ref');
88                         return false;
89                 }
90
91                 if (!is_new_reference($_POST['ref'], 11)) {
92                         display_error(_("The entered reference is already in use."));;
93                         set_focus('ref');
94                         return false;
95                 }
96     }
97         if (!check_num('ChargeFreightCost', 0)) {
98                 display_error(_("The entered shipping cost is invalid or less than zero."));;
99                 set_focus('ChargeFreightCost');
100                 return false;
101         }
102         if (!check_quantities()) {
103                 display_error(_("Selected quantity cannot be less than zero nor more than quantity not credited yet."));
104                 return false;
105         }
106         return true;
107 }
108
109 //-----------------------------------------------------------------------------
110
111 if (isset($_GET['InvoiceNumber']) && $_GET['InvoiceNumber'] > 0) {
112
113     $ci = new Cart(10, $_GET['InvoiceNumber'], true);
114
115     $ci->trans_type = 11;
116     $ci->src_docs = $ci->trans_no;
117     $ci->src_date = $ci->document_date;
118     $ci->trans_no = 0;
119     $ci->document_date = Today();
120     $ci->reference = references::get_next(11);
121
122     for ($line_no=0; $line_no<count($ci->line_items); $line_no++) {
123         $ci->line_items[$line_no]->qty_dispatched = '0';
124     }
125
126     $_SESSION['Items'] = $ci;
127         copy_from_cart();
128
129 } elseif ( isset($_GET['ModifyCredit']) && $_GET['ModifyCredit']>0) {
130
131         $_SESSION['Items'] = new Cart(11,$_GET['ModifyCredit']);
132         copy_from_cart();
133
134 } elseif (!processing_active()) {
135         /* This page can only be called with an invoice number for crediting*/
136         die (_("This page can only be opened if an invoice has been selected for crediting."));
137 } elseif (!check_quantities()) {
138         display_error(_("Selected quantity cannot be less than zero nor more than quantity not credited yet."));
139 }
140
141 function check_quantities()
142 {
143         $ok =1;
144         foreach ($_SESSION['Items']->line_items as $line_no=>$itm) {
145                 if (isset($_POST['Line'.$line_no])) {
146                         if (check_num('Line'.$line_no, 0, $itm->quantity)) {
147                                 $_SESSION['Items']->line_items[$line_no]->qty_dispatched =
148                                   input_num('Line'.$line_no);
149                         }
150                 }
151                 else {
152                         $ok = 0;
153                 }
154
155                 if (isset($_POST['Line'.$line_no.'Desc'])) {
156                         $line_desc = $_POST['Line'.$line_no.'Desc'];
157                         if (strlen($line_desc) > 0) {
158                                 $_SESSION['Items']->line_items[$line_no]->item_description = $line_desc;
159                         }
160                 }
161         }
162         return $ok;
163 }
164 //-----------------------------------------------------------------------------
165
166 function copy_to_cart()
167 {
168   $cart = &$_SESSION['Items'];
169   $cart->ship_via = $_POST['ShipperID'];
170   $cart->freight_cost = input_num('ChargeFreightCost');
171   $cart->document_date =  $_POST['CreditDate'];
172   $cart->Location = $_POST['Location'];
173   $cart->Comments = $_POST['CreditText'];
174 }
175 //-----------------------------------------------------------------------------
176
177 function copy_from_cart()
178 {
179   $cart = &$_SESSION['Items'];
180   $_POST['ShipperID'] = $cart->ship_via;
181   $_POST['ChargeFreightCost'] = price_format($cart->freight_cost);
182   $_POST['CreditDate']= $cart->document_date;
183   $_POST['Location']= $cart->Location;
184   $_POST['CreditText']= $cart->Comments;
185   $_POST['cart_id'] = $cart->cart_id;
186 }
187 //-----------------------------------------------------------------------------
188
189 if (isset($_POST['ProcessCredit']) && can_process()) {
190
191     $newcredit = ($_SESSION['Items']->trans_no == 0);
192
193     if (!isset($_POST['WriteOffGLCode']))
194                 $_POST['WriteOffGLCode'] = 0;
195
196         copy_to_cart();
197     $credit_no = $_SESSION['Items']->write($_POST['WriteOffGLCode']);
198
199         processing_end();
200         if ($newcredit) {
201                 meta_forward($_SERVER['PHP_SELF'], "AddedID=$credit_no");
202         } else {
203                 meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$credit_no");
204         }
205 }
206
207 //-----------------------------------------------------------------------------
208
209 if (isset($_POST['Location'])) {
210         $_SESSION['Items']->Location = $_POST['Location'];
211 }
212
213 //-----------------------------------------------------------------------------
214
215 function display_credit_items()
216 {
217         global $table_style, $table_style2;
218
219     start_form(false, true);
220         hidden('cart_id');
221
222         start_table("$table_style2 width=80%", 5);
223         echo "<tr><td>"; // outer table
224
225     start_table("$table_style width=100%");
226     start_row();
227     label_cells(_("Customer"), $_SESSION['Items']->customer_name, "class='tableheader2'");
228         label_cells(_("Branch"), get_branch_name($_SESSION['Items']->Branch), "class='tableheader2'");
229     label_cells(_("Currency"), $_SESSION['Items']->customer_currency, "class='tableheader2'");
230     end_row();
231     start_row();
232
233 //      if (!isset($_POST['ref']))
234 //              $_POST['ref'] = references::get_next(11);
235
236     if ($_SESSION['Items']->trans_no==0) {
237                 ref_cells(_("Reference"), 'ref', '', $_SESSION['Items']->reference, "class='tableheader2'");
238         } else {
239                 label_cells(_("Reference"), $_SESSION['Items']->reference, "class='tableheader2'");
240         }
241 //    label_cells(_("Crediting Invoice"), get_customer_trans_view_str(10, $_SESSION['InvoiceToCredit']), "class='tableheader2'");
242     label_cells(_("Crediting Invoice"), get_customer_trans_view_str(10, array_keys($_SESSION['Items']->src_docs)), "class='tableheader2'");
243
244         if (!isset($_POST['ShipperID'])) {
245                 $_POST['ShipperID'] = $_SESSION['Items']->ship_via;
246         }
247         label_cell(_("Shipping Company"), "class='tableheader2'");
248         shippers_list_cells(null, 'ShipperID', $_POST['ShipperID']);
249 //      if (!isset($_POST['sales_type_id']))
250 //        $_POST['sales_type_id'] = $_SESSION['Items']->sales_type;
251 //      label_cell(_("Sales Type"), "class='tableheader2'");
252 //      sales_types_list_cells(null, 'sales_type_id', $_POST['sales_type_id']);
253
254         end_row();
255         end_table();
256
257     echo "</td><td>";// outer table
258
259     start_table("$table_style width=100%");
260
261     label_row(_("Invoice Date"), $_SESSION['Items']->src_date, "class='tableheader2'");
262
263     date_row(_("Credit Note Date"), 'CreditDate', '', null, 0, 0, 0, "class='tableheader2'");
264
265     end_table();
266
267         echo "</td></tr>";
268
269         end_table(1); // outer table
270
271         div_start('credit_items');
272     start_table("$table_style width=80%");
273     $th = array(_("Item Code"), _("Item Description"), _("Invoiced Quantity"), _("Units"),
274         _("Credit Quantity"), _("Price"), _("Discount %"), _("Total"));
275     table_header($th);
276
277     $k = 0; //row colour counter
278
279     foreach ($_SESSION['Items']->line_items as $line_no=>$ln_itm) {
280                 if ($ln_itm->quantity==$ln_itm->qty_done) {
281                         continue; // this line was fully credited
282                 }
283                 alt_table_row_color($k);
284
285
286                 //      view_stock_status_cell($ln_itm->stock_id); alternative view
287         label_cell($ln_itm->stock_id);
288
289                 text_cells(null, 'Line'.$line_no.'Desc', $ln_itm->item_description, 30, 50);
290                 $dec = get_qty_dec($ln_itm->stock_id);
291         qty_cell($ln_itm->quantity, false, $dec);
292         label_cell($ln_itm->units);
293                 amount_cells(null, 'Line'.$line_no, number_format2($ln_itm->qty_dispatched, $dec),
294                         null, null, $dec);
295         $line_total =($ln_itm->qty_dispatched * $ln_itm->price * (1 - $ln_itm->discount_percent));
296
297         amount_cell($ln_itm->price);
298         percent_cell($ln_itm->discount_percent*100);
299         amount_cell($line_total);
300         end_row();
301     }
302
303     if (!check_num('ChargeFreightCost')) {
304         $_POST['ChargeFreightCost'] = price_format($_SESSION['Items']->freight_cost);
305     }
306
307         start_row();
308         label_cell(_("Credit Shipping Cost"), "colspan=7 align=right");
309         amount_cells_ex(null, "ChargeFreightCost", 6, 8, $_POST['ChargeFreightCost']);
310         end_row();
311
312     $inv_items_total = $_SESSION['Items']->get_items_total_dispatch();
313
314     $display_sub_total = price_format($inv_items_total + input_num($_POST['ChargeFreightCost']));
315     label_row(_("Sub-total"), $display_sub_total, "colspan=7 align=right", "align=right");
316
317     $taxes = $_SESSION['Items']->get_taxes(input_num($_POST['ChargeFreightCost']));
318
319     $tax_total = display_edit_tax_items($taxes, 7, $_SESSION['Items']->tax_included);
320
321     $display_total = price_format(($inv_items_total + input_num('ChargeFreightCost') + $tax_total));
322
323     label_row(_("Credit Note Total"), $display_total, "colspan=7 align=right", "align=right");
324
325     end_table();
326         div_end();
327 }
328
329 //-----------------------------------------------------------------------------
330 function display_credit_options()
331 {
332         global $table_style2, $Ajax;
333         echo "<br>";
334
335 if (isset($_POST['_CreditType_update']))
336         $Ajax->activate('options');
337
338  div_start('options');
339         start_table("$table_style2");
340
341         credit_type_list_row(_("Credit Note Type"), 'CreditType', null, true);
342
343         if ($_POST['CreditType'] == "Return")
344         {
345
346                 /*if the credit note is a return of goods then need to know which location to receive them into */
347                 if (!isset($_POST['Location']))
348                         $_POST['Location'] = $_SESSION['Items']->Location;
349                 locations_list_row(_("Items Returned to Location"), 'Location', $_POST['Location']);
350         }
351         else
352         {
353                 /* the goods are to be written off to somewhere */
354                 gl_all_accounts_list_row(_("Write off the cost of the items to"), 'WriteOffGLCode', null);
355         }
356
357         textarea_row(_("Memo"), "CreditText", null, 51, 3);
358         echo "</table>";
359  div_end();
360 }
361
362 //-----------------------------------------------------------------------------
363 if (get_post('Update'))
364 {
365         $Ajax->activate('credit_items');
366 }
367 //-----------------------------------------------------------------------------
368
369 display_credit_items();
370 display_credit_options();
371
372 echo "<br><center>";
373 submit('Update', _("Update"), true, _('Update credit value for quantities entered'), true);
374 echo "&nbsp";
375 submit('ProcessCredit', _("Process Credit Note"), true, '', true);
376 echo "</center>";
377
378 end_form();
379
380
381 end_page();
382
383 ?>