Blocks
1 year ago
Concerns
1 year ago
Traits
1 year ago
AbandonedCheckout.php
1 year ago
AbandonedCheckoutProtocol.php
3 years ago
Account.php
3 years ago
AccountPortalSession.php
4 years ago
Activation.php
1 year ago
Affiliation.php
1 year ago
AffiliationProduct.php
1 year ago
AffiliationProtocol.php
2 years ago
AffiliationRequest.php
1 year ago
ApiToken.php
3 years ago
BalanceTransaction.php
1 year ago
Brand.php
4 years ago
BulkAction.php
2 years ago
Bump.php
1 year ago
BuyLink.php
2 years ago
CancellationAct.php
1 year ago
CancellationReason.php
3 years ago
Charge.php
1 year ago
Checkout.php
1 year ago
Click.php
1 year ago
Collection.php
2 years ago
CommissionStructure.php
2 years ago
Component.php
4 years ago
Coupon.php
1 year ago
Customer.php
1 year ago
CustomerLink.php
4 years ago
CustomerNotificationProtocol.php
4 years ago
CustomerPortalProtocol.php
1 year ago
DatabaseModel.php
1 year ago
Discount.php
1 year ago
Download.php
4 years ago
Event.php
4 years ago
Export.php
2 years ago
ExternalApiModel.php
1 year ago
Form.php
3 years ago
Fulfillment.php
1 year ago
FulfillmentItem.php
1 year ago
GalleryItem.php
1 year ago
GalleryItemAttachment.php
1 year ago
GalleryItemMedia.php
1 year ago
GalleryItemProductMedia.php
1 year ago
IncomingWebhook.php
1 year ago
Integration.php
2 years ago
IntegrationCatalog.php
1 year ago
Invoice.php
1 year ago
License.php
1 year ago
LineItem.php
1 year ago
ManualPaymentMethod.php
1 year ago
Media.php
1 year ago
Model.php
1 year ago
ModelInterface.php
4 years ago
Order.php
1 year ago
OrderProtocol.php
4 years ago
PaymentFailure.php
1 year ago
PaymentInstrument.php
1 year ago
PaymentIntent.php
4 years ago
PaymentMethod.php
1 year ago
Payout.php
1 year ago
PayoutGroup.php
2 years ago
Period.php
1 year ago
PortalSession.php
4 years ago
Price.php
1 year ago
Processor.php
1 year ago
Product.php
1 year ago
ProductCollection.php
1 year ago
ProductGroup.php
1 year ago
ProductMedia.php
1 year ago
Promotion.php
1 year ago
ProvisionalAccount.php
2 years ago
Purchase.php
2 years ago
Referral.php
1 year ago
ReferralItem.php
2 years ago
Refund.php
1 year ago
RegisteredWebhook.php
2 years ago
ReturnItem.php
2 years ago
ReturnReason.php
2 years ago
ReturnRequest.php
1 year ago
ShippingMethod.php
3 years ago
ShippingProfile.php
3 years ago
ShippingProtocol.php
3 years ago
ShippingRate.php
3 years ago
ShippingZone.php
3 years ago
Statistic.php
4 years ago
Subscription.php
1 year ago
SubscriptionProtocol.php
4 years ago
TaxOverride.php
2 years ago
TaxProtocol.php
4 years ago
TaxRegistration.php
1 year ago
TaxZone.php
4 years ago
Upload.php
4 years ago
Upsell.php
1 year ago
UpsellFunnel.php
1 year ago
User.php
2 years ago
Variant.php
1 year ago
VariantOption.php
2 years ago
VariantOptionValue.php
1 year ago
VariantValue.php
2 years ago
VerificationCode.php
3 years ago
Webhook.php
1 year ago
WebhookRegistration.php
2 years ago
Invoice.php
166 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Models; |
| 4 | |
| 5 | use SureCart\Models\Traits\HasCheckout; |
| 6 | use SureCart\Models\Traits\HasDates; |
| 7 | use SureCart\Support\TimeDate; |
| 8 | |
| 9 | /** |
| 10 | * Invoice model |
| 11 | */ |
| 12 | class Invoice extends Model { |
| 13 | use HasCheckout; |
| 14 | use HasDates; |
| 15 | |
| 16 | /** |
| 17 | * Rest API endpoint |
| 18 | * |
| 19 | * @var string |
| 20 | */ |
| 21 | protected $endpoint = 'invoices'; |
| 22 | |
| 23 | /** |
| 24 | * Object name |
| 25 | * |
| 26 | * @var string |
| 27 | */ |
| 28 | protected $object_name = 'invoice'; |
| 29 | |
| 30 | /** |
| 31 | * Need to pass the processor type on create |
| 32 | * |
| 33 | * @param array $attributes Optional attributes. |
| 34 | * @param string $type stripe, paypal, etc. |
| 35 | */ |
| 36 | public function __construct( $attributes = [], $type = '' ) { |
| 37 | $this->processor_type = $type; |
| 38 | parent::__construct( $attributes ); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Get the checkout page URL for the invoice. |
| 43 | * |
| 44 | * @return string |
| 45 | */ |
| 46 | public function getCheckoutUrlAttribute(): string { |
| 47 | return add_query_arg( 'checkout_id', $this->checkout_id, \SureCart::pages()->url( 'checkout' ) ); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Make draft invoice. |
| 52 | * |
| 53 | * @param string|null $id Invoice ID. |
| 54 | * |
| 55 | * @return self|\WP_Error |
| 56 | */ |
| 57 | protected function makeDraft( $id = null ) { |
| 58 | if ( $id ) { |
| 59 | $this->setAttribute( 'id', $id ); |
| 60 | } |
| 61 | |
| 62 | if ( $this->fireModelEvent( 'drafting' ) === false ) { |
| 63 | return false; |
| 64 | } |
| 65 | |
| 66 | if ( empty( $this->attributes['id'] ) ) { |
| 67 | return new \WP_Error( 'not_saved', __( 'Please create the invoice first.', 'surecart' ) ); |
| 68 | } |
| 69 | |
| 70 | $drafted = \SureCart::request( |
| 71 | $this->endpoint . '/' . $this->attributes['id'] . '/make_draft', |
| 72 | [ |
| 73 | 'method' => 'PATCH', |
| 74 | 'query' => $this->query, |
| 75 | ] |
| 76 | ); |
| 77 | |
| 78 | if ( is_wp_error( $drafted ) ) { |
| 79 | return $drafted; |
| 80 | } |
| 81 | |
| 82 | $this->resetAttributes(); |
| 83 | |
| 84 | $this->fill( $drafted ); |
| 85 | |
| 86 | $this->fireModelEvent( 'drafted' ); |
| 87 | |
| 88 | return $this; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Open invoice. |
| 93 | * |
| 94 | * @param string|null $id Invoice ID. |
| 95 | * |
| 96 | * @return self|\WP_Error |
| 97 | */ |
| 98 | protected function open( $id = null ) { |
| 99 | if ( $id ) { |
| 100 | $this->setAttribute( 'id', $id ); |
| 101 | } |
| 102 | |
| 103 | if ( $this->fireModelEvent( 'opening' ) === false ) { |
| 104 | return $this; |
| 105 | } |
| 106 | |
| 107 | if ( empty( $this->attributes['id'] ) ) { |
| 108 | return new \WP_Error( 'not_saved', __( 'Please create the invoice first.', 'surecart' ) ); |
| 109 | } |
| 110 | |
| 111 | $opened = \SureCart::request( |
| 112 | $this->endpoint . '/' . $this->attributes['id'] . '/open', |
| 113 | [ |
| 114 | 'method' => 'PATCH', |
| 115 | 'query' => $this->query, |
| 116 | ] |
| 117 | ); |
| 118 | |
| 119 | if ( is_wp_error( $opened ) ) { |
| 120 | return $opened; |
| 121 | } |
| 122 | |
| 123 | $this->resetAttributes(); |
| 124 | $this->fill( $opened ); |
| 125 | $this->fireModelEvent( 'opened' ); |
| 126 | |
| 127 | return $this; |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Get the due date display. |
| 132 | * |
| 133 | * @return string |
| 134 | */ |
| 135 | public function getDueDateDateAttribute() { |
| 136 | return ! empty( $this->due_date ) ? TimeDate::formatDate( $this->due_date ) : ''; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Get the due date time display. |
| 141 | * |
| 142 | * @return string |
| 143 | */ |
| 144 | public function getDueDateTimeDateAttribute() { |
| 145 | return ! empty( $this->due_date ) ? TimeDate::formatDateAndTime( $this->due_date ) : ''; |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Get the issue date display. |
| 150 | * |
| 151 | * @return string |
| 152 | */ |
| 153 | public function getIssueDateDateAttribute() { |
| 154 | return ! empty( $this->issue_date ) ? TimeDate::formatDate( $this->issue_date ) : ''; |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Get the issue date time display. |
| 159 | * |
| 160 | * @return string |
| 161 | */ |
| 162 | public function getIssueDateTimeDateAttribute() { |
| 163 | return ! empty( $this->issue_date ) ? TimeDate::formatDateAndTime( $this->issue_date ) : ''; |
| 164 | } |
| 165 | } |
| 166 |