include purchaser's relationship to recipient
parent
b2077f2f9a
commit
fc234b9dd6
|
|
@ -1,486 +1,489 @@
|
||||||
<%
|
<%
|
||||||
const purchaserLotOccupantTypes = ["Purchaser", "Preneed Owner"];
|
const purchaserLotOccupantTypes = ["Purchaser", "Preneed Owner"];
|
||||||
|
|
||||||
let purchaserOccupants = [];
|
let purchaserOccupants = [];
|
||||||
for (const purchaserLotOccupantType of purchaserLotOccupantTypes) {
|
for (const purchaserLotOccupantType of purchaserLotOccupantTypes) {
|
||||||
purchaserOccupants = lotOccupancyFunctions.filterOccupantsByLotOccupantType(lotOccupancy, purchaserLotOccupantType);
|
purchaserOccupants = lotOccupancyFunctions.filterOccupantsByLotOccupantType(lotOccupancy, purchaserLotOccupantType);
|
||||||
if (purchaserOccupants.length > 0) {
|
if (purchaserOccupants.length > 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const purchaser = purchaserOccupants.length > 0 ? purchaserOccupants[0] : undefined;
|
const purchaser = purchaserOccupants.length > 0 ? purchaserOccupants[0] : undefined;
|
||||||
|
|
||||||
const recipientLotOccupantTypes = ["Deceased", "Preneed Owner", "Purchaser"];
|
const recipientLotOccupantTypes = ["Deceased", "Preneed Owner", "Purchaser"];
|
||||||
|
|
||||||
let recipientOccupants = [];
|
let recipientOccupants = [];
|
||||||
for (const recipientLotOccupantType of recipientLotOccupantTypes) {
|
for (const recipientLotOccupantType of recipientLotOccupantTypes) {
|
||||||
recipientOccupants = lotOccupancyFunctions.filterOccupantsByLotOccupantType(lotOccupancy, recipientLotOccupantType);
|
recipientOccupants = lotOccupancyFunctions.filterOccupantsByLotOccupantType(lotOccupancy, recipientLotOccupantType);
|
||||||
if (recipientOccupants.length > 0) {
|
if (recipientOccupants.length > 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const recipient = recipientOccupants.length > 0 ? recipientOccupants[0] : undefined;
|
const recipient = recipientOccupants.length > 0 ? recipientOccupants[0] : undefined;
|
||||||
|
|
||||||
const deathDateOccupantTypeField = "Death Date";
|
const deathDateOccupantTypeField = "Death Date";
|
||||||
const deathPlaceOccupantTypeField = "Death Place";
|
const deathPlaceOccupantTypeField = "Death Place";
|
||||||
%>
|
%>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
<%- include('style.css'); %>
|
<%- include('style.css'); %>
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0 50px;
|
margin: 0 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@page {
|
@page {
|
||||||
margin: 50px 0;
|
margin: 50px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.termsList {
|
.termsList {
|
||||||
counter-reset: list;
|
counter-reset: list;
|
||||||
}
|
}
|
||||||
|
|
||||||
.termsList > li {
|
.termsList > li {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.termsList > li::before {
|
.termsList > li::before {
|
||||||
content: "(" counter(list, lower-alpha) ")";
|
content: "(" counter(list, lower-alpha) ")";
|
||||||
counter-increment: list;
|
counter-increment: list;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: -1.8em;
|
left: -1.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.confirmList > li {
|
.confirmList > li {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.confirmList > li::before {
|
.confirmList > li::before {
|
||||||
content: "▢";
|
content: "▢";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: -1.4em;
|
left: -1.4em;
|
||||||
top: -0.2em;
|
top: -0.2em;
|
||||||
font-size: 15pt;
|
font-size: 15pt;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body class="is-10pt">
|
<body class="is-10pt">
|
||||||
<h1 class="is-12pt has-text-centered is-capitalized">
|
<h1 class="is-12pt has-text-centered is-capitalized">
|
||||||
Contract for the Purchase of Interment Rights or<br />
|
Contract for the Purchase of Interment Rights or<br />
|
||||||
Cemetery Services
|
Cemetery Services
|
||||||
</h1>
|
</h1>
|
||||||
<p class="has-text-centered">
|
<p class="has-text-centered">
|
||||||
in
|
in
|
||||||
<span class="field" style="width:300px">
|
<span class="field" style="width:300px">
|
||||||
<%= lotOccupancy.mapName %>
|
<%= lotOccupancy.mapName %>
|
||||||
</span>
|
</span>
|
||||||
cemetery<br />
|
cemetery<br />
|
||||||
<span class="is-capitalized">operated by</span><br />
|
<span class="is-capitalized">operated by</span><br />
|
||||||
The Corporation of the City of Sault Ste. Marie, 99 Foster Drive<br />
|
The Corporation of the City of Sault Ste. Marie, 99 Foster Drive<br />
|
||||||
Sault Ste. Marie Ontario P6A 5X6
|
Sault Ste. Marie Ontario P6A 5X6
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Contract No.
|
Contract No.
|
||||||
<span class="field">
|
<span class="field">
|
||||||
<%= lotOccupancy.lotOccupancyId %>
|
<%= lotOccupancy.lotOccupancyId %>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Date of Purchase
|
Date of Purchase
|
||||||
<span class="field">
|
<span class="field">
|
||||||
|
|
||||||
<% if (lotOccupancy.lotOccupancyTransactions.length > 0) { %>
|
<% if (lotOccupancy.lotOccupancyTransactions.length > 0) { %>
|
||||||
<%= lotOccupancy.lotOccupancyTransactions[0].transactionDateString %>
|
<%= lotOccupancy.lotOccupancyTransactions[0].transactionDateString %>
|
||||||
<% } %>
|
<% } %>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<table class="layout-table is-10pt" style="table-layout:fixed">
|
<table class="layout-table is-10pt" style="table-layout:fixed">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<h2 class="is-10pt">Purchaser</h2>
|
<h2 class="is-10pt">Purchaser</h2>
|
||||||
<table class="is-10pt layout-table">
|
<table class="is-10pt layout-table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="has-text-left">Name:</th>
|
<th class="has-text-left">Name:</th>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantName : "" %></td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantName : "" %></td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left" rowspan="2" style="vertical-align:top">Address:</th>
|
<th class="has-text-left" rowspan="2" style="vertical-align:top">Address:</th>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantAddress1 : "" %> </td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantAddress1 : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantAddress2 : "" %> </td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantAddress2 : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">City:</th>
|
<th class="has-text-left">City:</th>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantCity : "" %> </td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantCity : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">Province:</th>
|
<th class="has-text-left">Province:</th>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantProvince : "" %> </td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantProvince : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left has-text-nowrap">Postal Code:</th>
|
<th class="has-text-left has-text-nowrap">Postal Code:</th>
|
||||||
<td class="has-border-bottom" style="width:100%"><%= purchaser ? purchaser.occupantPostalCode : "" %> </td>
|
<td class="has-border-bottom" style="width:100%"><%= purchaser ? purchaser.occupantPostalCode : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">Telephone:</th>
|
<th class="has-text-left">Telephone:</th>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantPhoneNumber : "" %> </td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantPhoneNumber : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">E-mail:</th>
|
<th class="has-text-left">E-mail:</th>
|
||||||
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantEmailAddress : "" %> </td>
|
<td class="has-border-bottom"><%= purchaser ? purchaser.occupantEmailAddress : "" %> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<h2 class="is-10pt">Recipient</h2>
|
<h2 class="is-10pt">Recipient</h2>
|
||||||
<table class="is-10pt layout-table">
|
<table class="is-10pt layout-table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="has-text-left">Name:</th>
|
<th class="has-text-left">Name:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantName : "" %></td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantName : "" %></td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left" rowspan="2" style="vertical-align:top">Address:</th>
|
<th class="has-text-left" rowspan="2" style="vertical-align:top">Address:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantAddress1 : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantAddress1 : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantAddress2 : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantAddress2 : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">City:</th>
|
<th class="has-text-left">City:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantCity : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantCity : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">Province:</th>
|
<th class="has-text-left">Province:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantProvince : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantProvince : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">Postal Code:</th>
|
<th class="has-text-left">Postal Code:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantPostalCode : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantPostalCode : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">Telephone:</th>
|
<th class="has-text-left">Telephone:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantPhoneNumber : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantPhoneNumber : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">E-mail:</th>
|
<th class="has-text-left">E-mail:</th>
|
||||||
<td class="has-border-bottom"><%= recipient ? recipient.occupantEmailAddress : "" %> </td>
|
<td class="has-border-bottom"><%= recipient ? recipient.occupantEmailAddress : "" %> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left">Date of birth:</th>
|
<th class="has-text-left">Date of birth:</th>
|
||||||
<td class="has-border-bottom"> </td>
|
<td class="has-border-bottom"> </td>
|
||||||
</tr><tr>
|
</tr><tr>
|
||||||
<th class="has-text-left has-text-nowrap">Place of birth:</th>
|
<th class="has-text-left has-text-nowrap">Place of birth:</th>
|
||||||
<td class="has-border-bottom" style="width:100%"> </td>
|
<td class="has-border-bottom" style="width:100%"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p>
|
<p>
|
||||||
Purchaser's relationship to Recipient:
|
Purchaser's relationship to Recipient:
|
||||||
<span class="field" style="width:550px"> </span>
|
<span class="field" style="width:550px">
|
||||||
</p>
|
<%= purchaser ? (purchaser.occupantComment ?? '') : '' %>
|
||||||
<p>
|
|
||||||
This Contract for Purchase of Interment Rights or Cemetery Services
|
</span>
|
||||||
is between the Purchaser and The Corporation of the City of Sault Ste. Marie (Corporation)
|
</p>
|
||||||
concerning interment rights or cemetery services for the Recipient(s)
|
<p>
|
||||||
as identified in this Contract.
|
This Contract for Purchase of Interment Rights or Cemetery Services
|
||||||
</p>
|
is between the Purchaser and The Corporation of the City of Sault Ste. Marie (Corporation)
|
||||||
<p>
|
concerning interment rights or cemetery services for the Recipient(s)
|
||||||
The Purchaser (if different than the Recipient)
|
as identified in this Contract.
|
||||||
represents being legally authorized or charged with the responsibility for
|
</p>
|
||||||
the Recipient's interment rights and prepaid cemetery services
|
<p>
|
||||||
specified in this Contract. This Contract will be enforceable to
|
The Purchaser (if different than the Recipient)
|
||||||
the benefit of and be binding upon the parties hereto
|
represents being legally authorized or charged with the responsibility for
|
||||||
and their respective heirs, executors, administrators, successors, and assigns.
|
the Recipient's interment rights and prepaid cemetery services
|
||||||
</p>
|
specified in this Contract. This Contract will be enforceable to
|
||||||
<table class="layout-table" style="table-layout:fixed">
|
the benefit of and be binding upon the parties hereto
|
||||||
<tr>
|
and their respective heirs, executors, administrators, successors, and assigns.
|
||||||
<td>
|
</p>
|
||||||
<h2 class="is-10pt is-capitalized">Details</h2>
|
<table class="layout-table" style="table-layout:fixed">
|
||||||
<table class="is-10pt data-table">
|
<tr>
|
||||||
<tr>
|
<td>
|
||||||
<td><%= configFunctions.getProperty("aliases.map") %></td>
|
<h2 class="is-10pt is-capitalized">Details</h2>
|
||||||
<td><%= lotOccupancy.mapName %></td>
|
<table class="is-10pt data-table">
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><%= configFunctions.getProperty("aliases.map") %></td>
|
||||||
<td><%= configFunctions.getProperty("aliases.lot") %></td>
|
<td><%= lotOccupancy.mapName %></td>
|
||||||
<td><%= lotOccupancy.lotName %></td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<%
|
<td><%= configFunctions.getProperty("aliases.lot") %></td>
|
||||||
for (const field of lotOccupancy.lotOccupancyFields) {
|
<td><%= lotOccupancy.lotName %></td>
|
||||||
if (field.lotOccupancyFieldValue) {
|
</tr>
|
||||||
%>
|
<%
|
||||||
<tr>
|
for (const field of lotOccupancy.lotOccupancyFields) {
|
||||||
<td><%= field.occupancyTypeField %></td>
|
if (field.lotOccupancyFieldValue) {
|
||||||
<td><%= field.lotOccupancyFieldValue %></td>
|
%>
|
||||||
</tr>
|
<tr>
|
||||||
<%
|
<td><%= field.occupancyTypeField %></td>
|
||||||
}
|
<td><%= field.lotOccupancyFieldValue %></td>
|
||||||
}
|
</tr>
|
||||||
%>
|
<%
|
||||||
</table>
|
}
|
||||||
</td>
|
}
|
||||||
<td>
|
%>
|
||||||
<h2 class="is-10pt is-capitalized">Interment Rights and Services</h2>
|
</table>
|
||||||
<table class="is-10pt data-table">
|
</td>
|
||||||
<tbody>
|
<td>
|
||||||
<%
|
<h2 class="is-10pt is-capitalized">Interment Rights and Services</h2>
|
||||||
let currentFeeCategory = "";
|
<table class="is-10pt data-table">
|
||||||
let feeAmountTotal = 0;
|
<tbody>
|
||||||
let taxAmountTotal = 0;
|
<%
|
||||||
%>
|
let currentFeeCategory = "";
|
||||||
<% for (const fee of lotOccupancy.lotOccupancyFees) { %>
|
let feeAmountTotal = 0;
|
||||||
<% if (currentFeeCategory !== fee.feeCategory) { %>
|
let taxAmountTotal = 0;
|
||||||
<tr>
|
%>
|
||||||
<td colspan="2">
|
<% for (const fee of lotOccupancy.lotOccupancyFees) { %>
|
||||||
<strong><%= fee.feeCategory %></strong>
|
<% if (currentFeeCategory !== fee.feeCategory) { %>
|
||||||
</td>
|
<tr>
|
||||||
</tr>
|
<td colspan="2">
|
||||||
<% currentFeeCategory = fee.feeCategory; %>
|
<strong><%= fee.feeCategory %></strong>
|
||||||
<% } %>
|
</td>
|
||||||
<tr>
|
</tr>
|
||||||
<td>
|
<% currentFeeCategory = fee.feeCategory; %>
|
||||||
<%= fee.feeName %>
|
<% } %>
|
||||||
</td>
|
<tr>
|
||||||
<td class="has-text-right">
|
<td>
|
||||||
$<%= fee.feeAmount.toFixed(2) %>
|
<%= fee.feeName %>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td class="has-text-right">
|
||||||
<%
|
$<%= fee.feeAmount.toFixed(2) %>
|
||||||
feeAmountTotal += fee.feeAmount;
|
</td>
|
||||||
taxAmountTotal += fee.taxAmount;
|
</tr>
|
||||||
%>
|
<%
|
||||||
<% } %>
|
feeAmountTotal += fee.feeAmount;
|
||||||
<tr>
|
taxAmountTotal += fee.taxAmount;
|
||||||
<td><strong>Sub Total</strong></td>
|
%>
|
||||||
<td class="has-text-right">
|
<% } %>
|
||||||
<strong>$<%= feeAmountTotal.toFixed(2) %></strong>
|
<tr>
|
||||||
</td>
|
<td><strong>Sub Total</strong></td>
|
||||||
</tr><tr>
|
<td class="has-text-right">
|
||||||
<td>HST</td>
|
<strong>$<%= feeAmountTotal.toFixed(2) %></strong>
|
||||||
<td class="has-text-right">
|
</td>
|
||||||
$<%= taxAmountTotal.toFixed(2) %>
|
</tr><tr>
|
||||||
</td>
|
<td>HST</td>
|
||||||
</tr><tr>
|
<td class="has-text-right">
|
||||||
<td><strong>Total Sale</strong></td>
|
$<%= taxAmountTotal.toFixed(2) %>
|
||||||
<td class="has-text-right">
|
</td>
|
||||||
<strong>$<%= (feeAmountTotal + taxAmountTotal).toFixed(2) %></strong>
|
</tr><tr>
|
||||||
</td>
|
<td><strong>Total Sale</strong></td>
|
||||||
</tr><tr>
|
<td class="has-text-right">
|
||||||
<td><strong>Balance Owing</strong></td>
|
<strong>$<%= (feeAmountTotal + taxAmountTotal).toFixed(2) %></strong>
|
||||||
<td class="has-text-right">
|
</td>
|
||||||
<strong>$<%= (feeAmountTotal + taxAmountTotal - lotOccupancyFunctions.getTransactionTotal(lotOccupancy)).toFixed(2) %></strong>
|
</tr><tr>
|
||||||
</td>
|
<td><strong>Balance Owing</strong></td>
|
||||||
</tr>
|
<td class="has-text-right">
|
||||||
</tfoot>
|
<strong>$<%= (feeAmountTotal + taxAmountTotal - lotOccupancyFunctions.getTransactionTotal(lotOccupancy)).toFixed(2) %></strong>
|
||||||
</table>
|
</td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
<!-- PAGE BREAK -->
|
<!-- PAGE BREAK -->
|
||||||
|
|
||||||
<h2 class="is-10pt" style="page-break-before:always">
|
<h2 class="is-10pt" style="page-break-before:always">
|
||||||
Contribution Levels to the Care and Maintenance Fund<br />
|
Contribution Levels to the Care and Maintenance Fund<br />
|
||||||
(based on the price of Interment Rights and as prescribed by the <em>Funeral, Burial and Cremation Services Act</em>)
|
(based on the price of Interment Rights and as prescribed by the <em>Funeral, Burial and Cremation Services Act</em>)
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<table class="layout-table is-10pt">
|
<table class="layout-table is-10pt">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Niches</td>
|
<td>Niches</td>
|
||||||
<td>the greater of 15% and $100</td>
|
<td>the greater of 15% and $100</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Crypts</td>
|
<td>Crypts</td>
|
||||||
<td>the greater of 20% and $500</td>
|
<td>the greater of 20% and $500</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
In-ground grave (2.23 sq.m. or 24 sq.ft. or larger)
|
In-ground grave (2.23 sq.m. or 24 sq.ft. or larger)
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
the greater of 40% and $250
|
the greater of 40% and $250
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>In-ground grave (smaller than 2.23 sq.m. or 24 sq ft)</td>
|
<td>In-ground grave (smaller than 2.23 sq.m. or 24 sq ft)</td>
|
||||||
<td>the greater of 40% and $150</td>
|
<td>the greater of 40% and $150</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h2 class="is-10pt">
|
<h2 class="is-10pt">
|
||||||
Contribution Levels to the Care and Maintenance Fund - Markers<br />
|
Contribution Levels to the Care and Maintenance Fund - Markers<br />
|
||||||
(as prescribed by the <em>Funeral, Burial and Cremation Services Act</em>)
|
(as prescribed by the <em>Funeral, Burial and Cremation Services Act</em>)
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<table class="layout-table is-10pt">
|
<table class="layout-table is-10pt">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Flat marker measuring less than 1,116.3 sq.m. (173 sq.in.)</td>
|
<td>Flat marker measuring less than 1,116.3 sq.m. (173 sq.in.)</td>
|
||||||
<td>$0.00</td>
|
<td>$0.00</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Flat marker measuring over 1,116.3 sq.m. (173 sq.in.)</td>
|
<td>Flat marker measuring over 1,116.3 sq.m. (173 sq.in.)</td>
|
||||||
<td>$50.00</td>
|
<td>$50.00</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Upright monument measuring more than 1.22 m. (4 ft.) or less in height or length,
|
Upright monument measuring more than 1.22 m. (4 ft.) or less in height or length,
|
||||||
including the base
|
including the base
|
||||||
</td>
|
</td>
|
||||||
<td>$100.00</td>
|
<td>$100.00</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Upright monument measuring more than 1.22m. (4 ft.) either in height or length,
|
Upright monument measuring more than 1.22m. (4 ft.) either in height or length,
|
||||||
including the base
|
including the base
|
||||||
</td>
|
</td>
|
||||||
<td>$200.00</td>
|
<td>$200.00</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h2 class="is-10pt">Contract Terms and Conditions</h2>
|
<h2 class="is-10pt">Contract Terms and Conditions</h2>
|
||||||
|
|
||||||
<ol class="termsList">
|
<ol class="termsList">
|
||||||
<li>
|
<li>
|
||||||
The Purchaser may only cancel a contract for interment rights or cemetery services upon written notice of cancellation
|
The Purchaser may only cancel a contract for interment rights or cemetery services upon written notice of cancellation
|
||||||
to the City Clerk in accordance with the <em>Funeral, Burial and Cremation Services Act</em> and the terms and conditions set
|
to the City Clerk in accordance with the <em>Funeral, Burial and Cremation Services Act</em> and the terms and conditions set
|
||||||
out herein.
|
out herein.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Where interment rights have not been exercised and none of the contracted cemetery services have been provided
|
Where interment rights have not been exercised and none of the contracted cemetery services have been provided
|
||||||
and where the contract is cancelled within thirty (30) days of its execution, the Corporation shall refund the Purchaser
|
and where the contract is cancelled within thirty (30) days of its execution, the Corporation shall refund the Purchaser
|
||||||
all moneys paid less an administrative fee as set out in the Price List.
|
all moneys paid less an administrative fee as set out in the Price List.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Where interment rights have not been exercised and part of the contracted cemetery services have been provided,
|
Where interment rights have not been exercised and part of the contracted cemetery services have been provided,
|
||||||
and where the contract is cancelled within thirty (30) days of its execution, the Corporation shall refund the Purchaser
|
and where the contract is cancelled within thirty (30) days of its execution, the Corporation shall refund the Purchaser
|
||||||
the amount described in (b) above which shall be reduced by the cost of cemetery services provided as set out in the
|
the amount described in (b) above which shall be reduced by the cost of cemetery services provided as set out in the
|
||||||
current Price List.
|
current Price List.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
A contract for interment rights cannot be cancelled more than thirty (30) days after the date of execution of the
|
A contract for interment rights cannot be cancelled more than thirty (30) days after the date of execution of the
|
||||||
contract.
|
contract.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Where a contract for cemetery services is cancelled more than thirty (30) days after the date of execution of the
|
Where a contract for cemetery services is cancelled more than thirty (30) days after the date of execution of the
|
||||||
contract, the Purchaser shall be refunded the amount described in (b) and (c) above plus the amount of income
|
contract, the Purchaser shall be refunded the amount described in (b) and (c) above plus the amount of income
|
||||||
earned on that money.
|
earned on that money.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Written consent of all surviving interment rights holder(s), if any, and any other required documentation as set out in
|
Written consent of all surviving interment rights holder(s), if any, and any other required documentation as set out in
|
||||||
Cemetery By-law 2012-129 is required for: cremation, interments, disinterments, and the placement of markers,
|
Cemetery By-law 2012-129 is required for: cremation, interments, disinterments, and the placement of markers,
|
||||||
inscriptions or photos.
|
inscriptions or photos.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Transfer or resale of the above listed interment rights to a third party is permitted, subject to the provisions of
|
Transfer or resale of the above listed interment rights to a third party is permitted, subject to the provisions of
|
||||||
Cemetery By-law 2012-129 and the <em>Funeral, Burial and Cremation Services Act</em>. A Certificate of Interment Rights
|
Cemetery By-law 2012-129 and the <em>Funeral, Burial and Cremation Services Act</em>. A Certificate of Interment Rights
|
||||||
holder shall not resell interment rights for an amount that is greater than the price of those rights as indicated on the
|
holder shall not resell interment rights for an amount that is greater than the price of those rights as indicated on the
|
||||||
current Price List, inclusive of the care and maintenance component.
|
current Price List, inclusive of the care and maintenance component.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
No Certificate of Interment Rights holder(s) may subdivide and sell or transfer a portion of interment rights.
|
No Certificate of Interment Rights holder(s) may subdivide and sell or transfer a portion of interment rights.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
An Interment Rights Certificate will not be issued until this Contract has been paid in full.
|
An Interment Rights Certificate will not be issued until this Contract has been paid in full.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
A marker, purchased and/or installed by anyone other than the Certificate of Interment Rights holder(s) may be
|
A marker, purchased and/or installed by anyone other than the Certificate of Interment Rights holder(s) may be
|
||||||
removed by cemetery staff upon the written request of the Certificate of Interment Rights holder(s).
|
removed by cemetery staff upon the written request of the Certificate of Interment Rights holder(s).
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Dead human bodies cannot be cremated if there is a pacemaker or radioactive implant in the body or if the body is in
|
Dead human bodies cannot be cremated if there is a pacemaker or radioactive implant in the body or if the body is in
|
||||||
a container made of or containing non-flammable or hazardous material or chlorinated or fibre-reinforced plastic.
|
a container made of or containing non-flammable or hazardous material or chlorinated or fibre-reinforced plastic.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Dead human bodies will not be cremated unless a coroner's certificate has been provided to the operator.
|
Dead human bodies will not be cremated unless a coroner's certificate has been provided to the operator.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
The Corporation shall not be responsible in the event that it is unable to or prevented from carrying out this Contract
|
The Corporation shall not be responsible in the event that it is unable to or prevented from carrying out this Contract
|
||||||
due to causes beyond its control.
|
due to causes beyond its control.
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<!-- PAGE BREAK -->
|
<!-- PAGE BREAK -->
|
||||||
|
|
||||||
<h2 class="is-10pt" style="page-break-before:always">Payment Terms</h2>
|
<h2 class="is-10pt" style="page-break-before:always">Payment Terms</h2>
|
||||||
<p>
|
<p>
|
||||||
All pre-need interment rights and cemetery services must be paid in full at the time of ordering.
|
All pre-need interment rights and cemetery services must be paid in full at the time of ordering.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
In the case of at-need interment rights and cemetery services, the interment rights and services directly related to the
|
In the case of at-need interment rights and cemetery services, the interment rights and services directly related to the
|
||||||
deceased will be invoiced by the Corporation and interest shall be charged at the rate determined by the Treasurer on the
|
deceased will be invoiced by the Corporation and interest shall be charged at the rate determined by the Treasurer on the
|
||||||
unpaid balance after thirty (30) days from the date of invoice. Such services do not include interment rights in a
|
unpaid balance after thirty (30) days from the date of invoice. Such services do not include interment rights in a
|
||||||
mausoleum.
|
mausoleum.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Any rights of cancellation of this Contract, whether within thirty (30) days or after thirty (30) days can only be exercised by
|
Any rights of cancellation of this Contract, whether within thirty (30) days or after thirty (30) days can only be exercised by
|
||||||
the Purchaser or his or her Estate Trustee.
|
the Purchaser or his or her Estate Trustee.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2 class="is-10pt">Personal Information</h2>
|
<h2 class="is-10pt">Personal Information</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The Purchaser acknowledges and provides consent to permit the Corporation to collect, use and disclose personal
|
The Purchaser acknowledges and provides consent to permit the Corporation to collect, use and disclose personal
|
||||||
information in accordance with the requirements under the <em>Funeral, Burial and Cremation Services Act</em> and the
|
information in accordance with the requirements under the <em>Funeral, Burial and Cremation Services Act</em> and the
|
||||||
regulations made thereunder for information within the cemetery/crematorium public register. The Purchaser also
|
regulations made thereunder for information within the cemetery/crematorium public register. The Purchaser also
|
||||||
understands that the Corporation does not rent or sell personal information to third party organizations.
|
understands that the Corporation does not rent or sell personal information to third party organizations.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
All information provided by the Purchaser to the Corporation shall be held, retained, disclosed, and destroyed, as the case
|
All information provided by the Purchaser to the Corporation shall be held, retained, disclosed, and destroyed, as the case
|
||||||
may be, in accordance with the provisions of the <em>Municipal Freedom of Information and Protection of Privacy Act</em>.
|
may be, in accordance with the provisions of the <em>Municipal Freedom of Information and Protection of Privacy Act</em>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2 class="is-10pt">Consumer Information Guide and Cemetery Price List</h2>
|
<h2 class="is-10pt">Consumer Information Guide and Cemetery Price List</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
By initialling below, the Purchaser acknowledges receiving a copy of the Ontario Government's Consumer Information
|
By initialling below, the Purchaser acknowledges receiving a copy of the Ontario Government's Consumer Information
|
||||||
Guide (where made available by the Registrar) and the Cemetery Price List at the time of entering into this Contract.
|
Guide (where made available by the Registrar) and the Cemetery Price List at the time of entering into this Contract.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<ul class="confirmList">
|
<ul class="confirmList">
|
||||||
<li>
|
<li>
|
||||||
I hereby acknowledge that I have been offered and/or received a copy of the Ontario Government’s Consumer
|
I hereby acknowledge that I have been offered and/or received a copy of the Ontario Government’s Consumer
|
||||||
Information Guide and the Cemetery Price List.
|
Information Guide and the Cemetery Price List.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
I have reviewed the terms and conditions of the Contract and hereby confirm that the interment rights and cemetery
|
I have reviewed the terms and conditions of the Contract and hereby confirm that the interment rights and cemetery
|
||||||
services as specified in this Contract are complete and correct. I direct the Corporation to proceed with the sale of the
|
services as specified in this Contract are complete and correct. I direct the Corporation to proceed with the sale of the
|
||||||
interment right(s) as identified in this Contract in accordance with the Cemetery By-law 2012-129 which is now or at any
|
interment right(s) as identified in this Contract in accordance with the Cemetery By-law 2012-129 which is now or at any
|
||||||
time hereinafter in force.
|
time hereinafter in force.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
I hereby acknowledge that I have received and reviewed a copy of Cemetery By-law 2012-129.
|
I hereby acknowledge that I have received and reviewed a copy of Cemetery By-law 2012-129.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
I acknowledge having received a copy of this Contract, and will assume full responsibility for payment of the total
|
I acknowledge having received a copy of this Contract, and will assume full responsibility for payment of the total
|
||||||
Contract price to the Corporation in accordance with the terms and conditions of the Contract.
|
Contract price to the Corporation in accordance with the terms and conditions of the Contract.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The Contract date set out below is the date on which this Contract is accepted by the Corporation.
|
The Contract date set out below is the date on which this Contract is accepted by the Corporation.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Purchaser:
|
Purchaser:
|
||||||
<span class="field" style="width:400px"> </span>
|
<span class="field" style="width:400px"> </span>
|
||||||
Date:
|
Date:
|
||||||
<span class="field" style="width:200px"> </span>
|
<span class="field" style="width:200px"> </span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Purchaser:
|
Purchaser:
|
||||||
<span class="field" style="width:400px"> </span>
|
<span class="field" style="width:400px"> </span>
|
||||||
Date:
|
Date:
|
||||||
<span class="field" style="width:200px"> </span>
|
<span class="field" style="width:200px"> </span>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="has-text-right mt-4">
|
<p class="has-text-right mt-4">
|
||||||
Accepted on behalf of The Corporation<br />
|
Accepted on behalf of The Corporation<br />
|
||||||
of the City of Sault Ste. Marie by:
|
of the City of Sault Ste. Marie by:
|
||||||
</p>
|
</p>
|
||||||
<p class="has-text-right">
|
<p class="has-text-right">
|
||||||
Name:
|
Name:
|
||||||
<span class="field" style="width:300px"> </span>
|
<span class="field" style="width:300px"> </span>
|
||||||
</p>
|
</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Reference in New Issue