Fixed numeric fields to accept user native number format.
[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
8 function add_to_order(&$order, $new_item, $new_item_qty, $price, $discount)
9 {
10
11         foreach ($order->line_items AS $order_item)
12         {
13                 if (strcasecmp($order_item->stock_id, $new_item) == 0)
14                 {
15                         display_notification(_("For Part :") . $new_item . " " . _("This item is already on this order. You have been warned."));
16                         break;
17                 }
18         }
19
20         $order->add_to_cart (count($order->line_items),$new_item, $new_item_qty, $price, $discount);
21 }
22
23 //---------------------------------------------------------------------------------
24
25 function get_customer_details_to_order(&$order, $customer_id, $branch_id)
26 {
27         $ret_error = "";
28
29         $myrow = get_customer_to_order($customer_id);
30
31         $name = $myrow['name'];
32
33         if ($myrow['dissallow_invoices'] == 1)
34                 $ret_error = _("The selected customer account is currently on hold. Please contact the credit control personnel to discuss.");
35
36 /*      if (!isset($_POST['branch_id']) || $_POST['branch_id'] == "")
37         {
38                 $ret_error = _("The selected customer does not have any branches. Please create at least one branch.");
39                 unset($_POST['branch_id']);
40                 $order->Branch = 0;
41         }
42 */
43         $deliver = $myrow['address']; // in case no delivery address.
44
45         $order->set_customer($customer_id, $name, $myrow['curr_code'], $myrow['discount']);
46
47         // the sales type determines the price list to be used by default
48         $order->set_sales_type($myrow['salestype'], $myrow['sales_type'], $myrow['tax_included']);
49
50 //      if ($order->Branch != 0)
51         {
52                 $result = get_branch_to_order($customer_id, $branch_id);
53
54                 if (db_num_rows($result) == 0)
55                 {
56                 return _("The selected customer and branch are not valid, or the customer does not have any branches.");
57                 }
58
59                 $myrow = db_fetch($result);
60
61                 $order->set_branch($branch_id, $myrow["tax_group_id"],
62                 $myrow["tax_group_name"], $myrow["phone"], $myrow["email"]);
63
64                 $address = $myrow["br_post_address"];
65
66                 if (strlen($address) <= 1)      // if branch has no address
67                         $address = $deliver;    // set sales order address
68
69                 $order->set_location($myrow["default_location"], $myrow["location_name"]);
70                 $order->set_delivery($myrow["default_ship_via"], $myrow["br_name"],
71                 $address);
72         }
73
74         return $ret_error;
75 }
76
77 //---------------------------------------------------------------------------------
78
79 function display_order_summary($title, &$order, $editable_items=false)
80 {
81         global $table_style, $path_to_root;
82
83         display_heading($title);
84         start_table("$table_style colspan=7 width=90%");
85         $th = array(_("Item Code"), _("Item Description"), _("Quantity"),
86                 _("Delivered"),
87                 _("Unit"), _("Price"), _("Discount %"), _("Total"), "");
88
89         if ($order->trans_no==0) {
90         unset( $th[3] );
91         }
92
93         if (count($order->line_items)) $th[]= '';
94
95         table_header($th);
96
97         $total = 0;
98         $k = 0;  //row colour counter
99
100         foreach ($order->line_items as $line_no=>$stock_item)
101         {
102
103                 $line_total = $stock_item->qty_dispatched * $stock_item->price * (1 - $stock_item->discount_percent);
104
105                 if (!isset($_GET['Edit']))
106                         $id = -1;
107                 else
108                         $id = $_GET['Edit'];
109
110                 if (!$editable_items || $id != $line_no)
111                 {
112                         alt_table_row_color($k);
113
114                         view_stock_status_cell($stock_item->stock_id);
115
116                         label_cell($stock_item->item_description);
117                         qty_cell($stock_item->qty_dispatched);
118
119                         if ($order->trans_no!=0)
120                         amount_cell($stock_item->qty_done);
121
122                         label_cell($stock_item->units);
123                         amount_cell($stock_item->price);
124
125                         percent_cell($stock_item->discount_percent * 100);
126                         amount_cell($line_total);
127
128                         if ($editable_items)
129                         {
130                                 edit_link_cell(SID . "Edit=$line_no");
131                                 delete_link_cell(SID . "Delete=$line_no");
132                         }
133                         end_row();
134                 }
135                 else
136                 {
137                         sales_order_item_controls($order, $line_no);
138                 }
139
140                 $total += $line_total;
141         }
142
143         if (!isset($_GET['Edit']) && $editable_items)
144                 sales_order_item_controls($order);
145
146         $display_total = price_format($total);
147         label_row(_("Total Excluding Shipping"), $display_total, "colspan=6 align=right",
148                 "nowrap align=right");
149
150         end_table();
151 }
152
153 // ------------------------------------------------------------------------------
154
155 function display_order_header(&$order, $editable, $date_text, $display_tax_group=false)
156 {
157         global $table_style;
158         start_table("width=80% $table_style");
159         echo "<tr><td valign=top>"; // outer table
160         echo "<table>";
161
162         $customer_error = "";
163                 $change_prices = 0;
164
165         if (isset($order) && !$editable)
166         {
167                 // can't change the customer/branch if items already received on this order
168                 echo $order->customer_name . " - " . $order->deliver_to;
169                 hidden('customer_id', $order->customer_id);
170                 hidden('branch_id', $order->Branch);
171                 hidden('sales_type', $order->sales_type);
172         }
173         else
174         {
175
176                 if (!isset($_POST['customer_id']) && (get_global_customer() != reserved_words::get_all()))
177                                 $_POST['customer_id'] = get_global_customer();
178
179                 customer_list_row(_("Customer:"), 'customer_id', null, false, true);
180
181                 if (!isset($_POST['delivery_date']))
182                 {
183                         if ($order->trans_type==10)
184                                 $_POST['delivery_date'] = $_SESSION['Items']->due_date =
185                                         get_invoice_duedate($_POST['customer_id'], $_POST['OrderDate']);
186                         else
187                                 $_POST['delivery_date'] = $_SESSION['Items']->due_date =
188                                         add_days($_POST['OrderDate'], 10); // FIX this should be in company prefs
189                 }
190                 if ($order->customer_id != $_POST['customer_id'])
191                 {
192                         // customer has changed
193
194                         // delete all the order items - drastic but necessary because of
195                         // change of currency, sales type, etc
196                 //      $order->clear_items();
197                         // clear the branch selection
198                         unset($_POST['branch_id']);
199                 }
200                 if (!isset($_POST['branch_id']))
201                         $_POST['branch_id'] = "";
202
203                 customer_branches_list_row(_("Branch:"), $_POST['customer_id'], 'branch_id', null, false, true, true);
204
205                 if (!isset($_POST['branch_id']) || $_POST['branch_id'] == "")
206                 {
207                         $customer_error = _("The selected customer does not have any branches. Please create at least one branch.");
208                         unset($_POST['branch_id']);
209                         $order->Branch = 0;
210                 } else
211                 {
212                         //set_global_customer($_POST['customer_id']);
213                         if (($order->customer_id != $_POST['customer_id']) ||
214                                 ($order->Branch != $_POST['branch_id'])) {
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                                 $_POST['Location'] = $order->Location;
219                                 $_POST['deliver_to'] = $order->deliver_to;
220                                 $_POST['delivery_address'] = $order->delivery_address;
221                                 $_POST['phone'] = $order->phone;
222                                 $_POST['sales_type'] = $order->sales_type;
223
224                                 // change prices if necessary
225                                 // what about discount in template case?
226                                 if ( $old_order->customer_currency!=$order->customer_currency
227                                         || $old_order->sales_type!=$order->sales_type
228                                 //  || $old_order->default_discount!=$order->default_discount
229                                         ) {
230                                         $change_prices = 1;
231                                 }
232
233                         }
234                 } // changed branch
235                 set_global_customer($_POST['customer_id']);
236         }
237
238         if ($_SESSION['Items']->trans_type!=30) {
239                 ref_cells(_("Reference").':', 'ref', null, '');
240         }
241
242         echo "</table>";
243
244         echo "</td><td>"; // outer table
245
246         if (!is_company_currency($order->customer_currency))
247         {
248                 echo "<table height='5'>";
249                 label_row(_("Customer Currency:"), $order->customer_currency);
250                 exchange_rate_display($order->customer_currency, get_company_currency(),
251                         ($editable ? $_POST['OrderDate'] : $order->document_date), $editable);
252                 echo "</table>";
253                 echo "</td><td>"; // outer table
254         }
255
256         if( $order->sales_type != $_POST['sales_type']) {
257                 $myrow = get_sales_type($_POST['sales_type']);
258                 $order->set_sales_type($myrow['id'], $myrow['sales_type'],
259                 $myrow['tax_included']);
260                 $change_prices = 1;
261         }
262
263                 if($change_prices!=0)
264                 {
265                 foreach ($order->line_items as $line_no=>$item) {
266                         $line = &$order->line_items[$line_no];
267                         $line->price = get_price($line->stock_id, $order->customer_currency,
268                                 $order->sales_type);
269                 //              $line->discount_percent = $order->default_discount;
270                 }
271         }
272
273         echo "<table height='5'>";
274         if($editable)
275                 sales_types_list_row(_("Price List"), 'sales_type', $_POST['sales_type'], true);
276         else {
277                 label_row(_("Price List:"), $order->sales_type_name);
278         }
279         label_row(_("Customer Discount:"), ($order->default_discount * 100) . "%");
280         echo "</table>";
281
282         echo "</td><td>"; // outer table
283
284         echo "<table height='5'>";
285
286         if ($editable)
287         {
288                 if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
289                         $_POST['OrderDate'] = $order->document_date;
290
291                 date_row($date_text, 'OrderDate');
292         }
293         else
294         {
295                 label_row($date_text, $order->document_date);
296                 hidden('OrderDate', $order->document_date);
297         }
298
299         if ($display_tax_group)
300         {
301 /*              if ($editable)
302                 {
303                         if (!isset($_POST['tax_group_id']))
304                                 $_POST['tax_group_id'] = $_SESSION['Items']->tax_group_id;
305                         tax_groups_list_row(_("Tax Group:"), 'tax_group_id', $_POST['tax_group_id'], true);
306                 }
307                 else
308 */              {
309                         label_row(_("Tax Group:"), $order->tax_group_name);
310                         hidden('tax_group_id', $_SESSION['Items']->tax_group_id);
311                 }
312         }
313         echo "</table>";
314
315         echo "</td></tr>";
316
317         end_table(1); // outer table
318
319         return $customer_error;
320 }
321
322 //--------------------------------------------------------------------------------
323
324 function sales_order_item_controls(&$order, $line_no=-1)
325 {
326         start_row();
327         if (isset($_GET['Edit']) && $line_no != -1)
328         {
329                 if (!isset($_POST['stock_id']))
330                         $_POST['stock_id'] = $order->line_items[$_GET['Edit']]->stock_id;
331                 if (!isset($_POST['qty']) || ($_POST['qty'] == ""))
332                         $_POST['qty'] = qty_format($order->line_items[$_GET['Edit']]->qty_dispatched);
333                 if (!isset($_POST['price']) || ($_POST['price'] == ""))
334                         $_POST['price'] = price_format($order->line_items[$_GET['Edit']]->price);
335                 if (!isset($_POST['Disc']) || ($_POST['Disc'] == ""))
336                         $_POST['Disc'] = percent_format($order->line_items[$_GET['Edit']]->discount_percent*100);
337
338                 $_POST['units'] = $order->line_items[$_GET['Edit']]->units;
339                 hidden('stock_id', $_POST['stock_id']);
340                 label_cell($_POST['stock_id']);
341                 label_cell($order->line_items[$line_no]->item_description);
342         }
343         else
344         {
345                 global $no_item_list;
346                 if ($no_item_list)
347                 {
348                         echo "<td colspan=2>\n";
349                         stock_items_list('stock_id', null, false, true);
350                         echo "</td>\n";
351                 }
352                 else
353                 {
354                 text_cells(null, "StockID2", "", 12, 10, "", "", "onkeyup='recalcAccounts();' onKeyDown='if (event.keyCode==13) event.keyCode=9;' onblur='return setAccount(0, true);'");
355                         stock_items_list_cells(null, 'stock_id', null, false, false, "onchange='return setAccount(1, true)'");
356                 }
357                 $item_info = get_item_edit_info($_POST['stock_id']);
358                 $_POST['units'] = $item_info["units"];
359
360                 $_POST['qty'] = qty_format(1);
361                 $_POST['price'] = price_format(get_price ($_POST['stock_id'],
362                         $order->customer_currency, $order->sales_type));
363                 // default to the customer's discount %
364                 $_POST['Disc'] = percent_format($order->default_discount * 100);
365         }
366
367         amount_cells(null, 'qty', qty_format($_POST['qty']));
368
369         if ($order->trans_no!=0) {
370                 amount_cell($line_no==-1 ? 0 :$order->line_items[$line_no]->qty_done);
371         }
372
373         label_cell($_POST['units']);
374         amount_cells(null, 'price');
375         small_amount_cells(null, 'Disc', percent_format($_POST['Disc']));
376
377         $line_total = $_POST['qty'] * $_POST['price'] * (1 - $_POST['Disc'] / 100);
378         amount_cell($line_total);
379
380         if (isset($_GET['Edit']))
381         {
382                 submit_cells('UpdateItem', _("Update"));
383                 submit_cells('CancelItemChanges', _("Cancel"));
384                 hidden('LineNo', $line_no);
385         }
386         else
387         {
388                 submit_cells('AddItem', _("Add Item"), "colspan=2");
389         }
390
391         end_row();
392 }
393
394 //--------------------------------------------------------------------------------
395
396 function display_delivery_details(&$order)
397 {
398         global $table_style2;
399         if ($order->trans_type==10)
400         {
401                 $title = _("Delivery Details");
402                 $delname = _("Due Date").':';
403         }
404         elseif ($order->trans_type==13)
405         {
406                 $title = _("Invoice Delivery Details");
407                 $delname = _("Invoice before").':';
408         }
409         else
410         {
411                 $title = _("Order Delivery Details");
412                 $delname = _("Required Delivery Date").':';
413         }
414         display_heading($title);
415         echo "<br>";
416         start_table("$table_style2 width=90%");
417         echo "<tr valign=top><td>"; // outer table
418
419         echo "<table>";
420
421 //      echo $order->Location, $_POST['Location'];
422
423         locations_list_row(_("Deliver from Location:"), 'Location', $_POST['Location']);
424
425         date_row($delname, 'delivery_date', $order->due_date, 0, 0, 0);
426
427         text_row(_("Deliver To:"), 'deliver_to', $order->deliver_to, 40, 40);
428
429         textarea_row(_("Address:"), 'delivery_address', $order->delivery_address, 35, 5);
430         text_row(_("Contact Phone Number:"), 'phone', $order->phone, 25, 25);
431
432         echo "</table>";
433
434         echo "</td><td>"; // outer table
435
436         echo "<table>";
437
438         text_row(_("Customer Reference:"), 'cust_ref', $order->cust_ref, 25, 25);
439         textarea_row(_("Comments:"), "Comments", $order->Comments, 31, 5);
440
441         small_amount_row(_("Shipping Charge:"), 'freight_cost', 
442             price_format($_POST['freight_cost']));
443
444         shippers_list_row(_("Shipping Company:"), 'ship_via', $order->ship_via);
445
446         echo "</table>";
447
448         echo "</td></tr>";
449         end_table(1); // outer table
450 }
451
452 ?>