Better support for conversion_factor in Purchasing Pricing. Instruction on Sticky...
[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'] = Today();
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;
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() != reserved_words::get_all()))
63                 $_POST['supplier_id'] = get_global_supplier();
64
65         supplier_list_row(_("Supplier:"), 'supplier_id', null, 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                 get_supplier_details_to_order($order, $_POST['supplier_id']);
75                 // supplier default price update
76                 foreach ($order->line_items as $line_no=>$item) {
77                         $line = &$order->line_items[$line_no];
78                         $line->price =  get_purchase_price ($order->supplier_id, $_POST['stock_id']);
79                         $line->quantity =  get_purchase_conversion_factor ($order->supplier_id, $_POST['stock_id']);
80                 }
81             $Ajax->activate('items_table');
82         }
83         set_global_supplier($_POST['supplier_id']);
84
85         if (!is_company_currency($order->curr_code))
86         {
87                 label_row(_("Supplier Currency:"), $order->curr_code);
88                 exchange_rate_display($order->curr_code, get_company_currency(),
89                         $_POST['OrderDate']);
90         }
91
92     if ($editable)
93     {
94         ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::po()));
95     }
96     else
97     {
98         hidden('ref', $order->reference);
99         label_row(_("Reference:"), $order->reference);
100     }
101
102         table_section(2);
103
104         // check this out?????????
105         //if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
106         //      $_POST['OrderDate'] = $order->orig_order_date;
107         //if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
108         //{
109         //      $_POST['OrderDate'] = Today();
110         //      if (!is_date_in_fiscalyear($_POST['OrderDate']))
111         //              $_POST['OrderDate'] = end_fiscalyear();
112         //}
113         date_row(_("Order Date:"), 'OrderDate', '', $_POST['OrderDate'], 0, 0, 0, null, true);
114         if (isset($_POST['_OrderDate_changed'])) {
115                 $Ajax->activate('_ex_rate');
116         }
117
118         text_row(_("Supplier's Reference:"), 'Requisition', null, 16, 15);
119
120         echo "<tr><td>" . _("Receive Into:") . "</td>";
121         echo "<td>";
122     locations_list('StkLocation', null, false, true);
123         echo "</td></tr>";
124
125         table_section(3);
126
127     if (!isset($_POST['StkLocation']) || $_POST['StkLocation'] == "" ||
128         isset($_POST['_StkLocation_update']) || !isset($_POST['delivery_address']) ||
129         $_POST['delivery_address'] == "")
130     {
131         /*If this is the first time the form loaded set up defaults */
132
133         //$_POST['StkLocation'] = $_SESSION['UserStockLocation'];
134         $sql = "SELECT delivery_address, phone FROM ".TB_PREF."locations WHERE loc_code='" . $_POST['StkLocation'] . "'";
135         $result = db_query($sql,"could not get location info");
136
137         if (db_num_rows($result) == 1)
138         {
139                 $loc_row = db_fetch($result);
140                 $_POST['delivery_address'] = $loc_row["delivery_address"];
141                         $Ajax->activate('delivery_address');
142                 $_SESSION['PO']->Location = $_POST['StkLocation'];
143                 $_SESSION['PO']->delivery_address = $_POST['delivery_address'];
144
145         }
146         else
147         { /*The default location of the user is crook */
148                 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."));
149         }
150     }
151
152         textarea_row(_("Deliver to:"), 'delivery_address', $_POST['delivery_address'], 35, 4);
153
154         end_outer_table(); // outer table
155 }
156
157 //---------------------------------------------------------------------------------------------------
158
159 function display_po_items(&$order, $editable=true)
160 {
161         global $table_style;
162
163     display_heading(_("Order Items"));
164
165     div_start('items_table');
166     start_table("$table_style width=80%");
167
168         $th = array(_("Item Code"), _("Item Description"), _("Quantity"), _("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                         label_cell($po_line->units);
190                 label_cell($po_line->req_del_date);
191                         amount_cell($po_line->price);
192                 amount_cell($line_total);
193
194                 if ($editable)
195                 {
196                                         edit_button_cell("Edit$line_no", _("Edit"),
197                                           _('Edit document line'));
198                                         delete_button_cell("Delete$line_no", _("Delete"),
199                                           _('Remove line from document'));
200                 }
201                         end_row();
202                         }
203                         else
204                         {
205                                 po_item_controls($order, $po_line->stock_id);
206                         }
207                 $total += $line_total;
208                 }
209     }
210
211         if ($id==-1 && $editable)
212                 po_item_controls($order);
213
214     $display_total = price_format($total);
215     label_row(_("Total Excluding Shipping/Tax"), $display_total, "colspan=6 align=right",
216         "nowrap align=right");
217
218         end_table(1);
219         div_end();
220 }
221
222 //---------------------------------------------------------------------------------------------------
223
224 function display_po_summary(&$po, $is_self=false, $editable=false)
225 {
226         global $table_style2;
227     start_table("$table_style2 width=90%");
228
229     start_row();
230     label_cells(_("Reference"), $po->reference, "class='tableheader2'");
231
232     label_cells(_("Supplier"), $po->supplier_name, "class='tableheader2'");
233
234     if (!is_company_currency($po->curr_code))
235         label_cells(_("Order Currency"), $po->curr_code, "class='tableheader2'");
236
237     if (!$is_self)
238     {
239         label_cells(_("Purchase Order"), get_trans_view_str(systypes::po(), $po->order_no),
240                 "class='tableheader2'");
241     }
242         end_row();
243         start_row();
244     label_cells(_("Date"), $po->orig_order_date, "class='tableheader2'");
245
246     if ($editable)
247     {
248         if (!isset($_POST['Location']))
249                 $_POST['Location'] = $po->Location;
250         label_cell(_("Deliver Into Location"), "class='tableheader2'");
251         locations_list_cells(null, 'Location', $_POST['Location']);
252     }
253     else
254     {
255         label_cells(_("Deliver Into Location"), get_location_name($po->Location),
256                 "class='tableheader2'");
257     }
258
259     if ($po->requisition_no != "")
260         label_cells(_("Supplier's Reference"), $po->requisition_no, "class='tableheader2'");
261     end_row();
262
263     if (!$editable)
264         label_row(_("Delivery Address"), $po->delivery_address, "class='tableheader2'",
265                 "colspan=9");
266
267     if ($po->Comments != "")
268         label_row(_("Order Comments"), $po->Comments, "class='tableheader2'",
269                 "colspan=9");
270     end_table(1);
271 }
272
273 //--------------------------------------------------------------------------------
274
275 function po_item_controls(&$order, $stock_id=null)
276 {
277    global $Ajax;
278         start_row();
279
280         $id = find_submit('Edit');
281         if (($id != -1) && $stock_id != null)
282         {
283                 hidden('line_no', $id);
284
285                 $_POST['stock_id'] = $order->line_items[$id]->stock_id;
286                         $dec = get_qty_dec($_POST['stock_id']);
287                 $_POST['qty'] = qty_format($order->line_items[$id]->quantity, $_POST['stock_id'], $dec);
288                 $_POST['price'] = price_format($order->line_items[$id]->price);
289                 $_POST['req_del_date'] = $order->line_items[$id]->req_del_date;
290
291                 $_POST['units'] = $order->line_items[$id]->units;
292
293                 hidden('stock_id', $_POST['stock_id']);
294                 label_cell($_POST['stock_id']);
295                 label_cell($order->line_items[$id]->item_description);
296             $Ajax->activate('items_table');
297         }
298         else
299         {
300                 hidden('line_no', ($_SESSION['PO']->lines_on_order + 1));
301
302                 stock_purchasable_items_list_cells(null, 'stock_id', null, false, true);
303                 if (list_updated('stock_id')) {
304                             $Ajax->activate('price');
305                             $Ajax->activate('units');
306                             $Ajax->activate('qty');
307                             $Ajax->activate('req_del_date');
308                             $Ajax->activate('line_total');
309                 }
310         $item_info = get_item_edit_info($_POST['stock_id']);
311                 $_POST['units'] = $item_info["units"];
312
313                 $dec = $item_info["decimals"];
314                 $_POST['qty'] = number_format2(get_purchase_conversion_factor ($order->supplier_id, $_POST['stock_id']), $dec);
315                 $_POST['price'] = price_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']));
316                 $_POST['req_del_date'] = add_days(Today(), 10);
317         }
318
319         qty_cells(null, 'qty', null, null, null, $dec);
320
321         label_cell($_POST['units'], '', 'units');
322         date_cells(null, 'req_del_date', '', null, 0, 0, 0);
323         amount_cells(null, 'price', null);
324
325         //$line_total = $_POST['qty'] * $_POST['price'] * (1 - $_POST['Disc'] / 100);
326         $line_total = round(input_num('qty') * input_num('price'),  user_price_dec());
327         amount_cell($line_total, false, '','line_total');
328
329         if ($id!=-1)
330         {
331                 button_cell('UpdateLine', _("Update"),
332                                 _('Confirm changes'), ICON_UPDATE);
333                 button_cell('CancelUpdate', _("Cancel"),
334                                 _('Cancel changes'), ICON_CANCEL);
335                 set_focus('qty');
336         }
337         else
338         {
339                 submit_cells('EnterLine', _("Add Item"), "colspan=2",
340                     _('Add new item to document'), true);
341         }
342
343         end_row();
344 }
345
346 //---------------------------------------------------------------------------------------------------
347
348
349
350 ?>