propose filename for seller export
This commit is contained in:
parent
1aa56f24a3
commit
bc9e395ee9
2 changed files with 4 additions and 3 deletions
1
3rdparty/nlohmann_json
vendored
Submodule
1
3rdparty/nlohmann_json
vendored
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit f1768a540a7b7c5cc30cdcd6be9e9ef91083719b
|
|
@ -260,7 +260,7 @@ void MainWindow::checkSellerNo(bool ctrlPressed)
|
|||
auto seller = marketplace_->findSellerWithSellerNo(sellerNo);
|
||||
if (seller) {
|
||||
PriceDialog priceDialog(this);
|
||||
if(sellerNo == 0) {
|
||||
if (sellerNo == 0) {
|
||||
priceDialog.setForceDesc(true);
|
||||
}
|
||||
auto dialogResult = priceDialog.exec();
|
||||
|
@ -476,8 +476,8 @@ void MainWindow::onImportSellerJsonActionTriggered()
|
|||
|
||||
void MainWindow::onExportSellerJsonActionTriggered()
|
||||
{
|
||||
auto filename = QFileDialog::getSaveFileName(this, "Verkäufer exportieren", QString(),
|
||||
"JSON Dateien (*.json)");
|
||||
auto filename = QFileDialog::getSaveFileName(
|
||||
this, "Verkäufer exportieren", QString("kima2_verkaeufer.json"), "JSON Dateien (*.json)");
|
||||
|
||||
if (filename.isEmpty())
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue