Skip to content
Snippets Groups Projects
Commit 00d094aa authored by kohleman's avatar kohleman
Browse files

bug fix: handle a boolean property properly when it has not been set in a Excel-based upload

SVN: 28959
parent 603de238
No related branches found
No related tags found
No related merge requests found
......@@ -383,7 +383,11 @@ def getFLowcellData(service, configMap, flowcell, logger):
s[sampleCode.split("-")[-1]] = sampleProperties
sampleDict[lane] = s
pi = sanitizeString(sampleProperties[configMap["pIPropertyName"]])
sentInvoice = {'true': True, 'false': False}.get((sampleProperties['INVOICE']).lower())
invoiceProperty = sampleProperties['INVOICE']
# if sample got created via Excel upload, the property could be not set, which is represented by None
if (invoiceProperty is None):
invoiceProperty = 'false'
sentInvoice = {'true': True, 'false': False}.get(invoiceProperty.lower())
logger.debug("PI for " + sampleCode + ": " + pi)
logger.debug("Invoice sent for " + sampleCode + ": " + str(sentInvoice))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment