more cemeteries
parent
a76b523b00
commit
ab9cd4c1b3
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
@ -473,6 +487,19 @@ function getFuneralHome(funeralHomeKey: string): recordTypes.LotOccupancyOccupan
|
|||
occupantPhoneNumber: "705-759-8456",
|
||||
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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue