CSS style is now implemented in all FA.
[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                 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', '', $Refs->get_next(ST_PURCHORDER));
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', '', true, 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         locations_list_row(_("Receive Into:"), 'StkLocation', null, false, true); 
120
121         table_section(3);
122
123     if (!isset($_POST['StkLocation']) || $_POST['StkLocation'] == "" ||
124         isset($_POST['_StkLocation_update']) || !isset($_POST['delivery_address']) ||
125         $_POST['delivery_address'] == "")
126     {
127         /*If this is the first time the form loaded set up defaults */
128
129         //$_POST['StkLocation'] = $_SESSION['UserStockLocation'];
130         $sql = "SELECT delivery_address, phone FROM ".TB_PREF."locations WHERE loc_code='" . $_POST['StkLocation'] . "'";
131         $result = db_query($sql,"could not get location info");
132
133         if (db_num_rows($result) == 1)
134         {
135                 $loc_row = db_fetch($result);
136                 $_POST['delivery_address'] = $loc_row["delivery_address"];
137                         $Ajax->activate('delivery_address');
138                 $_SESSION['PO']->Location = $_POST['StkLocation'];
139                 $_SESSION['PO']->delivery_address = $_POST['delivery_address'];
140
141         }
142         else
143         { /*The default location of the user is crook */
144                 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."));
145         }
146     }
147
148         textarea_row(_("Deliver to:"), 'delivery_address', $_POST['delivery_address'], 35, 4);
149
150         end_outer_table(); // outer table
151 }
152
153 //---------------------------------------------------------------------------------------------------
154
155 function display_po_items(&$order, $editable=true)
156 {
157         global $table_style;
158
159     display_heading(_("Order Items"));
160
161     div_start('items_table');
162     start_table("$table_style width=80%");
163
164         $th = array(_("Item Code"), _("Item Description"), _("Quantity"),
165                 _("Received"), _("Unit"),
166                 _("Required Delivery Date"), _("Price"), _("Line Total"), "");
167
168         if (count($order->line_items)) $th[] = '';
169         table_header($th);
170
171         $id = find_submit('Edit');
172         $total = 0;
173         $k = 0;
174         foreach ($order->line_items as $line_no => $po_line)
175         {
176
177                 if ($po_line->Deleted == false)
178                 {
179                 $line_total =   round($po_line->quantity * $po_line->price,  user_price_dec());
180                 if (!$editable || ($id != $line_no))
181                         {
182                         alt_table_row_color($k);
183                         label_cell($po_line->stock_id);
184                         label_cell($po_line->item_description);
185                 qty_cell($po_line->quantity, false, get_qty_dec($po_line->stock_id));
186                 qty_cell($po_line->qty_received, false, get_qty_dec($po_line->stock_id));
187                         label_cell($po_line->units);
188                 label_cell($po_line->req_del_date);
189                         amount_decimal_cell($po_line->price);
190                 amount_cell($line_total);
191
192                 if ($editable)
193                 {
194                                         edit_button_cell("Edit$line_no", _("Edit"),
195                                           _('Edit document line'));
196                                         delete_button_cell("Delete$line_no", _("Delete"),
197                                           _('Remove line from document'));
198                 }
199                         end_row();
200                         }
201                         else
202                         {
203                                 po_item_controls($order, $po_line->stock_id);
204                         }
205                 $total += $line_total;
206                 }
207     }
208
209         if ($id==-1 && $editable)
210                 po_item_controls($order);
211
212     $display_total = price_format($total);
213     label_row(_("Total Excluding Shipping/Tax"), $display_total, "colspan=7 align=right",
214         "nowrap align=right", 2);
215
216         end_table(1);
217         div_end();
218 }
219
220 //---------------------------------------------------------------------------------------------------
221
222 function display_po_summary(&$po, $is_self=false, $editable=false)
223 {
224         global $table_style;
225     start_table("$table_style width=90%");
226
227     start_row();
228     label_cells(_("Reference"), $po->reference, "class='tableheader2'");
229
230     label_cells(_("Supplier"), $po->supplier_name, "class='tableheader2'");
231
232     if (!is_company_currency($po->curr_code))
233         label_cells(_("Order Currency"), $po->curr_code, "class='tableheader2'");
234
235     if (!$is_self)
236     {
237         label_cells(_("Purchase Order"), get_trans_view_str(ST_PURCHORDER, $po->order_no),
238                 "class='tableheader2'");
239     }
240         end_row();
241         start_row();
242     label_cells(_("Date"), $po->orig_order_date, "class='tableheader2'");
243
244     if ($editable)
245     {
246         if (!isset($_POST['Location']))
247                 $_POST['Location'] = $po->Location;
248         label_cell(_("Deliver Into Location"), "class='tableheader2'");
249         locations_list_cells(null, 'Location', $_POST['Location']);
250     }
251     else
252     {
253         label_cells(_("Deliver Into Location"), get_location_name($po->Location),
254                 "class='tableheader2'");
255     }
256
257     if ($po->requisition_no != "")
258         label_cells(_("Supplier's Reference"), $po->requisition_no, "class='tableheader2'");
259     end_row();
260
261     if (!$editable)
262         label_row(_("Delivery Address"), $po->delivery_address, "class='tableheader2'",
263                 "colspan=9");
264
265     if ($po->Comments != "")
266         label_row(_("Order Comments"), $po->Comments, "class='tableheader2'",
267                 "colspan=9");
268     end_table(1);
269 }
270
271 //--------------------------------------------------------------------------------
272
273 function po_item_controls(&$order, $stock_id=null)
274 {
275    global $Ajax;
276         start_row();
277
278         $dec2 = 0;
279         $id = find_submit('Edit');
280         if (($id != -1) && $stock_id != null)
281         {
282                 hidden('line_no', $id);
283
284                 $_POST['stock_id'] = $order->line_items[$id]->stock_id;
285                         $dec = get_qty_dec($_POST['stock_id']);
286                 $_POST['qty'] = qty_format($order->line_items[$id]->quantity, $_POST['stock_id'], $dec);
287                 //$_POST['price'] = price_format($order->line_items[$id]->price);
288                 $_POST['price'] = price_decimal_format($order->line_items[$id]->price, $dec2);
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                 $qty_rcvd = $order->line_items[$id]->qty_received;
298         }
299         else
300         {
301                 hidden('line_no', ($_SESSION['PO']->lines_on_order + 1));
302
303                 stock_purchasable_items_list_cells(null, 'stock_id', null, false, true, true);
304                 if (list_updated('stock_id')) {
305                             $Ajax->activate('price');
306                             $Ajax->activate('units');
307                             $Ajax->activate('qty');
308                             $Ajax->activate('req_del_date');
309                             $Ajax->activate('line_total');
310                 }
311         $item_info = get_item_edit_info($_POST['stock_id']);
312                 $_POST['units'] = $item_info["units"];
313
314                 $dec = $item_info["decimals"];
315                 $_POST['qty'] = number_format2(get_purchase_conversion_factor ($order->supplier_id, $_POST['stock_id']), $dec);
316                 //$_POST['price'] = price_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']));
317                 $_POST['price'] = price_decimal_format(get_purchase_price ($order->supplier_id, $_POST['stock_id']), $dec2);
318                 $_POST['req_del_date'] = add_days(Today(), 10);
319                 $qty_rcvd = '';
320         }
321
322         qty_cells(null, 'qty', null, null, null, $dec);
323         qty_cell($qty_rcvd, false, $dec);
324
325         label_cell($_POST['units'], '', 'units');
326         date_cells(null, 'req_del_date', '', null, 0, 0, 0);
327         amount_cells(null, 'price', null, null, null, $dec2);
328
329         //$line_total = $_POST['qty'] * $_POST['price'] * (1 - $_POST['Disc'] / 100);
330         $line_total = round(input_num('qty') * input_num('price'),  user_price_dec());
331         amount_cell($line_total, false, '','line_total');
332
333         if ($id!=-1)
334         {
335                 button_cell('UpdateLine', _("Update"),
336                                 _('Confirm changes'), ICON_UPDATE);
337                 button_cell('CancelUpdate', _("Cancel"),
338                                 _('Cancel changes'), ICON_CANCEL);
339                 set_focus('qty');
340         }
341         else
342         {
343                 submit_cells('EnterLine', _("Add Item"), "colspan=2",
344                     _('Add new item to document'), true);
345         }
346
347         end_row();
348 }
349
350 //---------------------------------------------------------------------------------------------------
351
352
353
354 ?>