Fixed bug [0000116] - & display issue
[fa-stable.git] / sales / inquiry / sales_deliveries_view.php
index 794378b5c0bc97cc8ede37ec88d713a8a825c977..4ea1a8241aa8d770f7ef9e9d3a8b8aa123399da2 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $page_security = 2;
 $path_to_root="../..";
 include($path_to_root . "/includes/db_pager.inc");
@@ -106,7 +115,7 @@ hidden('OutstandingOnly', $_POST['OutstandingOnly']);
 end_row();
 
 end_table();
-
+end_form();
 //---------------------------------------------------------------------------------------------
 
 if (isset($_POST['SelectStockFromList']) && ($_POST['SelectStockFromList'] != "") &&
@@ -139,19 +148,19 @@ function edit_link($row)
 {
        return $row["Outstanding"]==0 ? '' :
                pager_link(_('Edit'), "/sales/customer_delivery.php?ModifyDelivery="
-                       .$row['trans_no']);
+                       .$row['trans_no'], ICON_EDIT);
 }
 
 function prt_link($row)
 {
-       return print_document_link($row['trans_no'], _("Print"), true, 13);
+       return print_document_link($row['trans_no'], _("Print"), true, 13, ICON_PRINT);
 }
 
 function invoice_link($row)
 {
        return $row["Outstanding"]==0 ? '' :
                pager_link(_('Invoice'), "/sales/customer_invoice.php?DeliveryNumber=" 
-                       .$row['trans_no']);
+                       .$row['trans_no'], ICON_DOC);
 }
 
 function check_overdue($row)
@@ -228,7 +237,7 @@ $cols = array(
                _("Due By") => 'date', 
                _("Delivery Total") => array('type'=>'amount', 'ord'=>''),
                _("Currency") => array('align'=>'center'),
-               submit('BatchInvoice','Batch Inv', false
+               submit('BatchInvoice',_("Batch"), false, _("Batch Invoicing")
                        => array('insert'=>true, 'fun'=>'batch_checkbox', 'align'=>'center'),
                array('insert'=>true, 'fun'=>'edit_link'),
                array('insert'=>true, 'fun'=>'invoice_link'),
@@ -246,6 +255,12 @@ if (isset($_SESSION['Batch']))
 $table =& new_db_pager('deliveries_tbl', $sql, $cols);
 $table->set_marker('check_overdue', _("Marked items are overdue."));
 
+if (get_post('SearchOrders')) {
+       $table->set_sql($sql);
+       $table->set_columns($cols);
+}
+//$table->width = "92%";
+
 start_form();
 
 display_db_pager($table);