Skip to content

Commit

Permalink
MainWindow::qsoToEdit refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
d authored and d committed Mar 24, 2024
1 parent cb2eeef commit 71085a1
Show file tree
Hide file tree
Showing 6 changed files with 407 additions and 469 deletions.
5 changes: 4 additions & 1 deletion src/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
TESTS to do before releasing:
- ADIF log Import
- LoTW log Import
- Edit QSO. Check how data comes from DB to the UI.
- Attention to name

- Receive QSOs from WSJTX:
- check if they are properly imported to the log.
- Test a dupe QSO, a message should be shown
Expand All @@ -17,7 +20,7 @@ TBD - 2.4
- BugFix: Fixed the ISO name for Togo.
- BugFix: Country fix read failed with complex prefixes.
- Bugfix: CQ & ITU zones may be wrong for callsigns from specific DXCC if coming from WSJTX.

- Bugfix: ClubLog date was not properly managed.

Mar 2024 - 2.3.4
- BugFix: After Editing a QSO, lotw_qsl_rcvd is emptied (Closes #656, #659) (TNX N6PAZ, EA5WA)
Expand Down
2 changes: 1 addition & 1 deletion src/dataproxy_sqlite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8288,7 +8288,7 @@ QString DataProxy_SQLite::getADIFFromQSOQuery(QSqlRecord rec, ExportMode _em, bo
qso.setLoTWQSL_SENT(getADIFValueFromRec(rec, "lotw_qsl_sent"));

aux = getADIFValueFromRec(rec, "clublog_qso_upload_date");
qso.setClublogQSOUpdateDate(util->getDateFromSQliteString(aux));
qso.setClubLogDate(util->getDateFromSQliteString(aux));

qso.setClubLogStatus(getADIFValueFromRec(rec, "clublog_qso_upload_status"));

Expand Down
Loading

0 comments on commit 71085a1

Please sign in to comment.