Merge branch 'bpm1992-rdlib_fix1' into stable

This commit is contained in:
Fred Gleason 2016-04-26 16:44:51 -04:00
commit 95bc2bb12c
2 changed files with 4 additions and 1 deletions

View File

@ -15090,3 +15090,6 @@
2016-04-26 Brian McGlynn <brian.mcglynn@geneseemedia.net>
* Updated lib/rdcae.cpp to return error code when file does not exist
in /var/snd
2015-04-26 Brian McGlynn <brian.mcglynn@geneseemedia.net>
* Added "Group By" statement in 'rdlibrary/rdlibrary.cpp' to allow a
full 100 results to be shown

View File

@ -1090,7 +1090,7 @@ void MainWidget::RefreshList()
RDCartSearchText(lib_filter_edit->text(),lib_group_box->currentText(),
schedcode,true)+" && "+type_filter;
}
sql+=" order by CART.NUMBER";
sql+=" group by CART.NUMBER order by CART.NUMBER";
if(lib_showmatches_box->isChecked()) {
sql+=QString().sprintf(" limit %d",RD_LIMITED_CART_SEARCH_QUANTITY);
}