FIX_PLACEMENT_MAIL_SEND

This commit is contained in:
VENKATESHWARAN 2026-06-10 09:48:49 +05:30
parent 83fe658718
commit 03aca3465e
2 changed files with 2 additions and 2 deletions

View File

@ -3764,7 +3764,7 @@ class LeadsController extends BaseController
if(isset($propsal_and_insurer)) {
if (! empty($propsal_and_insurer[0])) {
$parts = explode('-', $propsal_and_insurer[0], 2);
$parts = explode('-', $propsal_and_insurer, 2);
$proposal_key = $parts[0] ?? null;
$insurer_key = $parts[1] ?? null;
} else {

View File

@ -4664,7 +4664,7 @@ function appendInsurerContact(data) {
$.each(data, function(index, item) {
$('#placement_to').append($('<option>', {
value: item.id,
value: item.contact_person_email,
text: item.contact_person_email
}));