Español
Visible
Visible
Sub-App
Environment
Description
Defaults funeral losses to Yes for COVID disasters
bulk_update
Off
Message
<script>
try{
var dstrNumbers = [4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4537,4545,4582];
var dstrFound = false;

var el = $(".rgsn-banner div.text-right");
var bannerText = el.text();

function isInDstrList(value, index, array) {
if (bannerText.includes(": ".concat(value))){
dstrFound = true;
}

}

dstrNumbers.forEach(isInDstrList);

if (dstrFound){
$("#FUNERAL_EXP_FLG_Y").prop("checked", true)
$("#FUNERAL_EXP_FLG_N").prop("checked", false).attr('disabled',true);
}

}catch(err){
console.log(err.message);
}
</script>