{% extends 'layout/default.html' %} {% load custom_filters %} {% block addcss %} {% endblock addcss %} {% load i18n %} {% block title %}{% translate "Reminder List Jobs" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Reminder Jobs" %} {% endblock %} {% block breadcumbfirst %} {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Reminder Jobs List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Reset
{% if technician_assigned_job_lists %}
{% for technician_assigned_job_list in technician_assigned_job_lists %} {% endfor %}
Serail Number Customer Technician Product Reminder Date Reminder Period Actions
{{technician_assigned_job_list.order_item.serial_number.serial_number}} {{technician_assigned_job_list.order_item.order.invoice.customer }} {% if technician_assigned_job_list.replace_technician %} {{ technician_assigned_job_list.replace_technician.userinfo.get_full_name }} {% else %} {{ technician_assigned_job_list.technician.userinfo.get_full_name }} {% endif %} {% if technician_assigned_job_list.secondary_technician or technician_assigned_job_list.replace_secondary_technician %}
{% if technician_assigned_job_list.replace_secondary_technician %} {{ technician_assigned_job_list.replace_secondary_technician.userinfo.get_full_name }} (Secondary Tech) {% else %} {{ technician_assigned_job_list.secondary_technician.userinfo.get_full_name }} (Secondary Tech) {% endif %} {% endif %}
{{technician_assigned_job_list.order_item.product}}({{technician_assigned_job_list.order_item.product.sku}}) {% if not technician_assigned_job_list.order_item.is_trade %} {%if technician_assigned_job_list.status == 'Warranty'%} {{technician_assigned_job_list.status}} till {{technician_assigned_job_list.order_item.warranty_end_date|date:"d-m-Y"}} {% elif technician_assigned_job_list.status == 'Service' %} {{technician_assigned_job_list.status}} {% endif %} {% endif %} {% if technician_assigned_job_list.is_11_month_reminder_sent == 1 %} {{ technician_assigned_job_list.job_complete_datetime|add_months:11|date:"d M Y" }} {% else %} {{ technician_assigned_job_list.job_complete_datetime|add_months:5|date:"d M Y" }} {% endif %} {% if technician_assigned_job_list.is_11_month_reminder_sent == 1 %} 11-Month {% else %} 5-Month {% endif %}
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% if technician_assigned_job_lists %} {% for technician_assigned_job_list in technician_assigned_job_lists %} {% if technician_assigned_job_list.job_type == 1 and technician_assigned_job_list.working_status != 3 %} {% endif %} {% endfor %} {% for technician_assigned_job_list in technician_assigned_job_lists %} {% endfor %} {% endif %} {% endblock script %}