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