Skip to content

Commit

Permalink
GMP, Reportign & e-Signing : fix for bad filenames for combined RI+IP…
Browse files Browse the repository at this point in the history
… runs preventing seeing downoaded report and eSigning ...
  • Loading branch information
alexsav815 committed Sep 29, 2024
1 parent b4ac7ca commit 41c6905
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions programs/us_esigner_gmp/us_esigner_gmp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -651,8 +651,8 @@ void US_eSignaturesGMP::loadGMPReportDB_assigned_separate( void )
//read 'data' .tar.gz for autoflowGMPReport record:
if ( gmpReport_runname_selected_c. contains("combined") )
{
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0];
gmpReport_runname_selected. simplified();
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0]. simplified();
//gmpReport_runname_selected. simplified();
}
else
gmpReport_runname_selected = gmpReport_runname_selected_c;
Expand Down Expand Up @@ -3237,8 +3237,8 @@ void US_eSignaturesGMP::loadGMPReportDB_assigned_auto( QString aID_passed )
//Correct name for 'combined' runs:
if ( gmpReport_runname_selected_c. contains("combined") )
{
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0];
gmpReport_runname_selected. simplified();
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0]. simplified();
//gmpReport_runname_selected. simplified();
}
else
gmpReport_runname_selected = gmpReport_runname_selected_c;
Expand Down Expand Up @@ -3388,8 +3388,8 @@ void US_eSignaturesGMP::loadGMPReportDB_assigned( void )
//read 'data' .tar.gz for autoflowGMPReport record:
if ( gmpReport_runname_selected_c. contains("combined") )
{
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0];
gmpReport_runname_selected. simplified();
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0]. simplified();
//gmpReport_runname_selected. simplified();
}
else
gmpReport_runname_selected = gmpReport_runname_selected_c;
Expand Down
4 changes: 2 additions & 2 deletions programs/us_reporter_gmp/us_reporter_gmp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1398,8 +1398,8 @@ void US_ReporterGMP::load_gmp_report_db ( void )
//read 'data' .tar.gz for autoflowGMPReport record:
if ( gmpReport_runname_selected_c. contains("combined") )
{
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0];
gmpReport_runname_selected. simplified();
gmpReport_runname_selected = gmpReport_runname_selected_c.split("(")[0]. simplified();
//gmpReport_runname_selected. simplified();
}
else
gmpReport_runname_selected = gmpReport_runname_selected_c;
Expand Down

0 comments on commit 41c6905

Please sign in to comment.