We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Interims field cannot be imported appropriately via two dimension csv in our use case, not sure it is expected behaviour for common lab use.
CSV example:
,analysis,interim1,interim2,end AP-0001,1,2,3, AP-0001-D01,4,5,6, QC-0001-001,7,8,9, end
Only AP-0001's interim1 can be imported. And following data cannot be loaded
All data can be imported via csv files.
https://github.com/senaite/senaite.core/blob/v2.5.0/src/senaite/core/exportimport/instruments/generic/two_dimension.py#L235C1-L236C1
Looks like the break and continue break the 2nd, 3rd, etc. interims import.
break
continue
https://github.com/senaite/senaite.core/blob/v2.5.0/src/senaite/core/exportimport/instruments/generic/two_dimension.py#L90
find_analyses function may need ReferenceAnalysis and DuplicateAnalysis handling
find_analyses
Thanks in advance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Interims field cannot be imported appropriately via two dimension csv in our use case, not sure it is expected behaviour for common lab use.
Reproduction guide
CSV example:
Observed behaviour
Only AP-0001's interim1 can be imported. And following data cannot be loaded
Expected behaviour
All data can be imported via csv files.
Versions
Cause
Only first interim can be imported
https://github.com/senaite/senaite.core/blob/v2.5.0/src/senaite/core/exportimport/instruments/generic/two_dimension.py#L235C1-L236C1
Looks like the
break
andcontinue
break the 2nd, 3rd, etc. interims import.ReferenceAnalysis or DuplicateAnalysis interim fields cannot be imported
https://github.com/senaite/senaite.core/blob/v2.5.0/src/senaite/core/exportimport/instruments/generic/two_dimension.py#L90
find_analyses
function may need ReferenceAnalysis and DuplicateAnalysis handlingThanks in advance
The text was updated successfully, but these errors were encountered: