[0000209],[0000210] Improper price and quantity handling on supplier change.
[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 get_supplier_details_to_order(&$order, $supplier_id)
17 {
18         $sql = "SELECT curr_code,supp_name FROM ".TB_PREF."suppliers
19                 WHERE supplier_id = '$supplier_id'";
20         $result = db_query($sql, "The supplier details could not be retreived");
21
22         $myrow = db_fetch($result);
23
24         $order->curr_code = $_POST['curr_code'] = $myrow["curr_code"];
25         $order->supplier_name = $_POST['supplier_name'] = $myrow["supp_name"];
26         $order->supplier_id = $_POST['supplier_id'] = $supplier_id;
27 }
28
29 //---------------------------------------------------------------------------------------------------
30
31 function create_new_po()
32 {
33         if (isset($_SESSION['PO']))
34         {
35                 unset ($_SESSION['PO']->line_items);
36                 $_SESSION['PO']->lines_on_order = 0;
37                 unset ($_SESSION['PO']);
38         }
39
40         //session_register("PO");
41
42         $_SESSION['PO'] = new purch_order;
43         $_POST['OrderDate'] = new_doc_date();
44         if (!is_date_in_fiscalyear($_POST['OrderDate']))
45                 $_POST['OrderDate'] = end_fiscalyear();
46         $_SESSION['PO']->orig_order_date = $_POST['OrderDate'];
47 }
48
49 //---------------------------------------------------------------------------------------------------
50
51 function display_po_header(&$order)
52 {
53         global $table_style2, $Ajax, $Refs;
54
55         $editable = ($order->order_no == 0);
56
57         start_outer_table("width=80% $table_style2");
58
59         table_section(1);
60     if ($editable)
61     {
62         if (!isset($_POST['supplier_id']) && (get_global_supplier() != ALL_TEXT))
63                 $_POST['supplier_id'] = get_global_supplier();
64
65         supplier_list_row(_("Supplier:"), 'supplier_id', null, false, true, false, true);
66         }
67         else
68         {
69                 hidden('supplier_id', $order->supplier_id);
70                 label_row(_("Supplier:"), $order->supplier_name);
71     }
72
73         if ($order->supplier_id != get_post('supplier_id',-1)) {
74                 $old_supp = $order->supplier_id;
75                 get_supplier_details_to_order($order, $_POST['supplier_id']);
76                 // supplier default price update
77                 foreach ($order->line_items as $line_no=>$item) {
78                         $line = &$order->line_items[$line_no];
79                         $line->price =  get_purchase_price ($order->supplier_id, $line->stock_id);
80                         $line->quantity =
81                                 $line->quantity/get_purchase_conversion_factor ($old_supp, $line->stock_id)
82                                         *get_purchase_conversion_factor ($order->supplier_id, $line->stock_id);
83                 }
84             $Ajax->activate('items_table');
85         }
86         set_global_supplier($_POST['supplier_id']);
87
88         if (!is_company_currency($order->curr_code))
89         {
90                 label_row(_("Supplier Currency:"), $order->curr_code);
91                 exchange_rate_display($order->curr_code, get_company_currency(),
92                         $_POST['OrderDate']);
93         }
94
95     if ($editable)
96     {
97         ref_row(_("Reference:"), 'ref', '', $Refs->get_next(ST_PURCHORDER));
98     }
99     else
100     {
101         hidden('ref', $order->reference);
102         label_row(_("Reference:"), $order->reference);
103     }
104
105         table_section(2);
106
107         // check this out?????????
108         //if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
109         //      $_POST['OrderDate'] = $order->orig_order_date;
110         //if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
111         //{
112         //      $_POST['OrderDate'] = Today();
113         //      if (!is_date_in_fiscalyear($_POST['OrderDate']))
114         //              $_POST['OrderDate'] = end_fiscalyear();
115         //}
116         date_row(_("Order Date:"), 'OrderDate', '', true, 0, 0, 0, null, true);
117         if (isset($_POST['_OrderDate_changed'])) {
118                 $Ajax->activate('_ex_rate');
119         }
120
121         text_row(_("Supplier's Reference:"), 'Requisition', null, 16, 15);
122         locations_list_row(_("Receive Into:"), 'StkLocation', null, false, true); 
123
124         table_section(3);
125
126     if (!isset($_POST['StkLocation']) || $_POST['StkLocation'] == "" ||
127         isset($_POST['_StkLocation_update']) || !isset($_POST['delivery_address']) ||
128         $_POST['delivery_address'] == "")
129     {
130         /*If this is the first time the form loaded set up defaults */
131
132         //$_POST['StkLocation'] = $_SESSION['UserStockLocation'];
133         $sql = "SELECT delivery_address, phone FROM ".TB_PREF."locations WHERE loc_code='" . $_POST['StkLocation'] . "'";
134         $result = db_query($sql,"could not get location info");
135
136         if (db_num_rows($result) == 1)
137         {
138                 $loc_row = db_fetch($result);
139                 $_POST['delivery_address'] = $loc_row["delivery_address"];
140                         $Ajax->activate('delivery_address');
141                 $_SESSION['PO']->Location = $_POST['StkLocation'];
142                 $_SESSION['PO']->delivery_address = $_POST['delivery_address'];
143
144         }
145         else
146         { /*The default location of the user is crook */
147                 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."));
148         }
149     }
150
151         textarea_row(_("Deliver to:"), 'delivery_address', $_POST['delivery_address'], 35, 4);
152
153         end_outer_table(); // outer table
154 }
155
156 //---------------------------------------------------------------------------------------------------
157
158 function display_po_items(&$order, $editable=true)
159 {
160         global $table_style;
161
162     display_heading(_("Order Items"));
163
164     div_start('items_table');
165     start_table("$table_style width=80%");
166
167         $th = array(_("Item Code"), _("Item Description"), _("Quantity"),
168                 _("Received"), _("Unit"),
169                 _("Required Delivery Date"), _("Price"), _("Line Total"), "");
170
171         if (count($order->line_items)) $th[] = '';
172         table_header($th);
173
174         $id = find_submit('Edit');
175         $total = 0;
176         $k = 0;
177         foreach ($order->line_items as $line_no => $po_line)
178         {
179
180                 if ($po_line->Deleted == false)
181                 {
182                 $line_total =   round($po_line->quantity * $po_line->price,  user_price_dec());
183                 if (!$editable || ($id != $line_no))
184                         {
185                         alt_table_row_color($k);
186                         label_cell($po_line->stock_id);
187                         label_cell($po_line->item_description);
188                 qty_cell($po_line->quantity, false, get_qty_dec($po_line->stock_id));
189                 qty_cell($po_line->qty_received, false, get_qty_dec($po_line->stock_id));
190                         label_cell($po_line->units);
191                 label_cell($po_line->req_del_date);
192                         amount_decimal_cell($po_line->price);
193                 amount_cell($line_total);
194
195                 if ($editable)
196                 {
197                                         edit_button_cell("Edit$line_no", _("Edit"),
198                                           _('Edit document line'));
199                                         delete_button_cell("Delete$line_no", _("Delete"),
200                                           _('Remove line from document'));
201                 }
202                         end_row();
203                         }
204                         else
205                         {
206                                 po_item_controls($order, $po_line->stock_id);
207                         }
208                 $total += $line_total;
209                 }
210     }
211
212         if ($id==-1 && $editable)
213                 po_item_controls($order);
214
215     $display_total = price_format($total);
216     label_row(_("Total Excluding Shipping/Tax"), $display_total, "colspan=7 align=right",
217         "nowrap align=right", 2);
218
219         end_table(1);
220         div_end();
221 }
222
223 //---------------------------------------------------------------------------------------------------
224
225 function display_po_summary(&$po, $is_self=false, $editable=false)
226 {
227         global $table_style;
228     start_table("$table_style width=90%");
229
230     start_row();
231     label_cells(_("Reference"), $po->reference, "class='tableheader2'");
232
233     label_cells(_("Supplier"), $po->supplier_name, "class='tableheader2'");
234
235     if (!is_company_currency($po->curr_code))
236         label_cells(_("Order Currency"), $po->curr_code, "class='tableheader2'");
237
238     if (!$is_self)
239     {
240         label_cells(_("Purchase Order"), get_trans_view_str(ST_PURCHORDER, $po->order_no),
241                 "class='tableheader2'");
242     }
243         end_row();
244         start_row();
245     label_cells(_("Date"), $po->orig_order_date, "class='tableheader2'");
246
247     if ($editable)
248     {
249         if (!isset($_POST['Location']))
250                 $_POST['Location'] = $po->Location;
251         label_cell(_("Deliver Into Location"), "class='tableheader2'");
252         locations_list_cells(null, 'Location', $_POST['Location']);
253     }
254     else
255     {
256         label_cells(_("Deliver Into Location"), get_location_name($po->Location),
257                 "class='tableheader2'");
258     }
259
260     if ($po->requisition_no != "")
261         label_cells(_("Supplier's Reference"), $po->requisition_no, "class='tableheader2'");
262     end_row();
263
264     if (!$editable)
265         label_row(_("Delivery Address"), $po->delivery_address, "class='tableheader2'",
266                 "colspan=9");
267
268     if ($po->Comments != "")
269         label_row(_("Order Comments"), $po->Comments, "class='tableheader2'",
270                 "colspan=9");
271     end_table(1);
272 }
273
274 //--------------------------------------------------------------------------------
275
276 function po_item_controls(&$order, $stock_id=null)
277 {
278    global $Ajax;
279         start_row();
280
281         $dec2 = 0;
282         $id = find_submit('Edit');
283         if (($id != -1) && $stock_id != null)
284         {
285                 hidden('line_no', $id);
286
287                 $_POST['stock_id'] = $order->line_items[$id]->stock_id;
288                         $dec = get_qty_dec($_POST['stock_id']);
289                 $_POST['qty'] = qty_format($order->line_items[$id]->quantity, $_POST['stock_id'], $dec);
290                 //$_POST['price'] = price_format($order->line_items[$id]->price);
291                 $_POST['price'] = price_decimal_format($order->line_items[$id]->price, $dec2);
292                 $_POST['req_del_date'] = $order->line_items[$id]->req_del_date;
293
294                 $_POST['units'] = $order->line_items[$id]->units;
295
296                 hidden('stock_id', $_POST['stock_id']);
297                 label_cell($_POST['stock_id']);
298                 label_cell($order->line_items[$id]->item_description);
299             $Ajax->activate('items_table');
300                 $qty_rcvd = $order->line_items[$id]->qty_received;
301         }
302         else
303         {
304                 hidden('line_no', ($_SESSION['PO']->lines_on_order + 1));
305
306                 stock_purchasable_items_list_cells(null, 'stock_id', null, false, true, true);
307                 if (list_updated('stock_id')) {
308                             $Ajax->activate('price');
309                             $Ajax->activate('units');
310                             $Ajax->activate('qty');
311                             $Ajax->activate('req_del_date');
312                             $Ajax->activate('line_total');
313                 }
314         $item_info = get_item_edit_info($_POST['stock_id']);
315                 $_POST['units'] = $item_info["units"];
316
317                 $dec = $item_info["decimals"];
318                 $_POST['qty'] = number_format2(get_purchase_conversion_factor ($order->supplier_id, $_POST['stock_id']), $dec);
319                 //$_POST['price'] = price_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']));
320                 $_POST['price'] = price_decimal_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']), $dec2);
321                 $_POST['req_del_date'] = add_days(Today(), 10);
322                 $qty_rcvd = '';
323         }
324
325         qty_cells(null, 'qty', null, null, null, $dec);
326         qty_cell($qty_rcvd, false, $dec);
327
328         label_cell($_POST['units'], '', 'units');
329         date_cells(null, 'req_del_date', '', null, 0, 0, 0);
330         amount_cells(null, 'price', null, null, null, $dec2);
331
332         //$line_total = $_POST['qty'] * $_POST['price'] * (1 - $_POST['Disc'] / 100);
333         $line_total = round(input_num('qty') * input_num('price'),  user_price_dec());
334         amount_cell($line_total, false, '','line_total');
335
336         if ($id!=-1)
337         {
338                 button_cell('UpdateLine', _("Update"),
339                                 _('Confirm changes'), ICON_UPDATE);
340                 button_cell('CancelUpdate', _("Cancel"),
341                                 _('Cancel changes'), ICON_CANCEL);
342                 set_focus('qty');
343         }
344         else
345         {
346                 submit_cells('EnterLine', _("Add Item"), "colspan=2",
347                     _('Add new item to document'), true);
348         }
349
350         end_row();
351 }
352
353 //---------------------------------------------------------------------------------------------------
354
355
356
357 ?>