五、核心代码
5.1 查询服装品类
@RequestMapping(value = "/getByPage", method = RequestMethod.GET) @ApiOperation(value = "查询服装") public Result<IPage<Clothing>> getByPage(@ModelAttribute Clothing clothing ,@ModelAttribute PageVo page){ QueryWrapper<Clothing> qw = new QueryWrapper<>(); if(!ZwzNullUtils.isNull(clothing.getTitle())) { qw.like("title",clothing.getTitle()); } if(!ZwzNullUtils.isNull(clothing.getContent())) { qw.like("content",clothing.getContent()); } if(!ZwzNullUtils.isNull(clothing.getShelves())) { qw.eq("shelves",clothing.getShelves()); } IPage<Clothing> data = iClothingService.page(PageUtil.initMpPage(page),qw); return new ResultUtil<IPage<Clothing>>().setData(data); }
5.2 新增服装
@RequestMapping(value = "/insert", method = RequestMethod.POST) @ApiOperation(value = "新增服装") public Result<Clothing> insert(Clothing clothing){ iClothingService.saveOrUpdate(clothing); return new ResultUtil<Clothing>().setData(clothing); }
5.3 新增服装入库
@RequestMapping(value = "/insert", method = RequestMethod.POST) @ApiOperation(value = "新增服装入库") public Result<ClothingIn> insert(ClothingIn clothingIn){ Clothing c = iClothingService.getById(clothingIn.getClothId()); if(c == null) { return ResultUtil.error("服装不存在"); } clothingIn.setTitle(c.getTitle()); clothingIn.setContent(c.getContent()); clothingIn.setTime(DateUtil.now()); User currUser = securityUtil.getCurrUser(); clothingIn.setWorkUser(currUser.getNickname()); clothingIn.setWorkMobile(currUser.getMobile()); iClothingInService.saveOrUpdate(clothingIn); c.setNumber(c.getNumber().add(clothingIn.getNumber())); iClothingService.saveOrUpdate(c); return new ResultUtil<ClothingIn>().setData(clothingIn); }
5.4 查询服装入库
@RequestMapping(value = "/getByPage", method = RequestMethod.GET) @ApiOperation(value = "查询服装入库") public Result<IPage<ClothingIn>> getByPage(@ModelAttribute ClothingIn clothingIn ,@ModelAttribute PageVo page){ QueryWrapper<ClothingIn> qw = new QueryWrapper<>(); if(!ZwzNullUtils.isNull(clothingIn.getClothId())) { qw.eq("cloth_id",clothingIn.getClothId()); } if(!ZwzNullUtils.isNull(clothingIn.getContent())) { qw.like("content",clothingIn.getContent()); } if(!ZwzNullUtils.isNull(clothingIn.getWorkUser())) { qw.like("work_user",clothingIn.getWorkUser()); } IPage<ClothingIn> data = iClothingInService.page(PageUtil.initMpPage(page),qw); return new ResultUtil<IPage<ClothingIn>>().setData(data); }
5.5 新增服装出库
@RequestMapping(value = "/insert", method = RequestMethod.POST) @ApiOperation(value = "新增服装出库") public Result<ClothingOut> insert(ClothingOut clothingOut){ Clothing c = iClothingService.getById(clothingOut.getClothId()); if(c == null) { return ResultUtil.error("服装不存在"); } if(clothingOut.getNumber().compareTo(c.getNumber()) > 0) { return ResultUtil.error("服装库存不足"); } clothingOut.setTitle(c.getTitle()); clothingOut.setContent(c.getContent()); clothingOut.setTime(DateUtil.now()); User currUser = securityUtil.getCurrUser(); clothingOut.setWorkUser(currUser.getNickname()); clothingOut.setWorkMobile(currUser.getMobile()); iClothingOutService.saveOrUpdate(clothingOut); c.setNumber(c.getNumber().subtract(clothingOut.getNumber())); iClothingService.saveOrUpdate(c); return new ResultUtil<ClothingOut>().setData(clothingOut); }
六、免责说明
- 本项目仅供个人学习使用,商用授权请联系博主,否则后果自负。
- 博主拥有本软件构建后的应用系统全部内容所有权及独立的知识产权,拥有最终解释权。
- 如有问题,欢迎在仓库 Issue 留言,看到后会第一时间回复,相关意见会酌情考虑,但没有一定被采纳的承诺或保证。
下载本系统代码或使用本系统的用户,必须同意以下内容,否则请勿下载!
- 出于自愿而使用/开发本软件,了解使用本软件的风险,且同意自己承担使用本软件的风险。
- 利用本软件构建的网站的任何信息内容以及导致的任何版权纠纷和法律争议及后果和博主无关,博主对此不承担任何责任。
- 在任何情况下,对于因使用或无法使用本软件而导致的任何难以合理预估的损失(包括但不仅限于商业利润损失、业务中断与业务信息丢失),博主概不承担任何责任。
- 必须了解使用本软件的风险,博主不承诺提供一对一的技术支持、使用担保,也不承担任何因本软件而产生的难以预料的问题的相关责任。