| | |
| | | |
| | | @RequestMapping("/checkDetl/auth") |
| | | @ManagerAuth |
| | | public R getCheckDetl(@RequestParam Integer staNo) { |
| | | public R getCheckDetl(@RequestParam(required = false) Integer staNo) { |
| | | if (null == staNo || staNo == 0) { |
| | | return R.ok(); |
| | | } |
| | | BasDevp basDevp = basDevpService.selectById(staNo); |
| | | if (null != basDevp && basDevp.getWrkNo() != null) { |
| | | WrkMast wrkMast = wrkMastService.selectById(basDevp.getWrkNo()); |
| | |
| | | @ManagerAuth(memo = "盘点") |
| | | public R adjust(@RequestBody MobileAdjustParam combParam){ |
| | | mobileService.adjust(combParam, getUserId()); |
| | | return R.ok(); |
| | | return R.ok("盘点成功"); |
| | | } |
| | | |
| | | |