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