Two thoughts about customers
Posted: Wed Nov 06, 2024 12:00 am
Hi there!
First of all, thank you for adding this function! However, there are a few things that concern me:
1) When I try to delete a customer, I receive an error message saying "invalid action."
2) Is there any chance of adding an option to merge customers? For example, it could work something like this:
This would help keep the customer list nice and tidy! 
First of all, thank you for adding this function! However, there are a few things that concern me:
1) When I try to delete a customer, I receive an error message saying "invalid action."
2) Is there any chance of adding an option to merge customers? For example, it could work something like this:
Code: Select all
UPDATE hesk_ticket_to_customer SET customer_id = <customer_we_want_to_keep> WHERE customer_id = <customer_we_want_to_remove>;
DELETE FROM hesk_customers WHERE id = <customer_we_want_to_remove>;
