bruce

仓管费

......@@ -40,7 +40,7 @@ public class PickPayAction {
if (pickPayBiz.isValidNotify(params)){
return "SUCCESS";
}
return "ERROR";
return "FAILED";
}
@RequestMapping(value = "test", method = RequestMethod.POST)
......@@ -49,7 +49,7 @@ public class PickPayAction {
if (pickPayBiz.isValidNotify(params)){
return "SUCCESS";
}
return "ERROR";
return "FAILED";
}
}
......
......@@ -118,6 +118,11 @@ public class PickPayBiz {
} catch (Exception e) {
transactionManager.rollback(status);
}
}else {
OutpropApplyPayInfo update = new OutpropApplyPayInfo();
update.setTradeNo(result.get("billNo"));
update.setStatus("3");
outpropApplyPayDao.update(update);
}
}
return false;
......