本文整理汇总了Python中ADTActions.ADTActions.lodger_checkout方法的典型用法代码示例。如果您正苦于以下问题:Python ADTActions.lodger_checkout方法的具体用法?Python ADTActions.lodger_checkout怎么用?Python ADTActions.lodger_checkout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ADTActions.ADTActions
的用法示例。
在下文中一共展示了ADTActions.lodger_checkout方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: reg_test004
# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import lodger_checkout [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")
示例2: reg_test004
# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import lodger_checkout [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)
示例3: reg_test004
# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import lodger_checkout [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')
示例4: reg_test004
# 需要导入模块: from ADTActions import ADTActions [as 别名]
# 或者: from ADTActions.ADTActions import lodger_checkout [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.drg_calc(ssn='123455678',diag='787.1', ICD10diag='R12.',sdiag='786.50',ICD10sdiag='R07.9',oper='31.93',ICD10oper='0C7S0DZ')
reg.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)