|
@ -2426,9 +2426,12 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(required = true) Integer status,
|
|
|
@ApiParam(name = "prescriptionId", value = "prescriptionId", required = true)
|
|
|
@RequestParam(required = true) String prescriptionId,HttpServletRequest request) throws Exception {
|
|
|
|
|
|
|
|
|
WlyyPrescriptionCheckDO wlyyPrescriptionCheckDO = prescriptionService.saveCheck(operate, operateName, reason, status, prescriptionId, wxId,getIpAddress(request));
|
|
|
WlyyPrescriptionCheckDO wlyyPrescriptionCheckDO = null;
|
|
|
try {
|
|
|
wlyyPrescriptionCheckDO = prescriptionService.saveCheck(operate, operateName, reason, status, prescriptionId, wxId,getIpAddress(request));
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
try {
|
|
|
|
|
|
WlyyPrescriptionDO wlyyPrescriptionDO = prescriptionService.findPrescriptionDo(prescriptionId);
|