Small optimization
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Sun, 3 May 2009 13:48:21 +0000 (13:48 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Sun, 3 May 2009 13:48:21 +0000 (13:48 +0000)
sales/includes/sales_db.inc

index 0533babe01964d8ea8314413332c49f0c312d3a2..1eb5e9060371c40d786d7897e9e09acab4e8c173 100644 (file)
@@ -289,15 +289,7 @@ function read_sales_trans($doc_type, $trans_no, &$cart)
                $cart->dimension2_id = $myrow['dimension2_id'];
                $cart->Comments = '';
                foreach ( $trans_no as $trans ) {
-                       $coms =  get_comments($doc_type,$trans);
-                       while($row=db_fetch($coms)) {
-                               $text = $row['memo_'];
-                               if ($text!='') {
-                                       if ($cart->Comments!='')
-                                               $cart->Comments .= "\n";
-                                       $cart->Comments .= $text;
-                               }
-                       }
+                       $cart->Comments .= get_comments_string($doc_type,$trans);
                }
 
                // FIX this should be calculated sum() for multiply parents