停用不用物理删除

master
cez 2022-02-17 16:18:32 +08:00
parent 1720a5f050
commit 3a32fd9419
1 changed files with 10 additions and 10 deletions

View File

@ -131,15 +131,15 @@ public class MdBinController extends BaseController {
mdBin = systemService.getEntity(MdBinEntity.class, mdBin.getId());
message = "仓位停用成功";
try{
// mdBin.setTingYong("Y");
// mdBinService.saveOrUpdate(mdBin);
mdBin.setTingYong("Y");
mdBinService.saveOrUpdate(mdBin);
if(wmUtil.checkishavestock("bin",mdBin.getKuWeiBianMa())){
message = "仓位存在库存";
message = "仓位停用成功,但是存在库存";
j.setSuccess(false);
j.setMsg(message);
return j;
}
mdBinService.delete(mdBin);
// mdBinService.delete(mdBin);
systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
}catch(Exception e){
@ -300,14 +300,14 @@ public class MdBinController extends BaseController {
MdBinEntity mdBin = systemService.getEntity(MdBinEntity.class,
id
);
// mdBin.setTingYong("Y");
mdBin.setTingYong("Y");
if(wmUtil.checkishavestock("bin",mdBin.getKuWeiBianMa())){
message = "仓位存在库存";
j.setSuccess(false);
j.setMsg(message);
return j;
message = "仓位停用成功,但是存在库存";
// j.setSuccess(false);
// j.setMsg(message);
// return j;
}
mdBinService.delete(mdBin);
mdBinService.updateEntitie(mdBin);
systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
}
}catch(Exception e){