diff --git a/README.md b/README.md index 511e3e99d..23a1e3415 100644 --- a/README.md +++ b/README.md @@ -49,17 +49,17 @@ Qt6 version ``` git clone https://github.com/Quick-Event/quickbox.git cd quickbox -git switch qt6 -git submodule update --init --recursive -cmake -S . -B build -DCMAKE_PREFIX_PATH:PATH=~/app/qt/6.5.1/gcc_64 -DQF_BUILD_QML_PLUGINS=ON --install-prefix `pwd`/build/install +git switch qe3 +git submodule update --init +cmake -S . -B build -DCMAKE_PREFIX_PATH:PATH=~/app/qt/6.6.1/gcc_64 -DQF_BUILD_QML_PLUGINS=ON --install-prefix `pwd`/build/install cd build cmake --build . -j8 # to install cmake --install . # to run -LD_LIBRARY_PATH=../lib:~/app/qt5/6.5.1/gcc_64/lib ./install/quickevent +LD_LIBRARY_PATH=../lib:~/app/qt5/6.6.1/gcc_64/lib ./install/quickevent ``` -If you want to use system Qt for build, then remove CLI option `-DCMAKE_PREFIX_PATH:PATH=/home/fanda/app/qt5/6.5.1/gcc_64` +If you want to use system Qt for build, then remove CLI option `-DCMAKE_PREFIX_PATH:PATH=/home/fanda/app/qt5/6.6.1/gcc_64` ## Install #### Windows diff --git a/quickevent/app/quickevent/plugins/Runs/src/runswidget.cpp b/quickevent/app/quickevent/plugins/Runs/src/runswidget.cpp index 7fc050ed4..95dea7768 100644 --- a/quickevent/app/quickevent/plugins/Runs/src/runswidget.cpp +++ b/quickevent/app/quickevent/plugins/Runs/src/runswidget.cpp @@ -220,8 +220,21 @@ void RunsWidget::settleDownInPartWidget(quickevent::gui::PartWidget *part_widget auto *a = new qfw::Action(tr("&Competitors with rented cards")); connect(a, &qfw::Action::triggered, [this]() { qff::MainWindow *fwk = qff::MainWindow::frameWork(); + quickevent::gui::ReportOptionsDialog dlg(fwk); + dlg.setPersistentSettingsId("competitorsWithRentedCards"); + dlg.loadPersistentSettings(); + dlg.setClassFilterVisible(false); + dlg.setStartListOptionsVisible(false); + dlg.setStartListPrintVacantsVisible(false); + dlg.setPageLayoutVisible(true); + dlg.setStartTimeFormatVisible(false); + dlg.setStartlistOrderFirstByVisible(false); + if(!dlg.exec()) + return; + auto opts = dlg.optionsMap(); QVariantMap props; props["stageId"] = selectedStageId(); + props["options"] = opts; qf::qmlwidgets::reports::ReportViewWidget::showReport(fwk , getPlugin()->findReportFile("competitorsWithCardRent.qml") , QVariant()