|
@@ -97,9 +97,9 @@ public class OrderService {
|
|
|
* 订单详情
|
|
|
* @param orderNum
|
|
|
* @return
|
|
|
- * @throws MtaException
|
|
|
+ * @throws Exception
|
|
|
*/
|
|
|
- public OrderInfoResponseVo info(String orderNum) throws MtaException {
|
|
|
+ public OrderInfoResponseVo info(String orderNum) throws Exception {
|
|
|
Order order = this.getByOrderNum(orderNum);
|
|
|
OrderInfoResponseVo vo = BeanUtil.transformBean(order, OrderInfoResponseVo.class);
|
|
|
vo.setPayed(order.getOrderStatus() == STATUS_PAYED);
|