|
@@ -1,11 +1,10 @@
|
|
|
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.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;
|
|
@@ -31,6 +30,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
* @author 原动力
|
|
|
* @date 2023-03-27
|
|
|
*/
|
|
|
+@Api(tags = "设备借用记录")
|
|
|
@RestController
|
|
|
@RequestMapping("/asset/borrow")
|
|
|
public class TbAssetBorrowRecordController extends BaseController
|
|
@@ -41,6 +41,7 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
/**
|
|
|
* 查询设备借用记录列表
|
|
|
*/
|
|
|
+ @ApiOperation("查询设备借用记录列表")
|
|
|
@PreAuthorize("@ss.hasPermi('asset:borrow:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(TbAssetBorrowRecord tbAssetBorrowRecord)
|
|
@@ -53,6 +54,7 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
/**
|
|
|
* 导出设备借用记录列表
|
|
|
*/
|
|
|
+ @ApiOperation("导出设备借用记录列表")
|
|
|
@PreAuthorize("@ss.hasPermi('asset:borrow:export')")
|
|
|
@Log(title = "设备借用记录", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
@@ -66,6 +68,7 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
/**
|
|
|
* 获取设备借用记录详细信息
|
|
|
*/
|
|
|
+ @ApiOperation("获取设备借用记录详细信息")
|
|
|
@PreAuthorize("@ss.hasPermi('asset:borrow:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
@@ -76,6 +79,7 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
/**
|
|
|
* 新增设备借用记录
|
|
|
*/
|
|
|
+ @ApiOperation("新增设备借用记录")
|
|
|
@PreAuthorize("@ss.hasPermi('asset:borrow:add')")
|
|
|
@Log(title = "设备借用记录", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
@@ -87,6 +91,7 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
/**
|
|
|
* 修改设备借用记录
|
|
|
*/
|
|
|
+ @ApiOperation("修改设备借用记录")
|
|
|
@PreAuthorize("@ss.hasPermi('asset:borrow:edit')")
|
|
|
@Log(title = "设备借用记录", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
@@ -98,6 +103,7 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
/**
|
|
|
* 删除设备借用记录
|
|
|
*/
|
|
|
+ @ApiOperation("删除设备借用记录")
|
|
|
@PreAuthorize("@ss.hasPermi('asset:borrow:remove')")
|
|
|
@Log(title = "设备借用记录", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
@@ -105,51 +111,4 @@ public class TbAssetBorrowRecordController extends BaseController
|
|
|
{
|
|
|
return toAjax(tbAssetBorrowRecordService.deleteTbAssetBorrowRecordByIds(ids));
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 小程序:新增设备借用记录
|
|
|
- */
|
|
|
- @PreAuthorize("@ss.hasPermi('asset:borrow:add')")
|
|
|
- @Log(title = "设备借用记录", businessType = BusinessType.INSERT)
|
|
|
- @PostMapping("/save")
|
|
|
- public AjaxResult saveBorrowRecord(@RequestBody TbAssetBorrowRecord tbAssetBorrowRecord)
|
|
|
- {
|
|
|
- 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 = tbAssetBorrowRecord.getBorrowDate();
|
|
|
- if (nowDate.after(borrowDate)) {
|
|
|
- return AjaxResult.error("借用日期不能早于当前日期");
|
|
|
- }
|
|
|
- Date returnDate = tbAssetBorrowRecord.getReturnDate();
|
|
|
- if (!returnDate.after(borrowDate)) {
|
|
|
- return AjaxResult.error("归还日期不能早于借用日期");
|
|
|
- }
|
|
|
-
|
|
|
- return tbAssetBorrowRecordService.saveBorrowRecord(tbAssetBorrowRecord);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改设备借用记录为归还
|
|
|
- */
|
|
|
- @PreAuthorize("@ss.hasPermi('asset:borrow:edit')")
|
|
|
- @Log(title = "修改设备借用记录为归还", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping("/return/{barCode}")
|
|
|
- public AjaxResult updateBorrowRecordToReturn(@PathVariable("barCode") String barCode)
|
|
|
- {
|
|
|
- return tbAssetBorrowRecordService.updateBorrowRecordToReturn(barCode);
|
|
|
- }
|
|
|
}
|