Showing
1 changed file
with
1 additions
and
3 deletions
... | @@ -124,19 +124,17 @@ public class PickPayBiz { | ... | @@ -124,19 +124,17 @@ public class PickPayBiz { |
124 | } | 124 | } |
125 | } | 125 | } |
126 | transactionManager.commit(status); | 126 | transactionManager.commit(status); |
127 | - return true; | ||
128 | } catch (Exception e) { | 127 | } catch (Exception e) { |
129 | transactionManager.rollback(status); | 128 | transactionManager.rollback(status); |
130 | } | 129 | } |
131 | } else if (result.get("billStatus").equals("REFUND")) { | 130 | } else if (result.get("billStatus").equals("REFUND")) { |
132 | update.setStatus("4");//退款 | 131 | update.setStatus("4");//退款 |
133 | outpropApplyPayDao.update(update); | 132 | outpropApplyPayDao.update(update); |
134 | - return true; | ||
135 | } else { | 133 | } else { |
136 | update.setStatus("3");//支付失败 | 134 | update.setStatus("3");//支付失败 |
137 | outpropApplyPayDao.update(update); | 135 | outpropApplyPayDao.update(update); |
138 | - return true; | ||
139 | } | 136 | } |
137 | + return true; | ||
140 | } | 138 | } |
141 | return false; | 139 | return false; |
142 | } | 140 | } | ... | ... |
-
Please register or login to post a comment