Skip to main content

system.kanoa.quality.event.getChkShtEventItems

This function requires KanoaQDS module

Description

Gets data for the checks table called by the chkShtEventEditor in KanoaQDS.

Syntax

getChkShtEventItems(paramsDict)
  • Parameters
      paramsDict - Dictionary containing parameters (dictionary).
  • Returns
      data - A dataset containing check sheet event items (pyDataset).
  • Code Example

    # Usage example
    params_dict = {'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=params_dict)

    print(data)