Commit a3e7652a by huluobin

update

parent e04b7da8
......@@ -369,13 +369,14 @@ public class PayServiceImpl implements PayService {
orderManageMapper.updateById(orderManage);
}
//客户申请团购支付
if (payType.equals(7)) {
else if (payType.equals(7)) {
//状态待确认
orderManage.setStatus(OrderManage.STATUS_UN_CONFIRM);
//支付类型状态pos机
orderManage.setPaymentType(OrderManage.PAYMENT_DZ);
orderManageMapper.updateById(orderManage);
} else {
throw new RRException(500, "invalid payType");
}
throw new RRException(500, "invalid payType");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment