|
27 | 27 | mysqli_query($mysqli, "INSERT INTO history SET history_status = 'Accepted', history_description = 'Client accepted Quote!', history_quote_id = $quote_id"); |
28 | 28 |
|
29 | 29 | // Notification |
30 | | - appNotify("Quote Accepted", "Quote $quote_prefix$quote_number has been accepted by $client_name", "quote.php?quote_id=$quote_id", $client_id); |
| 30 | + appNotify("Quote Accepted", "Quote $quote_prefix$quote_number has been accepted by $client_name", "/agent/quote.php?quote_id=$quote_id", $client_id); |
31 | 31 | customAction('quote_accept', $quote_id); |
32 | 32 |
|
33 | 33 | // Internal email notification |
|
92 | 92 | mysqli_query($mysqli, "INSERT INTO history SET history_status = 'Declined', history_description = 'Client declined Quote!', history_quote_id = $quote_id"); |
93 | 93 |
|
94 | 94 | // Notification |
95 | | - appNotify("Quote Declined", "Quote $quote_prefix$quote_number has been declined by $client_name", "quote.php?quote_id=$quote_id", $client_id); |
| 95 | + appNotify("Quote Declined", "Quote $quote_prefix$quote_number has been declined by $client_name", "/agent/quote.php?quote_id=$quote_id", $client_id); |
96 | 96 | customAction('quote_decline', $quote_id); |
97 | 97 |
|
98 | 98 | // Internal email notification |
|
210 | 210 | $ticket_prefix = sanitizeInput($ticket_details['ticket_prefix']); |
211 | 211 | $ticket_number = intval($ticket_details['ticket_number']); |
212 | 212 |
|
213 | | - appNotify("Feedback", "Guest rated ticket number $ticket_prefix$ticket_number (ID: $ticket_id) as bad", "ticket.php?ticket_id=$ticket_id"); |
| 213 | + appNotify("Feedback", "Guest rated ticket number $ticket_prefix$ticket_number (ID: $ticket_id) as bad", "/agent/ticket.php?ticket_id=$ticket_id"); |
214 | 214 | } |
215 | 215 |
|
216 | 216 | flash_alert("Feedback recorded - thank you"); |
|
727 | 727 | // Logging & feedback |
728 | 728 | flash_alert('File uploaded!'); |
729 | 729 |
|
730 | | - appNotify("Quote File", "$file_name was uploaded to quote $quote_prefix$quote_number", "quote.php?quote_id=$quote_id", $client_id); |
| 730 | + appNotify("Quote File", "$file_name was uploaded to quote $quote_prefix$quote_number", "/agent/quote.php?quote_id=$quote_id", $client_id); |
731 | 731 |
|
732 | 732 | mysqli_query($mysqli, "INSERT INTO history SET history_status = 'Upload', history_description = 'Client uploaded file $file_name', history_quote_id = $quote_id"); |
733 | 733 |
|
|
0 commit comments