|
@ -3325,12 +3325,13 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
* @param realOrder 处方号
|
|
|
* @return
|
|
|
*/
|
|
|
public String getSFExpressInfo(String admNo,String realOrder)throws Exception {
|
|
|
public Object getSFExpressInfo(String admNo,String realOrder)throws Exception {
|
|
|
|
|
|
//根据门诊唯一号取就诊记录
|
|
|
List<WlyyOutpatientDO> wlyyOutpatientDOs = outpatientDao.findByAdmNo(admNo);
|
|
|
|
|
|
String result = "";
|
|
|
Object result = "";
|
|
|
|
|
|
|
|
|
if(!wlyyOutpatientDOs.isEmpty() && wlyyOutpatientDOs.size()>0){
|
|
|
List<WlyyPrescriptionExpressageDO> expressageDOList = sfexpressService.findByField("outpatientId",wlyyOutpatientDOs.get(0).getId());
|
|
@ -3378,7 +3379,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
sfJsonObject.put("pay_method",2);
|
|
|
sfJsonObject.put("receive_time","");
|
|
|
sfJsonObject.put("dispensaryType",2);
|
|
|
result = sfJsonObject.toJSONString();
|
|
|
result = sfJsonObject;
|
|
|
}
|
|
|
}
|
|
|
}
|