|
@@ -12,6 +12,7 @@ import javax.servlet.http.HttpServletResponse;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.common.system.query.QueryGenerator;
|
|
|
import org.jeecg.common.util.oConvertUtils;
|
|
|
+import org.jeecg.common.system.vo.SelectTreeModel;
|
|
|
import org.jeecg.modules.inventory.entity.ItdmSampleClassification;
|
|
|
import org.jeecg.modules.inventory.service.IItdmSampleClassificationService;
|
|
|
|
|
@@ -39,17 +40,17 @@ import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
/**
|
|
|
* @Description: 样品分类表
|
|
|
* @Author: jeecg-boot
|
|
|
- * @Date: 2023-06-26
|
|
|
+ * @Date: 2023-06-29
|
|
|
* @Version: V1.0
|
|
|
*/
|
|
|
@Api(tags="样品分类表")
|
|
|
@RestController
|
|
|
@RequestMapping("/inventory/itdmSampleClassification")
|
|
|
@Slf4j
|
|
|
-public class ItdmSampleClassificationController extends JeecgController<ItdmSampleClassification, IItdmSampleClassificationService> {
|
|
|
+public class ItdmSampleClassificationController extends JeecgController<ItdmSampleClassification, IItdmSampleClassificationService>{
|
|
|
@Autowired
|
|
|
private IItdmSampleClassificationService itdmSampleClassificationService;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 分页列表查询
|
|
|
*
|
|
@@ -61,16 +62,135 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
*/
|
|
|
//@AutoLog(value = "样品分类表-分页列表查询")
|
|
|
@ApiOperation(value="样品分类表-分页列表查询", notes="样品分类表-分页列表查询")
|
|
|
- @GetMapping(value = "/list")
|
|
|
+ @GetMapping(value = "/rootList")
|
|
|
public Result<IPage<ItdmSampleClassification>> queryPageList(ItdmSampleClassification itdmSampleClassification,
|
|
|
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
HttpServletRequest req) {
|
|
|
+ String hasQuery = req.getParameter("hasQuery");
|
|
|
+ if(hasQuery != null && "true".equals(hasQuery)){
|
|
|
+ QueryWrapper<ItdmSampleClassification> queryWrapper = QueryGenerator.initQueryWrapper(itdmSampleClassification, req.getParameterMap());
|
|
|
+ List<ItdmSampleClassification> list = itdmSampleClassificationService.queryTreeListNoPage(queryWrapper);
|
|
|
+ IPage<ItdmSampleClassification> pageList = new Page<>(1, 10, list.size());
|
|
|
+ pageList.setRecords(list);
|
|
|
+ return Result.OK(pageList);
|
|
|
+ }else{
|
|
|
+ String parentId = itdmSampleClassification.getPid();
|
|
|
+ if (oConvertUtils.isEmpty(parentId)) {
|
|
|
+ parentId = "0";
|
|
|
+ }
|
|
|
+ itdmSampleClassification.setPid(null);
|
|
|
+ QueryWrapper<ItdmSampleClassification> queryWrapper = QueryGenerator.initQueryWrapper(itdmSampleClassification, req.getParameterMap());
|
|
|
+ // 使用 eq 防止模糊查询
|
|
|
+ queryWrapper.eq("pid", parentId);
|
|
|
+ Page<ItdmSampleClassification> page = new Page<ItdmSampleClassification>(pageNo, pageSize);
|
|
|
+ IPage<ItdmSampleClassification> pageList = itdmSampleClassificationService.page(page, queryWrapper);
|
|
|
+ return Result.OK(pageList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 【vue3专用】加载节点的子数据
|
|
|
+ *
|
|
|
+ * @param pid
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/loadTreeChildren", method = RequestMethod.GET)
|
|
|
+ public Result<List<SelectTreeModel>> loadTreeChildren(@RequestParam(name = "pid") String pid) {
|
|
|
+ Result<List<SelectTreeModel>> result = new Result<>();
|
|
|
+ try {
|
|
|
+ List<SelectTreeModel> ls = itdmSampleClassificationService.queryListByPid(pid);
|
|
|
+ result.setResult(ls);
|
|
|
+ result.setSuccess(true);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ result.setMessage(e.getMessage());
|
|
|
+ result.setSuccess(false);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 【vue3专用】加载一级节点/如果是同步 则所有数据
|
|
|
+ *
|
|
|
+ * @param async
|
|
|
+ * @param pcode
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/loadTreeRoot", method = RequestMethod.GET)
|
|
|
+ public Result<List<SelectTreeModel>> loadTreeRoot(@RequestParam(name = "async") Boolean async, @RequestParam(name = "pcode") String pcode) {
|
|
|
+ Result<List<SelectTreeModel>> result = new Result<>();
|
|
|
+ try {
|
|
|
+ List<SelectTreeModel> ls = itdmSampleClassificationService.queryListByCode(pcode);
|
|
|
+ if (!async) {
|
|
|
+ loadAllChildren(ls);
|
|
|
+ }
|
|
|
+ result.setResult(ls);
|
|
|
+ result.setSuccess(true);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ result.setMessage(e.getMessage());
|
|
|
+ result.setSuccess(false);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 【vue3专用】递归求子节点 同步加载用到
|
|
|
+ *
|
|
|
+ * @param ls
|
|
|
+ */
|
|
|
+ private void loadAllChildren(List<SelectTreeModel> ls) {
|
|
|
+ for (SelectTreeModel tsm : ls) {
|
|
|
+ List<SelectTreeModel> temp = itdmSampleClassificationService.queryListByPid(tsm.getKey());
|
|
|
+ if (temp != null && temp.size() > 0) {
|
|
|
+ tsm.setChildren(temp);
|
|
|
+ loadAllChildren(temp);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取子数据
|
|
|
+ * @param itdmSampleClassification
|
|
|
+ * @param req
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ //@AutoLog(value = "样品分类表-获取子数据")
|
|
|
+ @ApiOperation(value="样品分类表-获取子数据", notes="样品分类表-获取子数据")
|
|
|
+ @GetMapping(value = "/childList")
|
|
|
+ public Result<IPage<ItdmSampleClassification>> queryPageList(ItdmSampleClassification itdmSampleClassification,HttpServletRequest req) {
|
|
|
QueryWrapper<ItdmSampleClassification> queryWrapper = QueryGenerator.initQueryWrapper(itdmSampleClassification, req.getParameterMap());
|
|
|
- Page<ItdmSampleClassification> page = new Page<ItdmSampleClassification>(pageNo, pageSize);
|
|
|
- IPage<ItdmSampleClassification> pageList = itdmSampleClassificationService.page(page, queryWrapper);
|
|
|
+ List<ItdmSampleClassification> list = itdmSampleClassificationService.list(queryWrapper);
|
|
|
+ IPage<ItdmSampleClassification> pageList = new Page<>(1, 10, list.size());
|
|
|
+ pageList.setRecords(list);
|
|
|
return Result.OK(pageList);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量查询子节点
|
|
|
+ * @param parentIds 父ID(多个采用半角逗号分割)
|
|
|
+ * @return 返回 IPage
|
|
|
+ * @param parentIds
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ //@AutoLog(value = "样品分类表-批量获取子数据")
|
|
|
+ @ApiOperation(value="样品分类表-批量获取子数据", notes="样品分类表-批量获取子数据")
|
|
|
+ @GetMapping("/getChildListBatch")
|
|
|
+ public Result getChildListBatch(@RequestParam("parentIds") String parentIds) {
|
|
|
+ try {
|
|
|
+ QueryWrapper<ItdmSampleClassification> queryWrapper = new QueryWrapper<>();
|
|
|
+ List<String> parentIdList = Arrays.asList(parentIds.split(","));
|
|
|
+ queryWrapper.in("pid", parentIdList);
|
|
|
+ List<ItdmSampleClassification> list = itdmSampleClassificationService.list(queryWrapper);
|
|
|
+ IPage<ItdmSampleClassification> pageList = new Page<>(1, 10, list.size());
|
|
|
+ pageList.setRecords(list);
|
|
|
+ return Result.OK(pageList);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error(e.getMessage(), e);
|
|
|
+ return Result.error("批量查询子节点失败:" + e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 添加
|
|
@@ -80,10 +200,10 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
*/
|
|
|
@AutoLog(value = "样品分类表-添加")
|
|
|
@ApiOperation(value="样品分类表-添加", notes="样品分类表-添加")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:add")
|
|
|
+ //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:add")
|
|
|
@PostMapping(value = "/add")
|
|
|
public Result<String> add(@RequestBody ItdmSampleClassification itdmSampleClassification) {
|
|
|
- itdmSampleClassificationService.save(itdmSampleClassification);
|
|
|
+ itdmSampleClassificationService.addItdmSampleClassification(itdmSampleClassification);
|
|
|
return Result.OK("添加成功!");
|
|
|
}
|
|
|
|
|
@@ -95,10 +215,10 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
*/
|
|
|
@AutoLog(value = "样品分类表-编辑")
|
|
|
@ApiOperation(value="样品分类表-编辑", notes="样品分类表-编辑")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:edit")
|
|
|
+ //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:edit")
|
|
|
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
|
public Result<String> edit(@RequestBody ItdmSampleClassification itdmSampleClassification) {
|
|
|
- itdmSampleClassificationService.updateById(itdmSampleClassification);
|
|
|
+ itdmSampleClassificationService.updateItdmSampleClassification(itdmSampleClassification);
|
|
|
return Result.OK("编辑成功!");
|
|
|
}
|
|
|
|
|
@@ -110,10 +230,10 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
*/
|
|
|
@AutoLog(value = "样品分类表-通过id删除")
|
|
|
@ApiOperation(value="样品分类表-通过id删除", notes="样品分类表-通过id删除")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:delete")
|
|
|
+ //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:delete")
|
|
|
@DeleteMapping(value = "/delete")
|
|
|
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
|
- itdmSampleClassificationService.removeById(id);
|
|
|
+ itdmSampleClassificationService.deleteItdmSampleClassification(id);
|
|
|
return Result.OK("删除成功!");
|
|
|
}
|
|
|
|
|
@@ -125,11 +245,11 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
*/
|
|
|
@AutoLog(value = "样品分类表-批量删除")
|
|
|
@ApiOperation(value="样品分类表-批量删除", notes="样品分类表-批量删除")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:deleteBatch")
|
|
|
+ //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:deleteBatch")
|
|
|
@DeleteMapping(value = "/deleteBatch")
|
|
|
public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
|
this.itdmSampleClassificationService.removeByIds(Arrays.asList(ids.split(",")));
|
|
|
- return Result.OK("批量删除成功!");
|
|
|
+ return Result.OK("批量删除成功!");
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -158,7 +278,7 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
//@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:exportXls")
|
|
|
@RequestMapping(value = "/exportXls")
|
|
|
public ModelAndView exportXls(HttpServletRequest request, ItdmSampleClassification itdmSampleClassification) {
|
|
|
- return super.exportXls(request, itdmSampleClassification, ItdmSampleClassification.class, "样品分类表");
|
|
|
+ return super.exportXls(request, itdmSampleClassification, ItdmSampleClassification.class, "样品分类表");
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -168,10 +288,10 @@ public class ItdmSampleClassificationController extends JeecgController<ItdmSamp
|
|
|
* @param response
|
|
|
* @return
|
|
|
*/
|
|
|
- //@RequiresPermissions("itdm_sample_classification:importExcel")
|
|
|
+ //@RequiresPermissions("org.jeecg.modules:itdm_sample_classification:importExcel")
|
|
|
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
|
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
- return super.importExcel(request, response, ItdmSampleClassification.class);
|
|
|
+ return super.importExcel(request, response, ItdmSampleClassification.class);
|
|
|
}
|
|
|
|
|
|
}
|