Movilizer 条形码屏幕触发 Ok 事件
Movilizer Barcode Screen Trigger Ok Event
我正在使用 QType 23 二维条码扫描:
<question key="Q1_SCREEN_SCAN" type="23" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="51" nextQuestionKey="Q2_EPSILON_RESULT"/>
...
with attributetype="51" 直接显示扫描屏幕。
扫描后是否可以触发OK?而不是在屏幕上显示 UID?
谢谢!
问候,
拉米
您可以使用的可能属性类型是:
- 51 允许您立即扫描或捕获
- 52 捕获或扫描后立即触发 OK 事件
- 53 结合了以上两者
所以属性类型 52 或 53 应该可以解决问题
我在 https://devtools.movilizer.com/confluence/display/DOC21/Skip+take+view+in+capture+screens 找到了一个完整的示例,用于跳过捕获屏幕中的拍摄。
它显示的是 Capture Barcode 1D 屏幕,但它也应该适用于 2D 屏幕 - 只需将 type="22"
替换为 type="23"
。
因此,在您的情况下,它应该类似于:
<!-- Skip only the take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="52" nextQuestionKey="Q2_EPSILON_RESULT"/>
...
或喜欢:
<!-- Skip both default and take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="53" nextQuestionKey="Q2_EPSILON_RESULT"/>
我正在使用 QType 23 二维条码扫描:
<question key="Q1_SCREEN_SCAN" type="23" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="51" nextQuestionKey="Q2_EPSILON_RESULT"/>
...
with attributetype="51" 直接显示扫描屏幕。 扫描后是否可以触发OK?而不是在屏幕上显示 UID? 谢谢! 问候, 拉米
您可以使用的可能属性类型是:
- 51 允许您立即扫描或捕获
- 52 捕获或扫描后立即触发 OK 事件
- 53 结合了以上两者
所以属性类型 52 或 53 应该可以解决问题
我在 https://devtools.movilizer.com/confluence/display/DOC21/Skip+take+view+in+capture+screens 找到了一个完整的示例,用于跳过捕获屏幕中的拍摄。
它显示的是 Capture Barcode 1D 屏幕,但它也应该适用于 2D 屏幕 - 只需将 type="22"
替换为 type="23"
。
因此,在您的情况下,它应该类似于:
<!-- Skip only the take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="52" nextQuestionKey="Q2_EPSILON_RESULT"/>
...
或喜欢:
<!-- Skip both default and take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="53" nextQuestionKey="Q2_EPSILON_RESULT"/>