acr312_result_queryfields.js 365 Bytes
Newer Older
Spencer Chang's avatar
Spencer Chang committed
1 2 3 4 5 6 7 8 9 10 11
var override_queryfields = [
    {
        name : 'lease_execution_date_from',
        queryexpression : "t1.lease_execution_date >=to_date(${@lease_execution_date_from},'yyyy-mm-dd')"
    },
    {
        name : 'lease_execution_date_to',
        queryexpression : "t1.lease_execution_date <=to_date(${@lease_execution_date_to},'yyyy-mm-dd')"
    }
];
override();