| @@ 328-336 (lines=9) @@ | ||
| 325 | ), |
|
| 326 | ); |
|
| 327 | } |
|
| 328 | if ( 0 < $tax_total ) { |
|
| 329 | $data['items'][] = array( |
|
| 330 | 'label' => __( 'Tax', 'woocommerce-gateway-stripe' ), |
|
| 331 | 'amount' => array( |
|
| 332 | 'currency' => $currency, |
|
| 333 | 'value' => $tax_total, |
|
| 334 | ), |
|
| 335 | ); |
|
| 336 | } |
|
| 337 | ||
| 338 | wp_send_json( array( 'success' => 'true', 'line_items' => $this->build_line_items(), 'total' => WC()->cart->total ) ); |
|
| 339 | } |
|
| @@ 243-251 (lines=9) @@ | ||
| 240 | ), |
|
| 241 | ); |
|
| 242 | } |
|
| 243 | if ( 0 < $tax_total ) { |
|
| 244 | $data['items'][] = array( |
|
| 245 | 'label' => __( 'Tax', 'woocommerce-gateway-stripe' ), |
|
| 246 | 'amount' => array( |
|
| 247 | 'currency' => $currency, |
|
| 248 | 'value' => $tax_total, |
|
| 249 | ), |
|
| 250 | ); |
|
| 251 | } |
|
| 252 | ||
| 253 | wp_send_json( $data ); |
|
| 254 | } |
|