use of com.stardata.starshop2.ordercontext.command.domain.order.Order in project starshop by beautautumn.
the class OrderManagingService method makeOrderEffectively.
public Order makeOrderEffectively(WxPayResult wxPayResult) {
Order order = orderRepository.findByOutTradeNo(wxPayResult.getOutTradeNo());
order.makeEffectively();
orderRepository.update(order);
return order;
}
Aggregations