617e78e48eabf38fe27cada73ed04d256f33d7a7
[fa-stable.git] / purchasing / includes / ui / po_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 . "/purchasing/includes/purchasing_db.inc");
13
14 //--------------------------------------------------------------------------------------------------
15
16 function copy_from_cart()
17 {
18         $cart = &$_SESSION['PO'];
19
20         $_POST['supplier_id'] = $cart->supplier_id;
21         $_POST['OrderDate'] = $cart->orig_order_date;
22         if ($cart->trans_type == ST_SUPPINVOICE)
23                 $_POST['due_date'] = $cart->due_date;
24     $_POST['supp_ref'] = $cart->supp_ref;
25     $_POST['ref'] = $cart->reference;
26         $_POST['Comments'] = $cart->Comments;
27     $_POST['StkLocation'] = $cart->Location;
28     $_POST['delivery_address'] = $cart->delivery_address;
29     $_POST['tax_algorithm'] = $cart->tax_algorithm;
30 }
31
32 function copy_to_cart()
33 {
34         $cart = &$_SESSION['PO'];
35
36         $cart->supplier_id = $_POST['supplier_id'];     
37         $cart->orig_order_date = $_POST['OrderDate'];
38         if ($cart->trans_type == ST_SUPPINVOICE)
39                 $cart->due_date = $_POST['due_date'];
40         $cart->reference = $_POST['ref'];
41         $cart->supp_ref = $_POST['supp_ref'];
42         $cart->Comments = $_POST['Comments'];   
43         $cart->Location = $_POST['StkLocation'];
44         $cart->delivery_address = $_POST['delivery_address'];
45         if (isset($_POST['tax_algorithm']))
46             $cart->tax_algorithm = $_POST['tax_algorithm'];
47 }
48 // ------------------------------------------------------------------------------
49
50 function get_supplier_details_to_order(&$order, $supplier_id)
51 {
52         $sql = "SELECT curr_code, supp_name, tax_group_id, supp.tax_included, supp.tax_algorithm,
53                         supp.credit_limit - Sum(IFNULL(IF(trans.type=".ST_SUPPCREDIT.", -1, 1) 
54                                 * (ov_amount + ov_gst + ov_discount),0)) as cur_credit,
55                                 terms.terms, terms.days_before_due, terms.day_in_following_month
56                 FROM ".TB_PREF."suppliers supp
57                          LEFT JOIN ".TB_PREF."supp_trans trans ON supp.supplier_id = trans.supplier_id
58                          LEFT JOIN ".TB_PREF."payment_terms terms ON supp.payment_terms=terms.terms_indicator
59                 WHERE supp.supplier_id = ".db_escape($supplier_id)."
60                 GROUP BY
61                           supp.supp_name";
62
63         $result = db_query($sql, "The supplier details could not be retreived");
64
65         $myrow = db_fetch($result);
66         $order->credit = $myrow["cur_credit"];
67         $order->terms = array( 
68                 'description' => $myrow['terms'],
69                 'days_before_due' => $myrow['days_before_due'], 
70                 'day_in_following_month' => $myrow['day_in_following_month'] );
71
72         $_POST['supplier_id'] = $supplier_id;
73         $_POST['supplier_name'] = $myrow["supp_name"];
74         $_POST['curr_code'] = $myrow["curr_code"];
75
76         $order->set_supplier($supplier_id, $myrow["supp_name"], $myrow["curr_code"], 
77                 $myrow["tax_group_id"], $myrow["tax_included"], $myrow["tax_algorithm"]);
78 }
79
80 //---------------------------------------------------------------------------------------------------
81
82 function create_new_po($trans_type, $trans_no)
83 {
84         global $Refs;
85
86         if (isset($_SESSION['PO']))
87                 unset ($_SESSION['PO']->line_items, $_SESSION['PO']);
88
89         $cart = new purch_order;
90         $_POST['OrderDate'] = new_doc_date();
91         if (!is_date_in_fiscalyear($_POST['OrderDate']))
92                 $_POST['OrderDate'] = end_fiscalyear();
93         $cart->due_date = $cart->orig_order_date = $_POST['OrderDate'];
94
95         
96         $cart->trans_type = $trans_type;
97         $cart->order_no = $trans_no;
98         /*read in all the selected order into the Items cart  */
99         if ($trans_no) {
100                 read_po($trans_no, $cart);
101                 $cart->order_no = $trans_no;
102         } else
103                 $cart->reference = $Refs->get_next($trans_type);
104         $_SESSION['PO'] = &$cart;
105 }
106
107 //---------------------------------------------------------------------------------------------------
108
109 function display_po_header(&$order)
110 {
111         global $Ajax, $Refs;
112
113         $editable = ($order->order_no == 0);
114
115         start_outer_table(TABLESTYLE2, "width=80%");
116
117         table_section(1);
118     if ($editable)
119     {
120         if (!isset($_POST['supplier_id']) && (get_global_supplier() != ALL_TEXT))
121                 $_POST['supplier_id'] = get_global_supplier();
122
123         supplier_list_row(_("Supplier:"), 'supplier_id', null, false, true, false, true);
124         }
125         else
126         {
127                 hidden('supplier_id', $order->supplier_id);
128                 label_row(_("Supplier:"), $order->supplier_name);
129     }
130
131         if ($order->supplier_id != get_post('supplier_id',-1)) {
132                 $old_supp = $order->supplier_id;
133                 get_supplier_details_to_order($order, $_POST['supplier_id']); 
134             get_duedate_from_terms($order);
135                 $_POST['due_date'] = $order->due_date;
136                 $_POST['tax_algorithm'] = $order->tax_algorithm;
137
138                 // supplier default price update
139                 foreach ($order->line_items as $line_no=>$item) {
140                         $line = &$order->line_items[$line_no];
141                         $line->price =  get_purchase_price ($order->supplier_id, $line->stock_id);
142                         $line->quantity =
143                                 $line->quantity/get_purchase_conversion_factor ($old_supp, $line->stock_id)
144                                         *get_purchase_conversion_factor ($order->supplier_id, $line->stock_id);
145                 }
146             $Ajax->activate('items_table');
147             $Ajax->activate('due_date');
148             $Ajax->activate('tax_algorithm');
149         }
150         set_global_supplier($_POST['supplier_id']);
151
152         if (!is_company_currency($order->curr_code))
153         {
154                 label_row(_("Supplier Currency:"), $order->curr_code);
155                 exchange_rate_display($order->curr_code, get_company_currency(),
156                         $_POST['OrderDate']);
157         }
158
159         supplier_credit_row($order->supplier_id, $order->credit);
160
161
162     if ($editable)
163     {
164         ref_row(_("Reference:"), 'ref');
165     }
166     else
167     {
168         hidden('ref', $order->reference);
169         label_row(_("Reference:"), $order->reference);
170     }
171
172         table_section(2);
173
174         // check this out?????????
175         //if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
176         //      $_POST['OrderDate'] = $order->orig_order_date;
177         //if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
178         //{
179         //      $_POST['OrderDate'] = Today();
180         //      if (!is_date_in_fiscalyear($_POST['OrderDate']))
181         //              $_POST['OrderDate'] = end_fiscalyear();
182         //}
183         date_row($order->trans_type==ST_PURCHORDER ? _("Order Date:") :
184                 ($order->trans_type==ST_SUPPRECEIVE ? _("Delivery Date:") : _("Invoice Date:")),
185                 'OrderDate', '', true, 0, 0, 0, null, true);
186
187         if (isset($_POST['_OrderDate_changed'])) {
188                 $order->orig_order_date = $_POST['OrderDate'];
189             get_duedate_from_terms($order);
190             $_POST['due_date'] = $order->due_date;
191                 $Ajax->activate('_ex_rate');
192                 $Ajax->activate('due_date');
193         }
194         if ($order->trans_type==ST_SUPPINVOICE)
195                 date_row(_("Due Date:"), 'due_date', '', false, 0, 0, 0, null, true);
196
197         text_row(_("Supplier's Reference:"), 'supp_ref', null, 16, 15);
198         locations_list_row(_("Receive Into:"), 'StkLocation', null, false, true); 
199
200         table_section(3);
201
202     if (!isset($_POST['StkLocation']) || $_POST['StkLocation'] == "" ||
203         isset($_POST['_StkLocation_update']) || !isset($_POST['delivery_address']) ||
204         $_POST['delivery_address'] == "")
205     {
206         /*If this is the first time the form loaded set up defaults */
207
208         //$_POST['StkLocation'] = $_SESSION['UserStockLocation'];
209         $sql = "SELECT delivery_address, phone FROM ".TB_PREF."locations WHERE loc_code=".db_escape($_POST['StkLocation']);
210         $result = db_query($sql,"could not get location info");
211
212         if (db_num_rows($result) == 1)
213         {
214                 $loc_row = db_fetch($result);
215                 $_POST['delivery_address'] = $loc_row["delivery_address"];
216                         $Ajax->activate('delivery_address');
217                 $_SESSION['PO']->Location = $_POST['StkLocation'];
218                 $_SESSION['PO']->delivery_address = $_POST['delivery_address'];
219
220         }
221         else
222         { /*The default location of the user is crook */
223                 display_error(_("The default stock location set up for this user is not a currently defined stock location. Your system administrator needs to amend your user record."));
224         }
225     }
226
227         textarea_row(_("Deliver to:"), 'delivery_address', $_POST['delivery_address'], 35, 4);
228
229         end_outer_table(); // outer table
230 }
231
232 //---------------------------------------------------------------------------------------------------
233
234 function display_po_items(&$order, $editable=true)
235 {
236     display_heading(_("Order Items"));
237
238     div_start('items_table');
239     start_table(TABLESTYLE, "width=80%");
240
241         $th = array(_("Item Code"), _("Item Description"), _("Quantity"),
242                 _("Received"), _("Unit"),
243                 _("Required Delivery Date"), $order->tax_included ? _("Price after Tax") : _("Price before Tax"), _("Line Total"), "");
244         if ($order->trans_type != ST_PURCHORDER)
245                 array_remove($th, 5);
246                 
247         if (count($order->line_items)) $th[] = '';
248         table_header($th);
249
250         $id = find_submit('Edit');
251         $total = 0;
252         $k = 0;
253         foreach ($order->line_items as $line_no => $po_line)
254         {
255         $line_total =   round($po_line->quantity * $po_line->price,  user_price_dec());
256         if (!$editable || ($id != $line_no))
257                 {
258                 alt_table_row_color($k);
259                 label_cell($po_line->stock_id);
260                 label_cell($po_line->item_description);
261             qty_cell($po_line->quantity, false, get_qty_dec($po_line->stock_id));
262             qty_cell($po_line->qty_received, false, get_qty_dec($po_line->stock_id));
263                 label_cell($po_line->units);
264                         if ($order->trans_type == ST_PURCHORDER)
265                     label_cell($po_line->req_del_date);
266                 amount_decimal_cell($po_line->price);
267             amount_cell($line_total);
268
269                         if ($editable)
270                         {
271                                         edit_button_cell("Edit$line_no", _("Edit"),
272                                           _('Edit document line'));
273                                         delete_button_cell("Delete$line_no", _("Delete"),
274                                                 _('Remove line from document'));
275                         }
276                 end_row();
277                 }
278                 else
279                 {
280                         po_item_controls($order, $k, $line_no);
281                 }
282                 $total += $line_total;
283     }
284
285         if ($id==-1 && $editable)
286                 po_item_controls($order, $k);
287
288         $colspan = count($th)-2;
289         if (count($order->line_items))
290                 $colspan--;
291
292         $display_sub_total = price_format($total);
293
294         label_row(_("Sub-total"), $display_sub_total, "colspan=$colspan align=right","align=right", 2);
295
296         $taxes = $order->get_taxes(input_num('freight_cost'));
297         
298         $tax_total = display_edit_tax_items($taxes, $colspan, $order->tax_included, 2);
299
300         $display_total = price_format(($total + input_num('freight_cost') + $tax_total));
301
302         start_row();
303         label_cells(_("Amount Total"), $display_total, "colspan=$colspan align='right'","align='right'");
304         $order->order_no ? submit_cells('update', _("Update"), "colspan=2 align='center'", _("Refresh"), true)
305                 : label_cell('', "colspan=2");
306         end_row();
307
308         end_table(1);
309         div_end();
310 }
311
312 //---------------------------------------------------------------------------------------------------
313
314 function display_po_summary(&$po, $is_self=false, $editable=false)
315 {
316     start_table(TABLESTYLE, "width=90%");
317
318     start_row();
319     label_cells(_("Reference"), $po->reference, "class='tableheader2'");
320
321     label_cells(_("Supplier"), $po->supplier_name, "class='tableheader2'");
322
323     if (!is_company_currency($po->curr_code))
324         label_cells(_("Order Currency"), $po->curr_code, "class='tableheader2'");
325
326     if (!$is_self)
327     {
328         label_cells(_("Purchase Order"), get_trans_view_str(ST_PURCHORDER, $po->order_no),
329                 "class='tableheader2'");
330     }
331         end_row();
332         start_row();
333     label_cells(_("Date"), $po->orig_order_date, "class='tableheader2'");
334
335     if ($editable)
336     {
337         if (!isset($_POST['Location']))
338                 $_POST['Location'] = $po->Location;
339         label_cell(_("Deliver Into Location"), "class='tableheader2'");
340         locations_list_cells(null, 'Location', $_POST['Location']);
341     }
342     else
343     {
344         label_cells(_("Deliver Into Location"), get_location_name($po->Location),
345                 "class='tableheader2'");
346     }
347
348     if ($po->supp_ref != "")
349         label_cells(_("Supplier's Reference"), $po->supp_ref, "class='tableheader2'");
350     end_row();
351
352     if (!$editable)
353         label_row(_("Delivery Address"), $po->delivery_address, "class='tableheader2'",
354                 "colspan=9");
355
356     if ($po->Comments != "")
357         label_row(_("Order Comments"), $po->Comments, "class='tableheader2'",
358                 "colspan=9");
359     end_table(1);
360 }
361
362 //--------------------------------------------------------------------------------
363
364 function po_item_controls(&$order, &$rowcounter, $line_no=-1)
365 {
366    global $Ajax;
367
368         alt_table_row_color($rowcounter);
369
370         $dec2 = 0;
371         $id = find_submit('Edit');
372         if (($id != -1) && $line_no == $id)
373         {
374 //              hidden('line_no', $id);
375
376                 $_POST['stock_id'] = $order->line_items[$id]->stock_id;
377                 $dec = get_qty_dec($_POST['stock_id']);
378                 $_POST['qty'] = qty_format($order->line_items[$id]->quantity, $_POST['stock_id'], $dec);
379                 //$_POST['price'] = price_format($order->line_items[$id]->price);
380                 $_POST['price'] = price_decimal_format($order->line_items[$id]->price, $dec2);
381                 if ($order->trans_type == ST_PURCHORDER)
382                         $_POST['req_del_date'] = $order->line_items[$id]->req_del_date;
383
384                 $_POST['units'] = $order->line_items[$id]->units;
385                 $_POST['item_description'] = $order->line_items[$id]->item_description;
386
387                 hidden('stock_id', $_POST['stock_id']);
388                 label_cell($_POST['stock_id']);
389
390                 if ($order->line_items[$id]->descr_editable)
391                         text_cells(null,'item_description', null, 45, 150);
392                 else {
393                         hidden('item_description', $_POST['item_description']);
394 //                      label_cell($_POST['item_description']);
395                         label_cell($order->line_items[$id]->item_description); 
396                 }
397
398             $Ajax->activate('items_table');
399                 $qty_rcvd = $order->line_items[$id]->qty_received;
400         }
401         else
402         {
403 //              hidden('line_no', ($_SESSION['PO']->lines_on_order + 1));
404
405                 //Chaitanya : Manufcatured item can be purchased
406                 stock_items_list_cells(null, 'stock_id', null, false, true, true);
407                 //stock_purchasable_items_list_cells(null, 'stock_id', null, false, true, true);
408                 if (list_updated('stock_id')) {
409                             $Ajax->activate('price');
410                             $Ajax->activate('units');
411                             $Ajax->activate('qty');
412                             $Ajax->activate('req_del_date');
413                             $Ajax->activate('line_total');
414                 }
415         $item_info = get_item_edit_info($_POST['stock_id']);
416                 $_POST['units'] = $item_info["units"];
417
418                 $dec = $item_info["decimals"];
419                 $_POST['qty'] = number_format2(get_purchase_conversion_factor ($order->supplier_id, $_POST['stock_id']), $dec);
420                 //$_POST['price'] = price_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']));
421                 $_POST['price'] = price_decimal_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']), $dec2);
422                 if ($order->trans_type == ST_PURCHORDER)
423                         $_POST['req_del_date'] = add_days(Today(), 10);
424                 $qty_rcvd = '';
425         }
426
427         qty_cells(null, 'qty', null, null, null, $dec);
428         qty_cell($qty_rcvd, false, $dec);
429
430         label_cell($_POST['units'], '', 'units');
431         if ($order->trans_type == ST_PURCHORDER)
432                 date_cells(null, 'req_del_date', '', null, 0, 0, 0);
433         if ($qty_rcvd > 0)
434         {
435                 amount_decimal_cell($_POST['price']);
436                 hidden('price', $_POST['price']);
437         }       
438         else    
439                 amount_cells(null, 'price', null, null, null, $dec2);
440
441         //$line_total = $_POST['qty'] * $_POST['price'] * (1 - $_POST['Disc'] / 100);
442         $line_total = round(input_num('qty') * input_num('price'),  user_price_dec());
443         amount_cell($line_total, false, '','line_total');
444
445         if ($id!=-1)
446         {
447                 button_cell('UpdateLine', _("Update"),
448                                 _('Confirm changes'), ICON_UPDATE);
449                 button_cell('CancelUpdate', _("Cancel"),
450                                 _('Cancel changes'), ICON_CANCEL);
451                 hidden('line_no', $line_no);
452                 set_focus('qty');
453         }
454         else
455         {
456                 submit_cells('EnterLine', _("Add Item"), "colspan=2 align='center'",
457                     _('Add new item to document'), true);
458         }
459
460         end_row();
461 }
462
463 //---------------------------------------------------------------------------------------------------
464
465
466
467 ?>