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