Open jorenvanhee opened 7 years ago
The house_number in the customer data is wrong. It contains the card number. I don't think this can be solved because the credit card doesn't have the house number separately. It's in an address line. I used var1 as a workaround.
/* Omnipay\MultiSafepay\Message/RestPurchaseRequest.php */ /* ... */ 'first_name' => $this->getCard()->getFirstName(), 'house_number' => $this->getVar1(), 'last_name' => $this->getCard()->getLastName(), /* ... */
That might work -- can you submit a PR?
The house_number in the customer data is wrong. It contains the card number. I don't think this can be solved because the credit card doesn't have the house number separately. It's in an address line. I used var1 as a workaround.