more cemeteries

deepsource-autofix-76c6eb20
Dan Gowans 2022-12-15 13:57:02 -05:00
parent a76b523b00
commit ab9cd4c1b3
2 changed files with 54 additions and 0 deletions

View File

@ -166,6 +166,7 @@ function getLotType(dataRow) {
case "MA": {
return mausoleumLotType;
}
case "MN":
case "NW": {
return nicheWallLotType;
}
@ -205,6 +206,19 @@ function getFuneralHome(funeralHomeKey) {
occupantEmailAddress: ""
};
}
case "BG": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,
occupantName: "Beggs Funeral Home",
occupantAddress1: "175 Main Street",
occupantAddress2: "P.O. Box 280",
occupantCity: "Thessalon",
occupantProvince: "ON",
occupantPostalCode: "P0R 1L0",
occupantPhoneNumber: "705-842-2520",
occupantEmailAddress: "bfh@beggsfh.ca"
};
}
case "BK": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,
@ -231,6 +245,19 @@ function getFuneralHome(funeralHomeKey) {
occupantEmailAddress: ""
};
}
case "GL": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,
occupantName: "Gilmartin P.M. Funeral Home",
occupantAddress1: "140 Churchill Avenue",
occupantAddress2: "",
occupantCity: "Wawa",
occupantProvince: "ON",
occupantPostalCode: "P0S 1K0",
occupantPhoneNumber: "705-856-7340",
occupantEmailAddress: ""
};
}
case "NO": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,

View File

@ -396,6 +396,7 @@ function getLotType(dataRow: { cemetery: string }) {
case "MA": {
return mausoleumLotType;
}
case "MN":
case "NW": {
return nicheWallLotType;
}
@ -448,6 +449,19 @@ function getFuneralHome(funeralHomeKey: string): recordTypes.LotOccupancyOccupan
occupantEmailAddress: ""
};
}
case "BG": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,
occupantName: "Beggs Funeral Home",
occupantAddress1: "175 Main Street",
occupantAddress2: "P.O. Box 280",
occupantCity: "Thessalon",
occupantProvince: "ON",
occupantPostalCode: "P0R 1L0",
occupantPhoneNumber: "705-842-2520",
occupantEmailAddress: "bfh@beggsfh.ca"
};
}
case "BK": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,
@ -474,6 +488,19 @@ function getFuneralHome(funeralHomeKey: string): recordTypes.LotOccupancyOccupan
occupantEmailAddress: ""
};
}
case "GL": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,
occupantName: "Gilmartin P.M. Funeral Home",
occupantAddress1: "140 Churchill Avenue",
occupantAddress2: "",
occupantCity: "Wawa",
occupantProvince: "ON",
occupantPostalCode: "P0S 1K0",
occupantPhoneNumber: "705-856-7340",
occupantEmailAddress: ""
};
}
case "NO": {
return {
lotOccupantTypeId: funeralDirectorLotOccupantType.lotOccupantTypeId,