|
@@ -4,6 +4,7 @@ import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
|
import com.lantone.qc.pub.model.doc.ClinicalBloodDoc;
|
|
|
+import com.lantone.qc.pub.util.StringUtil;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
@@ -31,8 +32,9 @@ public class CLI0563 extends QCCatalogue {
|
|
|
if(cliBStructureMap.containsKey("输注开始")){
|
|
|
if(!StringUtils.isEmpty(cliBStructureMap.get("输注开始"))){
|
|
|
try {
|
|
|
- Date date_in = new SimpleDateFormat(FORMAT_LONC_CN_MI).parse(cliBStructureMap.get("输注开始"));
|
|
|
- } catch (ParseException e) {
|
|
|
+ //Date date_in = new SimpleDateFormat(FORMAT_LONC_CN_MI).parse(cliBStructureMap.get("输注开始"));
|
|
|
+ Date date_in = StringUtil.parseDateTime(cliBStructureMap.get("输注开始"));
|
|
|
+ } catch (Exception e) {
|
|
|
status.set("-1");
|
|
|
break;
|
|
|
}
|