package org.springblade.modules.apply.controller;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiParam;
|
import io.swagger.models.auth.In;
|
import lombok.AllArgsConstructor;
|
import net.sourceforge.pinyin4j.PinyinHelper;
|
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
|
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
|
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
|
import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination;
|
import org.springblade.core.mp.support.Condition;
|
import org.springblade.core.mp.support.Query;
|
import org.springblade.core.tool.api.R;
|
import org.springblade.core.tool.utils.Func;
|
import org.springblade.modules.apply.entity.Apply;
|
import org.springblade.modules.apply.service.ApplyService;
|
import org.springblade.modules.apply.vo.ApplyVO;
|
import org.springblade.modules.exam.entity.ExamPaper;
|
import org.springblade.modules.exam.service.ExamPaperService;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.text.DecimalFormat;
|
import java.text.SimpleDateFormat;
|
|
/**
|
* @author zhongrj
|
* @time 2021-07-17
|
* @desc 考试报名管理控制层
|
*/
|
@RestController
|
@AllArgsConstructor
|
@RequestMapping("/apply")
|
public class ApplyController {
|
|
private final ApplyService applyService;
|
|
private final ExamPaperService examPaperService;
|
|
/**
|
* 自定义分页
|
* @param query page,size
|
* @param apply 考试报名信息对象
|
*/
|
@GetMapping("/page")
|
public R<IPage<ApplyVO>> page(ApplyVO apply, Query query) {
|
IPage<ApplyVO> pages = applyService.selectApplyPage(Condition.getPage(query), apply);
|
return R.data(pages);
|
}
|
|
/**
|
* 分页
|
*/
|
@GetMapping("/list")
|
public R<IPage<Apply>> list(Apply apply, Query query) {
|
IPage<Apply> pages = applyService.page(Condition.getPage(query), Condition.getQueryWrapper(apply));
|
return R.data(pages);
|
}
|
|
/**
|
* 新增
|
* @param apply 考试报名信息对象
|
*/
|
@PostMapping("/save")
|
@ApiOperation(value = "新增", notes = "传入apply")
|
public R save(@RequestBody Apply apply) {
|
return R.status(applyService.save(apply));
|
}
|
|
|
/**
|
* 修改
|
* @param apply 考试报名信息对象
|
*/
|
@PostMapping("/update")
|
public R update(@RequestBody Apply apply) {
|
return R.status(applyService.updateById(apply));
|
}
|
|
/**
|
* 新增或修改
|
* @param apply 考试报名信息对象
|
*/
|
@PostMapping("/submit")
|
public R submit(@RequestBody Apply apply) {
|
if (null==apply.getId()){
|
//去生成准考证
|
apply.setCandidateNo(getCandidateNo(apply));
|
}
|
return R.status(applyService.saveOrUpdate(apply));
|
}
|
|
/**
|
* 生成准考证
|
* @param apply 考试报名信息对象
|
*/
|
private String getCandidateNo(Apply apply) {
|
//获取考试信息
|
ExamPaper examPaper = examPaperService.getById(apply.getExamId());
|
if (null!=examPaper.getStartTime()){
|
String format = new SimpleDateFormat("yyyy-MM-dd").format(examPaper.getStartTime());
|
String year = format.substring(2,4);
|
String quarter = null;
|
String months = null;
|
String days = null;
|
int month = Integer.parseInt(format.substring(5,7));
|
int day = Integer.parseInt(format.substring(8,10));
|
if (month>0 && month<=3){
|
quarter = "C";
|
}
|
if (month>3 && month<=6){
|
quarter = "X";
|
}
|
if (month>6 && month<=9){
|
quarter = "Q";
|
}
|
if (month>9 && month<=12){
|
quarter = "D";
|
}
|
if (month<=9){
|
months = "0" + month;
|
}
|
if (day<=9){
|
days = "0" + day;
|
}
|
//获取考试名称前缀,去除数字,字母
|
String examName
|
= examPaper.getExamName().replaceAll("\\s*", "").replaceAll("[^(\\u4e00-\\u9fa5)]", "").substring(0,1);
|
|
//前缀
|
String result = year
|
+ months
|
+ toFirstChar(examName).toUpperCase()
|
+ examPaper.getExamType()
|
+ quarter;
|
//查询是当前前缀已生成的数量
|
int count = applyService.getCandidateNoCount(result);
|
if (count==0){
|
return result + "0000";
|
}
|
//格式化
|
DecimalFormat decimalFormat = new DecimalFormat("0000");
|
//返回
|
return result + (decimalFormat.format(count++));
|
}
|
return null;
|
}
|
|
/**
|
* 获取字符串拼音的第一个字母
|
* @param chinese
|
* @return
|
*/
|
private String toFirstChar(String chinese){
|
String pinyinStr = "";
|
char[] newChar = chinese.toCharArray();
|
//转为单个字符
|
HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
|
defaultFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE);
|
defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
|
for (int i = 0; i < newChar.length; i++) {
|
if (newChar[i] > 128) {
|
try {
|
pinyinStr += PinyinHelper.toHanyuPinyinStringArray(newChar[i], defaultFormat)[0].charAt(0);
|
} catch (BadHanyuPinyinOutputFormatCombination e) {
|
e.printStackTrace();
|
}
|
}else{
|
pinyinStr += newChar[i];
|
}
|
}
|
return pinyinStr;
|
}
|
|
/**
|
* 删除
|
* @param ids 考试报名信息ids 数组
|
*/
|
@PostMapping("/remove")
|
public R remove(@ApiParam(value = "主键集合") @RequestParam String ids) {
|
return R.status(applyService.removeByIds(Func.toLongList(ids)));
|
}
|
|
/**
|
* 详情
|
* @param apply 考试报名信息对象
|
*/
|
@GetMapping("/detail")
|
@ApiOperation(value = "详情", notes = "传入apply")
|
public R<ApplyVO> details(Apply apply) {
|
//查询考试报名详情
|
ApplyVO detail = applyService.selectApplyInfo(apply);
|
//返回
|
return R.data(detail);
|
}
|
|
}
|