LP#1618993 - Add logic to AngularJS UI user/csharp/lp1618993_matching_substrings_inverse_logic
authorChris Sharp <csharp@georgialibraries.org>
Mon, 2 Dec 2019 13:06:16 +0000 (08:06 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 2 Dec 2019 13:06:16 +0000 (08:06 -0500)
Open-ILS/src/templates/staff/reporter/share/report_strings.tt2
Open-ILS/web/reports/oils_rpt_filters.js

index cc49019..10d92ea 100644 (file)
@@ -14,7 +14,9 @@ s.LINK_NULLABLE_NONE = '[% l( "None") %]';
 
 s.FILTERS_LABEL_EQUALS = '[% l("Equals") %]';
 s.FILTERS_LABEL_LIKE = '[% l( "Contains Matching substring") %]';
+s.FILTERS_LABEL_NOT_LIKE = '[% l( "Does not contain Matching substring") %]';
 s.FILTERS_LABEL_ILIKE = '[% l( "Contains Matching substring (ignore case)") %]';
+s.FILTERS_LABEL_NOT_ILIKE = '[% l( "Does not contain Matching substring (ignore case)") %]';
 s.FILTERS_LABEL_GREATER_THAN = '[% l( "Greater than") %]';
 s.FILTERS_LABEL_GT_TIME = '[% l( "After (Date/Time)") %]';
 s.FILTERS_LABEL_GT_EQUAL = '[% l( "Greater than or equal to") %]';
index 8f7d389..a8941f8 100644 (file)
@@ -11,7 +11,7 @@ var OILS_RPT_FILTERS = {
                label : rpt_strings.FILTERS_LABEL_LIKE
        }, 
 
-       ilike : {
+       'ilike' : {
                label : rpt_strings.FILTERS_LABEL_ILIKE
        },