web_backend_develope
chenlw 8 years ago
parent 2866403dd8
commit 27d084064f

@ -175,6 +175,16 @@ public class CheckoutServiceImpl implements ICheckoutService {
noDataList.add(tmp);
continue;
}
if (Constant.CHECKOUT_STATUS_ZERO.equals(tmp.getPayResultLast())) {
if ("n".equals(tmp.getPayResult())) {
tmp.setPayResultLast(Constant.CHECKOUT_STATUS_ONE);
}
}
if (Constant.CHECKOUT_STATUS_ZERO.equals(tmp.getExecResultLast())) {
if ("n".equals(tmp.getExecResult())) {
tmp.setExecResultLast(Constant.CHECKOUT_STATUS_ONE);
}
}
resultList.add(tmp);
if(!Constant.CHECKOUT_STATUS_ZERO.equals(tmp.getPayResultLast()) && !Constant.CHECKOUT_STATUS_ZERO.equals(tmp.getExecResultLast())){
if (Constant.CHECKOUT_STATUS_FOUR.equals(tmp.getPayResultLast()) || Constant.CHECKOUT_STATUS_FOUR.equals(tmp.getExecResultLast())) {

Loading…
Cancel
Save