78 lines
1.8 KiB
PHP
78 lines
1.8 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* PHP version 5.4
|
||
|
*
|
||
|
* Orders
|
||
|
*
|
||
|
* @category RetailCrm
|
||
|
* @package RetailCrm
|
||
|
* @author RetailCrm <integration@retailcrm.ru>
|
||
|
* @license https://opensource.org/licenses/MIT MIT License
|
||
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
|
||
|
*/
|
||
|
|
||
|
namespace RetailCrm\Methods\V5;
|
||
|
|
||
|
/**
|
||
|
* PHP version 5.4
|
||
|
*
|
||
|
* Orders class
|
||
|
*
|
||
|
* @category RetailCrm
|
||
|
* @package RetailCrm
|
||
|
* @author RetailCrm <integration@retailcrm.ru>
|
||
|
* @license https://opensource.org/licenses/MIT MIT License
|
||
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
|
||
|
*/
|
||
|
trait IntegrationPayments
|
||
|
{
|
||
|
/**
|
||
|
* Update Invoice
|
||
|
*
|
||
|
* @param array $updateInvoice
|
||
|
* @return \RetailCrm\Response\ApiResponse
|
||
|
*/
|
||
|
public function paymentUpdateInvoice($updateInvoice)
|
||
|
{
|
||
|
if (!count($updateInvoice)) {
|
||
|
throw new \InvalidArgumentException(
|
||
|
'Parameters `updateInvoice` must contains a data'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/* @noinspection PhpUndefinedMethodInspection */
|
||
|
return $this->client->makeRequest(
|
||
|
'/payment/update-invoice',
|
||
|
'POST',
|
||
|
[
|
||
|
'updateInvoice' => json_encode($updateInvoice)
|
||
|
]
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Check Invoice
|
||
|
*
|
||
|
* @param array $check
|
||
|
* @return \RetailCrm\Response\ApiResponse
|
||
|
*/
|
||
|
public function paymentCheckInvoice($check)
|
||
|
{
|
||
|
if (!count($check)) {
|
||
|
throw new \InvalidArgumentException(
|
||
|
'Parameters `check` must contains a data'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/* @noinspection PhpUndefinedMethodInspection */
|
||
|
return $this->client->makeRequest(
|
||
|
'/payment/check',
|
||
|
'POST',
|
||
|
[
|
||
|
'check' => json_encode($check)
|
||
|
]
|
||
|
);
|
||
|
}
|
||
|
}
|