function getProductRows()
 {
     $return_array = array();
     if ($this->id != "") {
         $quoteLine = new QuoteLine();
         $return_array = $quoteLine->get_full_list("id", "quoteid='" . $this->id . "'");
     }
     return $return_array;
 }