Skip to main content

system.kanoa.quality.event.deleteChkShtItemEvents

This function requires KanoaQDS module

Description

Deletes check items from a check sheet in KanoaQDS.

Syntax

deleteChkShtItemEvents(chkShtItemEventInfo, userId)
  • Parameters
      chkShtItemEventInfo - Dictionary containing information about check sheet items (dictionary).
      userId - ID of the user initiating the deletion (int).
  • Returns
      Success or failure of the deletion operation (boolean).
  • Code Example

    # Usage example
    chk_sht_item_event_info = {'chkShtEventId': 1}
    user_id = 123
    result = system.kanoa.quality.event.deleteChkShtItemEvents(chkShtItemEventInfo=chk_sht_item_event_info, userId=user_id)

    print(result)