|
@@ -6,6 +6,7 @@ import com.lantone.qc.pub.model.InputInfo;
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
import com.lantone.qc.pub.model.doc.FirstCourseRecordDoc;
|
|
import com.lantone.qc.pub.model.doc.FirstCourseRecordDoc;
|
|
import com.lantone.qc.pub.model.entity.Lis;
|
|
import com.lantone.qc.pub.model.entity.Lis;
|
|
|
|
+import com.lantone.qc.pub.model.entity.Pacs;
|
|
import com.lantone.qc.pub.model.label.TreatPlanLabel;
|
|
import com.lantone.qc.pub.model.label.TreatPlanLabel;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@@ -25,8 +26,8 @@ public class FIRC0502 extends QCCatalogue {
|
|
FirstCourseRecordDoc firstCourseRecordDoc = inputInfo.getFirstCourseRecordDoc();
|
|
FirstCourseRecordDoc firstCourseRecordDoc = inputInfo.getFirstCourseRecordDoc();
|
|
if(firstCourseRecordDoc != null){
|
|
if(firstCourseRecordDoc != null){
|
|
TreatPlanLabel treatPlanLabel = firstCourseRecordDoc.getTreatPlanLabel();
|
|
TreatPlanLabel treatPlanLabel = firstCourseRecordDoc.getTreatPlanLabel();
|
|
- List<Lis> lis = treatPlanLabel.getLis();
|
|
|
|
- if(lis == null || lis.size() == 0){
|
|
|
|
|
|
+ List<Pacs> pacs = treatPlanLabel.getPacs();
|
|
|
|
+ if(pacs == null || pacs.size() == 0){
|
|
status.set("-1");
|
|
status.set("-1");
|
|
}
|
|
}
|
|
|
|
|