|
@ -0,0 +1,95 @@
|
|
|
package com.yihu.jw.care.service.activity;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.yihu.jw.care.dao.activity.ChildActivityRegistrationDao;
|
|
|
import com.yihu.jw.entity.base.patient.BasePatientDO;
|
|
|
import com.yihu.jw.entity.care.activity.ChildActivityRegistrationDO;
|
|
|
import com.yihu.jw.patient.dao.BasePatientDao;
|
|
|
import com.yihu.jw.restmodel.ResponseContant;
|
|
|
import com.yihu.jw.restmodel.web.PageEnvelop;
|
|
|
import com.yihu.jw.util.common.IdCardUtil;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* Created by yeshijie on 2021/10/16.
|
|
|
*/
|
|
|
@Service
|
|
|
public class ChildActivityRegistrationService {
|
|
|
|
|
|
@Autowired
|
|
|
private ChildActivityRegistrationDao childActivityRegistrationDao;
|
|
|
@Autowired
|
|
|
private BasePatientDao patientDao;
|
|
|
@Autowired
|
|
|
private JdbcTemplate jdbcTemplate;
|
|
|
|
|
|
/**
|
|
|
* 幼儿申请活动
|
|
|
* @param patient
|
|
|
* @param activityType
|
|
|
* @return
|
|
|
*/
|
|
|
public JSONObject applyActivity(String patient, String activityType){
|
|
|
JSONObject result = new JSONObject();
|
|
|
ChildActivityRegistrationDO activityRegistrationDO = childActivityRegistrationDao.findByPatientAndActivityType(patient, activityType);
|
|
|
if(activityRegistrationDO != null){
|
|
|
String failMsg = "您已报名过改类型的活动,请勿重复报名!";
|
|
|
result.put(ResponseContant.resultFlag, ResponseContant.fail);
|
|
|
result.put(ResponseContant.resultMsg, failMsg);
|
|
|
return result;
|
|
|
}
|
|
|
BasePatientDO patientDO = patientDao.findById(patient);
|
|
|
|
|
|
activityRegistrationDO = new ChildActivityRegistrationDO();
|
|
|
activityRegistrationDO.setActivityType(activityType);
|
|
|
activityRegistrationDO.setPatient(patient);
|
|
|
activityRegistrationDO.setPatientName(patientDO.getName());
|
|
|
childActivityRegistrationDao.save(activityRegistrationDO);
|
|
|
|
|
|
result.put(ResponseContant.resultFlag, ResponseContant.success);
|
|
|
result.put(ResponseContant.resultMsg, activityRegistrationDO);
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 活动报名列表查询
|
|
|
* @param patient
|
|
|
* @param activityType
|
|
|
* @param page
|
|
|
* @param size
|
|
|
*/
|
|
|
public PageEnvelop childActivityRegistrationList(String patient,String activityType, int page, int size){
|
|
|
String sql = "SELECT a.activity_type activityType,a.patient,p.name,p.sex,p.idcard,p.photo from base_child_activity_registration a,base_patient p " +
|
|
|
"WHERE a.patient = p.id";
|
|
|
|
|
|
String sqlCount = "select count(a.id) from base_child_activity_registration a,base_patient p WHERE a.patient = p.id ";
|
|
|
page = page>0?page-1:0;
|
|
|
String limit = " order by a.create_time desc limit "+page*size+","+size;
|
|
|
String filter = "";
|
|
|
if(StringUtils.isNotBlank(patient)){
|
|
|
filter += " and a.pateint = '"+patient+"' ";
|
|
|
}
|
|
|
if(StringUtils.isNotBlank(activityType)){
|
|
|
filter += " and a.activity_type = '"+activityType+"' ";
|
|
|
}
|
|
|
Long count = jdbcTemplate.queryForObject(sqlCount+filter,Long.class);
|
|
|
List<Map<String,Object>> result = jdbcTemplate.queryForList(sql+filter);
|
|
|
for (Map<String,Object> map:result){
|
|
|
String idcard = map.get("idcard")+"";
|
|
|
map.put("age", IdCardUtil.getAgeForIdcard(idcard));
|
|
|
}
|
|
|
return PageEnvelop.getSuccessListWithPage("查询成功",result,page,size,count);
|
|
|
}
|
|
|
|
|
|
|
|
|
public ChildActivityRegistrationDO activityDetail(String id){
|
|
|
return childActivityRegistrationDao.findOne(id);
|
|
|
}
|
|
|
|
|
|
}
|