当前位置: 首页>>代码示例>>Python>>正文


Python ADTActions.wwgeneric方法代码示例

本文整理汇总了Python中ADTActions.ADTActions.wwgeneric方法的典型用法代码示例。如果您正苦于以下问题:Python ADTActions.wwgeneric方法的具体用法?Python ADTActions.wwgeneric怎么用?Python ADTActions.wwgeneric使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ADTActions.ADTActions的用法示例。


在下文中一共展示了ADTActions.wwgeneric方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: reg_test004

# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import wwgeneric [as 别名]
def reg_test004(resultlog, result_dir, namespace):
    """Test for Lodger checkin / checkout """
    testname = sys._getframe().f_code.co_name
    resultlog.write("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
    logging.debug("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
    try:
        VistA1 = connect_VistA(testname, result_dir, namespace)
        reg = ADTActions(VistA1, user="fakedoc1", code="[email protected]#$")
        reg.signon()
        reg.checkin_lodger(ssn="323554567", bed="1-A")
        reg.checkin_lodger(ssn="123455678", bed="1-B")
        time.sleep(10)
        reg.lodger_checkout(ssn="323554567")
        reg.lodger_checkout(ssn="123455678")
        # DRG Calculation
        reg.wwgeneric(
            dlist=[
                [["Option:"], ["bed control menu"]],
                [["Option:"], ["DRG Calculation"]],
                [["Effective Date:"], ["t"]],
                [["Choose Patient from PATIENT file"], ["Yes"]],
                [["Select PATIENT NAME:"], ["123455678"]],
                [["Transfer to an acute care facility"], ["No"]],
                [["Discharged against medical advice"], ["No"]],
                [["Enter PRINCIPAL diagnosis:"], ["787.1"]],
                [["YES//"], ["YES"]],
                [["Enter SECONDARY diagnosis"], ["786.50"]],
                [["YES//"], ["YES"]],
                [["Enter SECONDARY diagnosis"], [""]],
                [["Enter Operation/Procedure"], ["31.93"]],
                [["Yes//"], ["YES"]],
                [["Enter Operation/Procedure"], [""]],
                [
                    [
                        "Diagnosis Related Group: +[0-9]+",
                        "Average Length of Stay\(ALOS\): +[0-9.]+",
                        "Weight: +[0-9.]+",
                        "Low Day\(s\): +[0-9]+",
                        "High Days: +[0-9]+",
                        "392- ESOPHAGITIS",
                    ],
                    [],
                ],
                [["Effective Date"], [""]],
                [["Choose Patient from PATIENT file"], [""]],
                [["Select PATIENT NAME:"], [""]],
                [["Bed Control Menu"], [""]],
            ]
        )
        reg.signoff()
    except TestHelper.TestError, e:
        resultlog.write(e.value)
        logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
开发者ID:bradking,项目名称:VistA,代码行数:55,代码来源:REG_Suite001.py

示例2: reg_test004

# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import wwgeneric [as 别名]
def reg_test004(test_suite_details):
    '''Test for Lodger checkin / checkout '''
    testname = sys._getframe().f_code.co_name
    test_driver = TestHelper.TestDriver(testname)

    test_driver.pre_test_run(test_suite_details)
    try:
        VistA1 = test_driver.connect_VistA(test_suite_details)
        reg = ADTActions(VistA1, user='fakedoc1', code='[email protected]#$')
        reg.signon()
        reg.checkin_lodger(ssn='323554567', bed='1-A')
        reg.checkin_lodger(ssn='123455678', bed='1-B')
        time.sleep(10)
        reg.lodger_checkout(ssn='323554567')
        reg.lodger_checkout(ssn='123455678')
        # DRG Calculation
        reg.wwgeneric(dlist=[[['Option:'], ['bed control menu']],
                              [['Option:'], ['DRG Calculation']],
                              [['Effective Date:'], ['t']],
                              [['Choose Patient from PATIENT file'], ['Yes']],
                              [['Select PATIENT NAME:'], ['123455678']],
                              [['Transfer to an acute care facility'], ['No']],
                              [['Discharged against medical advice'], ['No']],
                              [['Enter PRINCIPAL diagnosis:'], ['787.1']],
                              [['YES//'], ['YES']],
                              [['Enter SECONDARY diagnosis'], ['786.50']],
                              [['YES//'], ['YES']],
                              [['Enter SECONDARY diagnosis'], ['']],
                              [['Enter Operation/Procedure'], ['31.93']],
                              [['Yes//'], ['YES']],
                              [['Enter Operation/Procedure'], ['']],
                              [['Diagnosis Related Group: +[0-9]+', 'Average Length of Stay\(ALOS\): +[0-9.]+', 'Weight: +[0-9.]+', 'Low Day\(s\): +[0-9]+', 'High Days: +[0-9]+', '392- ESOPHAGITIS'], []],
                              [['Effective Date'], ['']],
                              [['Choose Patient from PATIENT file'], ['']],
                              [['Select PATIENT NAME:'], ['']],
                              [['Bed Control Menu'], ['']]])
        reg.signoff()

        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
开发者ID:MikeLHenderson,项目名称:VistA,代码行数:43,代码来源:REGMain01_suite.py

示例3: reg_test004

# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import wwgeneric [as 别名]
def reg_test004(resultlog, result_dir, namespace):
    '''Test for Lodger checkin / checkout '''
    testname = sys._getframe().f_code.co_name
    resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
    logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
    try:
        VistA1 = connect_VistA(testname, result_dir, namespace)
        reg = ADTActions(VistA1, user='fakedoc1', code='[email protected]#$')
        reg.signon()
        reg.checkin_lodger(ssn='323554567', bed='1-A')
        reg.checkin_lodger(ssn='123455678', bed='1-B')
        time.sleep(10)
        reg.lodger_checkout(ssn='323554567')
        reg.lodger_checkout(ssn='123455678')
        # DRG Calculation
        reg.wwgeneric(dlist=[[['Option:'], ['bed control menu']],
                              [['Option:'], ['DRG Calculation']],
                              [['Effective Date:'], ['t']],
                              [['Choose Patient from PATIENT file'], ['Yes']],
                              [['Select PATIENT NAME:'], ['123455678']],
                              [['Transfer to an acute care facility'], ['No']],
                              [['Discharged against medical advice'], ['No']],
                              [['Enter PRINCIPAL diagnosis:'], ['787.1']],
                              [['YES//'], ['YES']],
                              [['Enter SECONDARY diagnosis'], ['786.50']],
                              [['YES//'], ['YES']],
                              [['Enter SECONDARY diagnosis'], ['']],
                              [['Enter Operation/Procedure'], ['31.93']],
                              [['Yes//'], ['YES']],
                              [['Enter Operation/Procedure'], ['']],
                              [['Diagnosis Related Group: +[0-9]+', 'Average Length of Stay\(ALOS\): +[0-9.]+', 'Weight: +[0-9.]+', 'Low Day\(s\): +[0-9]+', 'High Days: +[0-9]+', '392- ESOPHAGITIS'], []],
                              [['Effective Date'], ['']],
                              [['Choose Patient from PATIENT file'], ['']],
                              [['Select PATIENT NAME:'], ['']],
                              [['Bed Control Menu'], ['']]])
        reg.signoff()
    except TestHelper.TestError, e:
        resultlog.write(e.value)
        logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
开发者ID:KatherineWatson,项目名称:VistA,代码行数:41,代码来源:REG_Suite001.py


注:本文中的ADTActions.ADTActions.wwgeneric方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。