Пример #1
0
 public function get_order_detail_api($AmazonOrderId)
 {
     $get_order = new Get_Order();
     return $get_order->init($AmazonOrderId);
     exit;
 }
Пример #2
0
 public function check_order_exist($order_id)
 {
     $this->define_plugin_constant();
     require_once 'mws/GetOrder.php';
     $mws_order = new Get_Order();
     return $mws_order->init($order_id);
 }