{% extends 'root/base.html' %} {% load static %} {% block title %} Approval Limit Values (Master Settings) {% endblock %} {% block maincontent %} {% include 'root/loader.html' %}

Maintain Approval Limit Values


{% for applimval in approval_limit_value %} {% endfor %}
Company Number Approval Type Approver Limit Code Approver Limit Value Currency
{{applimval.company_id}} {{applimval.app_types}} {{applimval.app_code_id}} {{applimval.upper_limit_value}} {{applimval.currency_id}}
{% include 'configuration_common_pop_up.html' %}
{% if messages %} {% for message in messages %} {% if message.tags == 'success' %}
{{ message }}
{% endif %} {% if message.tags == 'error' %}
{{ message }}
{% endif %} {% if message.tags == 'info' %}
{{ message }}
{% endif %} {% endfor %} {% endif %}
{{ approval_limit_value|json_script:"approval_limit_value" }} {% endblock %}