|
@@ -0,0 +1,106 @@
|
|
|
+package cn.iocoder.yudao.module.erp.controller.admin.stock;
|
|
|
+
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
|
|
+import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
|
|
+import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
|
|
|
+import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
|
|
|
+import cn.iocoder.yudao.module.erp.controller.admin.stock.vo.ErpWarehouseSaveReqVO;
|
|
|
+import cn.iocoder.yudao.module.erp.controller.admin.stock.vo.warehouse.ErpWarehousePageReqVO;
|
|
|
+import cn.iocoder.yudao.module.erp.controller.admin.stock.vo.warehouse.ErpWarehouseRespVO;
|
|
|
+import cn.iocoder.yudao.module.erp.dal.dataobject.stock.ErpWarehouseDO;
|
|
|
+import cn.iocoder.yudao.module.erp.service.stock.ErpWarehouseService;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import io.swagger.v3.oas.annotations.Parameter;
|
|
|
+import io.swagger.v3.oas.annotations.Parameters;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import jakarta.annotation.Resource;
|
|
|
+import jakarta.servlet.http.HttpServletResponse;
|
|
|
+import jakarta.validation.Valid;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
|
|
+import static cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum.EXPORT;
|
|
|
+
|
|
|
+@Tag(name = "管理后台 - ERP 仓库")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/erp/warehouse")
|
|
|
+@Validated
|
|
|
+public class ErpWarehouseController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private ErpWarehouseService warehouseService;
|
|
|
+
|
|
|
+ @PostMapping("/create")
|
|
|
+ @Operation(summary = "创建仓库")
|
|
|
+ @PreAuthorize("@ss.hasPermission('erp:warehouse:create')")
|
|
|
+ public CommonResult<Long> createWarehouse(@Valid @RequestBody ErpWarehouseSaveReqVO createReqVO) {
|
|
|
+ return success(warehouseService.createWarehouse(createReqVO));
|
|
|
+ }
|
|
|
+
|
|
|
+ @PutMapping("/update")
|
|
|
+ @Operation(summary = "更新仓库")
|
|
|
+ @PreAuthorize("@ss.hasPermission('erp:warehouse:update')")
|
|
|
+ public CommonResult<Boolean> updateWarehouse(@Valid @RequestBody ErpWarehouseSaveReqVO updateReqVO) {
|
|
|
+ warehouseService.updateWarehouse(updateReqVO);
|
|
|
+ return success(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PutMapping("/update-default-status")
|
|
|
+ @Operation(summary = "更新仓库默认状态")
|
|
|
+ @Parameters({
|
|
|
+ @Parameter(name = "id", description = "编号", required = true),
|
|
|
+ @Parameter(name = "status", description = "状态", required = true)
|
|
|
+ })
|
|
|
+ public CommonResult<Boolean> updateWarehouseDefaultStatus(@RequestParam("id") Long id,
|
|
|
+ @RequestParam("defaultStatus") Boolean defaultStatus) {
|
|
|
+ warehouseService.updateWarehouseDefaultStatus(id, defaultStatus);
|
|
|
+ return success(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ @DeleteMapping("/delete")
|
|
|
+ @Operation(summary = "删除仓库")
|
|
|
+ @Parameter(name = "id", description = "编号", required = true)
|
|
|
+ @PreAuthorize("@ss.hasPermission('erp:warehouse:delete')")
|
|
|
+ public CommonResult<Boolean> deleteWarehouse(@RequestParam("id") Long id) {
|
|
|
+ warehouseService.deleteWarehouse(id);
|
|
|
+ return success(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/get")
|
|
|
+ @Operation(summary = "获得仓库")
|
|
|
+ @Parameter(name = "id", description = "编号", required = true, example = "1024")
|
|
|
+ @PreAuthorize("@ss.hasPermission('erp:warehouse:query')")
|
|
|
+ public CommonResult<ErpWarehouseRespVO> getWarehouse(@RequestParam("id") Long id) {
|
|
|
+ ErpWarehouseDO warehouse = warehouseService.getWarehouse(id);
|
|
|
+ return success(BeanUtils.toBean(warehouse, ErpWarehouseRespVO.class));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/page")
|
|
|
+ @Operation(summary = "获得仓库分页")
|
|
|
+ @PreAuthorize("@ss.hasPermission('erp:warehouse:query')")
|
|
|
+ public CommonResult<PageResult<ErpWarehouseRespVO>> getWarehousePage(@Valid ErpWarehousePageReqVO pageReqVO) {
|
|
|
+ PageResult<ErpWarehouseDO> pageResult = warehouseService.getWarehousePage(pageReqVO);
|
|
|
+ return success(BeanUtils.toBean(pageResult, ErpWarehouseRespVO.class));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/export-excel")
|
|
|
+ @Operation(summary = "导出仓库 Excel")
|
|
|
+ @PreAuthorize("@ss.hasPermission('erp:warehouse:export')")
|
|
|
+ @OperateLog(type = EXPORT)
|
|
|
+ public void exportWarehouseExcel(@Valid ErpWarehousePageReqVO pageReqVO,
|
|
|
+ HttpServletResponse response) throws IOException {
|
|
|
+ pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE);
|
|
|
+ List<ErpWarehouseDO> list = warehouseService.getWarehousePage(pageReqVO).getList();
|
|
|
+ // 导出 Excel
|
|
|
+ ExcelUtils.write(response, "仓库.xls", "数据", ErpWarehouseRespVO.class,
|
|
|
+ BeanUtils.toBean(list, ErpWarehouseRespVO.class));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|