93524a4b3cd7503e2152e6e4dd6c9eaf99a07478
[fa-stable.git] / purchasing / includes / ui / invoice_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 //--------------------------------------------------------------------------------------------------
13
14 function copy_from_trans(&$supp_trans)
15 {
16         $_POST['Comments'] = $supp_trans->Comments;
17         $_POST['tran_date'] = $supp_trans->tran_date;
18         $_POST['due_date'] = $supp_trans->due_date;
19         $_POST['supp_reference'] = $supp_trans->supp_reference;
20         $_POST['reference'] = $supp_trans->reference;
21         $_POST['supplier_id'] = $supp_trans->supplier_id;
22     $_POST['dimension'] = $supp_trans->dimension;
23     $_POST['dimension2'] = $supp_trans->dimension2;
24
25         $_POST['_ex_rate'] = $supp_trans->ex_rate;
26         if (isset($supp_trans->tax_overrides))
27             foreach($supp_trans->tax_overrides as $id => $value)
28                     $_POST['mantax'][$id] = price_format($value);
29 }
30
31 //--------------------------------------------------------------------------------------------------
32
33 function copy_to_trans(&$supp_trans)
34 {
35         $supp_trans->Comments = $_POST['Comments'];
36         $supp_trans->tran_date = $_POST['tran_date'];
37         $supp_trans->due_date = $_POST['due_date'];
38         $supp_trans->supp_reference = $_POST['supp_reference'];
39         $supp_trans->reference = $_POST['reference'];
40         $supp_trans->dimension = @$_POST['dimension'];
41         $supp_trans->dimension2 =  @$_POST['dimension2'];
42
43         $supp_trans->ex_rate = input_num('_ex_rate', null);
44
45         $supp_trans->ov_amount = $supp_trans->ov_discount = 0; /* for starters */
46     if (isset($_POST['mantax'])) {
47                 foreach($_POST['mantax'] as $id => $tax) {
48                 $supp_trans->tax_overrides[$id] = user_numeric($_POST['mantax'][$id]);
49                 }
50         }
51         else
52                 unset($supp_trans->tax_overrides);
53
54         if (count($supp_trans->grn_items) > 0)
55         {
56                 foreach ( $supp_trans->grn_items as $grn)
57                 {
58                         $supp_trans->ov_amount += round2(($grn->this_quantity_inv * $grn->chg_price),
59                           user_price_dec());
60                 }
61         }
62         if (count($supp_trans->gl_codes) > 0)
63         {
64                 foreach ( $supp_trans->gl_codes as $gl_line)
65                 {
66                         if (!is_tax_account($gl_line->gl_code) || $supp_trans->tax_included)
67                                 $supp_trans->ov_amount += $gl_line->amount;
68                 }
69         }
70 }
71
72 //--------------------------------------------------------------------------------------------------
73
74 function invoice_header(&$supp_trans)
75 {
76         global $Ajax, $Refs;
77         
78         // if vars have been lost, recopy
79         if (!isset($_POST['tran_date']))
80                 copy_from_trans($supp_trans);
81
82         start_outer_table(TABLESTYLE2, "width='95%'");
83
84         table_section(1);
85
86         if ($supp_trans->trans_type == ST_SUPPCREDIT && $supp_trans->src_docs)
87         {
88                 $_POST['supplier_id'] = $supp_trans->supplier_id;
89                 $supp = $supp_trans->supplier_name." - ".$supp_trans->currency;
90                 label_row(_("Supplier:"), $supp.hidden('supplier_id', $_POST['supplier_id'], false));
91         }
92         else
93         {
94         if (!isset($_POST['supplier_id']) && (get_global_supplier() != ALL_TEXT))
95                 $_POST['supplier_id'] = get_global_supplier();
96
97                 if (!$supp_trans->trans_no)
98                         supplier_list_row(_("Supplier:"), 'supplier_id', $_POST['supplier_id'], false, true);
99                 else
100                         label_row(_("Supplier:"), $supp_trans->supplier_name
101                         .($supp_trans->currency ? ' - '.$supp_trans->currency  : '')
102                         .hidden('supplier_id', $_POST['supplier_id'], false));
103         }
104         if ($supp_trans->supplier_id != $_POST['supplier_id'])
105         {
106                 // supplier has changed
107                 // delete all the order items - drastic but necessary because of
108                 // change of currency, etc
109                 $supp_trans->clear_items();
110                 read_supplier_details_to_trans($supp_trans, $_POST['supplier_id']);
111                 copy_from_trans($supp_trans);
112         }
113
114         date_row(_("Date") . ":", 'tran_date', '', true, 0, 0, 0, "", true);
115
116         ref_row(_("Reference:"), 'reference', '', $Refs->get_next($supp_trans->trans_type, null, 
117                 array('supplier' => get_post('supplier_id'), 'date' => get_post('tran_date'))), false, $supp_trans->trans_type);
118
119         if ($supp_trans->trans_type == ST_SUPPCREDIT)
120         {
121                 label_row(_("Source Invoices:"), implode(',' , $supp_trans->src_docs),'','','src_docs');
122         }
123                 text_row(_("Supplier's Ref.:"), 'supp_reference', $_POST['supp_reference'], 20, 60);
124
125         table_section(2, "33%");
126
127         if (isset($_POST['_tran_date_changed'])) {
128                 $Ajax->activate('_ex_rate');
129                 $supp_trans->tran_date = $_POST['tran_date'];
130                 get_duedate_from_terms($supp_trans);
131                 $_POST['due_date'] = $supp_trans->due_date;
132                 $Ajax->activate('due_date');
133         }
134
135     date_row(_("Due Date") . ":", 'due_date');
136
137     label_row(_("Terms:"), $supp_trans->terms['description']);
138
139         if (get_company_pref('use_dimension'))
140                 dimensions_list_row(_('Dimension').':', 'dimension', null, true, _('Default'), false, 1);
141
142         if (get_company_pref('use_dimension') == 2)
143                 dimensions_list_row(_('Dimension 2').':', 'dimension2', null, true, _('Default'), false, 2);
144
145         table_section(3, "33%");
146
147         set_global_supplier($_POST['supplier_id']);
148
149         $supplier_currency = get_supplier_currency($supp_trans->supplier_id);
150
151         $company_currency = get_company_currency();
152
153         if ($supplier_currency != $company_currency)
154         {
155         label_row(_("Supplier's Currency:"), "<b>" . $supplier_currency . "</b>");
156                 exchange_rate_display($company_currency, $supplier_currency, $_POST['tran_date']);
157         }
158
159         label_row(_("Tax Group:"), $supp_trans->tax_description);
160         supplier_credit_row($supp_trans->supplier_id, $supp_trans->credit);
161
162         end_outer_table(1);
163 }
164
165 //--------------------------------------------------------------------------------------------------
166
167 function invoice_totals(&$supp_trans)
168 {
169         global $Ajax;
170
171         copy_to_trans($supp_trans);
172
173         $dim = get_company_pref('use_dimension');
174         $colspan = ($dim == 2 ? 7 : ($dim == 1 ? 6 : 5));
175         div_start('tax_table');
176         start_table(TABLESTYLE, "width='95%'");
177         label_row(_("Sub-total:"), price_format( $supp_trans->ov_amount), "colspan=$colspan align=right", "align=right");
178
179     $taxes = $supp_trans->get_taxes($supp_trans->tax_group_id);
180     $tax_total = display_edit_tax_items($taxes, $colspan, $supp_trans->tax_included, 0, true);
181
182     $display_total = price_format($supp_trans->ov_amount + $tax_total);
183
184         if ($supp_trans->trans_type == ST_SUPPINVOICE)
185         label_row(_("Invoice Total:"), 
186                 $display_total, "colspan=$colspan align=right style='font-weight:bold;'", "align=right style='font-weight:bold;'");
187     else
188                 label_row(_("Credit Note Total"),
189                         $display_total, "colspan=$colspan align=right style='font-weight:bold;color:red;'", "nowrap align=right style='font-weight:bold;color:red;'");
190
191     end_table(1);
192     start_table(TABLESTYLE2);
193     textarea_row(_("Memo:"), "Comments", null, 50, 3);
194     end_table(1);
195         div_end();
196 }
197
198 //--------------------------------------------------------------------------------------------------
199 function display_gl_controls(&$supp_trans, $k)
200 {
201         $accs = get_supplier_accounts($supp_trans->supplier_id);
202         $_POST['gl_code'] = $accs['purchase_account'] ? 
203                 $accs['purchase_account'] : get_company_pref('default_cogs_act');
204
205         alt_table_row_color($k);
206         echo gl_all_accounts_list('gl_code', null, true, true);
207         $dim = get_company_pref('use_dimension');
208         if ($dim >= 1)
209                 dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
210         if ($dim > 1)
211                 dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
212         amount_cells(null, 'amount');
213         if ($dim < 1)   
214                 text_cells_ex(null, 'memo_', 35, 50, null, null, null, hidden('dimension_id', 0, false).hidden('dimension2_id', 0, false));
215         elseif ($dim < 2)       
216                 text_cells_ex(null, 'memo_', 35, 50, null, null, null, hidden('dimension2_id', 0, false));
217         else    
218                 text_cells_ex(null, 'memo_', 35, 50, null, null, null);
219         submit_cells('AddGLCodeToTrans', _("Add"), "",
220                     _('Add GL Line'), true);
221         submit_cells('ClearFields', _("Reset"), "",
222                     _("Clear all GL entry fields"), true);
223         end_row();      
224 }
225
226 // $mode = 0 none at the moment
227 //               = 1 display on invoice/credit page
228 //               = 2 display on view invoice
229 //               = 3 display on view credit
230
231 function display_gl_items(&$supp_trans, $mode=0)
232 {
233         global $path_to_root, $Ajax;
234
235     // if displaying in form, and no items, exit
236     if (($mode == 2 || $mode == 3) && count($supp_trans->gl_codes) == 0)
237         return 0;
238
239         if ($supp_trans->trans_type == ST_SUPPINVOICE)
240                 $heading = _("GL Items for this Invoice");
241         else
242                 $heading = _("GL Items for this Credit Note");
243
244         start_outer_table(TABLESTYLE, "width='95%'");
245
246         if ($mode == 1)
247         {
248                 $qes = has_quick_entries(QE_SUPPINV);
249                 if ($qes !== false)
250                 {
251                         echo "<div style='float:right;'>";
252                         echo _("Quick Entry:")."&nbsp;"; 
253                         echo quick_entries_list('qid', null, QE_SUPPINV, true);
254                         $qid = get_quick_entry(get_post('qid'));
255                         if (list_updated('qid')) {
256                                 unset($_POST['totamount']); // enable default
257                                 $Ajax->activate('totamount');
258                         }
259                         echo "&nbsp;".$qid['base_desc'].":"."&nbsp;";
260
261                         $amount = input_num('totamount', $qid['base_amount']);
262                         $dec = user_price_dec();
263                         echo "<input class='amount' type='text' name='totamount' size='7' maxlength='12' dec='$dec' value='$amount'>&nbsp;";
264                         submit('go', _("Go"), true, false, true);
265                         echo "</div>";
266
267                 }       
268         }
269         display_heading($heading);
270
271         end_outer_table(0, false);
272
273         div_start('gl_items');
274         start_table(TABLESTYLE, "width='95%'");
275
276         $dim = get_company_pref('use_dimension');
277         if ($dim == 2)
278         $th = array(_("Account"), _("Name"), _("Dimension")." 1", _("Dimension")." 2", _("Amount"), _("Memo"));
279         elseif ($dim == 1)
280         $th = array(_("Account"), _("Name"), _("Dimension"), _("Amount"), _("Memo"));
281     else
282         $th = array(_("Account"), _("Name"), _("Amount"), _("Memo"));
283
284         if ($mode == 1)
285         {
286                 $th[] = "";
287                 $th[] = "";
288         }       
289         table_header($th);
290         $total_gl_value=$total = 0;
291         $i = $k = 0;
292
293         if (count($supp_trans->gl_codes) > 0)
294         {
295
296                 foreach ($supp_trans->gl_codes as $entered_gl_code)
297                 {
298
299                         alt_table_row_color($k);
300
301                         if ($mode == 3)
302                                 $entered_gl_code->amount = -$entered_gl_code->amount;
303
304                         label_cell($entered_gl_code->gl_code);
305                         label_cell($entered_gl_code->gl_act_name);
306
307                         if ($dim >= 1)
308                                 label_cell(get_dimension_string($entered_gl_code->gl_dim, true));
309                         if ($dim > 1)
310                                 label_cell(get_dimension_string($entered_gl_code->gl_dim2, true));
311
312                         amount_cell($entered_gl_code->amount, true);
313                         label_cell($entered_gl_code->memo_);
314
315                         if ($mode == 1)
316                         {
317                                 delete_button_cell("Delete2" . $entered_gl_code->Counter, _("Delete"),
318                                           _('Remove line from document'));
319                                 label_cell("");
320                         }       
321                         end_row();
322                         if ($mode > 1) {
323                                 if ($supp_trans->tax_included || !is_tax_account($entered_gl_code->gl_code))
324                                         $total_gl_value += $entered_gl_code->amount;
325                         }               
326                         else    
327                                 $total_gl_value += $entered_gl_code->amount;
328                         $total += $entered_gl_code->amount;     
329                         $i++;
330                         if ($i > 15)
331                         {
332                                 $i = 0;
333                                 table_header($th);
334                         }
335                 }
336
337         }
338         if ($mode == 1)
339                 display_gl_controls($supp_trans, $k);
340         $colspan = ($dim == 2 ? 4 : ($dim == 1 ? 3 : 2));
341         label_row(_("Total"), price_format($total),
342                 "colspan=".$colspan." align=right", "nowrap align=right", ($mode==1?3:1));
343
344         end_table(1);
345         div_end();
346
347         return $total_gl_value;
348 }
349
350 //--------------//-----------------------------------------------------------------------------------------
351
352 function display_grn_items_for_selection(&$supp_trans, $k)
353 {
354         if ($supp_trans->trans_type == ST_SUPPINVOICE)  // outstanding grns and eventually for selected invoice
355                 $result = get_grn_items(0, $supp_trans->supplier_id, true, false, $supp_trans->trans_no);
356         else
357         { // only invoiced
358                 if (isset($_POST['receive_begin']) && isset($_POST['receive_end']))
359                         $result = get_grn_items(0, $supp_trans->supplier_id, false, true, 0, $_POST['receive_begin'], $_POST['receive_end']);
360                 elseif ($supp_trans->src_docs)
361                         $result = get_grn_items(0, $supp_trans->supplier_id, false, true, array_keys($supp_trans->src_docs));
362                 else
363                         $result = get_grn_items(0, $supp_trans->supplier_id, false, true);
364         }
365     if (db_num_rows($result) == 0)
366     {
367         return false;
368     }
369
370     /*Set up a table to show the outstanding GRN items for selection */
371     while ($myrow = db_fetch($result))
372     {
373                 $grn_already_on_invoice = false;
374
375         foreach ($supp_trans->grn_items as $entered_grn)
376         {
377                 if ($entered_grn->id == $myrow["id"])
378                 {
379                         $grn_already_on_invoice = true;
380                 }
381         }
382
383         if ($grn_already_on_invoice == false)
384         {
385                         alt_table_row_color($k);
386
387                         $n = $myrow["id"];
388                         label_cell(get_trans_view_str(ST_SUPPRECEIVE, $myrow["grn_batch_id"]), "nowrap align='right'");
389                         hidden('qty_recd'.$n, $myrow["qty_recd"]);
390                 hidden('item_code'.$n, $myrow["item_code"]);
391                 hidden('item_description'.$n, $myrow["description"]);
392                 hidden('prev_quantity_inv'.$n, $myrow['quantity_inv']);
393                 hidden('order_price'.$n, $myrow['unit_price']);
394                 hidden('std_cost_unit'.$n, $myrow['std_cost_unit']);
395                 hidden('po_detail_item'.$n, $myrow['po_detail_item']);
396                 label_cell(get_trans_view_str(ST_PURCHORDER, $myrow["purch_order_no"]), "nowrap align='right'");
397             label_cell($myrow["item_code"]);
398             label_cell($myrow["description"]);
399             label_cell(sql2date($myrow["delivery_date"]));
400             $dec = get_qty_dec($myrow["item_code"]);
401             qty_cell($myrow["qty_recd"], false, $dec);
402             qty_cell($myrow["quantity_inv"], false, $dec);
403             if ($supp_trans->trans_type == ST_SUPPINVOICE)
404                 qty_cells(null, 'this_quantity_inv'.$n, number_format2($myrow["qty_recd"] - $myrow["quantity_inv"], $dec), 
405                         null, null, $dec);
406             else
407                 qty_cells(null, 'This_QuantityCredited'.$n, number_format2(max($myrow["quantity_inv"], 0), $dec), 
408                         null, null, $dec);
409             $dec2 = 0;
410             if ($supp_trans->trans_type == ST_SUPPINVOICE)
411             {
412                 amount_cells(null, 'ChgPrice'.$n, price_decimal_format($myrow["unit_price"], $dec2), null, null, $dec2);
413                 amount_cell(round2($myrow["unit_price"] * ($myrow["qty_recd"] - $myrow["quantity_inv"]), user_price_dec()));
414             }
415             else
416             {
417                 amount_cells(null, 'ChgPrice'.$n, price_decimal_format($myrow["act_price"], $dec2), null, null, $dec2);
418                 amount_cell(round2($myrow["act_price"] * max($myrow['quantity_inv'], 0), user_price_dec()));
419             }   
420             if ($supp_trans->trans_type == ST_SUPPINVOICE)
421                         submit_cells('grn_item_id'.$n, _("Add"), '', _("Add to Invoice"), true);
422                 else    
423                         submit_cells('grn_item_id'.$n, _("Add"), '', _("Add to Credit Note"), true);
424                 if (($supp_trans->trans_type == ST_SUPPINVOICE) && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) {  // Added 2008-10-18 by Joe Hunt. Special access rights needed.
425                         submit_cells('void_item_id'.$n, _("Remove"), '', _("WARNING! Be careful with removal. The operation is executed immediately and cannot be undone !!!"), true);
426                                 submit_js_confirm('void_item_id'.$n,
427                                         sprintf(_('You are about to remove all yet non-invoiced items from delivery line #%d. This operation also irreversibly changes related order line. Do you want to continue ?'), $n));
428                         }
429                         end_row();
430         }
431     }
432     return true;
433 }
434
435 //------------------------------------------------------------------------------------
436
437 // $mode = 0 none at the moment
438 //               = 1 display on invoice/credit page
439 //               = 2 display on view invoice
440 //               = 3 display on view credit
441
442 function display_grn_items(&$supp_trans, $mode=0)
443 {
444         global $path_to_root;
445
446     $ret = true;
447     // if displaying in form, and no items, exit
448     if (($mode == 2  || $mode == 3) && count($supp_trans->grn_items) == 0)
449         return 0;
450
451         start_outer_table("style='border:1px solid #cccccc;' width='95%'");
452
453         $heading2 = "";
454         if ($mode == 1)
455         {
456                 if ($supp_trans->trans_type == ST_SUPPINVOICE)
457                 {
458                         $heading = _("Items Received Yet to be Invoiced");
459                 if ($_SESSION["wa_current_user"]->can_access('SA_GRNDELETE'))   // Added 2008-10-18 by Joe Hunt. Only admins can remove GRNs
460                                 $heading2 = _("WARNING! Be careful with removal. The operation is executed immediately and cannot be undone !!!");
461                 }
462                 else
463                         $heading = _("Delivery Item Selected For Adding To A Supplier Credit Note");
464         }
465         else
466         {
467                 if ($supp_trans->trans_type == ST_SUPPINVOICE)
468                         $heading = _("Received Items Charged on this Invoice");
469                 else
470                         $heading = _("Received Items Credited on this Note");
471         }
472
473         display_heading($heading);
474
475         if ($mode == 1)
476         {
477                 if ($supp_trans->trans_type == ST_SUPPCREDIT)
478                 {
479                         echo "</td>";
480                         date_cells(_("Received between"), 'receive_begin', "", null, 
481                                 -user_transaction_days(), 0, 0, "valign=middle");
482                         date_cells(_("and"), 'receive_end', '', null, 1, 0, 0, "valign=middle");
483                         submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), true);
484                         echo "<td>";
485                 }
486
487                 if ($heading2 != "")
488                 {
489                         display_note($heading2, 0, 0, "class='overduefg'");
490                 }
491                 echo "</td><td width='10%' align='right'>";
492                 submit('InvGRNAll', _("Add All Items"), true, false,true);
493         }
494
495         end_outer_table(0, false);
496
497         div_start('grn_items');
498         start_table(TABLESTYLE, "width='95%'");
499         if ($mode == 1)
500         {
501         $th = array(_("Delivery"), _("P.O."), _("Item"), _("Description"),
502                 _("Received On"), _("Quantity Received"), _("Quantity Invoiced"),
503                 _("Qty Yet To Invoice"), $supp_trans->tax_included ? _("Price after Tax") : _("Price before Tax"), 
504                 _("Total"), "");
505         if (($supp_trans->trans_type == ST_SUPPINVOICE) && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE'))    // Added 2008-10-18 by Joe Hunt. Only admins can remove GRNs
506                 $th[] = "";
507                 if ($supp_trans->trans_type == ST_SUPPCREDIT)
508                 {
509                         $th[7] = _("Qty Yet To Credit");
510                 }
511     }
512     else
513                 $th = array(_("Delivery"), _("Item"), _("Description"),
514                         _("Quantity"), _("Price"), _("Line Value"));
515
516         table_header($th);
517     $total_grn_value = 0;
518     $i = $k = 0;
519
520         if (count($supp_trans->grn_items) > 0)
521         {
522
523         foreach ($supp_trans->grn_items as $entered_grn)
524         {
525
526                 alt_table_row_color($k);
527
528                         $grn_batch = get_grn_batch_from_item($entered_grn->id);
529                 label_cell(get_trans_view_str(ST_SUPPRECEIVE, $grn_batch));
530                 if ($mode == 1)
531                 {
532 //                              label_cell($entered_grn->id);
533                                 $row = get_grn_batch($grn_batch);
534                                 label_cell(get_trans_view_str(ST_PURCHORDER, $row["purch_order_no"])); // PO
535                         }       
536                         label_cell($entered_grn->item_code);
537                         label_cell($entered_grn->item_description);
538             $dec = get_qty_dec($entered_grn->item_code);
539             if ($mode == 1)
540             {
541                         label_cell(sql2date($row['delivery_date']));
542                                 qty_cell($entered_grn->qty_recd, false, $dec);
543                                 qty_cell($entered_grn->prev_quantity_inv, false, $dec);
544             }
545                         qty_cell(abs($entered_grn->this_quantity_inv), true, $dec);
546                         amount_decimal_cell($entered_grn->chg_price);
547                         amount_cell( round2($entered_grn->chg_price * abs($entered_grn->this_quantity_inv), user_price_dec()), true);
548
549                         if ($mode == 1)
550                         {
551                                 delete_button_cell("Delete" . $entered_grn->id, _("Edit"), _('Edit document line'));
552                                 if (($supp_trans->trans_type == ST_SUPPINVOICE) && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE'))      
553                                         label_cell("");
554                         }       
555                         end_row();
556
557                 $total_grn_value += round2($entered_grn->chg_price * abs($entered_grn->this_quantity_inv),
558                            user_price_dec());
559
560                 $i++;
561                 if ($i > 15)
562                 {
563                         $i = 0;
564                         table_header($th);
565                 }
566         }
567     }
568         if ($mode == 1)
569         {
570                 $ret = display_grn_items_for_selection($supp_trans, $k);
571         $colspan = 9;
572         }
573         else
574                 $colspan = 5;
575         label_row(_("Total"), price_format($total_grn_value),
576                 "colspan=$colspan align=right", "nowrap align=right");
577         if (!$ret)
578         {
579                 start_row();
580                 echo "<td colspan=".($colspan + 1).">";
581                 if ($supp_trans->trans_type == ST_SUPPINVOICE)
582                         display_note(_("There are no outstanding items received from this supplier that have not been invoiced by them."), 0, 0);
583                 else
584                 {
585                         display_note(_("There are no received items for the selected supplier that have been invoiced."));
586                         display_note(_("Credits can only be applied to invoiced items."), 0, 0);
587                 }
588                 echo "</td>";
589                 end_row();
590         }       
591     end_table(1);
592     div_end();
593
594         return $total_grn_value;
595 }
596
597 //--------------------------------------------------------------------------------------------------
598 function get_duedate_from_terms(&$trans)
599 {
600         $date = get_class($trans) == 'purch_order' ? $trans->orig_order_date : $trans->tran_date;
601
602         if (!is_date($date))
603         {
604                 $date = Today();
605         }
606         if ($trans->terms['day_in_following_month'])
607         { /*Its a day in the following month when due */
608                 $trans->due_date =
609                         add_days(end_month($date), $trans->terms["day_in_following_month"]);
610         }
611         else
612         { /*Use the Days Before Due to add to the invoice date */
613                 $trans->due_date = add_days($date, $trans->terms["days_before_due"]);
614         }
615 }
616
617 //--------------------------------------------------------------------------------------------------
618