Skip to main content

system.kanoa.quality.config.sheets.addTooling

This function requires KanoaQDS module

Description

Adds links between a check sheet and a list of tools in KanoaQDS.

Syntax

addTooling(chkShtId, toolingIdList, userId)
  • Parameters
      chkShtId - ID of the check sheet (int).
      toolingIdList - List of tooling IDs (list of int).
      userId - User ID (int).
  • Returns
      # of records created - Number of records created (int).
  • Code Example

    # Usage example
    chk_sht_id = 56
    tooling_id_list = [1, 2, 3]
    user_id = 123
    records_created = system.kanoa.quality.config.sheets.addTooling(chkShtId=chk_sht_id, toolingIdList=tooling_id_list, userId=user_id)

    print(records_created)