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