コード例 #1
0
    def getWorksheetTemplates(self):
        """Returns a DisplayList with all active worksheet templates

        :return: DisplayList of worksheet templates (uid, title)
        :rtype: DisplayList
        """
        brains = self._get_worksheet_templates_brains()
        return get_display_list(brains)
コード例 #2
0
    def getInstruments(self):
        """Returns a DisplayList with all active Instruments

        :return: DisplayList of worksheet templates (uid, title)
        :rtype: DisplayList
        """
        brains = self._get_instruments_brains()
        return get_display_list(brains)
コード例 #3
0
ファイル: folder.py プロジェクト: xispa/bika.lims
 def getInstruments(self):
     """
     Returns a DisplayList with available Instruments, sorted by title
     ascending. Only active Instruments are considered
     :return: DisplayList of worksheet templates (uid, title)
     :rtype: DisplayList
     """
     brains = self._get_instruments_brains()
     return get_display_list(brains)
コード例 #4
0
 def getInstruments(self):
     """
     Returns a DisplayList with available Instruments, sorted by title
     ascending. Only active Instruments are considered
     :return: DisplayList of worksheet templates (uid, title)
     :rtype: DisplayList
     """
     brains = self._get_instruments_brains()
     return get_display_list(brains)