Return custom field values with item details

This commit is contained in:
Eike Kettner 2020-11-22 01:21:21 +01:00
parent 1ee36cef8f
commit 1aefff37aa
4 changed files with 79 additions and 8 deletions

View File

@ -65,6 +65,9 @@ object OItemSearch {
type ListItemWithTags = QItem.ListItemWithTags type ListItemWithTags = QItem.ListItemWithTags
val ListItemWithTags = QItem.ListItemWithTags val ListItemWithTags = QItem.ListItemWithTags
type ItemFieldValue = QItem.ItemFieldValue
val ItemFieldValue = QItem.ItemFieldValue
type ItemData = QItem.ItemData type ItemData = QItem.ItemData
val ItemData = QItem.ItemData val ItemData = QItem.ItemData

View File

@ -3492,6 +3492,35 @@ components:
items: items:
$ref: "#/components/schemas/CustomField" $ref: "#/components/schemas/CustomField"
ItemFieldValue:
description: |
Information about a custom field on an item.
required:
- id
- name
- ftype
- value
properties:
id:
type: string
format: ident
name:
type: string
format: ident
label:
type: string
ftype:
type: string
format: customfieldtype
enum:
- text
- numeric
- date
- bool
- money
value:
type: string
CustomFieldValue: CustomFieldValue:
description: | description: |
Data structure to update the value of a custom field. Data structure to update the value of a custom field.
@ -4253,6 +4282,7 @@ components:
- sources - sources
- archives - archives
- tags - tags
- customfields
properties: properties:
id: id:
type: string type: string
@ -4312,6 +4342,10 @@ components:
type: array type: array
items: items:
$ref: "#/components/schemas/Tag" $ref: "#/components/schemas/Tag"
customfields:
type: array
items:
$ref: "#/components/schemas/ItemFieldValue"
Attachment: Attachment:
description: | description: |
Information about an attachment to an item. Information about an attachment to an item.

View File

@ -96,9 +96,13 @@ trait Conversions {
data.attachments.map((mkAttachment(data) _).tupled).toList, data.attachments.map((mkAttachment(data) _).tupled).toList,
data.sources.map((mkAttachmentSource _).tupled).toList, data.sources.map((mkAttachmentSource _).tupled).toList,
data.archives.map((mkAttachmentArchive _).tupled).toList, data.archives.map((mkAttachmentArchive _).tupled).toList,
data.tags.map(mkTag).toList data.tags.map(mkTag).toList,
data.customFields.map(mkItemFieldValue).toList
) )
def mkItemFieldValue(v: OItemSearch.ItemFieldValue): ItemFieldValue =
ItemFieldValue(v.fieldId, v.fieldName, v.fieldLabel, v.fieldType, v.value)
def mkAttachment( def mkAttachment(
item: OItemSearch.ItemData item: OItemSearch.ItemData
)(ra: RAttachment, m: FileMeta): Attachment = { )(ra: RAttachment, m: FileMeta): Attachment = {

View File

@ -60,6 +60,13 @@ object QItem {
} }
case class ItemFieldValue(
fieldId: Ident,
fieldName: Ident,
fieldLabel: Option[String],
fieldType: CustomFieldType,
value: String
)
case class ItemData( case class ItemData(
item: RItem, item: RItem,
corrOrg: Option[ROrganization], corrOrg: Option[ROrganization],
@ -71,7 +78,8 @@ object QItem {
tags: Vector[RTag], tags: Vector[RTag],
attachments: Vector[(RAttachment, FileMeta)], attachments: Vector[(RAttachment, FileMeta)],
sources: Vector[(RAttachmentSource, FileMeta)], sources: Vector[(RAttachmentSource, FileMeta)],
archives: Vector[(RAttachmentArchive, FileMeta)] archives: Vector[(RAttachmentArchive, FileMeta)],
customFields: Vector[ItemFieldValue]
) { ) {
def filterCollective(coll: Ident): Option[ItemData] = def filterCollective(coll: Ident): Option[ItemData] =
@ -126,11 +134,12 @@ object QItem {
) )
] ]
.option .option
val attachs = RAttachment.findByItemWithMeta(id) logger.trace(s"Find item query: $cq")
val sources = RAttachmentSource.findByItemWithMeta(id) val attachs = RAttachment.findByItemWithMeta(id)
val archives = RAttachmentArchive.findByItemWithMeta(id) val sources = RAttachmentSource.findByItemWithMeta(id)
val archives = RAttachmentArchive.findByItemWithMeta(id)
val tags = RTag.findByItem(id) val tags = RTag.findByItem(id)
val customfields = findCustomFieldValues(id)
for { for {
data <- q data <- q
@ -138,11 +147,32 @@ object QItem {
srcs <- sources srcs <- sources
arch <- archives arch <- archives
ts <- tags ts <- tags
cfs <- customfields
} yield data.map(d => } yield data.map(d =>
ItemData(d._1, d._2, d._3, d._4, d._5, d._6, d._7, ts, att, srcs, arch) ItemData(d._1, d._2, d._3, d._4, d._5, d._6, d._7, ts, att, srcs, arch, cfs)
) )
} }
def findCustomFieldValues(itemId: Ident): ConnectionIO[Vector[ItemFieldValue]] = {
val cfId = RCustomField.Columns.id.prefix("cf")
val cfName = RCustomField.Columns.name.prefix("cf")
val cfLabel = RCustomField.Columns.label.prefix("cf")
val cfType = RCustomField.Columns.ftype.prefix("cf")
val cvItem = RCustomFieldValue.Columns.itemId.prefix("cvf")
val cvValue = RCustomFieldValue.Columns.value.prefix("cvf")
val cvField = RCustomFieldValue.Columns.field.prefix("cvf")
val cfFrom =
RCustomFieldValue.table ++ fr"cvf INNER JOIN" ++ RCustomField.table ++ fr"cf ON" ++ cvField
.is(cfId)
selectSimple(
Seq(cfId, cfName, cfLabel, cfType, cvValue),
cfFrom,
cvItem.is(itemId)
).query[ItemFieldValue].to[Vector]
}
case class ListItem( case class ListItem(
id: Ident, id: Ident,
name: String, name: String,