Form submit/escape hotkeys added.
[fa-stable.git] / sales / customer_delivery.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 //-----------------------------------------------------------------------------
13 //
14 //      Entry/Modify Delivery Note against Sales Order
15 //
16 $page_security = 2;
17 $path_to_root="..";
18
19 include_once($path_to_root . "/sales/includes/cart_class.inc");
20 include_once($path_to_root . "/includes/session.inc");
21 include_once($path_to_root . "/includes/data_checks.inc");
22 include_once($path_to_root . "/includes/manufacturing.inc");
23 include_once($path_to_root . "/sales/includes/sales_db.inc");
24 include_once($path_to_root . "/sales/includes/sales_ui.inc");
25 include_once($path_to_root . "/reporting/includes/reporting.inc");
26 include_once($path_to_root . "/taxes/tax_calc.inc");
27
28 $js = "";
29 if ($use_popup_windows) {
30         $js .= get_js_open_window(900, 500);
31 }
32 if ($use_date_picker) {
33         $js .= get_js_date_picker();
34 }
35
36 if (isset($_GET['ModifyDelivery'])) {
37         $_SESSION['page_title'] = sprintf(_("Modifying Delivery Note # %d."), $_GET['ModifyDelivery']);
38         $help_page_title = _("Modifying Delivery Note");
39         processing_start();
40 } elseif (isset($_GET['OrderNumber'])) {
41         $_SESSION['page_title'] = _("Deliver Items for a Sales Order");
42         processing_start();
43 }
44
45 page($_SESSION['page_title'], false, false, "", $js);
46
47 if (isset($_GET['AddedID'])) {
48         $dispatch_no = $_GET['AddedID'];
49
50         display_notification(_("Dispatch processed:") . ' '.$_GET['AddedID'], true);
51
52         display_note(get_customer_trans_view_str(13, $dispatch_no, _("View this dispatch")), 0, 1);
53
54         display_note(print_document_link($dispatch_no, _("Print this delivery"), true, 13));
55
56         display_note(get_gl_view_str(13, $dispatch_no, _("View the GL Journal Entries for this Dispatch")),1);
57
58         hyperlink_params("$path_to_root/sales/customer_invoice.php", _("Invoice This Delivery"), "DeliveryNumber=$dispatch_no");
59
60         hyperlink_params("$path_to_root/sales/inquiry/sales_orders_view.php", _("Select Another Order For Dispatch"), "OutstandingOnly=1");
61
62         display_footer_exit();
63
64 } elseif (isset($_GET['UpdatedID'])) {
65
66         $delivery_no = $_GET['UpdatedID'];
67
68         display_notification_centered(sprintf(_('Delivery Note # %d has been updated.'),$delivery_no));
69
70         display_note(get_trans_view_str(13, $delivery_no, _("View this delivery")));
71         echo '<br>';
72         display_note(print_document_link($delivery_no, _("Print this delivery"), true, 13));
73
74         hyperlink_params($path_to_root . "/sales/customer_invoice.php", _("Confirm Delivery and Invoice"), "DeliveryNumber=$delivery_no");
75
76         hyperlink_params($path_to_root . "/sales/inquiry/sales_deliveries_view.php", _("Select A Different Delivery"), "OutstandingOnly=1");
77
78         display_footer_exit();
79 }
80 //-----------------------------------------------------------------------------
81
82 if (isset($_GET['OrderNumber']) && $_GET['OrderNumber'] > 0) {
83
84         $ord = new Cart(30, $_GET['OrderNumber'], true);
85
86         /*read in all the selected order into the Items cart  */
87
88         if ($ord->count_items() == 0) {
89                 hyperlink_params($path_to_root . "/sales/inquiry/sales_orders_view.php",
90                         _("Select a different sales order to delivery"), "OutstandingOnly=1");
91                 die ("<br><b>" . _("This order has no items. There is nothing to delivery.") . "</b>");
92         }
93
94         $ord->trans_type = 13;
95         $ord->src_docs = $ord->trans_no;
96         $ord->order_no = key($ord->trans_no);
97         $ord->trans_no = 0;
98         $ord->reference = references::get_next(13);
99         $ord->document_date = Today();
100         $_SESSION['Items'] = $ord;
101         copy_from_cart();
102
103 } elseif (isset($_GET['ModifyDelivery']) && $_GET['ModifyDelivery'] > 0) {
104
105         $_SESSION['Items'] = new Cart(13,$_GET['ModifyDelivery']);
106
107         if ($_SESSION['Items']->count_items() == 0) {
108                 hyperlink_params($path_to_root . "/sales/inquiry/sales_orders_view.php",
109                         _("Select a different delivery"), "OutstandingOnly=1");
110                 echo "<br><center><b>" . _("This delivery has all items invoiced. There is nothing to modify.") .
111                         "</center></b>";
112                 display_footer_exit();
113         }
114
115         copy_from_cart();
116         
117 } elseif ( !processing_active() ) {
118         /* This page can only be called with an order number for invoicing*/
119
120         display_error(_("This page can only be opened if an order or delivery note has been selected. Please select it first."));
121
122         hyperlink_params("$path_to_root/sales/inquiry/sales_orders_view.php", _("Select a Sales Order to Delivery"), "OutstandingOnly=1");
123
124         end_page();
125         exit;
126
127 } else {
128         check_edit_conflicts();
129
130         if (!check_quantities()) {
131                 display_error(_("Selected quantity cannot be less than quantity invoiced nor more than quantity
132                         not dispatched on sales order."));
133
134         } elseif(!check_num('ChargeFreightCost', 0))
135                 display_error(_("Freight cost cannot be less than zero"));
136                 set_focus('ChargeFreightCost');
137 }
138
139 //-----------------------------------------------------------------------------
140
141 function check_data()
142 {
143         if (!isset($_POST['DispatchDate']) || !is_date($_POST['DispatchDate'])) {
144                 display_error(_("The entered date of delivery is invalid."));
145                 set_focus('DispatchDate');
146                 return false;
147         }
148
149         if (!is_date_in_fiscalyear($_POST['DispatchDate'])) {
150                 display_error(_("The entered date of delivery is not in fiscal year."));
151                 set_focus('DispatchDate');
152                 return false;
153         }
154
155         if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) {
156                 display_error(_("The entered dead-line for invoice is invalid."));
157                 set_focus('due_date');
158                 return false;
159         }
160
161         if ($_SESSION['Items']->trans_no==0) {
162                 if (!references::is_valid($_POST['ref'])) {
163                         display_error(_("You must enter a reference."));
164                         set_focus('ref');
165                         return false;
166                 }
167
168                 if ($_SESSION['Items']->trans_no==0 && !is_new_reference($_POST['ref'], 13)) {
169                         display_error(_("The entered reference is already in use."));
170                         set_focus('ref');
171                         return false;
172                 }
173         }
174         if ($_POST['ChargeFreightCost'] == "") {
175                 $_POST['ChargeFreightCost'] = price_format(0);
176         }
177
178         if (!check_num('ChargeFreightCost',0)) {
179                 display_error(_("The entered shipping value is not numeric."));
180                 set_focus('ChargeFreightCost');
181                 return false;
182         }
183
184         if ($_SESSION['Items']->has_items_dispatch() == 0 && input_num('ChargeFreightCost') == 0) {
185                 display_error(_("There are no item quantities on this delivery note."));
186                 return false;
187         }
188
189         if (!check_quantities()) {
190                 display_error(_("Selected quantity cannot be less than quantity invoiced nor more than quantity
191                 not dispatched on sales order."));
192                 return false;
193         }
194
195         return true;
196 }
197 //------------------------------------------------------------------------------
198 function copy_to_cart()
199 {
200         $cart = &$_SESSION['Items'];
201         $cart->ship_via = $_POST['ship_via'];
202         $cart->freight_cost = input_num('ChargeFreightCost');
203         $cart->document_date = $_POST['DispatchDate'];
204         $cart->due_date =  $_POST['due_date'];
205         $cart->Location = $_POST['Location'];
206         $cart->Comments = $_POST['Comments'];
207         if ($cart->trans_no == 0)
208                 $dn->ref = $_POST['ref'];
209
210 }
211 //------------------------------------------------------------------------------
212
213 function copy_from_cart()
214 {
215         $cart = &$_SESSION['Items'];
216         $_POST['ship_via'] = $cart->ship_via;
217         $_POST['ChargeFreightCost'] = price_format($cart->freight_cost);
218         $_POST['DispatchDate'] = $cart->document_date;
219         $_POST['due_date'] = $cart->due_date;
220         $_POST['Location'] = $cart->Location;
221         $_POST['Comments'] = $cart->Comments;
222         $_POST['cart_id'] = $cart->cart_id;
223 }
224 //------------------------------------------------------------------------------
225
226 function check_quantities()
227 {
228         $ok =1;
229         // Update cart delivery quantities/descriptions
230         foreach ($_SESSION['Items']->line_items as $line=>$itm) {
231                 if (isset($_POST['Line'.$line])) {
232                 if($_SESSION['Items']->trans_no) {
233                         $min = $itm->qty_done;
234                         $max = $itm->quantity;
235                 } else {
236                         $min = 0;
237                         $max = $itm->quantity - $itm->qty_done;
238                 }
239                 
240                         if (check_num('Line'.$line, $min, $max)) {
241                                 $_SESSION['Items']->line_items[$line]->qty_dispatched =
242                                   input_num('Line'.$line);
243                         } else {
244                                 set_focus('Line'.$line);
245                                 $ok = 0;
246                         }
247
248                 }
249
250                 if (isset($_POST['Line'.$line.'Desc'])) {
251                         $line_desc = $_POST['Line'.$line.'Desc'];
252                         if (strlen($line_desc) > 0) {
253                                 $_SESSION['Items']->line_items[$line]->item_description = $line_desc;
254                         }
255                 }
256         }
257 // ...
258 //      else
259 //        $_SESSION['Items']->freight_cost = input_num('ChargeFreightCost');
260         return $ok;
261 }
262 //------------------------------------------------------------------------------
263
264 function check_qoh()
265 {
266         if (!sys_prefs::allow_negative_stock()) {
267                 foreach ($_SESSION['Items']->line_items as $itm) {
268
269                         if ($itm->qty_dispatched && has_stock_holding($itm->mb_flag)) {
270                                 $qoh = get_qoh_on_date($itm->stock_id, $_POST['Location'], $_POST['DispatchDate']);
271
272                                 if ($itm->qty_dispatched > $qoh) {
273                                         display_error(_("The delivery cannot be processed because there is an insufficient quantity for item:") .
274                                                 " " . $itm->stock_id . " - " .  $itm->item_description);
275                                         return false;
276                                 }
277                         }
278                 }
279         }
280         return true;
281 }
282 //------------------------------------------------------------------------------
283
284 if (isset($_POST['process_delivery']) && check_data() && check_qoh()) {
285
286         $dn = &$_SESSION['Items'];
287
288         if ($_POST['bo_policy']) {
289                 $bo_policy = 0;
290         } else {
291                 $bo_policy = 1;
292         }
293         $newdelivery = ($dn->trans_no == 0);
294
295         copy_to_cart();
296         $delivery_no = $dn->write($bo_policy);
297
298         processing_end();
299         if ($newdelivery) {
300                 meta_forward($_SERVER['PHP_SELF'], "AddedID=$delivery_no");
301         } else {
302                 meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$delivery_no");
303         }
304 }
305
306 if (isset($_POST['Update']) || isset($_POST['_Location_update'])) {
307         $Ajax->activate('Items');
308 }
309 //------------------------------------------------------------------------------
310 start_form();
311 hidden('cart_id');
312
313 start_table("$table_style2 width=80%", 5);
314 echo "<tr><td>"; // outer table
315
316 start_table("$table_style width=100%");
317 start_row();
318 label_cells(_("Customer"), $_SESSION['Items']->customer_name, "class='tableheader2'");
319 label_cells(_("Branch"), get_branch_name($_SESSION['Items']->Branch), "class='tableheader2'");
320 label_cells(_("Currency"), $_SESSION['Items']->customer_currency, "class='tableheader2'");
321 end_row();
322 start_row();
323
324 //if (!isset($_POST['ref']))
325 //      $_POST['ref'] = references::get_next(13);
326
327 if ($_SESSION['Items']->trans_no==0) {
328         ref_cells(_("Reference"), 'ref', '', $_SESSION['Items']->reference, "class='tableheader2'");
329 } else {
330         label_cells(_("Reference"), $_SESSION['Items']->reference, "class='tableheader2'");
331 }
332
333 label_cells(_("For Sales Order"), get_customer_trans_view_str(systypes::sales_order(), $_SESSION['Items']->order_no), "class='tableheader2'");
334
335 label_cells(_("Sales Type"), $_SESSION['Items']->sales_type_name, "class='tableheader2'");
336 end_row();
337 start_row();
338
339 if (!isset($_POST['Location'])) {
340         $_POST['Location'] = $_SESSION['Items']->Location;
341 }
342 label_cell(_("Delivery From"), "class='tableheader2'");
343 locations_list_cells(null, 'Location', null, false, true);
344
345 if (!isset($_POST['ship_via'])) {
346         $_POST['ship_via'] = $_SESSION['Items']->ship_via;
347 }
348 label_cell(_("Shipping Company"), "class='tableheader2'");
349 shippers_list_cells(null, 'ship_via', $_POST['ship_via']);
350
351 // set this up here cuz it's used to calc qoh
352 if (!isset($_POST['DispatchDate']) || !is_date($_POST['DispatchDate'])) {
353         $_POST['DispatchDate'] = Today();
354         if (!is_date_in_fiscalyear($_POST['DispatchDate'])) {
355                 $_POST['DispatchDate'] = end_fiscalyear();
356         }
357 }
358 date_cells(_("Date"), 'DispatchDate', '', $_POST['DispatchDate'], 0, 0, 0, "class='tableheader2'");
359 end_row();
360
361 end_table();
362
363 echo "</td><td>";// outer table
364
365 start_table("$table_style width=90%");
366
367 if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) {
368         $_POST['due_date'] = get_invoice_duedate($_SESSION['Items']->customer_id, $_POST['DispatchDate']);
369 }
370 date_row(_("Invoice Dead-line"), 'due_date', '', $_POST['due_date'], 0, 0, 0, "class='tableheader2'");
371 end_table();
372
373 echo "</td></tr>";
374 end_table(1); // outer table
375
376 $row = get_customer_to_order($_SESSION['Items']->customer_id);
377 if ($row['dissallow_invoices'] == 1)
378 {
379         display_error(_("The selected customer account is currently on hold. Please contact the credit control personnel to discuss."));
380         end_form();
381         end_page();
382         exit();
383 }       
384 display_heading(_("Delivery Items"));
385 div_start('Items');
386 start_table("$table_style width=80%");
387 $th = array(_("Item Code"), _("Item Description"), _("Ordered"), _("Units"), _("Delivered"),
388         _("This Delivery"), _("Price"), _("Tax Type"), _("Discount"), _("Total"));
389 table_header($th);
390 $k = 0;
391 $has_marked = false;
392
393 foreach ($_SESSION['Items']->line_items as $line=>$ln_itm) {
394         if ($ln_itm->quantity==$ln_itm->qty_done) {
395                 continue; //this line is fully delivered
396         }
397         // if it's a non-stock item (eg. service) don't show qoh
398         $show_qoh = true;
399         if (sys_prefs::allow_negative_stock() || !has_stock_holding($ln_itm->mb_flag) ||
400                 $ln_itm->qty_dispatched == 0) {
401                 $show_qoh = false;
402         }
403
404         if ($show_qoh) {
405                 $qoh = get_qoh_on_date($ln_itm->stock_id, $_POST['Location'], $_POST['DispatchDate']);
406         }
407
408         if ($show_qoh && ($ln_itm->qty_dispatched > $qoh)) {
409                 // oops, we don't have enough of one of the component items
410                 start_row("class='stockmankobg'");
411                 $has_marked = true;
412         } else {
413                 alt_table_row_color($k);
414         }
415         view_stock_status_cell($ln_itm->stock_id);
416
417         text_cells(null, 'Line'.$line.'Desc', $ln_itm->item_description, 30, 50);
418         $dec = get_qty_dec($ln_itm->stock_id);
419         qty_cell($ln_itm->quantity, false, $dec);
420         label_cell($ln_itm->units);
421         qty_cell($ln_itm->qty_done, false, $dec);
422
423         small_qty_cells(null, 'Line'.$line, qty_format($ln_itm->qty_dispatched, $ln_itm->stock_id, $dec), null, null, $dec);
424
425         $display_discount_percent = percent_format($ln_itm->discount_percent*100) . "%";
426
427         $line_total = ($ln_itm->qty_dispatched * $ln_itm->price * (1 - $ln_itm->discount_percent));
428
429         amount_cell($ln_itm->price);
430         label_cell($ln_itm->tax_type_name);
431         label_cell($display_discount_percent, "nowrap align=right");
432         amount_cell($line_total);
433
434         end_row();
435 }
436
437 $_POST['ChargeFreightCost'] =  get_post('ChargeFreightCost', 
438         price_format($_SESSION['Items']->freight_cost));
439
440 start_row();
441
442 small_amount_cells(_("Shipping Cost"), 'ChargeFreightCost', $_SESSION['Items']->freight_cost, "colspan=9 align=right");
443
444 $inv_items_total = $_SESSION['Items']->get_items_total_dispatch();
445
446 $display_sub_total = price_format($inv_items_total + input_num('ChargeFreightCost'));
447
448 label_row(_("Sub-total"), $display_sub_total, "colspan=9 align=right","align=right");
449
450 $taxes = $_SESSION['Items']->get_taxes(input_num('ChargeFreightCost'));
451 $tax_total = display_edit_tax_items($taxes, 9, $_SESSION['Items']->tax_included);
452
453 $display_total = price_format(($inv_items_total + input_num('ChargeFreightCost') + $tax_total));
454
455 label_row(_("Amount Total"), $display_total, "colspan=9 align=right","align=right");
456
457 end_table(1);
458
459 if ($has_marked) {
460         display_note(_("Marked items have insufficient quantities in stock as on day of delivery."), 0, 1, "class='red'");
461 }
462 start_table($table_style2);
463
464 policy_list_row(_("Action For Balance"), "bo_policy", null);
465
466 textarea_row(_("Memo"), 'Comments', null, 50, 4);
467
468 end_table(1);
469 div_end();
470 submit_center_first('Update', _("Update"),
471   _('Refresh document page'), true);
472 submit_center_last('process_delivery', _("Process Dispatch"),
473   _('Check entered data and save document'), 'default');
474
475 end_form();
476
477
478 end_page();
479
480 ?>