php 8 error. class.mail.inc. line 149. #5 parameter cannot be null.
[fa-stable.git] / purchasing / inquiry / po_search_completed.php
index 5b1ac45caa9b1f7c1063df2a2de6f353fd31a578..4046424e69f39b5b0a0d504bdd9a97092800f1dd 100644 (file)
@@ -38,9 +38,18 @@ function edit_link($row)
                trans_editor_link(ST_PURCHORDER, $row["order_no"]);
 }
 
+function receive_link($row) 
+{
+       global $page_nested;
+       
+       return $page_nested || !$row['OverDue'] ? '' :
+               pager_link( _("Receive"),
+                       "/purchasing/po_receive_items.php?PONumber=" . $row["order_no"], ICON_RECEIVE);
+}
+
 function prt_link($row)
 {
-       return print_document_link($row['order_no'], _("Print"), true, 18, ICON_PRINT);
+       return print_document_link($row['order_no'], _("Print"), true, ST_PURCHORDER, ICON_PRINT);
 }
 
 if (isset($_GET['order_number']))
@@ -107,7 +116,7 @@ $sql = get_sql_for_po_search_completed(get_post('OrdersAfterDate'), get_post('Or
        get_post('SelectStockFromList'), get_post('also_closed'));
 
 $cols = array(
-               _("#") => array('fun'=>'trans_view', 'ord'=>''), 
+               _("#") => array('fun'=>'trans_view', 'ord'=>'', 'align'=>'right'), 
                _("Reference"), 
                _("Supplier") => array('ord'=>''),
                _("Location"),
@@ -116,7 +125,8 @@ $cols = array(
                _("Currency") => array('align'=>'center'), 
                _("Order Total") => 'amount',
                array('insert'=>true, 'fun'=>'edit_link'),
-               array('insert'=>true, 'fun'=>'prt_link'),
+               array('insert'=>true, 'fun'=>'receive_link'),
+               array('insert'=>true, 'fun'=>'prt_link')
 );
 
 if (get_post('StockLocation') != ALL_TEXT) {