|
|
@@ -11,6 +11,7 @@ import com.fs.common.utils.StringUtils;
|
|
|
import com.fs.common.utils.poi.ExcelUtil;
|
|
|
import com.fs.his.domain.FsPrescribeDataScrm;
|
|
|
import com.fs.his.dto.*;
|
|
|
+import com.fs.his.service.IFsPrescibeRecordDataScrmService;
|
|
|
import com.fs.his.service.IFsPrescribeDataScrmService;
|
|
|
import com.fs.his.vo.CustomerInfoVO;
|
|
|
import com.fs.his.vo.DoctorSignVO;
|
|
|
@@ -39,6 +40,9 @@ public class FsPrescribeDataScrmController extends BaseController
|
|
|
@Autowired
|
|
|
private IFsPrescribeDataScrmService fsPrescribeScrmService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IFsPrescibeRecordDataScrmService recordDataScrmService;
|
|
|
+
|
|
|
@Autowired
|
|
|
private IFsCompanyCustomerService fsCompanyCustomerService;
|
|
|
|
|
|
@@ -239,6 +243,14 @@ public class FsPrescribeDataScrmController extends BaseController
|
|
|
}
|
|
|
return AjaxResult.error("网络错误,提交失败");
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 药师--获取商城处方审核记录数据
|
|
|
+ * */
|
|
|
+ @GetMapping("/getAuditScrmPrescribeRecordList/{prescribeId}")
|
|
|
+ public AjaxResult getAuditRecordList(@PathVariable("prescribeId") Long prescribeId) {
|
|
|
+ return AjaxResult.success(recordDataScrmService.getAuditScrmPrescribeRecordListByPrescribeId(prescribeId));
|
|
|
+ }
|
|
|
/**
|
|
|
* 获取当前登录医生id
|
|
|
* */
|