Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like WPInv_Invoice often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use WPInv_Invoice, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 14 | final class WPInv_Invoice { |
||
| 15 | public $ID = 0; |
||
| 16 | public $title; |
||
| 17 | public $post_type; |
||
| 18 | |||
| 19 | public $pending; |
||
| 20 | public $items = array(); |
||
| 21 | public $user_info = array(); |
||
| 22 | public $payment_meta = array(); |
||
| 23 | |||
| 24 | public $new = false; |
||
| 25 | public $number = ''; |
||
| 26 | public $mode = 'live'; |
||
| 27 | public $key = ''; |
||
| 28 | public $total = 0.00; |
||
| 29 | public $subtotal = 0; |
||
| 30 | public $tax = 0; |
||
| 31 | public $fees = array(); |
||
| 32 | public $fees_total = 0; |
||
| 33 | public $discounts = ''; |
||
| 34 | public $discount = 0; |
||
| 35 | public $discount_code = 0; |
||
| 36 | public $date = ''; |
||
| 37 | public $due_date = ''; |
||
| 38 | public $completed_date = ''; |
||
| 39 | public $status = 'wpi-pending'; |
||
| 40 | public $post_status = 'wpi-pending'; |
||
| 41 | public $old_status = ''; |
||
| 42 | public $status_nicename = ''; |
||
| 43 | public $user_id = 0; |
||
| 44 | public $first_name = ''; |
||
| 45 | public $last_name = ''; |
||
| 46 | public $email = ''; |
||
| 47 | public $phone = ''; |
||
| 48 | public $address = ''; |
||
| 49 | public $city = ''; |
||
| 50 | public $country = ''; |
||
| 51 | public $state = ''; |
||
| 52 | public $zip = ''; |
||
| 53 | public $transaction_id = ''; |
||
| 54 | public $ip = ''; |
||
| 55 | public $gateway = ''; |
||
| 56 | public $gateway_title = ''; |
||
| 57 | public $currency = ''; |
||
| 58 | public $cart_details = array(); |
||
| 59 | |||
| 60 | public $company = ''; |
||
| 61 | public $vat_number = ''; |
||
| 62 | public $vat_rate = ''; |
||
| 63 | public $adddress_confirmed = ''; |
||
| 64 | |||
| 65 | public $full_name = ''; |
||
| 66 | public $parent_invoice = 0; |
||
| 67 | |||
| 68 | public function __construct( $invoice_id = false ) { |
||
| 69 | if( empty( $invoice_id ) ) { |
||
| 70 | return false; |
||
|
|
|||
| 71 | } |
||
| 72 | |||
| 73 | $this->setup_invoice( $invoice_id ); |
||
| 74 | } |
||
| 75 | |||
| 76 | public function get( $key ) { |
||
| 77 | if ( method_exists( $this, 'get_' . $key ) ) { |
||
| 78 | $value = call_user_func( array( $this, 'get_' . $key ) ); |
||
| 79 | } else { |
||
| 80 | $value = $this->$key; |
||
| 81 | } |
||
| 82 | |||
| 83 | return $value; |
||
| 84 | } |
||
| 85 | |||
| 86 | public function set( $key, $value ) { |
||
| 87 | $ignore = array( 'items', 'cart_details', 'fees', '_ID' ); |
||
| 88 | |||
| 89 | if ( $key === 'status' ) { |
||
| 90 | $this->old_status = $this->status; |
||
| 91 | } |
||
| 92 | |||
| 93 | if ( ! in_array( $key, $ignore ) ) { |
||
| 94 | $this->pending[ $key ] = $value; |
||
| 95 | } |
||
| 96 | |||
| 97 | if( '_ID' !== $key ) { |
||
| 98 | $this->$key = $value; |
||
| 99 | } |
||
| 100 | } |
||
| 101 | |||
| 102 | public function _isset( $name ) { |
||
| 103 | if ( property_exists( $this, $name) ) { |
||
| 104 | return false === empty( $this->$name ); |
||
| 105 | } else { |
||
| 106 | return null; |
||
| 107 | } |
||
| 108 | } |
||
| 109 | |||
| 110 | private function setup_invoice( $invoice_id ) { |
||
| 111 | $this->pending = array(); |
||
| 112 | |||
| 113 | if ( empty( $invoice_id ) ) { |
||
| 114 | return false; |
||
| 115 | } |
||
| 116 | |||
| 117 | $invoice = get_post( $invoice_id ); |
||
| 118 | |||
| 119 | if( !$invoice || is_wp_error( $invoice ) ) { |
||
| 120 | return false; |
||
| 121 | } |
||
| 122 | |||
| 123 | if( !('wpi_invoice' == $invoice->post_type OR 'wpi_quote' == $invoice->post_type) ) { |
||
| 124 | return false; |
||
| 125 | } |
||
| 126 | |||
| 127 | do_action( 'wpinv_pre_setup_invoice', $this, $invoice_id ); |
||
| 128 | |||
| 129 | // Primary Identifier |
||
| 130 | $this->ID = absint( $invoice_id ); |
||
| 131 | $this->post_type = $invoice->post_type; |
||
| 132 | |||
| 133 | // We have a payment, get the generic payment_meta item to reduce calls to it |
||
| 134 | $this->payment_meta = $this->get_meta(); |
||
| 135 | $this->date = $invoice->post_date; |
||
| 136 | $this->due_date = $this->setup_due_date(); |
||
| 137 | $this->completed_date = $this->setup_completed_date(); |
||
| 138 | $this->status = $invoice->post_status; |
||
| 139 | $this->post_status = $this->status; |
||
| 140 | $this->mode = $this->setup_mode(); |
||
| 141 | $this->parent_invoice = $invoice->post_parent; |
||
| 142 | $this->post_name = $this->setup_post_name( $invoice ); |
||
| 143 | $this->status_nicename = $this->setup_status_nicename($invoice->post_status); |
||
| 144 | |||
| 145 | // Items |
||
| 146 | $this->fees = $this->setup_fees(); |
||
| 147 | $this->cart_details = $this->setup_cart_details(); |
||
| 148 | $this->items = $this->setup_items(); |
||
| 149 | |||
| 150 | // Currency Based |
||
| 151 | $this->total = $this->setup_total(); |
||
| 152 | $this->tax = $this->setup_tax(); |
||
| 153 | $this->fees_total = $this->get_fees_total(); |
||
| 154 | $this->subtotal = $this->setup_subtotal(); |
||
| 155 | $this->currency = $this->setup_currency(); |
||
| 156 | |||
| 157 | // Gateway based |
||
| 158 | $this->gateway = $this->setup_gateway(); |
||
| 159 | $this->gateway_title = $this->setup_gateway_title(); |
||
| 160 | $this->transaction_id = $this->setup_transaction_id(); |
||
| 161 | |||
| 162 | // User based |
||
| 163 | $this->ip = $this->setup_ip(); |
||
| 164 | $this->user_id = !empty( $invoice->post_author ) ? $invoice->post_author : get_current_user_id();///$this->setup_user_id(); |
||
| 165 | $this->email = get_the_author_meta( 'email', $this->user_id ); |
||
| 166 | |||
| 167 | $this->user_info = $this->setup_user_info(); |
||
| 168 | |||
| 169 | $this->first_name = $this->user_info['first_name']; |
||
| 170 | $this->last_name = $this->user_info['last_name']; |
||
| 171 | $this->company = $this->user_info['company']; |
||
| 172 | $this->vat_number = $this->user_info['vat_number']; |
||
| 173 | $this->vat_rate = $this->user_info['vat_rate']; |
||
| 174 | $this->adddress_confirmed = $this->user_info['adddress_confirmed']; |
||
| 175 | $this->address = $this->user_info['address']; |
||
| 176 | $this->city = $this->user_info['city']; |
||
| 177 | $this->country = $this->user_info['country']; |
||
| 178 | $this->state = $this->user_info['state']; |
||
| 179 | $this->zip = $this->user_info['zip']; |
||
| 180 | $this->phone = $this->user_info['phone']; |
||
| 181 | |||
| 182 | $this->discounts = $this->user_info['discount']; |
||
| 183 | $this->discount = $this->setup_discount(); |
||
| 184 | $this->discount_code = $this->setup_discount_code(); |
||
| 185 | |||
| 186 | // Other Identifiers |
||
| 187 | $this->key = $this->setup_invoice_key(); |
||
| 188 | $this->number = $this->setup_invoice_number(); |
||
| 189 | $this->title = !empty( $invoice->post_title ) ? $invoice->post_title : $this->number; |
||
| 190 | |||
| 191 | $this->full_name = trim( $this->first_name . ' '. $this->last_name ); |
||
| 192 | |||
| 193 | // Allow extensions to add items to this object via hook |
||
| 194 | do_action( 'wpinv_setup_invoice', $this, $invoice_id ); |
||
| 195 | |||
| 196 | return true; |
||
| 197 | } |
||
| 198 | |||
| 199 | private function setup_status_nicename($status) { |
||
| 200 | $all_invoice_statuses = wpinv_get_invoice_statuses(); |
||
| 201 | $status = isset( $all_invoice_statuses[$status] ) ? $all_invoice_statuses[$status] : __( $status, 'invoicing' ); |
||
| 202 | |||
| 203 | return apply_filters( 'setup_status_nicename', $status ); |
||
| 204 | } |
||
| 205 | |||
| 206 | private function setup_post_name( $post = NULL ) { |
||
| 207 | global $wpdb; |
||
| 208 | |||
| 209 | $post_name = ''; |
||
| 210 | |||
| 211 | if ( !empty( $post ) ) { |
||
| 212 | if( !empty( $post->post_name ) ) { |
||
| 213 | $post_name = $post->post_name; |
||
| 214 | } else if ( !empty( $post->ID ) ) { |
||
| 215 | $post_name = wpinv_generate_post_name( $post->ID ); |
||
| 216 | |||
| 217 | $wpdb->update( $wpdb->posts, array( 'post_name' => $post_name ), array( 'ID' => $post->ID ) ); |
||
| 218 | } |
||
| 219 | } |
||
| 220 | |||
| 221 | $this->post_name = $post_name; |
||
| 222 | } |
||
| 223 | |||
| 224 | private function setup_due_date() { |
||
| 225 | $due_date = $this->get_meta( '_wpinv_due_date' ); |
||
| 226 | |||
| 227 | if ( empty( $due_date ) ) { |
||
| 228 | $overdue_time = strtotime( $this->date ) + ( DAY_IN_SECONDS * absint( wpinv_get_option( 'overdue_days' ) ) ); |
||
| 229 | $due_date = date_i18n( 'Y-m-d', $overdue_time ); |
||
| 230 | } else if ( $due_date == 'none' ) { |
||
| 231 | $due_date = ''; |
||
| 232 | } |
||
| 233 | |||
| 234 | return $due_date; |
||
| 235 | } |
||
| 236 | |||
| 237 | private function setup_completed_date() { |
||
| 238 | $invoice = get_post( $this->ID ); |
||
| 239 | |||
| 240 | if ( 'wpi-pending' == $invoice->post_status || 'preapproved' == $invoice->post_status ) { |
||
| 241 | return false; // This invoice was never paid |
||
| 242 | } |
||
| 243 | |||
| 244 | $date = ( $date = $this->get_meta( '_wpinv_completed_date', true ) ) ? $date : $invoice->modified_date; |
||
| 245 | |||
| 246 | return $date; |
||
| 247 | } |
||
| 248 | |||
| 249 | private function setup_cart_details() { |
||
| 250 | $cart_details = isset( $this->payment_meta['cart_details'] ) ? maybe_unserialize( $this->payment_meta['cart_details'] ) : array(); |
||
| 251 | return $cart_details; |
||
| 252 | } |
||
| 253 | |||
| 254 | public function array_convert() { |
||
| 255 | return get_object_vars( $this ); |
||
| 256 | } |
||
| 257 | |||
| 258 | private function setup_items() { |
||
| 259 | $items = isset( $this->payment_meta['items'] ) ? maybe_unserialize( $this->payment_meta['items'] ) : array(); |
||
| 260 | return $items; |
||
| 261 | } |
||
| 262 | |||
| 263 | private function setup_fees() { |
||
| 264 | $payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array(); |
||
| 265 | return $payment_fees; |
||
| 266 | } |
||
| 267 | |||
| 268 | private function setup_currency() { |
||
| 269 | $currency = isset( $this->payment_meta['currency'] ) ? $this->payment_meta['currency'] : apply_filters( 'wpinv_currency_default', wpinv_get_currency(), $this ); |
||
| 270 | return $currency; |
||
| 271 | } |
||
| 272 | |||
| 273 | private function setup_discount() { |
||
| 274 | //$discount = $this->get_meta( '_wpinv_discount', true ); |
||
| 275 | $discount = (float)$this->subtotal - ( (float)$this->total - (float)$this->tax - (float)$this->fees_total ); |
||
| 276 | if ( $discount < 0 ) { |
||
| 277 | $discount = 0; |
||
| 278 | } |
||
| 279 | $discount = wpinv_round_amount( $discount ); |
||
| 280 | |||
| 281 | return $discount; |
||
| 282 | } |
||
| 283 | |||
| 284 | private function setup_discount_code() { |
||
| 285 | $discount_code = !empty( $this->discounts ) ? $this->discounts : $this->get_meta( '_wpinv_discount_code', true ); |
||
| 286 | return $discount_code; |
||
| 287 | } |
||
| 288 | |||
| 289 | private function setup_tax() { |
||
| 290 | $tax = $this->get_meta( '_wpinv_tax', true ); |
||
| 291 | |||
| 292 | // We don't have tax as it's own meta and no meta was passed |
||
| 293 | if ( '' === $tax ) { |
||
| 294 | $tax = isset( $this->payment_meta['tax'] ) ? $this->payment_meta['tax'] : 0; |
||
| 295 | } |
||
| 296 | |||
| 297 | if ( $tax < 0 ) { |
||
| 298 | $tax = 0; |
||
| 299 | } |
||
| 300 | |||
| 301 | return $tax; |
||
| 302 | } |
||
| 303 | |||
| 304 | private function setup_subtotal() { |
||
| 305 | $subtotal = 0; |
||
| 306 | $cart_details = $this->cart_details; |
||
| 307 | |||
| 308 | if ( is_array( $cart_details ) ) { |
||
| 309 | foreach ( $cart_details as $item ) { |
||
| 310 | if ( isset( $item['subtotal'] ) ) { |
||
| 311 | $subtotal += $item['subtotal']; |
||
| 312 | } |
||
| 313 | } |
||
| 314 | } else { |
||
| 315 | $subtotal = $this->total; |
||
| 316 | $tax = wpinv_use_taxes() ? $this->tax : 0; |
||
| 317 | $subtotal -= $tax; |
||
| 318 | } |
||
| 319 | |||
| 320 | return $subtotal; |
||
| 321 | } |
||
| 322 | |||
| 323 | private function setup_discounts() { |
||
| 324 | $discounts = ! empty( $this->payment_meta['user_info']['discount'] ) ? $this->payment_meta['user_info']['discount'] : array(); |
||
| 325 | return $discounts; |
||
| 326 | } |
||
| 327 | |||
| 328 | private function setup_total() { |
||
| 329 | $amount = $this->get_meta( '_wpinv_total', true ); |
||
| 330 | |||
| 331 | if ( empty( $amount ) && '0.00' != $amount ) { |
||
| 332 | $meta = $this->get_meta( '_wpinv_payment_meta', true ); |
||
| 333 | $meta = maybe_unserialize( $meta ); |
||
| 334 | |||
| 335 | if ( isset( $meta['amount'] ) ) { |
||
| 336 | $amount = $meta['amount']; |
||
| 337 | } |
||
| 338 | } |
||
| 339 | |||
| 340 | if($amount < 0){ |
||
| 341 | $amount = 0; |
||
| 342 | } |
||
| 343 | |||
| 344 | return $amount; |
||
| 345 | } |
||
| 346 | |||
| 347 | private function setup_mode() { |
||
| 348 | return $this->get_meta( '_wpinv_mode' ); |
||
| 349 | } |
||
| 350 | |||
| 351 | private function setup_gateway() { |
||
| 352 | $gateway = $this->get_meta( '_wpinv_gateway' ); |
||
| 353 | |||
| 354 | if ( empty( $gateway ) && 'publish' === $this->status ) { |
||
| 355 | $gateway = 'manual'; |
||
| 356 | } |
||
| 357 | |||
| 358 | return $gateway; |
||
| 359 | } |
||
| 360 | |||
| 361 | private function setup_gateway_title() { |
||
| 362 | $gateway_title = wpinv_get_gateway_checkout_label( $this->gateway ); |
||
| 363 | return $gateway_title; |
||
| 364 | } |
||
| 365 | |||
| 366 | private function setup_transaction_id() { |
||
| 367 | $transaction_id = $this->get_meta( '_wpinv_transaction_id' ); |
||
| 368 | |||
| 369 | if ( empty( $transaction_id ) || (int) $transaction_id === (int) $this->ID ) { |
||
| 370 | $gateway = $this->gateway; |
||
| 371 | $transaction_id = apply_filters( 'wpinv_get_invoice_transaction_id-' . $gateway, $this->ID ); |
||
| 372 | } |
||
| 373 | |||
| 374 | return $transaction_id; |
||
| 375 | } |
||
| 376 | |||
| 377 | private function setup_ip() { |
||
| 378 | $ip = $this->get_meta( '_wpinv_user_ip' ); |
||
| 379 | return $ip; |
||
| 380 | } |
||
| 381 | |||
| 382 | ///private function setup_user_id() { |
||
| 383 | ///$user_id = $this->get_meta( '_wpinv_user_id' ); |
||
| 384 | ///return $user_id; |
||
| 385 | ///} |
||
| 386 | |||
| 387 | private function setup_first_name() { |
||
| 388 | $first_name = $this->get_meta( '_wpinv_first_name' ); |
||
| 389 | return $first_name; |
||
| 390 | } |
||
| 391 | |||
| 392 | private function setup_last_name() { |
||
| 393 | $last_name = $this->get_meta( '_wpinv_last_name' ); |
||
| 394 | return $last_name; |
||
| 395 | } |
||
| 396 | |||
| 397 | private function setup_company() { |
||
| 398 | $company = $this->get_meta( '_wpinv_company' ); |
||
| 399 | return $company; |
||
| 400 | } |
||
| 401 | |||
| 402 | private function setup_vat_number() { |
||
| 403 | $vat_number = $this->get_meta( '_wpinv_vat_number' ); |
||
| 404 | return $vat_number; |
||
| 405 | } |
||
| 406 | |||
| 407 | private function setup_vat_rate() { |
||
| 408 | $vat_rate = $this->get_meta( '_wpinv_vat_rate' ); |
||
| 409 | return $vat_rate; |
||
| 410 | } |
||
| 411 | |||
| 412 | private function setup_adddress_confirmed() { |
||
| 413 | $adddress_confirmed = $this->get_meta( '_wpinv_adddress_confirmed' ); |
||
| 414 | return $adddress_confirmed; |
||
| 415 | } |
||
| 416 | |||
| 417 | private function setup_phone() { |
||
| 418 | $phone = $this->get_meta( '_wpinv_phone' ); |
||
| 419 | return $phone; |
||
| 420 | } |
||
| 421 | |||
| 422 | private function setup_address() { |
||
| 423 | $address = $this->get_meta( '_wpinv_address', true ); |
||
| 424 | return $address; |
||
| 425 | } |
||
| 426 | |||
| 427 | private function setup_city() { |
||
| 428 | $city = $this->get_meta( '_wpinv_city', true ); |
||
| 429 | return $city; |
||
| 430 | } |
||
| 431 | |||
| 432 | private function setup_country() { |
||
| 433 | $country = $this->get_meta( '_wpinv_country', true ); |
||
| 434 | return $country; |
||
| 435 | } |
||
| 436 | |||
| 437 | private function setup_state() { |
||
| 438 | $state = $this->get_meta( '_wpinv_state', true ); |
||
| 439 | return $state; |
||
| 440 | } |
||
| 441 | |||
| 442 | private function setup_zip() { |
||
| 443 | $zip = $this->get_meta( '_wpinv_zip', true ); |
||
| 444 | return $zip; |
||
| 445 | } |
||
| 446 | |||
| 447 | private function setup_user_info() { |
||
| 448 | $defaults = array( |
||
| 449 | 'user_id' => $this->user_id, |
||
| 450 | 'first_name' => $this->first_name, |
||
| 451 | 'last_name' => $this->last_name, |
||
| 452 | 'email' => get_the_author_meta( 'email', $this->user_id ), |
||
| 453 | 'phone' => $this->phone, |
||
| 454 | 'address' => $this->address, |
||
| 455 | 'city' => $this->city, |
||
| 456 | 'country' => $this->country, |
||
| 457 | 'state' => $this->state, |
||
| 458 | 'zip' => $this->zip, |
||
| 459 | 'company' => $this->company, |
||
| 460 | 'vat_number' => $this->vat_number, |
||
| 461 | 'vat_rate' => $this->vat_rate, |
||
| 462 | 'adddress_confirmed' => $this->adddress_confirmed, |
||
| 463 | 'discount' => $this->discounts, |
||
| 464 | ); |
||
| 465 | |||
| 466 | $user_info = array(); |
||
| 467 | if ( isset( $this->payment_meta['user_info'] ) ) { |
||
| 468 | $user_info = maybe_unserialize( $this->payment_meta['user_info'] ); |
||
| 469 | |||
| 470 | if ( !empty( $user_info ) && isset( $user_info['user_id'] ) && $post = get_post( $this->ID ) ) { |
||
| 471 | $this->user_id = $post->post_author; |
||
| 472 | $this->email = get_the_author_meta( 'email', $this->user_id ); |
||
| 473 | |||
| 474 | $user_info['user_id'] = $this->user_id; |
||
| 475 | $user_info['email'] = $this->email; |
||
| 476 | $this->payment_meta['user_id'] = $this->user_id; |
||
| 477 | $this->payment_meta['email'] = $this->email; |
||
| 478 | } |
||
| 479 | } |
||
| 480 | |||
| 481 | $user_info = wp_parse_args( $user_info, $defaults ); |
||
| 482 | |||
| 483 | // Get the user, but only if it's been created |
||
| 484 | $user = get_userdata( $this->user_id ); |
||
| 485 | |||
| 486 | if ( !empty( $user ) && $user->ID > 0 ) { |
||
| 487 | if ( empty( $user_info ) ) { |
||
| 488 | $user_info = array( |
||
| 489 | 'user_id' => $user->ID, |
||
| 490 | 'first_name' => $user->first_name, |
||
| 491 | 'last_name' => $user->last_name, |
||
| 492 | 'email' => $user->user_email, |
||
| 493 | 'discount' => '', |
||
| 494 | ); |
||
| 495 | } else { |
||
| 496 | foreach ( $user_info as $key => $value ) { |
||
| 497 | if ( ! empty( $value ) ) { |
||
| 498 | continue; |
||
| 499 | } |
||
| 500 | |||
| 501 | switch( $key ) { |
||
| 502 | case 'user_id': |
||
| 503 | $user_info[ $key ] = $user->ID; |
||
| 504 | break; |
||
| 505 | case 'first_name': |
||
| 506 | $user_info[ $key ] = $user->first_name; |
||
| 507 | break; |
||
| 508 | case 'last_name': |
||
| 509 | $user_info[ $key ] = $user->last_name; |
||
| 510 | break; |
||
| 511 | case 'email': |
||
| 512 | $user_info[ $key ] = $user->user_email; |
||
| 513 | break; |
||
| 514 | } |
||
| 515 | } |
||
| 516 | } |
||
| 517 | } |
||
| 518 | |||
| 519 | return $user_info; |
||
| 520 | } |
||
| 521 | |||
| 522 | private function setup_invoice_key() { |
||
| 523 | $key = $this->get_meta( '_wpinv_key', true ); |
||
| 524 | |||
| 525 | return $key; |
||
| 526 | } |
||
| 527 | |||
| 528 | private function setup_invoice_number() { |
||
| 529 | $number = $this->get_meta( '_wpinv_number', true ); |
||
| 530 | |||
| 531 | if ( !$number ) { |
||
| 532 | $number = $this->ID; |
||
| 533 | |||
| 534 | if ( $this->status == 'auto-draft' ) { |
||
| 535 | if ( wpinv_sequential_number_active( $this->post_type ) ) { |
||
| 536 | $next_number = wpinv_get_next_invoice_number( $this->post_type ); |
||
| 537 | $number = $next_number; |
||
| 538 | } |
||
| 539 | } |
||
| 540 | |||
| 541 | $number = wpinv_format_invoice_number( $number, $this->post_type ); |
||
| 542 | } |
||
| 543 | |||
| 544 | return $number; |
||
| 545 | } |
||
| 546 | |||
| 547 | private function insert_invoice() { |
||
| 548 | global $wpdb; |
||
| 549 | |||
| 550 | if ( empty( $this->post_type ) ) { |
||
| 551 | if ( !empty( $this->ID ) && $post_type = get_post_type( $this->ID ) ) { |
||
| 552 | $this->post_type = $post_type; |
||
| 553 | } else if ( !empty( $this->parent_invoice ) && $post_type = get_post_type( $this->parent_invoice ) ) { |
||
| 554 | $this->post_type = $post_type; |
||
| 555 | } else { |
||
| 556 | $this->post_type = 'wpi_invoice'; |
||
| 557 | } |
||
| 558 | } |
||
| 559 | |||
| 560 | $invoice_number = $this->ID; |
||
| 561 | if ( $number = $this->get_meta( '_wpinv_number', true ) ) { |
||
| 562 | $invoice_number = $number; |
||
| 563 | } |
||
| 564 | |||
| 565 | View Code Duplication | if ( empty( $this->key ) ) { |
|
| 566 | $this->key = self::generate_key(); |
||
| 567 | $this->pending['key'] = $this->key; |
||
| 568 | } |
||
| 569 | |||
| 570 | if ( empty( $this->ip ) ) { |
||
| 571 | $this->ip = wpinv_get_ip(); |
||
| 572 | $this->pending['ip'] = $this->ip; |
||
| 573 | } |
||
| 574 | |||
| 575 | $payment_data = array( |
||
| 576 | 'price' => $this->total, |
||
| 577 | 'date' => $this->date, |
||
| 578 | 'user_email' => $this->email, |
||
| 579 | 'invoice_key' => $this->key, |
||
| 580 | 'currency' => $this->currency, |
||
| 581 | 'items' => $this->items, |
||
| 582 | 'user_info' => array( |
||
| 583 | 'user_id' => $this->user_id, |
||
| 584 | 'email' => $this->email, |
||
| 585 | 'first_name' => $this->first_name, |
||
| 586 | 'last_name' => $this->last_name, |
||
| 587 | 'address' => $this->address, |
||
| 588 | 'phone' => $this->phone, |
||
| 589 | 'city' => $this->city, |
||
| 590 | 'country' => $this->country, |
||
| 591 | 'state' => $this->state, |
||
| 592 | 'zip' => $this->zip, |
||
| 593 | 'company' => $this->company, |
||
| 594 | 'vat_number' => $this->vat_number, |
||
| 595 | 'discount' => $this->discounts, |
||
| 596 | ), |
||
| 597 | 'cart_details' => $this->cart_details, |
||
| 598 | 'status' => $this->status, |
||
| 599 | 'fees' => $this->fees, |
||
| 600 | ); |
||
| 601 | |||
| 602 | $post_data = array( |
||
| 603 | 'post_title' => $invoice_number, |
||
| 604 | 'post_status' => $this->status, |
||
| 605 | 'post_author' => $this->user_id, |
||
| 606 | 'post_type' => $this->post_type, |
||
| 607 | 'post_date' => ! empty( $this->date ) && $this->date != '0000-00-00 00:00:00' ? $this->date : current_time( 'mysql' ), |
||
| 608 | 'post_date_gmt' => ! empty( $this->date ) && $this->date != '0000-00-00 00:00:00' ? get_gmt_from_date( $this->date ) : current_time( 'mysql', 1 ), |
||
| 609 | 'post_parent' => $this->parent_invoice, |
||
| 610 | ); |
||
| 611 | $args = apply_filters( 'wpinv_insert_invoice_args', $post_data, $this ); |
||
| 612 | |||
| 613 | // Create a blank invoice |
||
| 614 | if ( !empty( $this->ID ) ) { |
||
| 615 | $args['ID'] = $this->ID; |
||
| 616 | |||
| 617 | $invoice_id = wp_update_post( $args, true ); |
||
| 618 | } else { |
||
| 619 | $invoice_id = wp_insert_post( $args, true ); |
||
| 620 | } |
||
| 621 | |||
| 622 | if ( is_wp_error( $invoice_id ) ) { |
||
| 623 | return false; |
||
| 624 | } |
||
| 625 | |||
| 626 | if ( !empty( $invoice_id ) ) { |
||
| 627 | $this->ID = $invoice_id; |
||
| 628 | $this->_ID = $invoice_id; |
||
| 629 | |||
| 630 | $this->payment_meta = apply_filters( 'wpinv_payment_meta', $this->payment_meta, $payment_data ); |
||
| 631 | if ( ! empty( $this->payment_meta['fees'] ) ) { |
||
| 632 | $this->fees = array_merge( $this->fees, $this->payment_meta['fees'] ); |
||
| 633 | foreach( $this->fees as $fee ) { |
||
| 634 | $this->increase_fees( $fee['amount'] ); |
||
| 635 | } |
||
| 636 | } |
||
| 637 | |||
| 638 | $this->update_meta( '_wpinv_payment_meta', $this->payment_meta ); |
||
| 639 | $this->new = true; |
||
| 640 | } |
||
| 641 | |||
| 642 | return $this->ID; |
||
| 643 | } |
||
| 644 | |||
| 645 | public function save( $setup = false ) { |
||
| 646 | global $wpi_session; |
||
| 647 | |||
| 648 | $saved = false; |
||
| 649 | if ( empty( $this->items ) ) { |
||
| 650 | return $saved; // Don't save empty invoice. |
||
| 651 | } |
||
| 652 | |||
| 653 | View Code Duplication | if ( empty( $this->key ) ) { |
|
| 654 | $this->key = self::generate_key(); |
||
| 655 | $this->pending['key'] = $this->key; |
||
| 656 | } |
||
| 657 | |||
| 658 | if ( empty( $this->ID ) ) { |
||
| 659 | $invoice_id = $this->insert_invoice(); |
||
| 660 | |||
| 661 | if ( false === $invoice_id ) { |
||
| 662 | $saved = false; |
||
| 663 | } else { |
||
| 664 | $this->ID = $invoice_id; |
||
| 665 | } |
||
| 666 | } |
||
| 667 | |||
| 668 | // If we have something pending, let's save it |
||
| 669 | if ( !empty( $this->pending ) ) { |
||
| 670 | $total_increase = 0; |
||
| 671 | $total_decrease = 0; |
||
| 672 | |||
| 673 | foreach ( $this->pending as $key => $value ) { |
||
| 674 | switch( $key ) { |
||
| 675 | case 'items': |
||
| 676 | // Update totals for pending items |
||
| 677 | foreach ( $this->pending[ $key ] as $item ) { |
||
| 678 | switch( $item['action'] ) { |
||
| 679 | case 'add': |
||
| 680 | $price = $item['price']; |
||
| 681 | $taxes = $item['tax']; |
||
| 682 | |||
| 683 | if ( 'publish' === $this->status ) { |
||
| 684 | $total_increase += $price; |
||
| 685 | } |
||
| 686 | break; |
||
| 687 | |||
| 688 | case 'remove': |
||
| 689 | if ( 'publish' === $this->status ) { |
||
| 690 | $total_decrease += $item['price']; |
||
| 691 | } |
||
| 692 | break; |
||
| 693 | } |
||
| 694 | } |
||
| 695 | break; |
||
| 696 | case 'fees': |
||
| 697 | if ( 'publish' !== $this->status ) { |
||
| 698 | break; |
||
| 699 | } |
||
| 700 | |||
| 701 | if ( empty( $this->pending[ $key ] ) ) { |
||
| 702 | break; |
||
| 703 | } |
||
| 704 | |||
| 705 | foreach ( $this->pending[ $key ] as $fee ) { |
||
| 706 | switch( $fee['action'] ) { |
||
| 707 | case 'add': |
||
| 708 | $total_increase += $fee['amount']; |
||
| 709 | break; |
||
| 710 | |||
| 711 | case 'remove': |
||
| 712 | $total_decrease += $fee['amount']; |
||
| 713 | break; |
||
| 714 | } |
||
| 715 | } |
||
| 716 | break; |
||
| 717 | case 'status': |
||
| 718 | $this->update_status( $this->status ); |
||
| 719 | break; |
||
| 720 | case 'gateway': |
||
| 721 | $this->update_meta( '_wpinv_gateway', $this->gateway ); |
||
| 722 | break; |
||
| 723 | case 'mode': |
||
| 724 | $this->update_meta( '_wpinv_mode', $this->mode ); |
||
| 725 | break; |
||
| 726 | case 'transaction_id': |
||
| 727 | $this->update_meta( '_wpinv_transaction_id', $this->transaction_id ); |
||
| 728 | break; |
||
| 729 | case 'ip': |
||
| 730 | $this->update_meta( '_wpinv_user_ip', $this->ip ); |
||
| 731 | break; |
||
| 732 | ///case 'user_id': |
||
| 733 | ///$this->update_meta( '_wpinv_user_id', $this->user_id ); |
||
| 734 | ///$this->user_info['user_id'] = $this->user_id; |
||
| 735 | ///break; |
||
| 736 | case 'first_name': |
||
| 737 | $this->update_meta( '_wpinv_first_name', $this->first_name ); |
||
| 738 | $this->user_info['first_name'] = $this->first_name; |
||
| 739 | break; |
||
| 740 | case 'last_name': |
||
| 741 | $this->update_meta( '_wpinv_last_name', $this->last_name ); |
||
| 742 | $this->user_info['last_name'] = $this->last_name; |
||
| 743 | break; |
||
| 744 | case 'phone': |
||
| 745 | $this->update_meta( '_wpinv_phone', $this->phone ); |
||
| 746 | $this->user_info['phone'] = $this->phone; |
||
| 747 | break; |
||
| 748 | case 'address': |
||
| 749 | $this->update_meta( '_wpinv_address', $this->address ); |
||
| 750 | $this->user_info['address'] = $this->address; |
||
| 751 | break; |
||
| 752 | case 'city': |
||
| 753 | $this->update_meta( '_wpinv_city', $this->city ); |
||
| 754 | $this->user_info['city'] = $this->city; |
||
| 755 | break; |
||
| 756 | case 'country': |
||
| 757 | $this->update_meta( '_wpinv_country', $this->country ); |
||
| 758 | $this->user_info['country'] = $this->country; |
||
| 759 | break; |
||
| 760 | case 'state': |
||
| 761 | $this->update_meta( '_wpinv_state', $this->state ); |
||
| 762 | $this->user_info['state'] = $this->state; |
||
| 763 | break; |
||
| 764 | case 'zip': |
||
| 765 | $this->update_meta( '_wpinv_zip', $this->zip ); |
||
| 766 | $this->user_info['zip'] = $this->zip; |
||
| 767 | break; |
||
| 768 | case 'company': |
||
| 769 | $this->update_meta( '_wpinv_company', $this->company ); |
||
| 770 | $this->user_info['company'] = $this->company; |
||
| 771 | break; |
||
| 772 | case 'vat_number': |
||
| 773 | $this->update_meta( '_wpinv_vat_number', $this->vat_number ); |
||
| 774 | $this->user_info['vat_number'] = $this->vat_number; |
||
| 775 | |||
| 776 | $vat_info = $wpi_session->get( 'user_vat_data' ); |
||
| 777 | if ( $this->vat_number && !empty( $vat_info ) && isset( $vat_info['number'] ) && isset( $vat_info['valid'] ) && $vat_info['number'] == $this->vat_number ) { |
||
| 778 | $adddress_confirmed = isset( $vat_info['adddress_confirmed'] ) ? $vat_info['adddress_confirmed'] : false; |
||
| 779 | $this->update_meta( '_wpinv_adddress_confirmed', (bool)$adddress_confirmed ); |
||
| 780 | $this->user_info['adddress_confirmed'] = (bool)$adddress_confirmed; |
||
| 781 | } |
||
| 782 | |||
| 783 | break; |
||
| 784 | case 'vat_rate': |
||
| 785 | $this->update_meta( '_wpinv_vat_rate', $this->vat_rate ); |
||
| 786 | $this->user_info['vat_rate'] = $this->vat_rate; |
||
| 787 | break; |
||
| 788 | case 'adddress_confirmed': |
||
| 789 | $this->update_meta( '_wpinv_adddress_confirmed', $this->adddress_confirmed ); |
||
| 790 | $this->user_info['adddress_confirmed'] = $this->adddress_confirmed; |
||
| 791 | break; |
||
| 792 | |||
| 793 | case 'key': |
||
| 794 | $this->update_meta( '_wpinv_key', $this->key ); |
||
| 795 | break; |
||
| 796 | case 'date': |
||
| 797 | $args = array( |
||
| 798 | 'ID' => $this->ID, |
||
| 799 | 'post_date' => $this->date, |
||
| 800 | 'edit_date' => true, |
||
| 801 | ); |
||
| 802 | |||
| 803 | wp_update_post( $args ); |
||
| 804 | break; |
||
| 805 | case 'due_date': |
||
| 806 | if ( empty( $this->due_date ) ) { |
||
| 807 | $this->due_date = 'none'; |
||
| 808 | } |
||
| 809 | |||
| 810 | $this->update_meta( '_wpinv_due_date', $this->due_date ); |
||
| 811 | break; |
||
| 812 | case 'completed_date': |
||
| 813 | $this->update_meta( '_wpinv_completed_date', $this->completed_date ); |
||
| 814 | break; |
||
| 815 | case 'discounts': |
||
| 816 | if ( ! is_array( $this->discounts ) ) { |
||
| 817 | $this->discounts = explode( ',', $this->discounts ); |
||
| 818 | } |
||
| 819 | |||
| 820 | $this->user_info['discount'] = implode( ',', $this->discounts ); |
||
| 821 | break; |
||
| 822 | case 'discount': |
||
| 823 | $this->update_meta( '_wpinv_discount', wpinv_round_amount( $this->discount ) ); |
||
| 824 | break; |
||
| 825 | case 'discount_code': |
||
| 826 | $this->update_meta( '_wpinv_discount_code', $this->discount_code ); |
||
| 827 | break; |
||
| 828 | case 'parent_invoice': |
||
| 829 | $args = array( |
||
| 830 | 'ID' => $this->ID, |
||
| 831 | 'post_parent' => $this->parent_invoice, |
||
| 832 | ); |
||
| 833 | wp_update_post( $args ); |
||
| 834 | break; |
||
| 835 | default: |
||
| 836 | do_action( 'wpinv_save', $this, $key ); |
||
| 837 | break; |
||
| 838 | } |
||
| 839 | } |
||
| 840 | |||
| 841 | $this->update_meta( '_wpinv_subtotal', wpinv_round_amount( $this->subtotal ) ); |
||
| 842 | $this->update_meta( '_wpinv_total', wpinv_round_amount( $this->total ) ); |
||
| 843 | $this->update_meta( '_wpinv_tax', wpinv_round_amount( $this->tax ) ); |
||
| 844 | |||
| 845 | $this->items = array_values( $this->items ); |
||
| 846 | |||
| 847 | $new_meta = array( |
||
| 848 | 'items' => $this->items, |
||
| 849 | 'cart_details' => $this->cart_details, |
||
| 850 | 'fees' => $this->fees, |
||
| 851 | 'currency' => $this->currency, |
||
| 852 | 'user_info' => $this->user_info, |
||
| 853 | ); |
||
| 854 | |||
| 855 | $meta = $this->get_meta(); |
||
| 856 | $merged_meta = array_merge( $meta, $new_meta ); |
||
| 857 | |||
| 858 | // Only save the payment meta if it's changed |
||
| 859 | if ( md5( serialize( $meta ) ) !== md5( serialize( $merged_meta) ) ) { |
||
| 860 | $updated = $this->update_meta( '_wpinv_payment_meta', $merged_meta ); |
||
| 861 | if ( false !== $updated ) { |
||
| 862 | $saved = true; |
||
| 863 | } |
||
| 864 | } |
||
| 865 | |||
| 866 | $this->pending = array(); |
||
| 867 | $saved = true; |
||
| 868 | } else { |
||
| 869 | $this->update_meta( '_wpinv_subtotal', wpinv_round_amount( $this->subtotal ) ); |
||
| 870 | $this->update_meta( '_wpinv_total', wpinv_round_amount( $this->total ) ); |
||
| 871 | $this->update_meta( '_wpinv_tax', wpinv_round_amount( $this->tax ) ); |
||
| 872 | } |
||
| 873 | |||
| 874 | do_action( 'wpinv_invoice_save', $this, $saved ); |
||
| 875 | |||
| 876 | if ( true === $saved || $setup ) { |
||
| 877 | $this->setup_invoice( $this->ID ); |
||
| 878 | } |
||
| 879 | |||
| 880 | $this->refresh_item_ids(); |
||
| 881 | |||
| 882 | return $saved; |
||
| 883 | } |
||
| 884 | |||
| 885 | public function add_fee( $args, $global = true ) { |
||
| 886 | $default_args = array( |
||
| 887 | 'label' => '', |
||
| 888 | 'amount' => 0, |
||
| 889 | 'type' => 'fee', |
||
| 890 | 'id' => '', |
||
| 891 | 'no_tax' => false, |
||
| 892 | 'item_id' => 0, |
||
| 893 | ); |
||
| 894 | |||
| 895 | $fee = wp_parse_args( $args, $default_args ); |
||
| 896 | |||
| 897 | if ( !empty( $fee['label'] ) ) { |
||
| 898 | return false; |
||
| 899 | } |
||
| 900 | |||
| 901 | $fee['id'] = sanitize_title( $fee['label'] ); |
||
| 902 | |||
| 903 | $this->fees[] = $fee; |
||
| 904 | |||
| 905 | $added_fee = $fee; |
||
| 906 | $added_fee['action'] = 'add'; |
||
| 907 | $this->pending['fees'][] = $added_fee; |
||
| 908 | reset( $this->fees ); |
||
| 909 | |||
| 910 | $this->increase_fees( $fee['amount'] ); |
||
| 911 | return true; |
||
| 912 | } |
||
| 913 | |||
| 914 | public function remove_fee( $key ) { |
||
| 915 | $removed = false; |
||
| 916 | |||
| 917 | if ( is_numeric( $key ) ) { |
||
| 918 | $removed = $this->remove_fee_by( 'index', $key ); |
||
| 919 | } |
||
| 920 | |||
| 921 | return $removed; |
||
| 922 | } |
||
| 923 | |||
| 924 | public function remove_fee_by( $key, $value, $global = false ) { |
||
| 925 | $allowed_fee_keys = apply_filters( 'wpinv_fee_keys', array( |
||
| 926 | 'index', 'label', 'amount', 'type', |
||
| 927 | ) ); |
||
| 928 | |||
| 929 | if ( ! in_array( $key, $allowed_fee_keys ) ) { |
||
| 930 | return false; |
||
| 931 | } |
||
| 932 | |||
| 933 | $removed = false; |
||
| 934 | if ( 'index' === $key && array_key_exists( $value, $this->fees ) ) { |
||
| 935 | $removed_fee = $this->fees[ $value ]; |
||
| 936 | $removed_fee['action'] = 'remove'; |
||
| 937 | $this->pending['fees'][] = $removed_fee; |
||
| 938 | |||
| 939 | $this->decrease_fees( $removed_fee['amount'] ); |
||
| 940 | |||
| 941 | unset( $this->fees[ $value ] ); |
||
| 942 | $removed = true; |
||
| 943 | } else if ( 'index' !== $key ) { |
||
| 944 | foreach ( $this->fees as $index => $fee ) { |
||
| 945 | if ( isset( $fee[ $key ] ) && $fee[ $key ] == $value ) { |
||
| 946 | $removed_fee = $fee; |
||
| 947 | $removed_fee['action'] = 'remove'; |
||
| 948 | $this->pending['fees'][] = $removed_fee; |
||
| 949 | |||
| 950 | $this->decrease_fees( $removed_fee['amount'] ); |
||
| 951 | |||
| 952 | unset( $this->fees[ $index ] ); |
||
| 953 | $removed = true; |
||
| 954 | |||
| 955 | if ( false === $global ) { |
||
| 956 | break; |
||
| 957 | } |
||
| 958 | } |
||
| 959 | } |
||
| 960 | } |
||
| 961 | |||
| 962 | if ( true === $removed ) { |
||
| 963 | $this->fees = array_values( $this->fees ); |
||
| 964 | } |
||
| 965 | |||
| 966 | return $removed; |
||
| 967 | } |
||
| 968 | |||
| 969 | |||
| 970 | |||
| 971 | public function add_note( $note = '', $customer_type = false, $added_by_user = false, $system = false ) { |
||
| 972 | // Bail if no note specified |
||
| 973 | if( !$note ) { |
||
| 974 | return false; |
||
| 975 | } |
||
| 976 | |||
| 977 | if ( empty( $this->ID ) ) |
||
| 978 | return false; |
||
| 979 | |||
| 980 | if ( ( ( is_user_logged_in() && current_user_can( 'manage_options' ) ) || $added_by_user ) && !$system ) { |
||
| 981 | $user = get_user_by( 'id', get_current_user_id() ); |
||
| 982 | $comment_author = $user->display_name; |
||
| 983 | $comment_author_email = $user->user_email; |
||
| 984 | } else { |
||
| 985 | $comment_author = __( 'System', 'invoicing' ); |
||
| 986 | $comment_author_email = strtolower( __( 'System', 'invoicing' ) ) . '@'; |
||
| 987 | $comment_author_email .= isset( $_SERVER['HTTP_HOST'] ) ? str_replace( 'www.', '', $_SERVER['HTTP_HOST'] ) : 'noreply.com'; |
||
| 988 | $comment_author_email = sanitize_email( $comment_author_email ); |
||
| 989 | } |
||
| 990 | |||
| 991 | do_action( 'wpinv_pre_insert_invoice_note', $this->ID, $note, $customer_type ); |
||
| 992 | |||
| 993 | $note_id = wp_insert_comment( wp_filter_comment( array( |
||
| 994 | 'comment_post_ID' => $this->ID, |
||
| 995 | 'comment_content' => $note, |
||
| 996 | 'comment_agent' => 'WPInvoicing', |
||
| 997 | 'user_id' => is_admin() ? get_current_user_id() : 0, |
||
| 998 | 'comment_date' => current_time( 'mysql' ), |
||
| 999 | 'comment_date_gmt' => current_time( 'mysql', 1 ), |
||
| 1000 | 'comment_approved' => 1, |
||
| 1001 | 'comment_parent' => 0, |
||
| 1002 | 'comment_author' => $comment_author, |
||
| 1003 | 'comment_author_IP' => wpinv_get_ip(), |
||
| 1004 | 'comment_author_url' => '', |
||
| 1005 | 'comment_author_email' => $comment_author_email, |
||
| 1006 | 'comment_type' => 'wpinv_note' |
||
| 1007 | ) ) ); |
||
| 1008 | |||
| 1009 | do_action( 'wpinv_insert_payment_note', $note_id, $this->ID, $note ); |
||
| 1010 | |||
| 1011 | if ( $customer_type ) { |
||
| 1012 | add_comment_meta( $note_id, '_wpi_customer_note', 1 ); |
||
| 1013 | |||
| 1014 | do_action( 'wpinv_new_customer_note', array( 'invoice_id' => $this->ID, 'user_note' => $note ) ); |
||
| 1015 | } |
||
| 1016 | |||
| 1017 | return $note_id; |
||
| 1018 | } |
||
| 1019 | |||
| 1020 | private function increase_subtotal( $amount = 0.00 ) { |
||
| 1021 | $amount = (float) $amount; |
||
| 1022 | $this->subtotal += $amount; |
||
| 1023 | $this->subtotal = wpinv_round_amount( $this->subtotal ); |
||
| 1024 | |||
| 1025 | $this->recalculate_total(); |
||
| 1026 | } |
||
| 1027 | |||
| 1028 | View Code Duplication | private function decrease_subtotal( $amount = 0.00 ) { |
|
| 1029 | $amount = (float) $amount; |
||
| 1030 | $this->subtotal -= $amount; |
||
| 1031 | $this->subtotal = wpinv_round_amount( $this->subtotal ); |
||
| 1032 | |||
| 1033 | if ( $this->subtotal < 0 ) { |
||
| 1034 | $this->subtotal = 0; |
||
| 1035 | } |
||
| 1036 | |||
| 1037 | $this->recalculate_total(); |
||
| 1038 | } |
||
| 1039 | |||
| 1040 | private function increase_fees( $amount = 0.00 ) { |
||
| 1041 | $amount = (float)$amount; |
||
| 1042 | $this->fees_total += $amount; |
||
| 1043 | $this->fees_total = wpinv_round_amount( $this->fees_total ); |
||
| 1044 | |||
| 1045 | $this->recalculate_total(); |
||
| 1046 | } |
||
| 1047 | |||
| 1048 | View Code Duplication | private function decrease_fees( $amount = 0.00 ) { |
|
| 1049 | $amount = (float) $amount; |
||
| 1050 | $this->fees_total -= $amount; |
||
| 1051 | $this->fees_total = wpinv_round_amount( $this->fees_total ); |
||
| 1052 | |||
| 1053 | if ( $this->fees_total < 0 ) { |
||
| 1054 | $this->fees_total = 0; |
||
| 1055 | } |
||
| 1056 | |||
| 1057 | $this->recalculate_total(); |
||
| 1058 | } |
||
| 1059 | |||
| 1060 | public function recalculate_total() { |
||
| 1061 | global $wpi_nosave; |
||
| 1062 | |||
| 1063 | $this->total = $this->subtotal + $this->tax + $this->fees_total; |
||
| 1064 | $this->total = wpinv_round_amount( $this->total ); |
||
| 1065 | |||
| 1066 | do_action( 'wpinv_invoice_recalculate_total', $this, $wpi_nosave ); |
||
| 1067 | } |
||
| 1068 | |||
| 1069 | public function increase_tax( $amount = 0.00 ) { |
||
| 1070 | $amount = (float) $amount; |
||
| 1071 | $this->tax += $amount; |
||
| 1072 | |||
| 1073 | $this->recalculate_total(); |
||
| 1074 | } |
||
| 1075 | |||
| 1076 | public function decrease_tax( $amount = 0.00 ) { |
||
| 1077 | $amount = (float) $amount; |
||
| 1078 | $this->tax -= $amount; |
||
| 1079 | |||
| 1080 | if ( $this->tax < 0 ) { |
||
| 1081 | $this->tax = 0; |
||
| 1082 | } |
||
| 1083 | |||
| 1084 | $this->recalculate_total(); |
||
| 1085 | } |
||
| 1086 | |||
| 1087 | public function update_status( $new_status = false, $note = '', $manual = false ) { |
||
| 1088 | $old_status = ! empty( $this->old_status ) ? $this->old_status : get_post_status( $this->ID ); |
||
| 1089 | |||
| 1090 | if ( $old_status === $new_status && in_array( $new_status, array_keys( wpinv_get_invoice_statuses() ) ) ) { |
||
| 1091 | return false; // Don't permit status changes that aren't changes |
||
| 1092 | } |
||
| 1093 | |||
| 1094 | $do_change = apply_filters( 'wpinv_should_update_invoice_status', true, $this->ID, $new_status, $old_status ); |
||
| 1095 | $updated = false; |
||
| 1096 | |||
| 1097 | if ( $do_change ) { |
||
| 1098 | do_action( 'wpinv_before_invoice_status_change', $this->ID, $new_status, $old_status ); |
||
| 1099 | |||
| 1100 | $update_post_data = array(); |
||
| 1101 | $update_post_data['ID'] = $this->ID; |
||
| 1102 | $update_post_data['post_status'] = $new_status; |
||
| 1103 | $update_post_data['edit_date'] = current_time( 'mysql', 0 ); |
||
| 1104 | $update_post_data['edit_date_gmt'] = current_time( 'mysql', 1 ); |
||
| 1105 | |||
| 1106 | $update_post_data = apply_filters( 'wpinv_update_invoice_status_fields', $update_post_data, $this->ID ); |
||
| 1107 | |||
| 1108 | $updated = wp_update_post( $update_post_data ); |
||
| 1109 | |||
| 1110 | // Process any specific status functions |
||
| 1111 | switch( $new_status ) { |
||
| 1112 | case 'wpi-refunded': |
||
| 1113 | $this->process_refund(); |
||
| 1114 | break; |
||
| 1115 | case 'wpi-failed': |
||
| 1116 | $this->process_failure(); |
||
| 1117 | break; |
||
| 1118 | case 'wpi-pending': |
||
| 1119 | $this->process_pending(); |
||
| 1120 | break; |
||
| 1121 | } |
||
| 1122 | |||
| 1123 | // Status was changed. |
||
| 1124 | do_action( 'wpinv_status_' . $new_status, $this->ID, $old_status ); |
||
| 1125 | do_action( 'wpinv_status_' . $old_status . '_to_' . $new_status, $this->ID, $old_status ); |
||
| 1126 | do_action( 'wpinv_update_status', $this->ID, $new_status, $old_status ); |
||
| 1127 | } |
||
| 1128 | |||
| 1129 | return $updated; |
||
| 1130 | } |
||
| 1131 | |||
| 1132 | public function refund() { |
||
| 1133 | $this->old_status = $this->status; |
||
| 1134 | $this->status = 'wpi-refunded'; |
||
| 1135 | $this->pending['status'] = $this->status; |
||
| 1136 | |||
| 1137 | $this->save(); |
||
| 1138 | } |
||
| 1139 | |||
| 1140 | public function update_meta( $meta_key = '', $meta_value = '', $prev_value = '' ) { |
||
| 1141 | if ( empty( $meta_key ) ) { |
||
| 1142 | return false; |
||
| 1143 | } |
||
| 1144 | |||
| 1145 | if ( $meta_key == 'key' || $meta_key == 'date' ) { |
||
| 1146 | $current_meta = $this->get_meta(); |
||
| 1147 | $current_meta[ $meta_key ] = $meta_value; |
||
| 1148 | |||
| 1149 | $meta_key = '_wpinv_payment_meta'; |
||
| 1150 | $meta_value = $current_meta; |
||
| 1151 | } |
||
| 1152 | |||
| 1153 | $meta_value = apply_filters( 'wpinv_update_payment_meta_' . $meta_key, $meta_value, $this->ID ); |
||
| 1154 | |||
| 1155 | if ( $meta_key == '_wpinv_completed_date' && !empty( $meta_value ) ) { |
||
| 1156 | $args = array( |
||
| 1157 | 'ID' => $this->ID, |
||
| 1158 | 'post_date' => $meta_value, |
||
| 1159 | 'edit_date' => true, |
||
| 1160 | 'post_date_gmt' => get_gmt_from_date( $meta_value ), |
||
| 1161 | 'post_modified' => $meta_value, |
||
| 1162 | 'post_modified_gmt' => get_gmt_from_date( $meta_value ) |
||
| 1163 | ); |
||
| 1164 | wp_update_post( $args ); |
||
| 1165 | } |
||
| 1166 | |||
| 1167 | return update_post_meta( $this->ID, $meta_key, $meta_value, $prev_value ); |
||
| 1168 | } |
||
| 1169 | |||
| 1170 | private function process_refund() { |
||
| 1171 | $process_refund = true; |
||
| 1172 | |||
| 1173 | // If the payment was not in publish, don't decrement stats as they were never incremented |
||
| 1174 | if ( 'publish' != $this->old_status || 'wpi-refunded' != $this->status ) { |
||
| 1175 | $process_refund = false; |
||
| 1176 | } |
||
| 1177 | |||
| 1178 | // Allow extensions to filter for their own payment types, Example: Recurring Payments |
||
| 1179 | $process_refund = apply_filters( 'wpinv_should_process_refund', $process_refund, $this ); |
||
| 1180 | |||
| 1181 | if ( false === $process_refund ) { |
||
| 1182 | return; |
||
| 1183 | } |
||
| 1184 | |||
| 1185 | do_action( 'wpinv_pre_refund_invoice', $this ); |
||
| 1186 | |||
| 1187 | $decrease_store_earnings = apply_filters( 'wpinv_decrease_store_earnings_on_refund', true, $this ); |
||
| 1188 | $decrease_customer_value = apply_filters( 'wpinv_decrease_customer_value_on_refund', true, $this ); |
||
| 1189 | $decrease_purchase_count = apply_filters( 'wpinv_decrease_customer_purchase_count_on_refund', true, $this ); |
||
| 1190 | |||
| 1191 | do_action( 'wpinv_post_refund_invoice', $this ); |
||
| 1192 | } |
||
| 1193 | |||
| 1194 | private function process_failure() { |
||
| 1195 | $discounts = $this->discounts; |
||
| 1196 | if ( empty( $discounts ) ) { |
||
| 1197 | return; |
||
| 1198 | } |
||
| 1199 | |||
| 1200 | if ( ! is_array( $discounts ) ) { |
||
| 1201 | $discounts = array_map( 'trim', explode( ',', $discounts ) ); |
||
| 1202 | } |
||
| 1203 | |||
| 1204 | foreach ( $discounts as $discount ) { |
||
| 1205 | wpinv_decrease_discount_usage( $discount ); |
||
| 1206 | } |
||
| 1207 | } |
||
| 1208 | |||
| 1209 | private function process_pending() { |
||
| 1210 | $process_pending = true; |
||
| 1211 | |||
| 1212 | // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented |
||
| 1213 | if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'wpi-pending' != $this->status ) { |
||
| 1214 | $process_pending = false; |
||
| 1215 | } |
||
| 1216 | |||
| 1217 | // Allow extensions to filter for their own payment types, Example: Recurring Payments |
||
| 1218 | $process_pending = apply_filters( 'wpinv_should_process_pending', $process_pending, $this ); |
||
| 1219 | |||
| 1220 | if ( false === $process_pending ) { |
||
| 1221 | return; |
||
| 1222 | } |
||
| 1223 | |||
| 1224 | $decrease_store_earnings = apply_filters( 'wpinv_decrease_store_earnings_on_pending', true, $this ); |
||
| 1225 | $decrease_customer_value = apply_filters( 'wpinv_decrease_customer_value_on_pending', true, $this ); |
||
| 1226 | $decrease_purchase_count = apply_filters( 'wpinv_decrease_customer_purchase_count_on_pending', true, $this ); |
||
| 1227 | |||
| 1228 | $this->completed_date = ''; |
||
| 1229 | $this->update_meta( '_wpinv_completed_date', '' ); |
||
| 1230 | } |
||
| 1231 | |||
| 1232 | // get data |
||
| 1233 | public function get_meta( $meta_key = '_wpinv_payment_meta', $single = true ) { |
||
| 1234 | $meta = get_post_meta( $this->ID, $meta_key, $single ); |
||
| 1235 | |||
| 1236 | if ( $meta_key === '_wpinv_payment_meta' ) { |
||
| 1237 | |||
| 1238 | if(!is_array($meta)){$meta = array();} // we need this to be an array so make sure it is. |
||
| 1239 | |||
| 1240 | if ( empty( $meta['key'] ) ) { |
||
| 1241 | $meta['key'] = $this->setup_invoice_key(); |
||
| 1242 | } |
||
| 1243 | |||
| 1244 | if ( empty( $meta['date'] ) ) { |
||
| 1245 | $meta['date'] = get_post_field( 'post_date', $this->ID ); |
||
| 1246 | } |
||
| 1247 | } |
||
| 1248 | |||
| 1249 | $meta = apply_filters( 'wpinv_get_invoice_meta_' . $meta_key, $meta, $this->ID ); |
||
| 1250 | |||
| 1251 | return apply_filters( 'wpinv_get_invoice_meta', $meta, $this->ID, $meta_key ); |
||
| 1252 | } |
||
| 1253 | |||
| 1254 | public function get_description() { |
||
| 1255 | $post = get_post( $this->ID ); |
||
| 1256 | |||
| 1257 | $description = !empty( $post ) ? $post->post_content : ''; |
||
| 1258 | return apply_filters( 'wpinv_get_description', $description, $this->ID, $this ); |
||
| 1259 | } |
||
| 1260 | |||
| 1261 | public function get_status( $nicename = false ) { |
||
| 1262 | if ( !$nicename ) { |
||
| 1263 | $status = $this->status; |
||
| 1264 | } else { |
||
| 1265 | $status = $this->status_nicename; |
||
| 1266 | } |
||
| 1267 | |||
| 1268 | return apply_filters( 'wpinv_get_status', $status, $nicename, $this->ID, $this ); |
||
| 1269 | } |
||
| 1270 | |||
| 1271 | public function get_cart_details() { |
||
| 1272 | return apply_filters( 'wpinv_cart_details', $this->cart_details, $this->ID, $this ); |
||
| 1273 | } |
||
| 1274 | |||
| 1275 | View Code Duplication | public function get_subtotal( $currency = false ) { |
|
| 1276 | $subtotal = wpinv_round_amount( $this->subtotal ); |
||
| 1277 | |||
| 1278 | if ( $currency ) { |
||
| 1279 | $subtotal = wpinv_price( wpinv_format_amount( $subtotal, NULL, !$currency ), $this->get_currency() ); |
||
| 1280 | } |
||
| 1281 | |||
| 1282 | return apply_filters( 'wpinv_get_invoice_subtotal', $subtotal, $this->ID, $this, $currency ); |
||
| 1283 | } |
||
| 1284 | |||
| 1285 | View Code Duplication | public function get_total( $currency = false ) { |
|
| 1286 | if ( $this->is_free_trial() ) { |
||
| 1287 | $total = wpinv_round_amount( 0 ); |
||
| 1288 | } else { |
||
| 1289 | $total = wpinv_round_amount( $this->total ); |
||
| 1290 | } |
||
| 1291 | if ( $currency ) { |
||
| 1292 | $total = wpinv_price( wpinv_format_amount( $total, NULL, !$currency ), $this->get_currency() ); |
||
| 1293 | } |
||
| 1294 | |||
| 1295 | return apply_filters( 'wpinv_get_invoice_total', $total, $this->ID, $this, $currency ); |
||
| 1296 | } |
||
| 1297 | |||
| 1298 | public function get_recurring_details( $field = '', $currency = false ) { |
||
| 1299 | $data = array(); |
||
| 1300 | $data['cart_details'] = $this->cart_details; |
||
| 1301 | $data['subtotal'] = $this->get_subtotal(); |
||
| 1302 | $data['discount'] = $this->get_discount(); |
||
| 1303 | $data['tax'] = $this->get_tax(); |
||
| 1304 | $data['total'] = $this->get_total(); |
||
| 1305 | |||
| 1306 | if ( !empty( $this->cart_details ) && ( $this->is_parent() || $this->is_renewal() ) ) { |
||
| 1307 | $is_free_trial = $this->is_free_trial(); |
||
| 1308 | $discounts = $this->get_discounts( true ); |
||
| 1309 | |||
| 1310 | if ( $is_free_trial || !empty( $discounts ) ) { |
||
| 1311 | $first_use_only = false; |
||
| 1312 | |||
| 1313 | if ( !empty( $discounts ) ) { |
||
| 1314 | foreach ( $discounts as $key => $code ) { |
||
| 1315 | if ( wpinv_discount_is_recurring( $code, true ) ) { |
||
| 1316 | $first_use_only = true; |
||
| 1317 | break; |
||
| 1318 | } |
||
| 1319 | } |
||
| 1320 | } |
||
| 1321 | |||
| 1322 | if ( !$first_use_only ) { |
||
| 1323 | $data['subtotal'] = wpinv_round_amount( $this->subtotal ); |
||
| 1324 | $data['discount'] = wpinv_round_amount( $this->discount ); |
||
| 1325 | $data['tax'] = wpinv_round_amount( $this->tax ); |
||
| 1326 | $data['total'] = wpinv_round_amount( $this->total ); |
||
| 1327 | } else { |
||
| 1328 | $cart_subtotal = 0; |
||
| 1329 | $cart_discount = 0; |
||
| 1330 | $cart_tax = 0; |
||
| 1331 | |||
| 1332 | foreach ( $this->cart_details as $key => $item ) { |
||
| 1333 | $item_quantity = $item['quantity'] > 0 ? absint( $item['quantity'] ) : 1; |
||
| 1334 | $item_subtotal = !empty( $item['subtotal'] ) ? $item['subtotal'] : $item['item_price'] * $item_quantity; |
||
| 1335 | $item_discount = 0; |
||
| 1336 | $item_tax = $item_subtotal > 0 && !empty( $item['vat_rate'] ) ? ( $item_subtotal * 0.01 * (float)$item['vat_rate'] ) : 0; |
||
| 1337 | |||
| 1338 | if ( wpinv_prices_include_tax() ) { |
||
| 1339 | $item_subtotal -= wpinv_round_amount( $item_tax ); |
||
| 1340 | } |
||
| 1341 | |||
| 1342 | $item_total = $item_subtotal - $item_discount + $item_tax; |
||
| 1343 | // Do not allow totals to go negative |
||
| 1344 | if ( $item_total < 0 ) { |
||
| 1345 | $item_total = 0; |
||
| 1346 | } |
||
| 1347 | |||
| 1348 | $cart_subtotal += (float)($item_subtotal); |
||
| 1349 | $cart_discount += (float)($item_discount); |
||
| 1350 | $cart_tax += (float)($item_tax); |
||
| 1351 | |||
| 1352 | $data['cart_details'][$key]['discount'] = wpinv_round_amount( $item_discount ); |
||
| 1353 | $data['cart_details'][$key]['tax'] = wpinv_round_amount( $item_tax ); |
||
| 1354 | $data['cart_details'][$key]['price'] = wpinv_round_amount( $item_total ); |
||
| 1355 | } |
||
| 1356 | |||
| 1357 | $data['subtotal'] = wpinv_round_amount( $cart_subtotal ); |
||
| 1358 | $data['discount'] = wpinv_round_amount( $cart_discount ); |
||
| 1359 | $data['tax'] = wpinv_round_amount( $cart_tax ); |
||
| 1360 | $data['total'] = wpinv_round_amount( $data['subtotal'] + $data['tax'] ); |
||
| 1361 | } |
||
| 1362 | } |
||
| 1363 | } |
||
| 1364 | |||
| 1365 | $data = apply_filters( 'wpinv_get_invoice_recurring_details', $data, $this, $field, $currency ); |
||
| 1366 | |||
| 1367 | if ( isset( $data[$field] ) ) { |
||
| 1368 | return ( $currency ? wpinv_price( $data[$field], $this->get_currency() ) : $data[$field] ); |
||
| 1369 | } |
||
| 1370 | |||
| 1371 | return $data; |
||
| 1372 | } |
||
| 1373 | |||
| 1374 | public function get_final_tax( $currency = false ) { |
||
| 1375 | $final_total = wpinv_round_amount( $this->tax ); |
||
| 1376 | if ( $currency ) { |
||
| 1377 | $final_total = wpinv_price( wpinv_format_amount( $final_total, NULL, !$currency ), $this->get_currency() ); |
||
| 1378 | } |
||
| 1379 | |||
| 1380 | return apply_filters( 'wpinv_get_invoice_final_total', $final_total, $this, $currency ); |
||
| 1381 | } |
||
| 1382 | |||
| 1383 | public function get_discounts( $array = false ) { |
||
| 1384 | $discounts = $this->discounts; |
||
| 1385 | if ( $array && $discounts ) { |
||
| 1386 | $discounts = explode( ',', $discounts ); |
||
| 1387 | } |
||
| 1388 | return apply_filters( 'wpinv_payment_discounts', $discounts, $this->ID, $this, $array ); |
||
| 1389 | } |
||
| 1390 | |||
| 1391 | public function get_discount( $currency = false, $dash = false ) { |
||
| 1392 | if ( !empty( $this->discounts ) ) { |
||
| 1393 | global $ajax_cart_details; |
||
| 1394 | $ajax_cart_details = $this->get_cart_details(); |
||
| 1395 | |||
| 1396 | if ( !empty( $ajax_cart_details ) && count( $ajax_cart_details ) == count( $this->items ) ) { |
||
| 1397 | $cart_items = $ajax_cart_details; |
||
| 1398 | } else { |
||
| 1399 | $cart_items = $this->items; |
||
| 1400 | } |
||
| 1401 | |||
| 1402 | $this->discount = wpinv_get_cart_items_discount_amount( $cart_items , $this->discounts ); |
||
| 1403 | } |
||
| 1404 | $discount = wpinv_round_amount( $this->discount ); |
||
| 1405 | $dash = $dash && $discount > 0 ? '–' : ''; |
||
| 1406 | |||
| 1407 | if ( $currency ) { |
||
| 1408 | $discount = wpinv_price( wpinv_format_amount( $discount, NULL, !$currency ), $this->get_currency() ); |
||
| 1409 | } |
||
| 1410 | |||
| 1411 | $discount = $dash . $discount; |
||
| 1412 | |||
| 1413 | return apply_filters( 'wpinv_get_invoice_discount', $discount, $this->ID, $this, $currency, $dash ); |
||
| 1414 | } |
||
| 1415 | |||
| 1416 | public function get_discount_code() { |
||
| 1419 | |||
| 1420 | View Code Duplication | public function get_tax( $currency = false ) { |
|
| 1429 | |||
| 1430 | public function get_fees( $type = 'all' ) { |
||
| 1447 | |||
| 1448 | public function get_fees_total( $type = 'all' ) { |
||
| 1476 | |||
| 1477 | public function get_user_id() { |
||
| 1480 | |||
| 1481 | public function get_first_name() { |
||
| 1484 | |||
| 1485 | public function get_last_name() { |
||
| 1488 | |||
| 1489 | public function get_user_full_name() { |
||
| 1492 | |||
| 1493 | public function get_user_info() { |
||
| 1496 | |||
| 1497 | public function get_email() { |
||
| 1500 | |||
| 1501 | public function get_address() { |
||
| 1504 | |||
| 1505 | public function get_phone() { |
||
| 1508 | |||
| 1509 | public function get_number() { |
||
| 1512 | |||
| 1513 | public function get_items() { |
||
| 1516 | |||
| 1517 | public function get_key() { |
||
| 1520 | |||
| 1521 | public function get_transaction_id() { |
||
| 1524 | |||
| 1525 | public function get_gateway() { |
||
| 1528 | |||
| 1529 | public function get_gateway_title() { |
||
| 1534 | |||
| 1535 | public function get_currency() { |
||
| 1538 | |||
| 1539 | public function get_created_date() { |
||
| 1542 | |||
| 1543 | public function get_due_date( $display = false ) { |
||
| 1552 | |||
| 1553 | public function get_completed_date() { |
||
| 1556 | |||
| 1557 | public function get_invoice_date( $formatted = true ) { |
||
| 1572 | |||
| 1573 | public function get_ip() { |
||
| 1576 | |||
| 1577 | public function has_status( $status ) { |
||
| 1580 | |||
| 1581 | public function add_item( $item_id = 0, $args = array() ) { |
||
| 1582 | global $wpi_current_id, $wpi_item_id; |
||
| 1583 | |||
| 1584 | $item = new WPInv_Item( $item_id ); |
||
| 1585 | |||
| 1586 | // Bail if this post isn't a item |
||
| 1587 | if( !$item || $item->post_type !== 'wpi_item' ) { |
||
| 1588 | return false; |
||
| 1589 | } |
||
| 1590 | |||
| 1591 | $has_quantities = wpinv_item_quantities_enabled(); |
||
| 1592 | |||
| 1593 | // Set some defaults |
||
| 1594 | $defaults = array( |
||
| 1595 | 'quantity' => 1, |
||
| 1596 | 'id' => false, |
||
| 1597 | 'name' => $item->get_name(), |
||
| 1598 | 'item_price' => false, |
||
| 1599 | 'custom_price' => '', |
||
| 1600 | 'discount' => 0, |
||
| 1601 | 'tax' => 0.00, |
||
| 1602 | 'meta' => array(), |
||
| 1603 | 'fees' => array() |
||
| 1604 | ); |
||
| 1605 | |||
| 1606 | $args = wp_parse_args( apply_filters( 'wpinv_add_item_args', $args, $item->ID ), $defaults ); |
||
| 1607 | $args['quantity'] = $has_quantities && $args['quantity'] > 0 ? absint( $args['quantity'] ) : 1; |
||
| 1608 | |||
| 1609 | $wpi_current_id = $this->ID; |
||
| 1610 | $wpi_item_id = $item->ID; |
||
| 1611 | $discounts = $this->get_discounts(); |
||
| 1612 | |||
| 1613 | $_POST['wpinv_country'] = $this->country; |
||
| 1614 | $_POST['wpinv_state'] = $this->state; |
||
| 1615 | |||
| 1616 | $found_cart_key = false; |
||
| 1617 | |||
| 1618 | if ($has_quantities) { |
||
| 1619 | $this->cart_details = !empty( $this->cart_details ) ? array_values( $this->cart_details ) : $this->cart_details; |
||
| 1620 | |||
| 1621 | foreach ( $this->items as $key => $cart_item ) { |
||
| 1622 | if ( (int)$item_id !== (int)$cart_item['id'] ) { |
||
| 1623 | continue; |
||
| 1624 | } |
||
| 1625 | |||
| 1626 | $this->items[ $key ]['quantity'] += $args['quantity']; |
||
| 1627 | break; |
||
| 1628 | } |
||
| 1629 | |||
| 1630 | foreach ( $this->cart_details as $cart_key => $cart_item ) { |
||
| 1631 | if ( $item_id != $cart_item['id'] ) { |
||
| 1632 | continue; |
||
| 1633 | } |
||
| 1634 | |||
| 1635 | $found_cart_key = $cart_key; |
||
| 1636 | break; |
||
| 1637 | } |
||
| 1638 | } |
||
| 1639 | |||
| 1640 | if ($has_quantities && $found_cart_key !== false) { |
||
| 1641 | $cart_item = $this->cart_details[$found_cart_key]; |
||
| 1642 | $item_price = $cart_item['item_price']; |
||
| 1643 | $quantity = !empty( $cart_item['quantity'] ) ? $cart_item['quantity'] : 1; |
||
| 1644 | $tax_rate = !empty( $cart_item['vat_rate'] ) ? $cart_item['vat_rate'] : 0; |
||
| 1645 | |||
| 1646 | $new_quantity = $quantity + $args['quantity']; |
||
| 1647 | $subtotal = $item_price * $new_quantity; |
||
| 1648 | |||
| 1649 | $args['quantity'] = $new_quantity; |
||
| 1749 | |||
| 1750 | public function remove_item( $item_id, $args = array() ) { |
||
| 1903 | |||
| 1904 | public function update_items($temp = false) { |
||
| 1980 | |||
| 1981 | public function recalculate_totals($temp = false) { |
||
| 1987 | |||
| 1988 | public function needs_payment() { |
||
| 1999 | |||
| 2000 | public function get_checkout_payment_url( $with_key = false, $secret = false ) { |
||
| 2021 | |||
| 2022 | public function get_view_url( $with_key = false ) { |
||
| 2031 | |||
| 2032 | public function generate_key( $string = '' ) { |
||
| 2036 | |||
| 2037 | public function is_recurring() { |
||
| 2056 | |||
| 2057 | public function is_free_trial() { |
||
| 2068 | |||
| 2069 | public function get_recurring( $object = false ) { |
||
| 2091 | |||
| 2092 | public function get_subscription_name() { |
||
| 2105 | |||
| 2106 | public function get_expiration() { |
||
| 2110 | |||
| 2111 | public function get_cancelled_date( $formatted = true ) { |
||
| 2120 | |||
| 2121 | public function get_trial_end_date( $formatted = true ) { |
||
| 2141 | |||
| 2142 | public function get_subscription_created( $default = true ) { |
||
| 2150 | |||
| 2151 | public function get_subscription_start( $formatted = true ) { |
||
| 2165 | |||
| 2166 | public function get_subscription_end( $formatted = true ) { |
||
| 2200 | |||
| 2201 | public function get_expiration_time() { |
||
| 2204 | |||
| 2205 | public function get_original_invoice_id() { |
||
| 2208 | |||
| 2209 | public function get_bill_times() { |
||
| 2213 | |||
| 2214 | public function get_child_payments( $self = false ) { |
||
| 2241 | |||
| 2242 | public function get_total_payments( $self = true ) { |
||
| 2245 | |||
| 2246 | public function get_subscriptions( $limit = -1 ) { |
||
| 2251 | |||
| 2252 | public function get_subscription_id() { |
||
| 2263 | |||
| 2264 | public function get_subscription_status() { |
||
| 2298 | |||
| 2299 | public function get_subscription_status_label( $status = '' ) { |
||
| 2342 | |||
| 2343 | View Code Duplication | public function get_subscription_period( $full = false ) { |
|
| 2380 | |||
| 2381 | public function get_subscription_interval() { |
||
| 2390 | |||
| 2391 | View Code Duplication | public function get_subscription_trial_period( $full = false ) { |
|
| 2432 | |||
| 2433 | public function get_subscription_trial_interval() { |
||
| 2446 | |||
| 2447 | View Code Duplication | public function failing_subscription() { |
|
| 2459 | |||
| 2460 | View Code Duplication | public function stop_subscription() { |
|
| 2472 | |||
| 2473 | View Code Duplication | public function restart_subscription() { |
|
| 2485 | |||
| 2486 | public function cancel_subscription() { |
||
| 2513 | |||
| 2514 | public function can_cancel() { |
||
| 2517 | |||
| 2518 | public function add_subscription( $data = array() ) { |
||
| 2558 | |||
| 2559 | public function update_subscription( $args = array() ) { |
||
| 2586 | |||
| 2587 | public function renew_subscription() { |
||
| 2631 | |||
| 2632 | public function complete_subscription() { |
||
| 2641 | |||
| 2642 | public function expire_subscription() { |
||
| 2651 | |||
| 2652 | public function get_cancel_url() { |
||
| 2657 | |||
| 2658 | public function can_update() { |
||
| 2661 | |||
| 2662 | public function get_update_url() { |
||
| 2667 | |||
| 2668 | public function is_parent() { |
||
| 2673 | |||
| 2674 | public function is_renewal() { |
||
| 2679 | |||
| 2680 | public function get_parent_payment() { |
||
| 2689 | |||
| 2690 | public function is_subscription_active() { |
||
| 2701 | |||
| 2702 | public function is_subscription_expired() { |
||
| 2723 | |||
| 2724 | public function get_new_expiration( $item_id = 0, $trial = true ) { |
||
| 2737 | |||
| 2738 | public function get_subscription_data( $filed = '' ) { |
||
| 2786 | |||
| 2787 | public function is_paid() { |
||
| 2794 | |||
| 2795 | public function is_refunded() { |
||
| 2800 | |||
| 2801 | public function is_free() { |
||
| 2814 | |||
| 2815 | public function has_vat() { |
||
| 2828 | |||
| 2829 | public function refresh_item_ids() { |
||
| 2844 | |||
| 2845 | public function get_invoice_quote_type( $post_id ) { |
||
| 2860 | } |
||
| 2861 |