-
Notifications
You must be signed in to change notification settings - Fork 853
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19456bc
commit 7f61106
Showing
8 changed files
with
161 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?php | ||
|
||
namespace Stripe; | ||
|
||
/** | ||
* Class CreditNote | ||
* | ||
* @property string $id | ||
* @property string $object | ||
* @property int $amount | ||
* @property int $created | ||
* @property string $currency | ||
* @property string $customer | ||
* @property string $invoice | ||
* @property bool $livemode | ||
* @property string $memo | ||
* @property StripeObject $metadata | ||
* @property int $next_payment_attempt | ||
* @property string $number | ||
* @property string $pdf | ||
* @property string $reason | ||
* @property string $refund | ||
* @property string $status | ||
* @property string $type | ||
* | ||
* @package Stripe | ||
*/ | ||
class CreditNote extends ApiResource | ||
{ | ||
|
||
const OBJECT_NAME = "credit_note"; | ||
|
||
use ApiOperations\All; | ||
use ApiOperations\Create; | ||
use ApiOperations\Retrieve; | ||
use ApiOperations\Update; | ||
|
||
/** | ||
* Possible string representations of the credit note reason. | ||
* @link https://stripe.com/docs/api/credit_notes/object#credit_note_object-reason | ||
*/ | ||
const REASON_DUPLICATE = 'duplicate'; | ||
const REASON_FRAUDULENT = 'fraudulent'; | ||
const REASON_ORDER_CHANGE = 'order_change'; | ||
const REASON_PRODUCT_UNSATISFACTORY = 'product_unsatisfactory'; | ||
|
||
/** | ||
* Possible string representations of the credit note status. | ||
* @link https://stripe.com/docs/api/credit_notes/object#credit_note_object-status | ||
*/ | ||
const STATUS_ISSUED = 'issued'; | ||
const STATUS_VOID = 'void'; | ||
|
||
/** | ||
* Possible string representations of the credit note type. | ||
* @link https://stripe.com/docs/api/credit_notes/object#credit_note_object-status | ||
*/ | ||
const TYPE_POST_PAYMENT = 'post_payment'; | ||
const TYPE_PRE_PAYMENT = 'pre_payment'; | ||
|
||
/** | ||
* @param array|null $params | ||
* @param array|string|null $opts | ||
* | ||
* @return CreditNote The voided credit note. | ||
*/ | ||
public function voidCreditNote($params = null, $opts = null) | ||
{ | ||
$url = $this->instanceUrl() . '/void'; | ||
list($response, $opts) = $this->_request('post', $url, $params, $opts); | ||
$this->refreshFrom($response, $opts); | ||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?php | ||
|
||
namespace Stripe; | ||
|
||
class CreditNoteTest extends TestCase | ||
{ | ||
const TEST_RESOURCE_ID = 'cn_123'; | ||
|
||
public function testIsListable() | ||
{ | ||
$this->expectsRequest( | ||
'get', | ||
'/v1/credit_notes' | ||
); | ||
$resources = CreditNote::all(); | ||
$this->assertTrue(is_array($resources->data)); | ||
$this->assertInstanceOf("Stripe\\CreditNote", $resources->data[0]); | ||
} | ||
|
||
public function testIsRetrievable() | ||
{ | ||
$this->expectsRequest( | ||
'get', | ||
'/v1/credit_notes/' . self::TEST_RESOURCE_ID | ||
); | ||
$resource = CreditNote::retrieve(self::TEST_RESOURCE_ID); | ||
$this->assertInstanceOf("Stripe\\CreditNote", $resource); | ||
} | ||
|
||
public function testIsCreatable() | ||
{ | ||
$this->expectsRequest( | ||
'post', | ||
'/v1/credit_notes' | ||
); | ||
$resource = CreditNote::create([ | ||
"amount" => 100, | ||
"invoice" => "in_132", | ||
"reason" => "duplicate", | ||
]); | ||
$this->assertInstanceOf("Stripe\\CreditNote", $resource); | ||
} | ||
|
||
public function testIsSaveable() | ||
{ | ||
$resource = CreditNote::retrieve(self::TEST_RESOURCE_ID); | ||
$resource->metadata["key"] = "value"; | ||
$this->expectsRequest( | ||
'post', | ||
'/v1/credit_notes/' . $resource->id | ||
); | ||
$resource->save(); | ||
$this->assertInstanceOf("Stripe\\CreditNote", $resource); | ||
} | ||
|
||
public function testIsUpdatable() | ||
{ | ||
$this->expectsRequest( | ||
'post', | ||
'/v1/credit_notes/' . self::TEST_RESOURCE_ID | ||
); | ||
$resource = CreditNote::update(self::TEST_RESOURCE_ID, [ | ||
"metadata" => ["key" => "value"], | ||
]); | ||
$this->assertInstanceOf("Stripe\\CreditNote", $resource); | ||
} | ||
|
||
public function testCanVoidCreditNote() | ||
{ | ||
$creditNote = CreditNote::retrieve(self::TEST_RESOURCE_ID); | ||
$this->expectsRequest( | ||
'post', | ||
'/v1/credit_notes/' . $creditNote->id . '/void' | ||
); | ||
$resource = $creditNote->voidCreditNote(); | ||
$this->assertInstanceOf("Stripe\\CreditNote", $resource); | ||
$this->assertSame($resource, $creditNote); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters