bruce

仓管费

...@@ -40,7 +40,7 @@ public class PickPayAction { ...@@ -40,7 +40,7 @@ public class PickPayAction {
40 if (pickPayBiz.isValidNotify(params)){ 40 if (pickPayBiz.isValidNotify(params)){
41 return "SUCCESS"; 41 return "SUCCESS";
42 } 42 }
43 - return "ERROR"; 43 + return "FAILED";
44 } 44 }
45 45
46 @RequestMapping(value = "test", method = RequestMethod.POST) 46 @RequestMapping(value = "test", method = RequestMethod.POST)
...@@ -49,7 +49,7 @@ public class PickPayAction { ...@@ -49,7 +49,7 @@ public class PickPayAction {
49 if (pickPayBiz.isValidNotify(params)){ 49 if (pickPayBiz.isValidNotify(params)){
50 return "SUCCESS"; 50 return "SUCCESS";
51 } 51 }
52 - return "ERROR"; 52 + return "FAILED";
53 } 53 }
54 54
55 } 55 }
......
...@@ -118,6 +118,11 @@ public class PickPayBiz { ...@@ -118,6 +118,11 @@ public class PickPayBiz {
118 } catch (Exception e) { 118 } catch (Exception e) {
119 transactionManager.rollback(status); 119 transactionManager.rollback(status);
120 } 120 }
121 + }else {
122 + OutpropApplyPayInfo update = new OutpropApplyPayInfo();
123 + update.setTradeNo(result.get("billNo"));
124 + update.setStatus("3");
125 + outpropApplyPayDao.update(update);
121 } 126 }
122 } 127 }
123 return false; 128 return false;
......