示例#1
0
 /**
  * @param $responseJSON
  */
 protected function processResponse($responseJSON)
 {
     parent::processResponse($responseJSON);
     if ($this->isSuccess()) {
         $this->orderNumber = trim($this->result['invoiceNumber']);
     }
 }
 /**
  * @param $responseJSON
  */
 protected function processResponse($responseJSON)
 {
     parent::processResponse($responseJSON);
     if ($this->isSuccess()) {
         $this->PDF = base64_decode($this->result['invoicePDF']);
     }
 }
示例#3
0
 /**
  * @param $responseJSON
  */
 protected function processResponse($responseJSON)
 {
     parent::processResponse($responseJSON);
     if ($this->isSuccess()) {
         $this->orderArray = $this->result['order'];
     }
 }