PunchCardController.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. package com.ruoyi.module.controller;
  2. import java.util.Date;
  3. import java.util.List;
  4. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  5. import com.ruoyi.common.utils.StringUtils;
  6. import com.ruoyi.module.domain.*;
  7. import com.ruoyi.module.service.IBaseSettingService;
  8. import com.ruoyi.module.service.IIntegralBillService;
  9. import com.ruoyi.module.service.IUserService;
  10. import org.apache.shiro.authz.annotation.RequiresPermissions;
  11. import org.springframework.beans.factory.annotation.Autowired;
  12. import org.springframework.stereotype.Controller;
  13. import org.springframework.ui.ModelMap;
  14. import org.springframework.web.bind.annotation.GetMapping;
  15. import org.springframework.web.bind.annotation.PathVariable;
  16. import org.springframework.web.bind.annotation.PostMapping;
  17. import org.springframework.web.bind.annotation.RequestMapping;
  18. import org.springframework.web.bind.annotation.ResponseBody;
  19. import com.ruoyi.common.annotation.Log;
  20. import com.ruoyi.common.enums.BusinessType;
  21. import com.ruoyi.module.service.IPunchCardService;
  22. import com.ruoyi.common.core.controller.BaseController;
  23. import com.ruoyi.common.core.domain.AjaxResult;
  24. import com.ruoyi.common.utils.poi.ExcelUtil;
  25. import com.ruoyi.common.core.page.TableDataInfo;
  26. /**
  27. * 打卡记录管理Controller
  28. *
  29. * @author zyl
  30. * @date 2021-10-08
  31. */
  32. @Controller
  33. @RequestMapping("/module/punchCard")
  34. public class PunchCardController extends BaseController {
  35. private String prefix = "module/punchCard";
  36. @Autowired
  37. private IPunchCardService punchCardService;
  38. @Autowired
  39. private IBaseSettingService baseSettingService;
  40. @Autowired
  41. private IUserService userService;
  42. @Autowired
  43. private IIntegralBillService integralBillService;
  44. @RequiresPermissions("module:punchCard:view")
  45. @GetMapping()
  46. public String punchCard() {
  47. return prefix + "/punchCard";
  48. }
  49. /**
  50. * 查询打卡记录管理列表
  51. */
  52. @RequiresPermissions("module:punchCard:list")
  53. @PostMapping("/list")
  54. @ResponseBody
  55. public TableDataInfo list(PunchCard punchCard) {
  56. startPage();
  57. List<PunchCard> list = punchCardService.selectPunchCardList(punchCard);
  58. return getDataTable(list);
  59. }
  60. /**
  61. * 导出打卡记录管理列表
  62. */
  63. @RequiresPermissions("module:punchCard:export")
  64. @Log(title = "打卡记录管理", businessType = BusinessType.EXPORT)
  65. @PostMapping("/export")
  66. @ResponseBody
  67. public AjaxResult export(PunchCard punchCard) {
  68. List<PunchCard> list = punchCardService.selectPunchCardList(punchCard);
  69. ExcelUtil<PunchCard> util = new ExcelUtil<PunchCard>(PunchCard.class);
  70. return util.exportExcel(list, "punchCard");
  71. }
  72. /**
  73. * 新增打卡记录管理
  74. */
  75. @GetMapping("/add")
  76. public String add() {
  77. return prefix + "/add";
  78. }
  79. /**
  80. * 新增保存打卡记录管理
  81. */
  82. @RequiresPermissions("module:punchCard:add")
  83. @Log(title = "打卡记录管理", businessType = BusinessType.INSERT)
  84. @PostMapping("/add")
  85. @ResponseBody
  86. public AjaxResult addSave(PunchCard punchCard) {
  87. return toAjax(punchCardService.insertPunchCard(punchCard));
  88. }
  89. /**
  90. * 修改打卡记录管理
  91. */
  92. @GetMapping("/edit/{id}")
  93. public String edit(@PathVariable("id") Integer id, ModelMap mmap) {
  94. PunchCard punchCard = punchCardService.selectPunchCardById(id);
  95. mmap.put("punchCard", punchCard);
  96. return prefix + "/edit";
  97. }
  98. /**
  99. * 修改保存打卡记录管理
  100. */
  101. @RequiresPermissions("module:punchCard:edit")
  102. @Log(title = "打卡记录管理", businessType = BusinessType.UPDATE)
  103. @PostMapping("/edit")
  104. @ResponseBody
  105. public AjaxResult editSave(PunchCard punchCard) {
  106. return toAjax(punchCardService.updatePunchCard(punchCard));
  107. }
  108. /**
  109. * 删除打卡记录管理
  110. */
  111. @RequiresPermissions("module:punchCard:remove")
  112. @Log(title = "打卡记录管理", businessType = BusinessType.DELETE)
  113. @PostMapping("/remove")
  114. @ResponseBody
  115. public AjaxResult remove(String ids) {
  116. return toAjax(punchCardService.deletePunchCardByIds(ids));
  117. }
  118. @PostMapping(value = "/audit")
  119. @ResponseBody
  120. public AjaxResult audit(String id) {
  121. PunchCard punchCard = punchCardService.selectPunchCardById(Integer.valueOf(id));
  122. if (StringUtils.isNotNull(punchCard)) {
  123. punchCard.setAuditStatus(1);
  124. punchCardService.updatePunchCard(punchCard);
  125. BaseSetting baseSetting = baseSettingService.selectBaseSettingById(1);
  126. User user = userService.selectUserById(punchCard.getUserId());
  127. User bUser = userService.getOne(new LambdaQueryWrapper<User>().eq(User::getCompanyId, punchCard.getCompanyId()));
  128. if (StringUtils.isNotNull(user) && StringUtils.isNotNull(bUser) && bUser.getIntegral() >= baseSetting.getClockIntegral()) {
  129. user.setIntegral(user.getIntegral() + baseSetting.getClockIntegral());
  130. userService.updateUser(user);
  131. bUser.setIntegral(bUser.getIntegral() - baseSetting.getClockIntegral());
  132. userService.updateUser(user);
  133. //用户增加积分,添加相应的打卡记录积分
  134. punchCard.setIntegral(baseSetting.getClockIntegral());
  135. punchCardService.updatePunchCard(punchCard);
  136. //积分记录
  137. IntegralBill integralBill = new IntegralBill();
  138. integralBill.setTitle("用户打卡奖励");
  139. integralBill.setAmount("+" + baseSetting.getClockIntegral());
  140. integralBill.setInOut(1);
  141. integralBill.setUid(user.getId());
  142. integralBill.setUname(user.getUserName());
  143. integralBill.setPhone(user.getPhone());
  144. integralBill.setCreateTime(new Date());
  145. integralBill.setType(4);
  146. integralBillService.save(integralBill);
  147. //企业消耗积分
  148. IntegralBill integralBills = new IntegralBill();
  149. integralBills.setTitle("用户打卡奖励消耗");
  150. integralBills.setAmount("-" + baseSetting.getClockIntegral());
  151. integralBills.setInOut(2);
  152. integralBills.setUid(bUser.getId());
  153. integralBills.setUname(bUser.getUserName());
  154. integralBills.setPhone(bUser.getPhone());
  155. integralBills.setCreateTime(new Date());
  156. integralBills.setType(4);
  157. integralBillService.save(integralBills);
  158. return AjaxResult.success();
  159. }
  160. }
  161. return AjaxResult.error();
  162. }
  163. @PostMapping(value = "/notAudit")
  164. @ResponseBody
  165. public AjaxResult notAudit(String id) {
  166. PunchCard punchCard = punchCardService.selectPunchCardById(Integer.valueOf(id));
  167. if (StringUtils.isNotNull(punchCard)) {
  168. punchCard.setAuditStatus(2);
  169. punchCardService.updatePunchCard(punchCard);
  170. return AjaxResult.success();
  171. }
  172. return AjaxResult.error();
  173. }
  174. }