Sales Order Inquiry Sort Descenting?, Fixed.
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 13 Jan 2020 14:53:39 +0000 (15:53 +0100)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 13 Jan 2020 14:53:39 +0000 (15:53 +0100)
sales/includes/db/sales_order_db.inc
sales/inquiry/sales_orders_view.php

index 5da5cc5632d4c4bc0acbe316bc1177da4395a97a..efbf7ae00210ccd985b10d6efa2cbfb34e88812f 100644 (file)
@@ -557,7 +557,8 @@ function get_sql_for_sales_orders_view($trans_type, $trans_no, $filter,
                                        sorder.branch_code,
                                        sorder.customer_ref,
                                        sorder.ord_date,
-                                       sorder.deliver_to";
+                                       sorder.deliver_to
+                               ORDER BY sorder.order_no DESC";
        return $sql;
 }
 
index bc08889900f31fed6abf17d7a58d32c179c27d73..6a7186d952e2f716cdf245e877b1da17250751e9 100644 (file)
@@ -254,7 +254,7 @@ $sql = get_sql_for_sales_orders_view($trans_type, get_post('OrderNumber'), get_p
 
 if ($trans_type == ST_SALESORDER)
        $cols = array(
-               _("Order #") => array('fun'=>'view_link', 'align'=>'right'),
+               _("Order #") => array('fun'=>'view_link', 'align'=>'right', 'ord' =>''),
                _("Ref") => array('type' => 'sorder.reference', 'ord' => '') ,
                _("Customer") => array('type' => 'debtor.name' , 'ord' => '') ,
                _("Branch"), 
@@ -268,7 +268,7 @@ if ($trans_type == ST_SALESORDER)
        );
 else
        $cols = array(
-               _("Quote #") => array('fun'=>'view_link', 'align'=>'right'),
+               _("Quote #") => array('fun'=>'view_link', 'align'=>'right', 'ord' => ''),
                _("Ref"),
                _("Customer"),
                _("Branch"),