fix ordersPaymentEdit (#39)
This commit is contained in:
parent
eb69ee503a
commit
ec69557ea7
2 changed files with 2 additions and 1 deletions
|
@ -474,7 +474,7 @@ class ApiClient
|
|||
*
|
||||
* @return ApiResponse
|
||||
*/
|
||||
public function ordersPaymentEdit(array $payment, $by = 'externalId', $site = null)
|
||||
public function ordersPaymentEdit(array $payment, $by = 'id', $site = null)
|
||||
{
|
||||
if (!count($payment)) {
|
||||
throw new \InvalidArgumentException(
|
||||
|
|
|
@ -402,6 +402,7 @@ class ApiClientOrdersTest extends TestCase
|
|||
);
|
||||
|
||||
$paymentEdit = array(
|
||||
'id' => $response['id'],
|
||||
'externalId' => $externalId,
|
||||
'amount' => 1500,
|
||||
'comment' => 'test payment!',
|
||||
|
|
Loading…
Add table
Reference in a new issue