|
@@ -1,20 +1,17 @@
|
|
|
package com.ruoyi.asset.controller;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.ruoyi.asset.domain.dto.TbBorrowRecordDTO;
|
|
|
+import com.ruoyi.asset.utils.RegexUtils;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.PutMapping;
|
|
|
-import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
@@ -111,4 +108,93 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
{
|
|
|
return toAjax(tbAssetBorrowRecordService.deleteTbAssetBorrowRecordByIds(ids));
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序:新增设备借用记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('asset:borrow:add')")
|
|
|
+ @Log(title = "设备借用记录", businessType = BusinessType.INSERT)
|
|
|
+ @PostMapping("/save/{borrowTime}/{returnTime}")
|
|
|
+ public AjaxResult saveBorrowRecord(@RequestBody TbAssetBorrowRecord tbAssetBorrowRecord, @PathVariable("borrowTime") Long borrowTime, @PathVariable("returnTime") Long returnTime)
|
|
|
+ {
|
|
|
+ String assetBarCode = tbAssetBorrowRecord.getAssetBarCode();
|
|
|
+ if (StrUtil.isBlank(assetBarCode)) {
|
|
|
+ return AjaxResult.error("资产设备条形码不能为空");
|
|
|
+ }
|
|
|
+ String borrowPlaceName = tbAssetBorrowRecord.getBorrowPlaceName();
|
|
|
+ if (StrUtil.isBlank(borrowPlaceName)) {
|
|
|
+ return AjaxResult.error("借用地点不能为空");
|
|
|
+ }
|
|
|
+ String tel = tbAssetBorrowRecord.getTel();
|
|
|
+ if (StrUtil.isBlank(tel)) {
|
|
|
+ return AjaxResult.error("联系电话不能为空");
|
|
|
+ }
|
|
|
+ if (RegexUtils.isPhoneInvalid(tel)) {
|
|
|
+ return AjaxResult.error("联系电话格式错误");
|
|
|
+ }
|
|
|
+ Date nowDate = new Date();
|
|
|
+ Date borrowDate = new Date(borrowTime);
|
|
|
+ if (nowDate.after(borrowDate)) {
|
|
|
+ return AjaxResult.error("借用时间不能早于当前时间");
|
|
|
+ }
|
|
|
+ tbAssetBorrowRecord.setBorrowDate(borrowDate);
|
|
|
+ Date returnDate = new Date(returnTime);
|
|
|
+ if (!returnDate.after(borrowDate)) {
|
|
|
+ return AjaxResult.error("归还时间不能早于借用时间");
|
|
|
+ }
|
|
|
+ if (returnDate.equals(borrowDate)) {
|
|
|
+ return AjaxResult.error("归还时间不能与借用时间相等");
|
|
|
+ }
|
|
|
+ tbAssetBorrowRecord.setReturnDate(returnDate);
|
|
|
+
|
|
|
+ return tbAssetBorrowRecordService.saveBorrowRecord(tbAssetBorrowRecord);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改设备借用记录为归还
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('asset:borrow:add')")
|
|
|
+ @Log(title = "修改设备借用记录为归还", businessType = BusinessType.UPDATE)
|
|
|
+ @PutMapping("/return/{barCode}")
|
|
|
+ public AjaxResult updateBorrowRecordToReturn(@PathVariable("barCode") String barCode)
|
|
|
+ {
|
|
|
+ return tbAssetBorrowRecordService.updateBorrowRecordToReturn(barCode);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取用户自己设备借用记录
|
|
|
+ */
|
|
|
+ @ApiOperation("获取用户自己设备借用记录")
|
|
|
+ @PreAuthorize("@ss.hasPermi('asset:borrow:list')")
|
|
|
+ @GetMapping("/recordList")
|
|
|
+ public TableDataInfo selectMeBorrowRecordList(@RequestParam(value = "status", required = false) Long status)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ List<TbAssetBorrowRecord> tbAssetBorrowRecords = tbAssetBorrowRecordService.selectMeTbAssetBorrowRecord(status);
|
|
|
+ return getDataTable(tbAssetBorrowRecords);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取用户自己设备借用记录详细
|
|
|
+ */
|
|
|
+ @ApiOperation("获取用户自己设备借用记录")
|
|
|
+ @PreAuthorize("@ss.hasPermi('asset:borrow:list')")
|
|
|
+ @GetMapping("/record/{id}")
|
|
|
+ public AjaxResult selectMeBorrowRecord(@PathVariable("id") Long id)
|
|
|
+ {
|
|
|
+ TbBorrowRecordDTO tbAssetBorrowRecord = tbAssetBorrowRecordService.selectMeTbAssetBorrowRecordById(id);
|
|
|
+ return AjaxResult.success("查询成功", tbAssetBorrowRecord);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统计用户自己设备借用记录
|
|
|
+ */
|
|
|
+ @ApiOperation("统计用户自己设备借用记录")
|
|
|
+ @PreAuthorize("@ss.hasPermi('asset:borrow:list')")
|
|
|
+ @GetMapping("/recordCount")
|
|
|
+ public AjaxResult countMeTbAssetBorrow(@RequestParam(value = "status", required = false) Long status)
|
|
|
+ {
|
|
|
+ return tbAssetBorrowRecordService.countMeTbAssetBorrowRecord(status);
|
|
|
+ }
|
|
|
+
|
|
|
}
|