<html lang='en'>
  <head>
    <meta charset='UTF-8' />
    <meta name='viewport' content='width=device-width, initial-scale=1.0' />
    <title>Audit Objective Checklist</title>
    <style>
      @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

      @page {
        size: A4;
        max-width: 1100px;
        margin: 2mm 0mm; /* top/bottom 6mm, left/right 3mm */
      }

      /* ===============================
   BASE
================================ */
      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        padding: 0;
        font-family: 'Source Sans Pro', Arial, sans-serif;
        font-size: 11pt;
        line-height: 1.4;
        color: #1a1919;
        background: #fff;
        text-transform: none; /* removed uppercase */
      }

      /* ===============================
   PAGE CONTAINER
================================ */
      .document-container {
        width: 100%;
        page-break-after: always;
        break-after: page;
      }

      .document-container:last-child {
        page-break-after: auto;
        break-after: auto;
      }

      /* ===============================
   TABLE GLOBAL
================================ */
      table {
        width: 100%;
        border-collapse: collapse;
      }

      tr,
      td {
        page-break-inside: avoid;
      }

      /* ===============================
   HEADER
================================ */
      .doc-table th,
      .doc-table td {
        border: 1px solid #000;
        padding: 6px 8px;
        vertical-align: top;
      }

      .audit-content li {
        font-weight: normal !important;
        text-transform: uppercase;
        font-family: 'Source Sans Pro', Arial, sans-serif !important;
        font-size: 9pt;
        line-height: 1.4;
        color: #1e1d1d;
      }

      /* Header Row */
      .header-title-row td {
        padding: 10px 8px;
        background-color: #f0f0f0;
        font-weight: 700;
        text-align: center;
        font-size: 14pt;
      }

      .section-header {
        background-color: #e3f2fd;
        font-weight: 600;
        padding: 4px 6px;
        white-space: nowrap;
        font-size: 11pt;
      }

      .section-header.smaller-w {
        width: 12%;
      }

      /* Logos and Titles */
      .logo {
        width: 100px;
        /* slightly bigger */
        height: auto;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 50px;
        padding: 4px;
      }

      .quality-registrar-text {
        font-weight: 800;
        font-size: 24pt;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.05em;
        color: #0d0c0c;
      }

      .page-cell {
        font-size: 11pt;
        font-weight: bold;
        text-align: right;
      }

      /* ===============================
   SUBTITLE
================================ */
      .subtitle-table {
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
      }

      .subtitle-table td {
        border: 1px solid #000;
        padding: 6px;
        font-size: 11pt;
        font-weight: bold;
        text-align: center;
      }

      /* ===============================
   MAIN TABLE
================================ */
      .main-table {
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        font-size: 10pt;
      }

      .main-table td {
        border: 1px solid #000;
        padding: 6px;
        vertical-align: top;
      }

      .label-cell {
        width: 15%;
        font-weight: bold;
      }

      .content-cell {
        width: 50%;
      }

      .job-label {
        width: 10%;
        font-weight: bold;
        text-align: center;
      }

      .job-content {
        width: 25%;
      }

      /* ===============================
   CHECKBOX STYLING
================================ */
      .checkbox-line {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 3px 0;
        align-items: center;
      }

      .checkbox {
        display: inline-block;
        width: 14px;
        height: 14px;
        border: 1px solid #000;
        border-radius: 2px;
        vertical-align: middle;
        margin-right: 4px;
        position: relative;
      }

      .checkbox.checked::after {
        content: '✔';
        position: absolute;
        top: -1px;
        left: 1px;
        font-size: 12px;
        color: black;
        font-weight: bold;
      }

      /* ===============================
   CONTENT
================================ */
      .full-content {
        padding: 6px;
        font-size: 10pt;
        text-align: justify;
      }

      .full-content p {
        margin: 5px 0;
      }

      .full-content ol,
      .full-content ul {
        margin: 6px 0 6px 20px;
        padding-left: 20px;
      }

      .full-content li {
        margin: 3px 0;
        text-transform: none; /* normal case */
      }

      /* Headings */
      .section-heading {
        font-weight: bold;
        font-size: 11pt;
        margin: 8px 0 4px;
      }

      /* ===============================
   SIGNATURE
================================ */
      .signature-row td {
        padding: 7px;
        font-size: 10pt;
        font-weight: bold;
      }

      /* ===============================
   FOOTER
================================ */
      .footer-table {
        margin-top: 8px;
        border: 1px solid #000;
      }

      .footer-table td {
        border-right: 1px solid #000;
        padding: 5px;
        font-size: 10pt;
        font-weight: bold;
        text-align: center;
      }

      .footer-table td:last-child {
        border-right: none;
      }

      .footer-table .label-row td {
        border-bottom: 1px solid #000;
      }

      /* ===============================
   PRINT SAFETY
================================ */
      @media print {
        * {
          -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
        }
      }
    </style>

  </head>
  <body>
    <!-- Page 1 -->
    <div class='document-container'>
      <!-- Header -->
      <!-- 1. HEADER SECTION -->
      <table class='doc-table'>
        <!-- Row 1: Logo, Title, and Page Number -->
        <tr>
          <td style='border-right: none;' colspan='3'>
            <div class='logo-container'>
              <img
                src='http://localhost:3000/static/logo.png'
                class='logo'
                alt='logo'
              />
              <div>
                <div class='quality-registrar-text'>QUALITY REGISTRAR
                  <br />SYSTEMS
                </div>
              </div>
            </div>
          </td>
          <td
            style='border-left: 1px solid #000; text-align: right; vertical-align: middle;'
            class='w-20'
          >
            Page 1 of 2
          </td>

        </tr>
        <!-- Row 2: Audit Plan Title and Form Number -->
        <tr class='header-title-row'>
          <td colspan='3'>
            Audit Objective Checklist
          </td>
          <td
            style='text-align: right; font-size: 10px; font-weight: normal; background-color: white;'
          >Form 04-2-2</td>
        </tr>
      </table>

      <!-- Main Content Table -->
      <table class='main-table'>
        <tr>
          <td class='label-cell'>Company<br />Name</td>
          <td class='content-cell'>{{job.companySnapshot.companyName}}</td>
          <td class='job-label'>Job</td>
          <td class='job-content'>{{#if
              job.jobCode
            }}{{job.jobCode}}{{else}}N/A{{/if}}</td>
        </tr>
        <tr>
          <td class='label-cell'>Audit Standard</td>
          <td colspan='3'>
            <!-- Audit Standard -->
            <div class='checkbox-line'>
              {{! <span class='checkbox checked'></span> }}
              {{#if standards}}
                {{#each standards}}
                  <label class='input-label'>
                    <input type='checkbox' checked />
                    <span class='custom-check'></span>{{name}}
                  </label>
                {{/each}}
              {{else}}
                <label class='input-label'><input type='checkbox' /><span
                    class='custom-check'
                  ></span>None</label>
              {{/if}}
            </div>
          </td>
        </tr>
        <tr>
          <td class='label-cell'>Audit Type</td>
          <td colspan='3'>
            <div class='checkbox-line'>
              <span class='checkbox checked'></span>
              <strong>INITIAL</strong>&nbsp;&nbsp;
              <span class='checkbox'></span>
              <strong>SURVEILLANCE</strong>&nbsp;&nbsp;
              <span class='checkbox'></span>
              <strong>RE ASSESSMENT</strong>&nbsp;&nbsp;
              <span class='checkbox'></span>
              <strong>SPECIAL</strong>&nbsp;&nbsp;
              <span class='checkbox'></span>
              <strong>TRANSFER</strong>
            </div>
          </td>
        </tr>
        <tr>
          <td class='label-cell'>Check Points</td>
          <td colspan='3'></td>
        </tr>
        <tr>
          <td colspan='4' class='full-content'>
            <p>Check the points according to type of audit.</p>

            <div class='section-heading'>Stage 1 Audit:</div>
            <ol>
              <li>to audit the client's management system documentation</li>
              <li>to evaluate the client's location and site-specific conditions
                and to undertake discussions with the client's personnel to
                determine the preparedness for the stage 2 audit</li>
              <li>to review the client's status and understanding regarding
                requirements of the standard, in particular with respect to the
                identification of key performance or significant aspects,
                processes, objectives and operation of the management system</li>
              <li>to collect necessary information regarding the scope of the
                management system, processes and location(s) of the client, and
                related statutory and regulatory aspects and compliance</li>
              <li>to review the allocation of resources for stage 2 audit and
                agree with the client on the details of the stage 2 audit</li>
              <li>to provide a focus for planning the stage 2 audit by gaining a
                sufficient understanding of the client's management system and
                site operations in the context of possible significant aspects</li>
              <li>To evaluate if the internal audits and management review are
                being planned and performed, and that the level of
                implementation of the management system substantiates that the
                client is ready for the stage 2 audit</li>
            </ol>

            <div class='section-heading'>Stage 2 Audit:</div>
            <p>To evaluate the implementation, including effectiveness, of the
              client's management system, and determine the satisfaction
              <em>of "insert standard reference"</em>
              against audit findings. The following is included:</p>
            <ol type='a'>
              <li>information and evidence about conformity to all requirements
                of the applicable management system standard or other normative
                document</li>
              <li>performance monitoring, measuring, reporting and reviewing
                against key performance objectives and targets(consistent with
                the expectations in the applicable management system standard or
                other normative document)</li>
              <li>the client's management system and performance as regards
                legal compliance</li>
              <li>operational control of the client's key processes</li>
              <li>internal auditing and management review</li>
              <li>management responsibility for the client's policies</li>
              <li>Links between the normative requirements, policy, performance
                objectives and targets (consistent with the expectations in the
                applicable management system standard or other normative
                document), any applicable legal requirements, responsibilities,
                competence of personnel, operations, procedures, performance
                data and internal audit findings and conclusions.</li>
            </ol>

            <div class='section-heading'>Surveillance Audit:</div>
            <p>To regularly monitor the representative areas and functions
              covered by the scope of the management system and to keep the
              confidence to the effectiveness of the certified management system
              within certification period. Surveillance activities include
              on-site audits assessing the certified client's management
              system's fulfilment of specified requirements with respect to the
              standard to which the certification is granted:</p>
          </td>
        </tr>
      </table>

      <!-- Footer -->
      <table class='footer-table'>
        <tr class='label-row'>
          <td style='width: 33%;'>Issue</td>
          <td style='width: 34%;'>Revision</td>
          <td style='width: 33%;'>Date</td>
        </tr>
        <tr>
          <td>2</td>
          <td>01</td>
          <td>01.05.2024</td>
        </tr>
      </table>
    </div>

    <!-- Page 2 -->
    <div class='document-container'>
      <!-- Header -->
      <table class='doc-table'>
        <!-- Row 1: Logo, Title, and Page Number -->
        <tr>
          <td style='border-right: none;' colspan='3'>
            <div class='logo-container'>
              <img
                src='http://localhost:3000/static/logo.png'
                class='logo'
                alt='logo'
              />
              <div>
                <div class='quality-registrar-text'>QUALITY REGISTRAR
                  <br />SYSTEMS
                </div>
              </div>
            </div>
          </td>
          <td
            style='border-left: 1px solid #000; text-align: right; vertical-align: middle;'
            class='w-20'
          >
            Page 1 of 2
          </td>

        </tr>
        <!-- Row 2: Audit Plan Title and Form Number -->
        <tr class='header-title-row'>
          <td colspan='3'>
            Audit Objective Checklist
          </td>
          <td
            style='text-align: right; font-size: 10px; font-weight: normal; background-color: white;'
          >Form 04-2-2</td>
        </tr>
      </table>

      <!-- Main Content Table -->
      <table class='main-table'>
        <tr>
          <td colspan='4' class='full-content'>
            <ol type='a'>
              <li>enquiries from the certification body to the certified client
                on aspects of certification</li>
              <li>reviewing any client's statements with respect to its
                operations(e.g. promotional material, website)</li>
              <li>requests to the client to provide documents and records(on
                paper or electronic media)</li>
              <li>Other means of monitoring the certified client's performance</li>
            </ol>

            <p>The surveillance audit programme shall include, at least:</p>
            <ol type='a'>
              <li>internal audits and management review</li>
              <li>a review of actions taken on nonconformities identified during
                the previous audit</li>
              <li>treatment of complaints</li>
              <li>effectiveness of management system with regard to achieving
                the certified client's objectives</li>
              <li>progress of planned activities aimed at continual improvement</li>
              <li>continuing operational control</li>
              <li>review of any changes, and</li>
              <li>Use of marks and/or any other reference to certification</li>
            </ol>

            <div class='section-heading'>Recertification Audit:</div>
            <p>The purpose of the recertification audit is to confirm the
              continued conformity and effectiveness of the management system as
              a whole, and its continued relevance and applicability for the
              scope of certification.</p>

            <ul style='list-style: none; padding-left: 0; margin-left: 0;'>
              <li style='padding-left: 0;'>-&nbsp;&nbsp;The recertification
                audit shall consider the performance of the management system
                over the period of certification, and include the review of
                previous surveillance audit reports.</li>
              <li style='padding-left: 0;'>-&nbsp;&nbsp;Recertification audit
                activities may need to have a stage 1 audit in situations there
                have been significant changes to the management system, the
                client, or the context in which the management system is
                operating (e.g. changes to legislation).</li>
              <li style='padding-left: 0;'>-&nbsp;&nbsp;In the case of multiple
                sites or certification to multiple management system standards
                being provided by the certification body, the planning for the
                audit shall ensure adequate on-site audit coverage to provide
                confidence in the certification.</li>
            </ul>

            <p>The recertification audit includes an on-site audit that
              addresses the following:</p>
            <ol type='a'>
              <li>the effectiveness of the management system in its entirety in
                the light of internal and external changes and its continued
                relevance and applicability to the scope of certification</li>
              <li>demonstrated commitment to maintain the effectiveness and
                improvement of the management system in order to enhance overall
                performance</li>
              <li>Whether the operation of the certified management system
                contributes to the achievement of the organization's policy and
                objectives</li>
            </ol>

            <div class='section-heading'>Special Audit:</div>
            <div class='subsection'>
              <p><strong>Extension to scope:</strong></p>
              <p>The purpose of this type of audit is to undertake a review of
                the application for the extension to the scope of certification
                already granted by QRS; it may be combined with the surveillance
                audit.</p>
            </div>

            <div class='subsection'>
              <p><strong>Short notice:</strong></p>
              <p>The purpose of a short notice audit is to investigate
                complaints, or in response to changes, or as a follow up on
                suspended clients. The confidential element of this type of
                audit should be considered, particularly when the audit is
                convened to investigate negative stakeholder feedback.</p>
            </div>
          </td>
        </tr>
        <tr class='signature-row'>
          <td style='width: 25%;'>Lead Auditor</td>
          <td class='normal' style='width: 25%;'>
            {{#if leadAuditor}}
              {{leadAuditor.firstName}}
              {{leadAuditor.lastName}}
            {{else}}
              L/A
            {{/if}}
          </td>

          <td style='width: 15%;'>Date</td>
          <td class='normal' style='width: 35%;'> {{formatDate date}}</td>
        </tr>
        <tr class='signature-row'>
          <td>Accredited / Scheme<br />Office Review</td>
          <td class='normal'></td>
          <td>Date</td>
          <td class='normal'>{{formatDate docReview}}</td>
        </tr>
      </table>

      <!-- Footer -->
      <table class='footer-table'>
        <tr class='label-row'>
          <td style='width: 33%;'>Issue</td>
          <td style='width: 34%;'>Revision</td>
          <td style='width: 33%;'>Date</td>
        </tr>
        <tr>
          <td>2</td>
          <td>01</td>
          <td>01.05.2024</td>
        </tr>
      </table>
    </div>
  </body>
</html>