{% block report_header %}
{% if company.logo %}
{% endif %}
|
{% endblock report_header %}
{% block report_body %}
{{ enac_label }}
{{ _('Results Report') }}
{{ replace_number }}
|
{{ _('Date') }}: {{ print_date|render}}
|
{{ _('REPORT Nº') }}: {{ number }}
|
{{ _('REQUESTED BY') }}: {{ party }}
|
{{ _('ADDRESS') }}: {{ party_address }}
|
|
{{ _('RECEIVED SAMPLE') }}
|
{% if report_type == 'normal' %}
{{ _('LABEL') }}: {{ sample_label }}
|
{{ _('CUSTOMER DESCRIPTION') }}: {{ sample_client_description }}
|
{% if report_section == 'for' %}
{{ _('FORMULATION TYPES') }}: {{ sample_prodct_type }}
|
{{ _('ACTIVE INGREDIENT') }}: {{ sample_matrix }}
|
{% endif %}
{% endif %}
{{ _('PRODUCER COMPANY') }}: {{ sample_producer }}
|
{{ _('CONFIRMATION SAMPLE RECEPTION') }}: {{ sample_confirmation_date|render }}
|
{{ _('CONTAINER') }}: {{ sample_packages_quantity }} {{ sample_package_type }}
|
{{ _('BEGINNING OF THE ANALYSIS') }}: {{ min_start_date|render }}
|
{{ _('SAMPLE PRESENTATION') }}: {{ sample_package_state }}
|
{{ _('END OF ANALYSIS') }}: {{ max_end_date|render }}
|
{% if report_type == 'normal' %}
{{ _('CODE OF THE SAMPLE') }}: {{ sample_number }}
{% endif %}
|
{% if report_section == 'rp' and (stp_project == 'True' or stp_polisample_project == 'True') %}
{{ _('STUDY PLAN N°') }}: {{ stp_code }}
|
{% endif %}
{% if report_type == 'normal' and report_section == 'rp' and stp_project == 'True' %}
{{ _('APPLICATION DATES') }}: {% if stp_application_date %}{{ stp_application_date|render }}{% endif %}
|
{{ _('SAMPLING DATE') }}: {% if stp_sampling_date %}{{ stp_sampling_date|render }}{% endif %}
|
{{ _('TREATMENT') }}: {{ stp_treatment }}
|
{{ _('ZONE') }}: {{ stp_zone }}
|
{{ _('DOSE') }}: {{ stp_dosis }}
|
{{ _('DAYS AFTER TREATMENT (DAT)') }}: {{ stp_after_application_days }}
|
{{ _('REPETITION') }}: {{ stp_repetition }}
|
{% if stp_z_senasa_protocol %}
{{ _('SENASA PROTOCOL N°') }}: {{ stp_z_senasa_protocol }}
|
{% endif %}
{% endif %}
|
|
{{ _('RESULTS') }}
|
{% for fraction in fractions %}
{% if report_type == 'normal' %}
{% if report_section in ('amb', 'sq') and report_result_type == 'result' %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
{{ _('Unit') }}
|
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section == 'for' and report_result_type in ('result', 'both') %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
{{ _('Detection Limit') }}
|
{{ _('Unit') }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.detection_limit }}
|
{{ line.initial_unit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section in ('amb', 'sq') and report_result_type == 'result_range' %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
{{ _('Unit') }}
|
{{ range_title }}
|
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.reference }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section == 'for' and report_result_type == 'result_range' %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
{{ _('Detection Limit') }}
|
{{ _('Unit') }}
|
{{ range_title }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.detection_limit }}
|
{{ line.initial_unit }}
|
{{ line.reference }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section in ('amb', 'sq') and report_result_type == 'both' %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
{{ conc.unit_label }}
|
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.converted_result }}
|
{{ line.final_unit }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section == 'mi' and report_result_type in ('result', 'both') %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section == 'mi' and report_result_type == 'result_range' %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
|
{{ range_title }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.reference }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section == 'rp' and report_result_type in ('result', 'both') %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
|
{{ _('Detection Limit') }}
({{ initial_unit }})
|
{{ _('Method') }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.detection_limit }}
|
{{ line.pnt }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if report_section == 'rp' and report_result_type == 'result_range' %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
|
{{ _('Detection Limit') }}
({{ initial_unit }})
|
{{ range_title }}
|
{{ _('Method') }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.detection_limit }}
|
{{ line.reference }}
|
{{ line.pnt }}
|
{{ line.corrected }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{% if report_type == 'polisample' %}
{% if report_section in ('amb', 'sq') %}
{{ _('CUSTOMER DESCRIPTION') }}: {{ fraction.client_description }}
|
{{ _('LABEL') }}: {{ fraction.label }}
|
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{% if report_result_type in ('result', 'both') %}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% if report_result_type == 'result_range' %}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
{{ range_title }}
|
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.reference }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if report_section == 'for' %}
{{ _('CUSTOMER DESCRIPTION') }}: {{ fraction.client_description }}
|
{{ _('LABEL') }}: {{ fraction.label }}
|
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{% if report_result_type in ('result', 'both') %}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
{{ _('Detection Limit') }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% if report_result_type == 'result_range' %}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
{{ _('Detection Limit') }}
|
{{ range_title }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.detection_limit }}
|
{{ line.reference }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if report_section == 'mi' %}
{{ _('CUSTOMER DESCRIPTION') }}: {{ fraction.client_description }}
|
{{ _('LABEL') }}: {{ fraction.label }}
|
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{% if report_result_type in ('result', 'both') %}
{{ _('Analysis') }}
|
{{ _('Result') }} ({{ initial_unit }})
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% if report_result_type == 'result_range' %}
{{ _('Analysis') }}
|
{{ _('Result') }} ({{ initial_unit }})
|
{{ range_title }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
|
{{ line.reference }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if report_section == 'rp' %}
{{ _('CODE OF THE SAMPLE') }}: {{ fraction.number }}
|
{{ _('LABEL') }}: {{ fraction.label }}
|
{{ _('CUSTOMER DESCRIPTION') }}: {{ fraction.client_description }}
|
{% if stp_polisample_project == 'True' and fraction.stp_variety %}
{{ _('VARIETY') }}: {{ fraction.stp_variety }}
|
{% endif %}
{% if sample_producer %}
{{ _('PRODUCER COMPANY') }}: {{ sample_producer }}
|
{% endif %}
{% if stp_polisample_project == 'True' %}
{% if fraction.stp_application_date %}
{{ _('APPLICATION DATES') }}: {{ fraction.stp_application_date|render }}
|
{% endif %}
{% if fraction.stp_sampling_date or fraction.stp_treatment %}
{% if fraction.stp_sampling_date %}{{ _('SAMPLING DATE') }}: {{ fraction.stp_sampling_date|render }}{% endif %}
|
{% if fraction.stp_treatment %}{{ _('TREATMENT') }}: {{ fraction.stp_treatment }}{% endif %}
|
{% endif %}
{% if fraction.stp_zone or fraction.stp_dosis %}
{% if fraction.stp_zone %}{{ _('ZONE') }}: {{ fraction.stp_zone }}{% endif %}
|
{% if fraction.stp_dosis %}{{ _('DOSE') }}: {{ fraction.stp_dosis }}{% endif %}
|
{% endif %}
{% if fraction.stp_after_application_days or fraction.stp_repetition %}
{% if fraction.stp_after_application_days %}{{ _('DAYS AFTER TREATMENT (DAT)') }}: {{ fraction.stp_after_application_days }}{% endif %}
|
{% if fraction.stp_repetition %}{{ _('REPETITION') }}: {{ fraction.stp_repetition }}{% endif %}
|
{% endif %}
{% endif %}
{% for conc in fraction.concentrations.values() %}
{{ conc.label }}
{% if report_result_type in ('result', 'both') %}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
|
{{ _('Detection Limit') }}
({{ initial_unit }})
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.detection_limit }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% if report_result_type == 'result_range' %}
{{ _('Analysis') }}
|
{{ _('Result') }}
({{ initial_unit }})
|
|
{{ _('Detection Limit') }}
({{ initial_unit }})
|
{{ range_title }}
|
|
{% for line in conc.lines %}
{% if (enac == 'True' and line.acredited == 'False') %}* {% else %} {% endif %}{{ line.analysis }}
|
{{ line.result }}
|
{{ line.initial_unit }}
|
{{ line.detection_limit }}
|
{{ line.reference }}
|
{{ line.corrected }}
|
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
|
|
{% if comments or tas_project == 'True' %}
|
{{ _('OBSERVATIONS') }}
{% if comments %}
{% for line in comments.split('\n') %}
{{ line }}
{% endfor %}
{% endif %}
{% if tas_project == 'True' %}
{{ _('For the SAT NRO') }}: {{ tas_code }}
{% endif %}
|
|
{% endif %}
|
{{ _('METHODS') }}
{% if report_section in ('amb', 'for', 'mi', 'sq') %}
{% for method in methods %}
{{ method.analysis }}: {{ method.method }}
{% endfor %}
{% endif %}
{% if report_section == 'rp' %}
{% for method in pnt_methods %}
{{ method.pnt }}: {{ method.method }}
{% endfor %}
{% endif %}
|
|
 }})
{{ signer }}
{{ signer_role }}
|
{% endblock report_body %}
{% block report_footer %}
{{ _('The results only refer to the analyzed samples. This report must not be partially reproduced without the written approval of') }} {{ company.party.rec_name }}.
|
{% endblock report_footer %}
{% endblock body %}