Field Details: coll_installment_type

Back to Fields
Basic Information
Field Name: coll_installment_type
Source Table: evolved_records
Version: 1
Expression Type: jinja
Output Type: TEXT
Status: Active
Created: 2025-10-16 04:31:29
Updated: 2025-10-16 04:31:29
Metadata
Display Name: Installment Type
Categories: COLLECTIONS
Group: Payment Details
Usage
Used in Summary: Yes
Used in Template: No

Description

No description available

Expression

            {% if raw_data.installment_type is defined %}
                "{{ raw_data.installment_type|upper }}"
            {% elif raw_data.payment_type is defined %}
                "{{ raw_data.payment_type|upper }}"
            {% else %}
                "REGULAR"
            {% endif %}