| | |
| | | import com.core.common.Cools; |
| | | import com.core.common.DateUtils; |
| | | import com.core.common.R; |
| | | import com.sun.org.apache.bcel.internal.generic.NEW; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.LocNormal; |
| | | import com.zy.asrs.entity.LocNormalLog; |
| | | import com.zy.asrs.entity.LocNormalReport; |
| | |
| | | locNormalService.outLocNormal(param.getMatnr(), modiUser, modiTime, param.getId()); |
| | | } |
| | | |
| | | /** |
| | | * 批量修改物料状态 |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/locNormal/getAllLocDetlData") |
| | | @ManagerAuth(memo = "批量修改物料状态") |
| | | public R getAllLocDetlData(@RequestBody JSONObject param) { |
| | | List<LocNormal> list = JSONObject.parseArray(param.getJSONArray("list").toJSONString(), LocNormal.class); |
| | | Integer result = locNormalService.getAllLocDetlData(list); |
| | | return R.ok().add(result); |
| | | } |
| | | |
| | | @RequestMapping(value = "/locNormal/removeLoc/auth") |
| | | @ManagerAuth |
| | | public void removeLoc(LocNormal param) { |