date_diff function name changed to date_diff for php5.3 compatibility.
[fa-stable.git] / sales / sales_order_entry.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 Sales Quotations
15 //      Entry/Modify Sales Order
16 //      Entry Direct Delivery
17 //      Entry Direct Invoice
18 //
19
20 $page_security = 'SA_SALESORDER';
21 $path_to_root = "..";
22
23 include_once($path_to_root . "/sales/includes/cart_class.inc");
24 include_once($path_to_root . "/includes/session.inc");
25 include_once($path_to_root . "/sales/includes/sales_ui.inc");
26 include_once($path_to_root . "/sales/includes/ui/sales_order_ui.inc");
27 include_once($path_to_root . "/sales/includes/sales_db.inc");
28 include_once($path_to_root . "/sales/includes/db/sales_types_db.inc");
29 include_once($path_to_root . "/reporting/includes/reporting.inc");
30 $js = '';
31
32 if ($use_popup_windows) {
33         $js .= get_js_open_window(900, 500);
34 }
35
36 if ($use_date_picker) {
37         $js .= get_js_date_picker();
38 }
39
40 if (isset($_GET['NewDelivery']) && is_numeric($_GET['NewDelivery'])) {
41
42         $_SESSION['page_title'] = _("Direct Sales Delivery");
43         create_cart(13, $_GET['NewDelivery']);
44
45 } elseif (isset($_GET['NewInvoice']) && is_numeric($_GET['NewInvoice'])) {
46
47         $_SESSION['page_title'] = _("Direct Sales Invoice");
48         create_cart(10, $_GET['NewInvoice']);
49
50 } elseif (isset($_GET['ModifyOrderNumber']) && is_numeric($_GET['ModifyOrderNumber'])) {
51
52         $help_page_title = _('Modifying Sales Order');
53         $_SESSION['page_title'] = sprintf( _("Modifying Sales Order # %d"), $_GET['ModifyOrderNumber']);
54         create_cart(30, $_GET['ModifyOrderNumber']);
55
56 } elseif (isset($_GET['ModifyQuotationNumber']) && is_numeric($_GET['ModifyQuotationNumber'])) {
57
58         $help_page_title = _('Modifying Sales Quotation');
59         $_SESSION['page_title'] = sprintf( _("Modifying Sales Quotation # %d"), $_GET['ModifyQuotationNumber']);
60         create_cart(32, $_GET['ModifyQuotationNumber']);
61
62 } elseif (isset($_GET['NewOrder'])) {
63
64         $_SESSION['page_title'] = _("New Sales Order Entry");
65         create_cart(30, 0);
66 } elseif (isset($_GET['NewQuotation'])) {
67
68         $_SESSION['page_title'] = _("New Sales Quotation Entry");
69         create_cart(32, 0);
70 } elseif (isset($_GET['NewQuoteToSalesOrder'])) {
71         $_SESSION['page_title'] = _("Sales Order Entry");
72         create_cart(32, $_GET['NewQuoteToSalesOrder']);
73 }
74
75 page($_SESSION['page_title'], false, false, "", $js);
76 //-----------------------------------------------------------------------------
77
78 if (list_updated('branch_id')) {
79         // when branch is selected via external editor also customer can change
80         $br = get_branch(get_post('branch_id'));
81         $_POST['customer_id'] = $br['debtor_no'];
82         $Ajax->activate('customer_id');
83 }
84
85 if (isset($_GET['AddedID'])) {
86         $order_no = $_GET['AddedID'];
87         display_notification_centered(sprintf( _("Order # %d has been entered."),$order_no));
88
89         submenu_view(_("&View This Order"), 30, $order_no);
90
91         submenu_print(_("&Print This Order"), 30, $order_no, 'prtopt');
92         submenu_print(_("&Email This Order"), 30, $order_no, null, 1);
93         set_focus('prtopt');
94         
95         submenu_option(_("Make &Delivery Against This Order"),
96                 "/sales/customer_delivery.php?OrderNumber=$order_no");
97
98         submenu_option(_("Enter a &New Order"), "/sales/sales_order_entry.php?NewOrder=0");
99
100         display_footer_exit();
101
102 } elseif (isset($_GET['UpdatedID'])) {
103         $order_no = $_GET['UpdatedID'];
104
105         display_notification_centered(sprintf( _("Order # %d has been updated."),$order_no));
106
107         submenu_view(_("&View This Order"), 30, $order_no);
108
109         submenu_print(_("&Print This Order"), 30, $order_no, 'prtopt');
110         submenu_print(_("&Email This Order"), 30, $order_no, null, 1);
111         set_focus('prtopt');
112
113         submenu_option(_("Confirm Order Quantities and Make &Delivery"),
114                 "/sales/customer_delivery.php?OrderNumber=$order_no");
115
116         submenu_option(_("Select A Different &Order"),
117                 "/sales/inquiry/sales_orders_view.php?OutstandingOnly=1");
118
119         display_footer_exit();
120
121 } elseif (isset($_GET['AddedQU'])) {
122         $order_no = $_GET['AddedQU'];
123         display_notification_centered(sprintf( _("Quotation # %d has been entered."),$order_no));
124
125         submenu_view(_("&View This Quotation"), 32, $order_no);
126
127         submenu_print(_("&Print This Quotation"), 32, $order_no, 'prtopt');
128         submenu_print(_("&Email This Quotation"), 32, $order_no, null, 1);
129         set_focus('prtopt');
130         
131         submenu_option(_("Make &Sales Order Against This Quotation"),
132                 "/sales/sales_order_entry.php?NewQuoteToSalesOrder=$order_no");
133
134         submenu_option(_("Enter a New &Quotation"),     "/sales/sales_order_entry.php?NewQuotation=0");
135
136         display_footer_exit();
137
138 } elseif (isset($_GET['UpdatedQU'])) {
139         $order_no = $_GET['UpdatedQU'];
140
141         display_notification_centered(sprintf( _("Quotation # %d has been updated."),$order_no));
142
143         submenu_view(_("&View This Quotation"), 32, $order_no);
144
145         submenu_print(_("&Print This Quotation"), 32, $order_no, 'prtopt');
146         submenu_print(_("&Email This Quotation"), 32, $order_no, null, 1);
147         set_focus('prtopt');
148
149         submenu_option(_("Make &Sales Order Against This Quotation"),
150                 "/sales/sales_order_entry.php?NewQuoteToSalesOrder=$order_no");
151
152         submenu_option(_("Select A Different &Quotation"),
153                 "/sales/inquiry/sales_orders_view.php?type=32");
154
155         display_footer_exit();
156 } elseif (isset($_GET['AddedDN'])) {
157         $delivery = $_GET['AddedDN'];
158
159         display_notification_centered(sprintf(_("Delivery # %d has been entered."),$delivery));
160
161         submenu_view(_("&View This Delivery"), 13, $delivery);
162
163         submenu_print(_("&Print Delivery Note"), 13, $delivery, 'prtopt');
164         submenu_print(_("&Email Delivery Note"), 13, $delivery, null, 1);
165         set_focus('prtopt');
166
167         display_note(get_gl_view_str(13, $delivery, _("View the GL Journal Entries for this Dispatch")),0, 1);
168
169         submenu_option(_("Make &Invoice Against This Delivery"),
170                 "/sales/customer_invoice.php?DeliveryNumber=$delivery");
171
172         if ((isset($_GET['Type']) && $_GET['Type'] == 1))
173                 submenu_option(_("Enter a New Template &Delivery"),
174                         "/sales/inquiry/sales_orders_view.php?DeliveryTemplates=Yes");
175         else
176                 submenu_option(_("Enter a &New Delivery"), 
177                         "/sales/sales_order_entry.php?NewDelivery=0");
178
179         display_footer_exit();
180
181 } elseif (isset($_GET['AddedDI'])) {
182         $invoice = $_GET['AddedDI'];
183
184         display_notification_centered(sprintf(_("Invoice # %d has been entered."), $invoice));
185
186         submenu_view(_("&View This Invoice"), 10, $invoice);
187
188         submenu_print(_("&Print Sales Invoice"), 10, $invoice, 'prtopt');
189         submenu_print(_("&Email Sales Invoice"), 10, $invoice, null, 1);
190         set_focus('prtopt');
191
192         display_note(get_gl_view_str(10, $invoice, _("View the GL &Journal Entries for this Invoice")),0, 1);
193
194         if ((isset($_GET['Type']) && $_GET['Type'] == 1))
195                 submenu_option(_("Enter a &New Template Invoice"), 
196                         "/sales/inquiry/sales_orders_view.php?InvoiceTemplates=Yes");
197         else
198                 submenu_option(_("Enter a &New Direct Invoice"),
199                         "/sales/sales_order_entry.php?NewInvoice=0");
200
201         display_footer_exit();
202 } else
203         check_edit_conflicts();
204 //-----------------------------------------------------------------------------
205
206 function copy_to_cart()
207 {
208         $cart = &$_SESSION['Items'];
209
210         $cart->reference = $_POST['ref'];
211
212         $cart->Comments =  $_POST['Comments'];
213
214         $cart->document_date = $_POST['OrderDate'];
215         if ($cart->trans_type == 10)
216                 $cart->cash = $_POST['cash']; 
217         if ($cart->cash) {
218                 $cart->due_date = $cart->document_date;
219                 $cart->phone = $cart->cust_ref = $cart->delivery_address = '';
220                 $cart->freight_cost = 0;
221                 $cart->ship_via = 1;
222                 $cart->deliver_to = '';//$_POST['deliver_to'];
223         } else {
224                 $cart->due_date = $_POST['delivery_date'];
225                 $cart->cust_ref = $_POST['cust_ref'];
226                 $cart->freight_cost = input_num('freight_cost');
227                 $cart->deliver_to = $_POST['deliver_to'];
228                 $cart->delivery_address = $_POST['delivery_address'];
229                 $cart->phone = $_POST['phone'];
230                 $cart->Location = $_POST['Location'];
231                 $cart->ship_via = $_POST['ship_via'];
232         }
233         if (isset($_POST['email']))
234                 $cart->email =$_POST['email'];
235         else
236                 $cart->email = '';
237         $cart->customer_id      = $_POST['customer_id'];
238         $cart->Branch = $_POST['branch_id'];
239         $cart->sales_type = $_POST['sales_type'];
240         // POS
241         if ($cart->trans_type!=30 && $cart->trans_type!=32) { // 2008-11-12 Joe Hunt
242                 $cart->dimension_id = $_POST['dimension_id'];
243                 $cart->dimension2_id = $_POST['dimension2_id'];
244         }       
245 }
246
247 //-----------------------------------------------------------------------------
248
249 function copy_from_cart()
250 {
251         $cart = &$_SESSION['Items'];
252         $_POST['ref'] = $cart->reference;
253         $_POST['Comments'] = $cart->Comments;
254
255         $_POST['OrderDate'] = $cart->document_date;
256         $_POST['delivery_date'] = $cart->due_date;
257         $_POST['cust_ref'] = $cart->cust_ref;
258         $_POST['freight_cost'] = price_format($cart->freight_cost);
259
260         $_POST['deliver_to'] = $cart->deliver_to;
261         $_POST['delivery_address'] = $cart->delivery_address;
262         $_POST['phone'] = $cart->phone;
263         $_POST['Location'] = $cart->Location;
264         $_POST['ship_via'] = $cart->ship_via;
265
266         $_POST['customer_id'] = $cart->customer_id;
267
268         $_POST['branch_id'] = $cart->Branch;
269         $_POST['sales_type'] = $cart->sales_type;
270         // POS 
271         if ($cart->trans_type == 10)
272                 $_POST['cash'] = $cart->cash;
273         if ($cart->trans_type!=30 && $cart->trans_type!=32) { // 2008-11-12 Joe Hunt
274                 $_POST['dimension_id'] = $cart->dimension_id;
275                 $_POST['dimension2_id'] = $cart->dimension2_id;
276         }       
277         $_POST['cart_id'] = $cart->cart_id;
278                 
279 }
280 //--------------------------------------------------------------------------------
281
282 function line_start_focus() {
283   global        $Ajax;
284
285   $Ajax->activate('items_table');
286   set_focus('_stock_id_edit');
287 }
288
289 //--------------------------------------------------------------------------------
290 function can_process() {
291         if (!is_date($_POST['OrderDate'])) {
292                 display_error(_("The entered date is invalid."));
293                 set_focus('OrderDate');
294                 return false;
295         }
296         if ($_SESSION['Items']->trans_type!=30 && $_SESSION['Items']->trans_type!=32 && !is_date_in_fiscalyear($_POST['OrderDate'])) {
297                 display_error(_("The entered date is not in fiscal year"));
298                 set_focus('OrderDate');
299                 return false;
300         }
301         if (count($_SESSION['Items']->line_items) == 0) {
302                 display_error(_("You must enter at least one non empty item line."));
303                 set_focus('AddItem');
304                 return false;
305         }
306         if ($_SESSION['Items']->cash == 0) {
307         if (strlen($_POST['deliver_to']) <= 1) {
308                 display_error(_("You must enter the person or company to whom delivery should be made to."));
309                 set_focus('deliver_to');
310                 return false;
311         }
312
313                 if (strlen($_POST['delivery_address']) <= 1) {
314                         display_error( _("You should enter the street address in the box provided. Orders cannot be accepted without a valid street address."));
315                         set_focus('delivery_address');
316                         return false;
317                 }
318
319                 if ($_POST['freight_cost'] == "")
320                         $_POST['freight_cost'] = price_format(0);
321
322                 if (!check_num('freight_cost',0)) {
323                         display_error(_("The shipping cost entered is expected to be numeric."));
324                         set_focus('freight_cost');
325                         return false;
326                 }
327                 if (!is_date($_POST['delivery_date'])) {
328                         if ($_SESSION['Items']->trans_type==32)
329                                 display_error(_("The Valid date is invalid."));
330                         else    
331                                 display_error(_("The delivery date is invalid."));
332                         set_focus('delivery_date');
333                         return false;
334                 }
335                 //if (date1_greater_date2($_SESSION['Items']->document_date, $_POST['delivery_date'])) {
336                 if (date1_greater_date2($_POST['OrderDate'], $_POST['delivery_date'])) {
337                         if ($_SESSION['Items']->trans_type==32)
338                                 display_error(_("The requested valid date is before the date of the quotation."));
339                         else    
340                                 display_error(_("The requested delivery date is before the date of the order."));
341                         set_focus('delivery_date');
342                         return false;
343                 }
344         }
345         if (!references::is_valid($_POST['ref'])) {
346                 display_error(_("You must enter a reference."));
347                 set_focus('ref');
348                 return false;
349         }
350         return true;
351 }
352
353 //-----------------------------------------------------------------------------
354
355 if (isset($_POST['ProcessOrder']) && can_process()) {
356         copy_to_cart();
357
358         $modified = ($_SESSION['Items']->trans_no != 0);
359         $so_type = $_SESSION['Items']->so_type;
360         $_SESSION['Items']->write(1);
361         if (count($messages)) { // abort on failure or error messages are lost
362                 $Ajax->activate('_page_body');
363                 display_footer_exit();
364         }
365         $trans_no = key($_SESSION['Items']->trans_no);
366         $trans_type = $_SESSION['Items']->trans_type;
367         new_doc_date($_SESSION['Items']->document_date);
368         processing_end();
369         if ($modified) {
370                 if ($trans_type == 32)
371                         meta_forward($_SERVER['PHP_SELF'], "UpdatedQU=$trans_no");
372                 else    
373                         meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$trans_no");
374         } elseif ($trans_type == 30) {
375                 meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no");
376         } elseif ($trans_type == 32) {
377                 meta_forward($_SERVER['PHP_SELF'], "AddedQU=$trans_no");
378         } elseif ($trans_type == 10) {
379                 meta_forward($_SERVER['PHP_SELF'], "AddedDI=$trans_no&Type=$so_type");
380         } else {
381                 meta_forward($_SERVER['PHP_SELF'], "AddedDN=$trans_no&Type=$so_type");
382         }
383 }
384
385 //--------------------------------------------------------------------------------
386
387 function check_item_data()
388 {
389         if (!check_num('qty', 0) || !check_num('Disc', 0, 100)) {
390                 display_error( _("The item could not be updated because you are attempting to set the quantity ordered to less than 0, or the discount percent to more than 100."));
391                 set_focus('qty');
392                 return false;
393         } elseif (!check_num('price', 0)) {
394                 display_error( _("Price for item must be entered and can not be less than 0"));
395                 set_focus('price');
396                 return false;
397         } elseif (isset($_POST['LineNo']) && isset($_SESSION['Items']->line_items[$_POST['LineNo']])
398             && !check_num('qty', $_SESSION['Items']->line_items[$_POST['LineNo']]->qty_done)) {
399
400                 set_focus('qty');
401                 display_error(_("You attempting to make the quantity ordered a quantity less than has already been delivered. The quantity delivered cannot be modified retrospectively."));
402                 return false;
403         } // Joe Hunt added 2008-09-22 -------------------------
404         elseif ($_SESSION['Items']->trans_type!=30 && $_SESSION['Items']->trans_type!=32 && !sys_prefs::allow_negative_stock() &&
405                 is_inventory_item($_POST['stock_id']))
406         {
407                 $qoh = get_qoh_on_date($_POST['stock_id'], $_POST['Location'], $_POST['OrderDate']);
408                 if (input_num('qty') > $qoh)
409                 {
410                         $stock = get_item($_POST['stock_id']);
411                         display_error(_("The delivery cannot be processed because there is an insufficient quantity for item:") .
412                                 " " . $stock['stock_id'] . " - " . $stock['description'] . " - " .
413                                 _("Quantity On Hand") . " = " . number_format2($qoh, get_qty_dec($_POST['stock_id'])));
414                         return false;
415                 }
416                 return true;
417         }
418         return true;
419 }
420
421 //--------------------------------------------------------------------------------
422
423 function handle_update_item()
424 {
425         if ($_POST['UpdateItem'] != '' && check_item_data()) {
426                 $_SESSION['Items']->update_cart_item($_POST['LineNo'],
427                  input_num('qty'), input_num('price'),
428                  input_num('Disc') / 100, $_POST['item_description'] );
429         }
430   line_start_focus();
431 }
432
433 //--------------------------------------------------------------------------------
434
435 function handle_delete_item($line_no)
436 {
437     if ($_SESSION['Items']->some_already_delivered($line_no) == 0) {
438             $_SESSION['Items']->remove_from_cart($line_no);
439     } else {
440         display_error(_("This item cannot be deleted because some of it has already been delivered."));
441     }
442     line_start_focus();
443 }
444
445 //--------------------------------------------------------------------------------
446
447 function handle_new_item()
448 {
449
450         if (!check_item_data()) {
451                         return;
452         }
453         add_to_order($_SESSION['Items'], $_POST['stock_id'], input_num('qty'),
454                 input_num('price'), input_num('Disc') / 100);
455         $_POST['_stock_id_edit'] = $_POST['stock_id']   = "";
456         line_start_focus();
457 }
458
459 //--------------------------------------------------------------------------------
460
461 function  handle_cancel_order()
462 {
463         global $path_to_root, $Ajax;
464
465
466         if ($_SESSION['Items']->trans_type == 13) {
467                 display_note(_("Direct delivery entry has been cancelled as requested."), 1);
468                 submenu_option(_("Enter a New Sales Delivery"), $_SERVER['PHP_SELF']."?NewDelivery=0");
469
470         } elseif ($_SESSION['Items']->trans_type == 10) {
471                 display_note(_("Direct invoice entry has been cancelled as requested."), 1);
472                 submenu_option(_("Enter a New Sales Invoice"),  $_SERVER['PHP_SELF']."?NewInvoice=0");
473         } else {
474                 if ($_SESSION['Items']->trans_no != 0) {
475                         if (sales_order_has_deliveries(key($_SESSION['Items']->trans_no)))
476                                 display_error(_("This order cannot be cancelled because some of it has already been invoiced or dispatched. However, the line item quantities may be modified."));
477                         else {
478                                 delete_sales_order(key($_SESSION['Items']->trans_no), $_SESSION['Items']->trans_type);
479                                 if ($_SESSION['Items']->trans_type == 32)
480                                 {
481                                         display_note(_("This sales quotation has been cancelled as requested."), 1);
482                                         submenu_option(_("Enter a New Sales Quotation"), $_SERVER['PHP_SELF']."?NewQuotation=Yes");
483                                 }
484                                 else
485                                 {
486                                         display_note(_("This sales order has been cancelled as requested."), 1);
487                                         submenu_option(_("Enter a New Sales Order"), $_SERVER['PHP_SELF']."?NewOrder=Yes");
488                                 }
489                         }       
490                 } else {
491                         processing_end();
492                         meta_forward($path_to_root.'/index.php','application=orders');
493                 }
494         }
495         $Ajax->activate('_page_body');
496         processing_end();
497         br(1);
498         end_page();
499         exit;
500 }
501
502 //--------------------------------------------------------------------------------
503
504 function create_cart($type, $trans_no)
505
506         processing_start();
507         $doc_type = $type;
508
509         if (isset($_GET['NewQuoteToSalesOrder']))
510         {
511                 $trans_no = $_GET['NewQuoteToSalesOrder'];
512                 $doc = new Cart(32, $trans_no);
513                 $doc->trans_no = 0;
514                 $doc->trans_type = 30;
515                 $doc->reference = references::get_next($doc->trans_type);
516                 $doc->document_date = $doc->due_date = new_doc_date();
517                 $doc->Comments = _("Sales Quotation") . " # " . $trans_no;
518                 $_SESSION['Items'] = $doc;
519         }       
520         elseif($type != 30 && $type != 32 && $trans_no != 0) { // this is template
521                 $doc_type = 30;
522
523                 $doc = new Cart(30, array($trans_no));
524                 $doc->trans_type = $type;
525                 $doc->trans_no = 0;
526                 $doc->document_date = new_doc_date();
527                 if ($type == 10) {
528                         $doc->due_date = get_invoice_duedate($doc->customer_id, $doc->document_date);
529                         $doc->pos = user_pos();
530                         $pos = get_sales_point($doc->pos);
531                         $doc->cash = $pos['cash_sale'];
532                         if (!$pos['cash_sale'] || !$pos['credit_sale']) 
533                                 $doc->pos = -1; // mark not editable payment type
534                         else
535                                 $doc->cash = date_diff2($doc->due_date, Today(), 'd')<2;
536                 } else
537                         $doc->due_date = $doc->document_date;
538                 $doc->reference = references::get_next($doc->trans_type);
539                 //$doc->Comments='';
540                 foreach($doc->line_items as $line_no => $line) {
541                         $doc->line_items[$line_no]->qty_done = 0;
542                 }
543                 $_SESSION['Items'] = $doc;
544         } else
545                 $_SESSION['Items'] = new Cart($type,array($trans_no));
546         copy_from_cart();
547 }
548
549 //--------------------------------------------------------------------------------
550
551 if (isset($_POST['CancelOrder']))
552         handle_cancel_order();
553
554 $id = find_submit('Delete');
555 if ($id!=-1)
556         handle_delete_item($id);
557
558 if (isset($_POST['UpdateItem']))
559         handle_update_item();
560
561 if (isset($_POST['AddItem']))
562         handle_new_item();
563
564 if (isset($_POST['CancelItemChanges'])) {
565         line_start_focus();
566 }
567
568 //--------------------------------------------------------------------------------
569 check_db_has_stock_items(_("There are no inventory items defined in the system."));
570
571 check_db_has_customer_branches(_("There are no customers, or there are no customers with branches. Please define customers and customer branches."));
572
573 if ($_SESSION['Items']->trans_type == 10) {
574         $idate = _("Invoice Date:");
575         $orderitems = _("Sales Invoice Items");
576         $deliverydetails = _("Enter Delivery Details and Confirm Invoice");
577         $cancelorder = _("Cancel Invoice");
578         $porder = _("Place Invoice");
579 } elseif ($_SESSION['Items']->trans_type == 13) {
580         $idate = _("Delivery Date:");
581         $orderitems = _("Delivery Note Items");
582         $deliverydetails = _("Enter Delivery Details and Confirm Dispatch");
583         $cancelorder = _("Cancel Delivery");
584         $porder = _("Place Delivery");
585 } elseif ($_SESSION['Items']->trans_type == 32) {
586         $idate = _("Quotation Date:");
587         $orderitems = _("Sales Quotation Items");
588         $deliverydetails = _("Enter Delivery Details and Confirm Quotation");
589         $cancelorder = _("Cancel Quotation");
590         $porder = _("Place Quotation");
591         $corder = _("Commit Quotations Changes");
592 } else {
593         $idate = _("Order Date:");
594         $orderitems = _("Sales Order Items");
595         $deliverydetails = _("Enter Delivery Details and Confirm Order");
596         $cancelorder = _("Cancel Order");
597         $porder = _("Place Order");
598         $corder = _("Commit Order Changes");
599 }
600 start_form();
601
602 hidden('cart_id');
603
604 $customer_error = display_order_header($_SESSION['Items'],
605         ($_SESSION['Items']->any_already_delivered() == 0), $idate);
606
607 if ($customer_error == "") {
608         start_table("$table_style width=80%", 10);
609         echo "<tr><td>";
610         display_order_summary($orderitems, $_SESSION['Items'], true);
611         echo "</td></tr>";
612         echo "<tr><td>";
613         display_delivery_details($_SESSION['Items']);
614         echo "</td></tr>";
615         end_table(1);
616
617         if ($_SESSION['Items']->trans_no == 0) {
618
619                 submit_center_first('ProcessOrder', $porder,
620                     _('Check entered data and save document'), 'default');
621                 submit_js_confirm('CancelOrder', _('You are about to void this Document.\nDo you want to continue?'));
622         } else {
623                 submit_center_first('ProcessOrder', $corder,
624                     _('Validate changes and update document'), 'default');
625         }
626
627         submit_center_last('CancelOrder', $cancelorder,
628            _('Cancels document entry or removes sales order when editing an old document'));
629 } else {
630         display_error($customer_error);
631 }
632 end_form();
633 end_page();
634
635 ?>