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