add-attribute-terms.php
8 months ago
add-customer.php
9 months ago
add-emails-to-coupon.php
8 months ago
add-order-note.php
10 months ago
add-product-attributes.php
8 months ago
add-product-to-cart.php
8 months ago
add-update-order-custom-fields.php
10 months ago
apply-coupon.php
8 months ago
check-cart-status.php
8 months ago
check-if-order-is-renewal.php
4 months ago
create-attribute.php
8 months ago
create-bundle-product-order.php
6 months ago
create-coupon-code.php
10 months ago
create-multi-product-order.php
7 months ago
create-new-order.php
10 months ago
create-product-variation.php
1 year ago
create-product.php
1 year ago
create-variable-product.php
8 months ago
delete-coupon.php
1 year ago
delete-customer.php
8 months ago
fetch-coupon-details.php
10 months ago
find-orders-by-user-id.php
10 months ago
get-all-customers.php
8 months ago
get-all-products.php
8 months ago
get-customer-by-email.php
8 months ago
get-customer-by-id.php
8 months ago
get-order-details-by-order-id.php
10 months ago
get-order-type-by-order-id.php
4 months ago
get-orders-by-email.php
8 months ago
get-product-by-id.php
1 year ago
list-all-order-notes.php
8 months ago
list-all-orders.php
8 months ago
remove-product-from-cart.php
8 months ago
retrieve-coupons-totals.php
10 months ago
retrieve-customers-totals.php
10 months ago
retrieve-orders-totals.php
10 months ago
retrieve-products-totals.php
10 months ago
retrieve-refunds-list.php
10 months ago
retrieve-reviews-totals.php
10 months ago
retrieve-sales-report.php
10 months ago
retrieve-top-sellers-report.php
10 months ago
update-product-price.php
8 months ago
update-product-stock-quantity.php
8 months ago
update-status-of-order.php
10 months ago
add-order-note.php
130 lines
| 1 | <?php |
| 2 | /** |
| 3 | * AddOrderNote. |
| 4 | * php version 5.6 |
| 5 | * |
| 6 | * @category AddOrderNote |
| 7 | * @package SureTriggers |
| 8 | * @author BSF <username@example.com> |
| 9 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 10 | * @link https://www.brainstormforce.com/ |
| 11 | * @since 1.0.0 |
| 12 | */ |
| 13 | |
| 14 | namespace SureTriggers\Integrations\Woocommerce\Actions; |
| 15 | |
| 16 | use Exception; |
| 17 | use SureTriggers\Integrations\AutomateAction; |
| 18 | use SureTriggers\Integrations\WooCommerce\WooCommerce; |
| 19 | use SureTriggers\Traits\SingletonLoader; |
| 20 | use WC_Order; |
| 21 | |
| 22 | /** |
| 23 | * AddOrderNote |
| 24 | * |
| 25 | * @category AddOrderNote |
| 26 | * @package SureTriggers |
| 27 | * @author BSF <username@example.com> |
| 28 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 29 | * @link https://www.brainstormforce.com/ |
| 30 | * @since 1.0.0 |
| 31 | */ |
| 32 | class AddOrderNote extends AutomateAction { |
| 33 | |
| 34 | /** |
| 35 | * Integration type. |
| 36 | * |
| 37 | * @var string |
| 38 | */ |
| 39 | public $integration = 'WooCommerce'; |
| 40 | |
| 41 | /** |
| 42 | * Action name. |
| 43 | * |
| 44 | * @var string |
| 45 | */ |
| 46 | public $action = 'wc_add_order_note'; |
| 47 | |
| 48 | use SingletonLoader; |
| 49 | |
| 50 | /** |
| 51 | * Register a action. |
| 52 | * |
| 53 | * @param array $actions actions. |
| 54 | * @return array |
| 55 | */ |
| 56 | public function register( $actions ) { |
| 57 | $actions[ $this->integration ][ $this->action ] = [ |
| 58 | 'label' => __( 'Add Order Note', 'suretriggers' ), |
| 59 | 'action' => 'wc_add_order_note', |
| 60 | 'function' => [ $this, 'action_listener' ], |
| 61 | ]; |
| 62 | return $actions; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Action listener. |
| 67 | * |
| 68 | * @param int $user_id user_id. |
| 69 | * @param int $automation_id automation_id. |
| 70 | * @param array $fields fields. |
| 71 | * @param array $selected_options selectedOptions. |
| 72 | * |
| 73 | * @return object|array|void |
| 74 | * @throws Exception Exception. |
| 75 | */ |
| 76 | public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { |
| 77 | $order_id = $selected_options['order_id']; |
| 78 | $note_type = $selected_options['note_type']; |
| 79 | $note_text = $selected_options['note_text']; |
| 80 | |
| 81 | $order = wc_get_order( $order_id ); |
| 82 | |
| 83 | if ( ! $order instanceof WC_Order ) { |
| 84 | return [ |
| 85 | 'status' => 'error', |
| 86 | 'message' => 'No order found with the specified Order ID.', |
| 87 | ]; |
| 88 | } |
| 89 | |
| 90 | if ( method_exists( $order, 'add_order_note' ) ) { |
| 91 | $is_customer = (int) ( 'customer' === $note_type ); |
| 92 | $order->add_order_note( $note_text, $is_customer, false ); |
| 93 | global $wpdb; |
| 94 | $results = $wpdb->get_results( |
| 95 | $wpdb->prepare( |
| 96 | " |
| 97 | SELECT * |
| 98 | FROM {$wpdb->prefix}comments |
| 99 | WHERE `comment_post_ID` = %d |
| 100 | AND `comment_type` LIKE %s |
| 101 | ", |
| 102 | $order_id, |
| 103 | 'order_note' |
| 104 | ) |
| 105 | ); |
| 106 | |
| 107 | foreach ( $results as $note ) { |
| 108 | $context['note'] = [ |
| 109 | 'id' => $note->comment_ID, |
| 110 | 'date' => $note->comment_date, |
| 111 | 'author' => $note->comment_author, |
| 112 | 'content' => $note->comment_content, |
| 113 | ]; |
| 114 | $comment_meta = get_comment_meta( $note->comment_ID, 'is_customer_note', true ); |
| 115 | |
| 116 | if ( '' != $comment_meta ) { |
| 117 | $context['note_type'] = 'customer'; |
| 118 | } else { |
| 119 | $context['note_type'] = 'internal'; |
| 120 | } |
| 121 | } |
| 122 | if ( ! empty( $context ) && is_array( $context ) && is_array( WooCommerce::get_order_context( $order_id ) ) ) { |
| 123 | return array_merge( WooCommerce::get_order_context( $order_id ), $context ); |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | AddOrderNote::get_instance(); |
| 130 |