@Override
public OrderPayment unwrap(HttpServletRequest request, ApplicationContext context) {
OrderPaymentService orderPaymentService = (OrderPaymentService) context.getBean("blOrderPaymentService");
OrderPayment payment = orderPaymentService.create();
OrderService orderService = (OrderService) context.getBean("blOrderService");
Order order = orderService.findOrderById(this.orderId);
if (order != null) {
payment.setOrder(order);
}
payment.setType(PaymentType.getInstance(this.type));