Added dimension entries in delivery and invoice forms
[fa-stable.git] / sales / includes / ui / sales_order_ui.inc
1 <?php
2
3 include_once($path_to_root . "/sales/includes/cart_class.inc");
4 include_once($path_to_root . "/includes/manufacturing.inc");
5
6 //--------------------------------------------------------------------------------
7 function add_to_order(&$order, $new_item, $new_item_qty, $price, $discount)
8 {
9
10         foreach ($order->line_items AS $order_item)
11         {
12                 if (strcasecmp($order_item->stock_id, $new_item) == 0)
13                 {
14                         display_notification(_("For Part :") . $new_item . " " . _("This item is already on this order. You have been warned."));
15                         break;
16                 }
17         }
18
19         $order->add_to_cart (count($order->line_items),$new_item, $new_item_qty, $price, $discount);
20 }
21
22 //---------------------------------------------------------------------------------
23
24 function get_customer_details_to_order(&$order, $customer_id, $branch_id)
25 {
26         $ret_error = "";
27
28         $myrow = get_customer_to_order($customer_id);
29
30         $name = $myrow['name'];
31
32         if ($myrow['dissallow_invoices'] == 1)
33                 $ret_error = _("The selected customer account is currently on hold. Please contact the credit control personnel to discuss.");
34
35         $deliver = $myrow['address']; // in case no delivery address.
36
37         $order->set_customer($customer_id, $name, $myrow['curr_code'], 
38                 $myrow['discount'], $myrow['pymt_discount']);
39
40         // the sales type determines the price list to be used by default
41         $order->set_sales_type($myrow['salestype'], $myrow['sales_type'], $myrow['tax_included'],
42             $myrow['factor']);
43
44         if ($order->trans_type != 30)
45         {
46                 $order->dimension_id = $myrow['dimension_id'];
47                 $order->dimension2_id = $myrow['dimension2_id'];
48         }
49         $result = get_branch_to_order($customer_id, $branch_id);
50
51         if (db_num_rows($result) == 0)
52         {
53                 return _("The selected customer and branch are not valid, or the customer does not have any branches.");
54         }
55
56         $myrow = db_fetch($result);
57
58         $order->set_branch($branch_id, $myrow["tax_group_id"],
59         $myrow["tax_group_name"], $myrow["phone"], $myrow["email"]);
60
61         $address = $myrow["br_post_address"];
62
63         if (strlen($address) <= 1)      // if branch has no address
64                 $address = $deliver;    // set sales order address
65         $order->set_delivery($myrow["default_ship_via"], $myrow["br_name"],
66                 $address);
67         if ($order->trans_type == 10) {
68                 $order->due_date = get_invoice_duedate($customer_id, $order->document_date);
69                 if ($order->pos != -1)
70                         $order->cash = date_diff($order->due_date, Today(), 'd')<2;
71         }
72         if($order->cash ) {
73                 if($order->pos != -1) {
74                 $paym = get_sales_point($order->pos);
75                 $order->set_location($paym["pos_location"], $paym["location_name"]);
76                 }
77         } else
78                 $order->set_location($myrow["default_location"], $myrow["location_name"]);
79                 
80         return $ret_error;
81 }
82
83 //---------------------------------------------------------------------------------
84
85 function display_order_summary($title, &$order, $editable_items=false)
86 {
87         global $table_style, $path_to_root;
88
89         display_heading($title);
90
91     div_start('items_table');
92         start_table("$table_style colspan=7 width=90%");
93         $th = array(_("Item Code"), _("Item Description"), _("Quantity"),
94                 _("Delivered"),
95                 _("Unit"), _("Price"), _("Discount %"), _("Total"), "");
96
97         if ($order->trans_no == 0) {
98         unset( $th[3] );
99         }
100
101         if (count($order->line_items))
102              $th[]= '';
103
104         table_header($th);
105
106         $total = 0;
107         $k = 0;  //row colour counter
108
109         $id = find_submit('Edit');
110         foreach ($order->line_items as $line_no=>$stock_item)
111         {
112
113                 $line_total = round($stock_item->qty_dispatched * $stock_item->price * (1 - $stock_item->discount_percent),
114                    user_price_dec());
115
116
117                 if (!$editable_items || $id != $line_no)
118                 {
119                         alt_table_row_color($k);
120
121                         view_stock_status_cell($stock_item->stock_id);
122
123                         label_cell($stock_item->item_description, "nowrap" );
124                         qty_cell($stock_item->qty_dispatched, false, get_qty_dec($stock_item->stock_id));
125
126                         if ($order->trans_no!=0)
127                                 amount_cell($stock_item->qty_done);
128
129                         label_cell($stock_item->units);
130                         amount_cell($stock_item->price);
131
132                         percent_cell($stock_item->discount_percent * 100);
133                         amount_cell($line_total);
134
135                         if ($editable_items)
136                         {
137                                 edit_button_cell("Edit$line_no", _("Edit"),
138                                 _('Edit document line'));
139                                 edit_button_cell("Delete$line_no", _("Delete"),
140                                 _('Remove line from document'));
141                         }
142                         end_row();
143                 }
144                 else
145                 {
146                         sales_order_item_controls($order, $k,  $line_no);
147                 }
148
149                 $total += $line_total;
150         }
151
152         if ($id==-1 && $editable_items)
153                 sales_order_item_controls($order, $k);
154
155         $display_total = price_format($total);
156         label_row(_("Total Excluding Shipping"), $display_total, "colspan=6 align=right",
157                 "nowrap align=right", 2);
158
159         end_table();
160     div_end();
161 }
162
163 // ------------------------------------------------------------------------------
164
165 function display_order_header(&$order, $editable, $date_text, $display_tax_group=false)
166 {
167         global $table_style, $Ajax;
168
169         start_table("width=80% $table_style");
170         echo "<tr><td valign=top>"; // outer table
171         echo "<table>";
172
173         $customer_error = "";
174         $change_prices = 0;
175
176         if (isset($order) && !$editable)
177         {
178                 // can't change the customer/branch if items already received on this order
179                 echo $order->customer_name . " - " . $order->deliver_to;
180                 hidden('customer_id', $order->customer_id);
181                 hidden('branch_id', $order->Branch);
182                 hidden('sales_type', $order->sales_type);
183                 if ($order->trans_type != 30) {
184                         hidden('dimension_id', $order->dimension_id); // 2008-11-12 Joe Hunt
185                         hidden('dimension2_id', $order->dimension2_id);
186                 }       
187         }
188         else
189         {
190                 customer_list_row(_("Customer:"), 'customer_id', null, false, true);
191
192                 if ($order->customer_id != get_post('customer_id', -1))
193                 {
194                         // customer has changed
195                         $Ajax->activate('branch_id');
196                 }
197                 customer_branches_list_row(_("Branch:"),
198                   $_POST['customer_id'], 'branch_id', null, false, true, true);
199
200         if( ($order->customer_id != get_post('customer_id', -1)) ||
201                         ($order->Branch != get_post('branch_id', -1)) ||
202                         list_updated('customer_id')) {
203
204                 if (!isset($_POST['branch_id']) || $_POST['branch_id'] == "")
205                 {
206                         // ignore errors on customer search box call
207                         if ($_POST['customer_id'] == '')
208                             $customer_error = _("No customer found for entered text.");
209                         else
210                             $customer_error = _("The selected customer does not have any branches. Please create at least one branch.");
211                     unset($_POST['branch_id']);
212                     $order->Branch = 0;
213                 } else
214                 {
215
216                                 $old_order = (PHP_VERSION<5) ? $order : clone( $order );
217                                 $customer_error = get_customer_details_to_order($order, $_POST['customer_id'], $_POST['branch_id']);
218
219                                 $_POST['Location'] = $order->Location;
220                                 $_POST['deliver_to'] = $order->deliver_to;
221                                 $_POST['delivery_address'] = $order->delivery_address;
222                                 $_POST['phone'] = $order->phone;
223                                 if (get_post('cash') !== $order->cash) {
224                                         $_POST['cash'] = $order->cash;
225                                         $Ajax->activate('delivery');
226                                         $Ajax->activate('cash');
227                                 } else {
228                                         if ($order->trans_type == 10)
229                                         {
230                                                 $_POST['delivery_date'] = $order->due_date;
231                                                 $Ajax->activate('delivery_date');
232                                         }
233                                         $Ajax->activate('Location');
234                                         $Ajax->activate('deliver_to');
235                                         $Ajax->activate('phone');
236                                         $Ajax->activate('delivery_address');
237                                 }
238                                 // change prices if necessary
239                                 // what about discount in template case?
240                                 if ($old_order->customer_currency != $order->customer_currency) {
241                                     $change_prices = 1;
242                                 }
243                                 if ($old_order->sales_type != $order->sales_type) {
244                                 //  || $old_order->default_discount!=$order->default_discount
245                                         $_POST['sales_type'] = $order->sales_type;
246                                     $Ajax->activate('sales_type');
247                                     $change_prices = 1;
248                                 }
249                                 if ($old_order->dimension_id != $order->dimension_id) {
250                                         $_POST['dimension_id'] = $order->dimension_id;
251                                     $Ajax->activate('dimension_id');
252                                 }
253                                 if ($old_order->dimension2_id != $order->dimension2_id) {
254                                         $_POST['dimension2_id'] = $order->dimension2_id;
255                                     $Ajax->activate('dimension2_id');
256                                 }
257                                 unset($old_order);
258                         }
259                 set_global_customer($_POST['customer_id']);
260                 } // changed branch
261         }
262
263         if ($_SESSION['Items']->trans_type!=30) {
264                 ref_cells(_("Reference").':', 'ref', _('Reference number unique for this document type'), null, '');
265         }
266
267         echo "</table>";
268
269         echo "</td><td>"; // outer table
270
271         if (!is_company_currency($order->customer_currency))
272         {
273             div_start('currency');
274                 echo "<table height='5'>";
275                 label_row(_("Customer Currency:"), $order->customer_currency);
276                 exchange_rate_display($order->customer_currency, get_company_currency(),
277                         ($editable ? $_POST['OrderDate'] : $order->document_date));
278                 echo "</table>";
279             div_end();
280                 echo "</td><td>"; // outer table
281         }
282
283
284         echo "<table height='5'>";
285         if ($order->trans_type == 10 && $order->pos != -1) {
286                 sale_payment_list_cells(_('Payment:'), 'cash', null, true);
287                 $cash_payment = get_post('cash', 0);
288                 // current user can issue both credit and cash invoices
289                 if ($order->cash != $cash_payment) {
290                         $order->cash = $cash_payment;
291                         if ($cash_payment) {
292                                 $paym = get_sales_point(user_pos());
293                                 $order->cash_account = $paym['pos_account'];
294                                 $order->account_name = $paym['bank_account_name'];
295                                 $_POST['Location'] = $order->Location = $paym['pos_location'];
296                                 $order->location_name = $paym['location_name'];
297                         }
298                         check_qoh($order);
299                         $Ajax->activate('delivery');
300                         set_focus($order->pos == -1 ? 'delivery_date' : 'account');
301                 }
302         } else
303                 hidden('cash', $order->cash);
304
305         if($editable) {
306                 $str = sales_types_list_row(_("Price List"), 'sales_type', null, true);
307         } else {
308                 label_row(_("Price List:"), $order->sales_type_name);
309         }
310         if ($order->sales_type != $_POST['sales_type']) {
311                 $myrow = get_sales_type($_POST['sales_type']);
312                 $order->set_sales_type($myrow['id'], $myrow['sales_type'],
313                         $myrow['tax_included'], $myrow['factor']);
314                 $Ajax->activate('sales_type');
315                 $change_prices = 1;
316         }
317
318         label_row(_("Customer Discount:"), ($order->default_discount * 100) . "%");
319         echo "</table>";
320
321         echo "</td><td>"; // outer table
322
323         echo "<table height='5'>";
324
325         if ($editable)
326         {
327                 if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
328                         $_POST['OrderDate'] = $order->document_date;
329
330                 date_row($date_text, 'OrderDate',
331                   _('Date of order receive'), null, 0, 0, 0, null, true);
332                 if (isset($_POST['_OrderDate_changed'])) {
333                         $change_prices = 1;
334                         $Ajax->activate('currency');
335                         if ($order->trans_type == 10) {
336                                 $_POST['delivery_date'] = get_invoice_duedate(get_post('customer_id'), get_post('OrderDate'));
337                         } else 
338                                 $_POST['delivery_date'] = add_days(get_post('OrderDate'), sys_prefs::default_delivery_required_by());
339                         $Ajax->activate('delivery_date');
340                 }
341                 if ($order->trans_type != 30)
342                 {       // 2008-11-12 Joe Hunt added dimensions
343                         $dim = get_company_pref('use_dimension');
344                         if ($dim > 0)
345                         {
346                                 if ($order->dimension_id != $_POST['dimension_id']) {
347                                         $order->dimension_id = $_POST['dimension_id'];
348                                         $Ajax->activate('dimension_id');
349                                 }       
350                                 dimensions_list_row(_("Dimension:"), 'dimension_id', null, true, ' ', false, 1, true);
351                                 if ($dim > 1)
352                                 {
353                                         if ($order->dimension2_id != $_POST['dimension2_id']) {
354                                                 $order->dimension2_id = $_POST['dimension2_id'];
355                                                 $Ajax->activate('dimension2_id');
356                                         }       
357                                         dimensions_list_row(_("Dimension")." 2:", 'dimension2_id', null, true, ' ', false, 2, true);
358                                 }       
359                         }               
360                         if ($dim < 2)
361                                 hidden('dimension2_id', 0);
362                         if ($dim < 1)
363                                 hidden('dimension_id', 0);
364                 }       
365         }
366         else
367         {
368                 label_row($date_text, $order->document_date);
369                 hidden('OrderDate', $order->document_date);
370         }
371
372         if ($display_tax_group)
373         {
374             label_row(_("Tax Group:"), $order->tax_group_name);
375             hidden('tax_group_id', $_SESSION['Items']->tax_group_id);
376         }
377         echo "</table>";
378
379         echo "</td></tr>";
380
381         end_table(1); // outer table
382
383         if ($change_prices != 0) {
384                 foreach ($order->line_items as $line_no=>$item) {
385                         $line = &$order->line_items[$line_no];
386                         $line->price = get_price($line->stock_id, $order->customer_currency,
387                                 $order->sales_type, $order->price_factor, get_post('OrderDate'));
388                 //              $line->discount_percent = $order->default_discount;
389                 }
390             $Ajax->activate('items_table');
391         }
392         $f = fopen(dirname(__FILE__)."/debug.txt", "w");
393         fwrite($f, "dimension=".$order->dimension_id.",dimension 2=".$order->dimension2_id."\n");
394         fclose($f);
395
396         return $customer_error;
397 }
398
399 //--------------------------------------------------------------------------------
400
401 function sales_order_item_controls(&$order, &$rowcounter, $line_no=-1)
402 {
403     global $Ajax;
404
405         alt_table_row_color($rowcounter);
406
407         $id = find_submit('Edit');
408         if ($line_no!=-1 && $line_no == $id)
409         {
410                 $_POST['stock_id'] = $order->line_items[$id]->stock_id;
411                 $dec = get_qty_dec($_POST['stock_id']);
412                 $_POST['qty'] = number_format2($order->line_items[$id]->qty_dispatched, $dec);
413                 $_POST['price'] = price_format($order->line_items[$id]->price);
414                 $_POST['Disc'] = percent_format($order->line_items[$id]->discount_percent*100);
415                 $units = $order->line_items[$id]->units;
416                 hidden('stock_id', $_POST['stock_id']);
417                 label_cell($_POST['stock_id']);
418                 label_cell($order->line_items[$line_no]->item_description, "nowrap");
419             $Ajax->activate('items_table');
420         }
421         else
422         {
423                 stock_items_list_cells(null,'stock_id', null, false, true);
424                 if (list_updated('stock_id')) {
425                             $Ajax->activate('price');
426                             $Ajax->activate('units');
427                             $Ajax->activate('qty');
428                             $Ajax->activate('line_total');
429                 }
430
431                 $item_info = get_item_edit_info($_POST['stock_id']);
432                 $units = $item_info["units"];
433                 $dec = get_qty_dec($_POST['stock_id']);
434                 $_POST['qty'] = number_format2(1, $dec);
435
436                 $_POST['price'] = price_format(get_price ($_POST['stock_id'],
437                         $order->customer_currency, $order->sales_type,
438                         $order->price_factor, get_post('OrderDate')));
439                 // default to the customer's discount %
440                 $_POST['Disc'] = percent_format($order->default_discount * 100);
441
442         }
443
444         qty_cells(null, 'qty', $_POST['qty'], null, null, $dec);
445
446         if ($order->trans_no!=0) {
447                 qty_cell($line_no==-1 ? 0 :$order->line_items[$line_no]->qty_done, false, $dec);
448         }
449
450         label_cell($units, '', 'units');
451
452         $str = amount_cells(null, 'price');
453
454         small_amount_cells(null, 'Disc', percent_format($_POST['Disc']), null, null, user_percent_dec());
455
456         $line_total = input_num('qty') * input_num('price') * (1 - input_num('Disc') / 100);
457
458         amount_cell($line_total, false, '','line_total');
459
460         if ($id!=-1)
461         {
462                 edit_button_cell('UpdateItem', _("Update"),
463                                 _('Confirm changes'));
464                 edit_button_cell('CancelItemChanges', _("Cancel"),
465                                 _('Cancel changes'));
466                 hidden('LineNo', $line_no);
467                 set_focus('qty');
468         }
469         else
470         {
471                 submit_cells('AddItem', _("Add Item"), "colspan=2",
472                     _('Add new item to document'), true);
473         }
474
475         end_row();
476 }
477
478 //--------------------------------------------------------------------------------
479
480 function display_delivery_details(&$order)
481 {
482         global $table_style2, $Ajax;
483
484 div_start('delivery');  
485
486         if (get_post('cash', 0)) {      // Direct payment sale
487                 display_heading(_('Cash payment'));
488                 echo "<table $table_style2 width=60% align=center>";
489                 label_row(_("Deliver from Location:"), $order->location_name);
490
491                 hidden('Location', $order->Location);
492                 label_row(_("Cash account:"), $order->account_name);
493                 textarea_row(_("Comments:"), "Comments", $order->Comments, 31, 5);
494                 echo "</table>";
495         } else {
496
497                 if ($order->trans_type==10)
498                 {
499                         $title = _("Delivery Details");
500                         $delname = _("Due Date").':';
501                 }
502                 elseif ($order->trans_type==13)
503                 {
504                         $title = _("Invoice Delivery Details");
505                         $delname = _("Invoice before").':';
506                 }
507                 else
508                 {
509                         $title = _("Order Delivery Details");
510                         $delname = _("Required Delivery Date").':';
511                 }
512                 display_heading($title);
513                 echo "<br>";
514                 start_table("$table_style2 width=90%");
515                 echo "<tr valign=top><td>"; // outer table
516                 echo "<table>";
517
518                 locations_list_row(_("Deliver from Location:"), 'Location', null, 
519                         false, true);
520                 if (list_updated('Location'))
521                         check_qoh($order);
522
523                 date_row($delname, 'delivery_date',
524                         $order->trans_type==30 ?  _('Enter requested day of delivery') : '', 
525                         $order->due_date, 0, 0, 0);
526                 text_row(_("Deliver To:"), 'deliver_to', $order->deliver_to, 40, 40,
527                         _('Additional identifier for delivery e.g. name of receiving person'));
528
529                 textarea_row(_("Address:"), 'delivery_address', $order->delivery_address, 35, 5,
530                         _('Delivery address. Default is address of customer branch'));
531                 text_row(_("Contact Phone Number:"), 'phone', $order->phone, 25, 25,
532                     _('Phone number of ordering person. Defaults to branch phone number'));
533
534                 echo "</table>";
535
536                 echo "</td><td>"; // outer table
537
538                 echo "<table>";
539
540                 text_row(_("Customer Reference:"), 'cust_ref', $order->cust_ref, 25, 25,
541                   _('Customer reference number for this order (if any)'));
542                 textarea_row(_("Comments:"), "Comments", $order->Comments, 31, 5);
543
544                 small_amount_row(_("Shipping Charge:"), 'freight_cost',
545                 price_format(get_post('freight_cost',0)));
546
547                 shippers_list_row(_("Shipping Company:"), 'ship_via', $order->ship_via);
548                 echo "</table>";
549                 echo "</td></tr>";
550                 end_table(1); // outer table
551         }
552         div_end();
553 }
554
555 function check_qoh($order) 
556 {
557         $msg = '';
558         foreach($order->line_items as $line_no => $line) {
559                 $qoh = get_qoh_on_date($line->stock_id, $_POST['Location'], $_POST['OrderDate']);
560                 if ($line->qty_dispatched > $qoh)       {
561                         $msg .= $line->stock_id . " - " . $line->item_description . ": " .
562                                 _("Quantity On Hand") . " = " 
563                                 . number_format2($qoh, get_qty_dec($line->stock_id)) . '<br>';
564                 }
565         }
566         if (strlen($msg)) {
567                 display_error(_("The delivery cannot be processed because there is an insufficient quantity for item:")
568                         . '<br>'. $msg);
569                 return false;
570         }
571         return true;
572 }
573 ?>