Skip to main content

system.kanoa.quality.event.getChkShtEventItems

Requires kanoaQDS license

Description

Gets data for the checks table called by the chkShtEventEditor.

Syntax

getChkShtEventItems(paramsDict)

Parameters:
  • paramsDict (dict): Dictionary of filtering parameters for check sheet event items.

  • Returns:
  • data (pyDataset): A dataset containing check sheet event items.
  • Dictionary

    ParameterTypeRequiredNotes
    chkShtEventIdint
    chkShtIdint
    chkItemIdint
    chkItemTypeIdint
    chkItemTypeNamestring
    chkItemNamestring
    chkItemGroupIdint
    chkItemGroupNamestring
    chkShtTypeIdint
    itemClassPathstring
    chkShtStateIdslist[int]
    itemIdint
    enabledbool
    hasValuebool

    Code Examples

    # Usage example
    paramsDict = {'chkShtEventId': 18, 'chkShtId': 3, 'chkItemId': 437, 'chkShtTypeId': 4, 'itemClassPath': 'some path', 'chkShtStateIds': [1, 2, 3], 'itemId': 45, 'enabled': True}
    data = system.kanoa.quality.event.getChkShtEventItems(paramsDict)
    >
    >print(data)