bruce

fix

......@@ -124,19 +124,17 @@ public class PickPayBiz {
}
}
transactionManager.commit(status);
return true;
} catch (Exception e) {
transactionManager.rollback(status);
}
} else if (result.get("billStatus").equals("REFUND")) {
update.setStatus("4");//退款
outpropApplyPayDao.update(update);
return true;
} else {
update.setStatus("3");//支付失败
outpropApplyPayDao.update(update);
return true;
}
return true;
}
return false;
}
......