Skip to content

Commit

Permalink
Merge pull request #467 from folio-org/MODFQMMGR-521
Browse files Browse the repository at this point in the history
MODFQMMGR-521:simple_call_number_type (Q Regression)
  • Loading branch information
kjain110 authored Oct 15, 2024
2 parents 8edc542 + 8837bde commit 5d27aee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
alias: 'effective_call_number',
type: 'entity-type',
id: 'd9338ced-3e71-4f24-b605-7912d590f005', // simple_call_number_type
essentialOnly: true,
join: {
type: 'left join',
joinTo: 'items.item',
Expand All @@ -35,6 +36,7 @@
alias: 'item_level_call_number',
type: 'entity-type',
id: 'd9338ced-3e71-4f24-b605-7912d590f005', // simple_call_number_type
essentialOnly: true,
join: {
condition: "(:that.jsonb ->> 'itemLevelCallNumberTypeId')::uuid = :this.id",
type: 'left join',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
isIdColumn: true,
queryable: true,
visibleByDefault: false,
hidden: true,
essential: true,
valueGetter: ':sourceAlias.id',
},
{
Expand All @@ -32,6 +34,7 @@
},
queryable: true,
visibleByDefault: false,
essential: true,
valueGetter: ":sourceAlias.jsonb->>'name'",
filterValueGetter: "lower(\
${tenant_id}_mod_inventory_storage.f_unaccent (:sourceAlias.jsonb->>'name'::text)\
Expand All @@ -56,6 +59,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->>'source'",
},
{
Expand All @@ -66,6 +70,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->'metadata'->>'createdDate'",
},
{
Expand All @@ -76,6 +81,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->'metadata'->>'updatedDate'",
},
{
Expand All @@ -86,6 +92,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->'metadata'->>'createdByUserId'",
},
{
Expand All @@ -96,6 +103,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->'metadata'->>'updatedByUserId'",
},
{
Expand All @@ -106,6 +114,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->'metadata'->>'createdByUsername'",
},
{
Expand All @@ -116,6 +125,7 @@
},
queryable: true,
visibleByDefault: false,
hidden: true,
valueGetter: ":sourceAlias.jsonb->'metadata'->>'updatedByUsername'",
},
{
Expand All @@ -127,6 +137,7 @@
queryable: false,
visibleByDefault: false,
hidden: true,
essential: true,
valueGetter: ":sourceAlias.jsonb::text",
}
],
Expand Down

0 comments on commit 5d27aee

Please sign in to comment.