feat(v3): robust search wildcards, smart status filtering, and fixed ID population

This commit is contained in:
Scott Idem
2026-01-06 15:54:31 -05:00
parent a42f32acf4
commit 45f6303219
19 changed files with 452 additions and 279 deletions

View File

@@ -48,7 +48,7 @@ core_obj_li = {
# V3 Search Security:
'searchable_fields': [
'account_id_random', 'code', 'name', 'short_name', 'description',
'enable', 'created_on', 'updated_on'
'enable', 'hide', 'priority', 'sort', 'group', 'created_on', 'updated_on'
],
},
'account_cfg': {

View File

@@ -107,7 +107,8 @@ events_general_obj_li = {
# V3 Search Security:
'searchable_fields': [
'event_cfg_id_random', 'event_id_random', 'enable', 'conference',
'status', 'hide', 'priority', 'group', 'notes'
'status', 'hide', 'priority', 'sort', 'group', 'notes', 'created_on',
'updated_on'
],
},
}

View File

@@ -25,7 +25,8 @@ events_registration_obj_li = {
'title_names', 'given_name', 'middle_name', 'family_name', 'designations',
'professional_title', 'full_name', 'affiliations', 'email', 'phone',
'location', 'allow_tracking', 'print_count', 'print_first_datetime',
'print_last_datetime'
'print_last_datetime', 'enable', 'hide', 'priority', 'sort', 'group',
'notes', 'created_on', 'updated_on'
],
},
'event_badge_template': {
@@ -43,7 +44,8 @@ events_registration_obj_li = {
# V3 Search Security:
'searchable_fields': [
'event_badge_template_id_random', 'event_id_random', 'name',
'description', 'layout', 'notes'
'description', 'layout', 'notes', 'enable', 'hide', 'priority',
'sort', 'group', 'created_on', 'updated_on'
],
},
'event_person': {

View File

@@ -22,7 +22,7 @@ journal_obj_li = {
'searchable_fields': [
'journal_id_random', 'name', 'short_name', 'summary', 'outline',
'description', 'type_code', 'tags', 'billable', 'enable', 'hide',
'priority', 'group', 'created_on', 'updated_on'
'priority', 'sort', 'group', 'notes', 'created_on', 'updated_on'
],
},
'journal_entry': {
@@ -44,8 +44,8 @@ journal_obj_li = {
'searchable_fields': [
'journal_entry_id_random', 'journal_id_random', 'name', 'short_name',
'summary', 'content', 'type_code', 'topic_code', 'category_code',
'tags', 'location', 'billable', 'enable', 'hide', 'priority', 'group',
'created_on', 'updated_on'
'tags', 'location', 'billable', 'enable', 'hide', 'priority', 'sort',
'group', 'notes', 'created_on', 'updated_on'
],
},
}

View File

@@ -110,7 +110,8 @@ order_obj_li = {
# V3 Search Security:
'searchable_fields': [
'account_id_random', 'account_name', 'default_no_reply_email',
'confirm_email'
'confirm_email', 'enable', 'hide', 'priority', 'sort', 'group',
'notes', 'created_on', 'updated_on'
],
},
}