diff --git a/image/event/bn_back_to_school.png b/image/event/bn_back_to_school.png index ba981ded..9bfa12ac 100644 Binary files a/image/event/bn_back_to_school.png and b/image/event/bn_back_to_school.png differ diff --git a/image/event/bn_back_to_school_en.png b/image/event/bn_back_to_school_en.png index 26c5fd9e..2422e2af 100644 Binary files a/image/event/bn_back_to_school_en.png and b/image/event/bn_back_to_school_en.png differ diff --git a/image/topping2/bn_childrenFree.png b/image/topping2/bn_childrenFree.png index fd5205f3..ccb71d66 100644 Binary files a/image/topping2/bn_childrenFree.png and b/image/topping2/bn_childrenFree.png differ diff --git a/image/topping2_en/bn_childrenFree.png b/image/topping2_en/bn_childrenFree.png index d3254439..a3f92a79 100644 Binary files a/image/topping2_en/bn_childrenFree.png and b/image/topping2_en/bn_childrenFree.png differ diff --git a/xml/event/dummy_layout_promotion.py b/xml/event/dummy_layout_promotion.py index c06e5f6f..d53e1456 100644 --- a/xml/event/dummy_layout_promotion.py +++ b/xml/event/dummy_layout_promotion.py @@ -1,66 +1,70 @@ -print( "dir= " + directory_to_process + "/page_catalog_group_recommend.xml"); -file_xml = open(directory_to_process + "/page_catalog_group_recommend.xml", 'r') -file_content_main = file_xml.read() -#print(file_xml.read()) -# ; include-file=dummy_layout.inc -file_inc = open(directory_to_process + "/dummy_layout.inc", 'r') -file_inc_content = file_inc.read() -file_inc2 = open(directory_to_process + "/big_logo.inc", 'r') -file_inc2_content = file_inc2.read() -#print( file_inc_content) -content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content) -content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content) +if "v2" in param: + print("V2 ignore") +else: + print( "dir= " + directory_to_process + "/page_catalog_group_recommend.xml"); + file_xml = open(directory_to_process + "/page_catalog_group_recommend.xml", 'r') + file_content_main = file_xml.read() + #print(file_xml.read()) + # ; include-file=dummy_layout.inc + file_inc = open(directory_to_process + "/dummy_layout.inc", 'r') + file_inc_content = file_inc.read() + file_inc2 = open(directory_to_process + "/big_logo.inc", 'r') + file_inc2_content = file_inc2.read() + #print( file_inc_content) + content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content) + content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content) -begin_text = content_data.index(";TAGESP") -end_text = content_data.index(";TAGESP", begin_text + 7) -print("sub text = " + str(begin_text) + " end = " + str(end_text)) -tmp1 = content_data[: begin_text - 7] + begin_text = content_data.index(";TAGESP") + end_text = content_data.index(";TAGESP", begin_text + 7) -tmp2 = content_data[ end_text:-1] -print("tmp1=" + tmp1) -print("tmp2=" + tmp2) + #print("sub text = " + str(begin_text) + " end = " + str(end_text)) + tmp1 = content_data[: begin_text - 7] -content_data = tmp1 + tmp2 + tmp2 = content_data[ end_text:-1] + #print("tmp1=" + tmp1) + #print("tmp2=" + tmp2) -file_xml.close() + content_data = tmp1 + tmp2 + + file_xml.close() -file_inc2 = open(directory_to_process + "/event/big_logo_back_to_school.inc", 'r') -file_inc2_content = file_inc2.read() -content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content) + file_inc2 = open(directory_to_process + "/event/big_logo_back_to_school.inc", 'r') + file_inc2_content = file_inc2.read() + content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content) -begin_text = content_data.index(";TAGESP") -end_text = content_data.index(";TAGESP", begin_text + 7) -print("sub text = " + str(begin_text) + " end = " + str(end_text)) -tmp1 = content_data[: begin_text - 7] + begin_text = content_data.index(";TAGESP") + end_text = content_data.index(";TAGESP", begin_text + 7) + #print("sub text = " + str(begin_text) + " end = " + str(end_text)) + tmp1 = content_data[: begin_text - 7] -tmp2 = content_data[ end_text:-1] -print("tmp1=" + tmp1) -print("tmp2=" + tmp2) + tmp2 = content_data[ end_text:-1] + #print("tmp1=" + tmp1) + #print("tmp2=" + tmp2) -content_data = tmp1 + tmp2 + content_data = tmp1 + tmp2 -file_xml3 = open(directory_to_process + "/event/page_recommend_backToSchool.xml", 'w') -file_xml3.write( content_data) -file_xml3.close() - -############################################# -file_inc2 = open(directory_to_process + "/event/big_logo_oreo_buy2_save_movel.inc", 'r') -file_inc2_content = file_inc2.read() -content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content) - -begin_text = content_data.index(";TAGESP") -end_text = content_data.index(";TAGESP", begin_text + 7) -print("sub text = " + str(begin_text) + " end = " + str(end_text)) -tmp1 = content_data[: begin_text - 7] - -tmp2 = content_data[ end_text:-1] -print("tmp1=" + tmp1) -print("tmp2=" + tmp2) - -content_data = tmp1 + tmp2 - -file_xml3 = open(directory_to_process + "/event/page_recommend_oreo_buy2_save_more.xml", 'w') -file_xml3.write( content_data) -file_xml3.close() + file_xml3 = open(directory_to_process + "/event/page_recommend_backToSchool.xml", 'w') + file_xml3.write( content_data) + file_xml3.close() + + ############################################# + file_inc2 = open(directory_to_process + "/event/big_logo_oreo_buy2_save_movel.inc", 'r') + file_inc2_content = file_inc2.read() + content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content) + + begin_text = content_data.index(";TAGESP") + end_text = content_data.index(";TAGESP", begin_text + 7) + #print("sub text = " + str(begin_text) + " end = " + str(end_text)) + tmp1 = content_data[: begin_text - 7] + + tmp2 = content_data[ end_text:-1] + #print("tmp1=" + tmp1) + #print("tmp2=" + tmp2) + + content_data = tmp1 + tmp2 + + file_xml3 = open(directory_to_process + "/event/page_recommend_oreo_buy2_save_more.xml", 'w') + file_xml3.write( content_data) + file_xml3.close() diff --git a/xml/event/page_recommend_backToSchool.xml b/xml/event/page_recommend_backToSchool.xml index c1b01866..d546564b 100644 --- a/xml/event/page_recommend_backToSchool.xml +++ b/xml/event/page_recommend_backToSchool.xml @@ -237,6 +237,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then @@ -3565,6 +3566,8 @@ VOLCANO" center-vertical-horizontal + ; - - - + ; ==================> Len = 11 ; 12-21-01-0003 12-21-02-0001 - 33 @@ -3639,7 +3642,7 @@ VOLCANO" Var SelectDrinkType = 0 - Open "ROOT/taobin_project/xml/page_topping_select6.xml" + Open "ROOT/taobin_project/xml/page_topping_select5.xml" @@ -3706,7 +3709,7 @@ VOLCANO" 0x6F5F51 0xEAE6E1 $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -3734,15 +3737,15 @@ VOLCANO" "Invisible" - 183 + 180 TextPriceMenuY TextPriceMenuSize 220 - KanitMediumTTF + KanitRegularTTF 0x6F5F51 0xEAE6E1 "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -3815,6 +3818,7 @@ VOLCANO" center-vertical-horizontal + ; - - - ; ==================> Len = 16 ; 12-01-01-0014 12-01-02-0011 - @@ -8906,7 +8910,7 @@ LIMENADE SODA" Machine RemoveCup Machine DoorLidOpen - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/event/page_recommend_oreo_buy2_save_more.xml b/xml/event/page_recommend_oreo_buy2_save_more.xml index 49259f99..5c6c183d 100644 --- a/xml/event/page_recommend_oreo_buy2_save_more.xml +++ b/xml/event/page_recommend_oreo_buy2_save_more.xml @@ -237,6 +237,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then @@ -3565,6 +3566,8 @@ VOLCANO" center-vertical-horizontal + ; - - - + ; ==================> Len = 11 ; 12-21-01-0003 12-21-02-0001 - 33 @@ -3639,7 +3642,7 @@ VOLCANO" Var SelectDrinkType = 0 - Open "ROOT/taobin_project/xml/page_topping_select6.xml" + Open "ROOT/taobin_project/xml/page_topping_select5.xml" @@ -3706,7 +3709,7 @@ VOLCANO" 0x6F5F51 0xEAE6E1 $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -3734,15 +3737,15 @@ VOLCANO" "Invisible" - 183 + 180 TextPriceMenuY TextPriceMenuSize 220 - KanitMediumTTF + KanitRegularTTF 0x6F5F51 0xEAE6E1 "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -3815,6 +3818,7 @@ VOLCANO" center-vertical-horizontal + ; - - - ; ==================> Len = 16 ; 12-01-01-0014 12-01-02-0011 - @@ -8906,7 +8910,7 @@ LIMENADE SODA" Machine RemoveCup Machine DoorLidOpen - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/event/tricker.ev b/xml/event/tricker.ev index 617688db..6fba5a22 100644 --- a/xml/event/tricker.ev +++ b/xml/event/tricker.ev @@ -48,6 +48,12 @@ If SystemDateMonthInt = 5 Then Var OreoForFreeEnable = 1 EndIf EndIf + + If SystemDateDayInt > 14 Then + If SystemDateDayInt < 20 Then + Var OreoForFreeEnable = 1 + EndIf + EndIf EndIf diff --git a/xml/menu_catalog_new.xml b/xml/menu_catalog_new.xml index 7aa8299a..13f5ebca 100644 --- a/xml/menu_catalog_new.xml +++ b/xml/menu_catalog_new.xml @@ -80,6 +80,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/menu_new_layout_gen_v2.py b/xml/menu_new_layout_gen_v2.py index 369af21a..a1efa9c6 100644 --- a/xml/menu_new_layout_gen_v2.py +++ b/xml/menu_new_layout_gen_v2.py @@ -108,7 +108,7 @@ #product_code = s #if spl[ idx_of_eng] == "IGNORE": # continue - + print(" size " + str( len(spl)) + " img=" + spl[ idx_img][1] ) out_xml( '\t; ==================> Len = ' + str(len(spl)) + '\r\n') menu_img = spl[ idx_img][1] out_xml( '\t; '+ spl[ idx_name][ idx_hot_product_code] + ' ' + spl[ idx_name][ idx_cold_product_code] + ' ' + spl[ idx_name][ idx_blend_product_code]+ ' \r\n') diff --git a/xml/page_board.xml b/xml/page_board.xml index 1b708c9f..e1396b08 100644 --- a/xml/page_board.xml +++ b/xml/page_board.xml @@ -685,6 +685,23 @@ Open "/ROOT/xml/offline.xml" EndIf + + ; zone cup on arm + If CupOnArm = "true" Then + + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + @@ -1108,7 +1125,7 @@ Machine DoorLidOpen Var CheckCupStateDoorCupClose = "reset" - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/page_catalog.lxml b/xml/page_catalog.lxml index c58a9e23..a77d8007 100644 --- a/xml/page_catalog.lxml +++ b/xml/page_catalog.lxml @@ -321,6 +321,7 @@ Play PlaySoundLag Var countDownRetrun = 300 + OpenInst 3 "ROOT/taobin_project/xml/topview2.xml" Refresh diff --git a/xml/page_catalog2.xml b/xml/page_catalog2.xml index 27e2921a..28dfacc3 100644 --- a/xml/page_catalog2.xml +++ b/xml/page_catalog2.xml @@ -209,6 +209,22 @@ TRY "/mnt/sdcard/coffeevending/taobin_project/xml/event/tricker.ev" + ; zone cup on arm + If CupOnArm = "true" Then + + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + Var Price5Active = 0 @@ -242,20 +258,23 @@ EndIf EndIf + ; zone cup on arm If CupOnArm = "true" Then - If CheckCupStateDoorCupClose = "" Then - Var buttonRemoveCup = "Enable" - EndIf + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + - If CheckCupStateDoorCupClose = "done" Then - Var buttonRemoveCup = "Enable" - EndIf - Else - If buttonRemoveCup = "Enable" Then - Var buttonRemoveCup = "Invisible" - EndIf - EndIf Refresh diff --git a/xml/page_catalog_group_appfast.xml b/xml/page_catalog_group_appfast.xml index 19b3fbe9..c6c8d081 100644 --- a/xml/page_catalog_group_appfast.xml +++ b/xml/page_catalog_group_appfast.xml @@ -228,6 +228,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_cocktail.xml b/xml/page_catalog_group_cocktail.xml index d4e8d641..9ae1b695 100644 --- a/xml/page_catalog_group_cocktail.xml +++ b/xml/page_catalog_group_cocktail.xml @@ -220,6 +220,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_coffee.xml b/xml/page_catalog_group_coffee.xml index 07c256ca..55bb59f2 100644 --- a/xml/page_catalog_group_coffee.xml +++ b/xml/page_catalog_group_coffee.xml @@ -220,6 +220,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_forkid.lxml b/xml/page_catalog_group_forkid.lxml index 4c02f375..2de88761 100644 --- a/xml/page_catalog_group_forkid.lxml +++ b/xml/page_catalog_group_forkid.lxml @@ -4211,7 +4211,20 @@ ; parallel - - - - ; ==================> Len = 2 + +; Cart + diff --git a/xml/page_catalog_group_forkid.xml b/xml/page_catalog_group_forkid.xml index 0c7001d5..0a510b2d 100644 --- a/xml/page_catalog_group_forkid.xml +++ b/xml/page_catalog_group_forkid.xml @@ -229,6 +229,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_health.xml b/xml/page_catalog_group_health.xml index 21cef35a..4716b4be 100644 --- a/xml/page_catalog_group_health.xml +++ b/xml/page_catalog_group_health.xml @@ -220,6 +220,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then @@ -520,7 +521,7 @@ Var block_index_override = 0 Var block_index_move = 0 -; menu_new_list 17 +; menu_new_list 20 ; ==================> Len = 16 ; 12-01-01-1003 12-01-02-1001 - @@ -5814,6 +5815,762 @@ SODA" text_unavailable center-vertical-horizontal + + ; - - - + ; ==================> Len = 14 + ; 12-02-01-1038 12-02-02-1038 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-1038.Button,12-02-02-1038.Button,$Sum12020110381202021038) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชานมไทย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย และ นมอุ่น" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "THAI MILK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Sugar, Milk " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-1038.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-1038.Button + StringFmt( $12-02-01-1038.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-1038.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-1038.Button + StringFmt( $12-02-02-1038.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020110381202021038 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020110381202021038 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-1038.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-1038.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020110381202021038 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 11 + ; 12-02-01-1039 12-02-02-1039 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-1039.Button,12-02-02-1039.Button,$Sum12020110391202021039) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย และน้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "BLACK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea and Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-1039.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-1039.Button + StringFmt( $12-02-01-1039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-1039.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-1039.Button + StringFmt( $12-02-02-1039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020110391202021039 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020110391202021039 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-1039.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-1039.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020110391202021039 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 11 + ; 12-02-01-1040 12-02-02-1040 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-1040.Button,12-02-02-1040.Button,$Sum12020110401202021040) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำมะนาว" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย ผงมะนาว และน้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "BLACK TEA LIMENADE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Limenade and Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-1040.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-1040.Button + StringFmt( $12-02-01-1040.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-1040.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-1040.Button + StringFmt( $12-02-02-1040.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020110401202021040 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020110401202021040 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-1040.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-1040.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020110401202021040 + text_unavailable + center-vertical-horizontal + ; - - - diff --git a/xml/page_catalog_group_milk.xml b/xml/page_catalog_group_milk.xml index f3ed8dba..377b4c41 100644 --- a/xml/page_catalog_group_milk.xml +++ b/xml/page_catalog_group_milk.xml @@ -218,6 +218,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_oreo.xml b/xml/page_catalog_group_oreo.xml index 35051e89..0592961a 100644 --- a/xml/page_catalog_group_oreo.xml +++ b/xml/page_catalog_group_oreo.xml @@ -216,6 +216,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_other.xml b/xml/page_catalog_group_other.xml index ea7fd324..6694a26e 100644 --- a/xml/page_catalog_group_other.xml +++ b/xml/page_catalog_group_other.xml @@ -219,6 +219,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_recommend.lxml b/xml/page_catalog_group_recommend.lxml index fe08b2d7..47effdab 100644 --- a/xml/page_catalog_group_recommend.lxml +++ b/xml/page_catalog_group_recommend.lxml @@ -10687,7 +10687,7 @@ Machine RemoveCup Machine DoorLidOpen - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/page_catalog_group_recommend.skt b/xml/page_catalog_group_recommend.skt index f58ab9b2..14b870ee 100644 --- a/xml/page_catalog_group_recommend.skt +++ b/xml/page_catalog_group_recommend.skt @@ -70,7 +70,7 @@ Machine RemoveCup Machine DoorLidOpen - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/page_catalog_group_recommend.xml b/xml/page_catalog_group_recommend.xml index 770cf1cd..f6a119fe 100644 --- a/xml/page_catalog_group_recommend.xml +++ b/xml/page_catalog_group_recommend.xml @@ -237,6 +237,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then @@ -574,7 +575,7 @@ ;dummy_layout.inc -; menu_new_list 30 +; menu_new_list 31 ;TAGESP ; ==================> Len = 16 ; - - 12-03-03-0032 @@ -2585,6 +2586,8 @@ VOLCANO" center-vertical-horizontal + ; - - - + ; ==================> Len = 11 ; 12-21-01-0003 12-21-02-0001 - 33 @@ -2659,7 +2662,7 @@ VOLCANO" Var SelectDrinkType = 0 - Open "ROOT/taobin_project/xml/page_topping_select6.xml" + Open "ROOT/taobin_project/xml/page_topping_select5.xml" @@ -2726,7 +2729,7 @@ VOLCANO" 0x6F5F51 0xEAE6E1 $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -2754,15 +2757,15 @@ VOLCANO" "Invisible" - 183 + 180 TextPriceMenuY TextPriceMenuSize 220 - KanitMediumTTF + KanitRegularTTF 0x6F5F51 0xEAE6E1 "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -2835,6 +2838,7 @@ VOLCANO" center-vertical-horizontal + ; - - - ; ==================> Len = 16 ; 12-01-01-0014 12-01-02-0011 - @@ -7926,7 +7930,7 @@ LIMENADE SODA" Machine RemoveCup Machine DoorLidOpen - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/page_catalog_group_recommend3.xml b/xml/page_catalog_group_recommend3.xml index b76a5bf6..21dda17d 100644 --- a/xml/page_catalog_group_recommend3.xml +++ b/xml/page_catalog_group_recommend3.xml @@ -237,6 +237,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then @@ -3565,6 +3566,8 @@ VOLCANO" center-vertical-horizontal + ; - - - + ; ==================> Len = 11 ; 12-21-01-0003 12-21-02-0001 - 33 @@ -3639,7 +3642,7 @@ VOLCANO" Var SelectDrinkType = 0 - Open "ROOT/taobin_project/xml/page_topping_select6.xml" + Open "ROOT/taobin_project/xml/page_topping_select5.xml" @@ -3706,7 +3709,7 @@ VOLCANO" 0x6F5F51 0xEAE6E1 $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -3734,15 +3737,15 @@ VOLCANO" "Invisible" - 183 + 180 TextPriceMenuY TextPriceMenuSize 220 - KanitMediumTTF + KanitRegularTTF 0x6F5F51 0xEAE6E1 "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test 81 @@ -3815,6 +3818,7 @@ VOLCANO" center-vertical-horizontal + ; - - - ; ==================> Len = 16 ; 12-01-01-0014 12-01-02-0011 - @@ -8906,7 +8910,7 @@ LIMENADE SODA" Machine RemoveCup Machine DoorLidOpen - ;Var buttonRemoveCup = "Invisible" + Var buttonRemoveCup = "Invisible" diff --git a/xml/page_catalog_group_songkran.xml b/xml/page_catalog_group_songkran.xml index 331a8768..c5ce926d 100644 --- a/xml/page_catalog_group_songkran.xml +++ b/xml/page_catalog_group_songkran.xml @@ -216,6 +216,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_catalog_group_tea.xml b/xml/page_catalog_group_tea.xml index f5596a5b..36feb7ba 100644 --- a/xml/page_catalog_group_tea.xml +++ b/xml/page_catalog_group_tea.xml @@ -1,5 +1,8879 @@ -Traceback (most recent call last): - File "./menu_gen_new.py", line 133, in eval_exe - exec( str, globals()) - File "", line 557, in -IndexError: list index out of range + + + + "Enable" + 1080 + 1920 +; "0xeae6e1" + SoundVolume + + ; On open + Var NextPage = "-" + + DEBUGVAR ICE_PROCESS_STATUS + DEBUGVAR ICE_PROCESS_TXT + + + If show_eng = "true" Then + Var showthaiText = "Invisible" + Var showengText = "Enable" + Var DirImage = "ROOT/taobin_project/image/page3_en" + Var show_btp = "ROOT/taobin_project/image/page2/bn_thai_lang_press_2.png" + Var show_btn = "ROOT/taobin_project/image/page2/bn_thai_lang_2.png" + + Var ice_tab_text = "Ice will be ready at " + Var text_unavailable = "UNAVAILABLE###size=16" + + + Else + Var showengText = "Invisible" + Var showthaiText = "Enable" + + Var DirImage = "ROOT/taobin_project/image/page3" + Var show_btp = "ROOT/taobin_project/image/page2/bn_eng_lang_2.png" + Var show_btn = "ROOT/taobin_project/image/page2/bn_eng_lang_2.png" + + Var ice_tab_text = "น้ำแข็งจะพร้อมเวลา " + Var text_unavailable = "หมด###size=32" + EndIf + + If ICE_PROCESS_STATUS = 2 Then + Var ice_tab_process_show = "Enable" + Var ice_show_open = ice_tab_text + ICE_PROCESS_TXT + Else + Var ice_tab_process_show = "Invisible" + EndIf + + + ; SpiralOnline + + Var MenuVSelected2 = "Invisible" + + Var Menu1Selected2 = "Invisible" + Var Menu2Selected2 = "Invisible" + Var Menu3Selected2 = "Invisible" + Var Menu4Selected2 = "Invisible" + + Var Menu6Selected2 = "Invisible" + Var Menu7Selected2 = "Invisible" + Var MenuVSelected2 = "Invisible" + Var Menu11Selected2 = "Invisible" + + Var Menu21Selected2 = "Invisible" + + Var MenuVSelected2 = "Invisible" + If SpiralOnline = "true" Then + If Seeker = "curr" Then + Var MenuVSelected2 = "Enable" + EndIf + EndIf + + ; init default + Var Menu1Selected = "Enable" + Var Menu2Selected = "Enable" + Var Menu3Selected = "Enable" + Var Menu4Selected = "Enable" + ; 5 fruit + Var Menu5Selected = "Invisible" + Var Menu6Selected = "Enable" + Var Menu7Selected = "Enable" + ; 8 cocktail + Var Menu8Selected = "Invisible" + + If CocktailShow = "true" Then + Var Menu7Selected = "Invisible" + Var Menu8Selected = "Enable" + EndIf + + + If AppFastEnable = "true" Then + Var Menu11Selected = "Enable" + Var Menu21Selected = "Invisible" + Var Menu7Selected = "Invisible" + Else + If MenuKidEnable = "true" Then + Var Menu11Selected = "Invisible" + Var Menu21Selected = "Enable" + Var Menu7Selected = "Invisible" + Else + Var Menu11Selected = "Invisible" + Var Menu21Selected = "Invisible" + Var Menu7Selected = "Enable" + EndIf + EndIf + + If CocktailShow = "true" Then + Var Menu7Selected = "Invisible" + EndIf + + If RecipeTag1 = "HealthTurnOn" Then + Var Menu22Selected = "Enable" + Else + Var Menu22Selected = "Invisible" + EndIf + ; + + + + + Var Menu3Selected = "PressForever" + + + SAVELOG PreviseXMLFileName2 + + Var Timeout = 0 + + + + If show_eng = "true" Then + Var DirImage2 = "ROOT/taobin_project/image/drink_option_en/" + Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" + + Else + Var DirImage2 = "ROOT/taobin_project/image/drink_option/" + Var DirImageAlter = "ROOT/taobin_project/image/page3_2/" + EndIf + + + + + + +; notice enable heathy menu + + + 0 + 380 + 1080 + 1540 + "0xeae6e1" + + + + + 1000 + + ;DEBUGVAR ICE_PROCESS_STATUS + + If ICE_PROCESS_STATUS = 2 Then + Var ice_tab_process_show = "Enable" + Var ice_show_open = ice_tab_text + ICE_PROCESS_TXT + Else + Var ice_tab_process_show = "Invisible" + EndIf + + + If NextPage = "-" Then + + Else + If CupOnArm = "true" Then + If Timeout > 9 Then + SAVELOG "COA9" + Open NextPage + EndIf + Else + If Timeout > 30 Then + SAVELOG "COA30" + Open NextPage + EndIf + EndIf + EndIf + + If Timeout > 60 Then + SAVELOG "Timeout" + If Seeker = "next" Then + Open "ROOT/taobin_project/xml/page_brewing3Conti.xml" + Else + SAVELOG "Back" + Open "ROOT/taobin_project/xml/page_back_to_main.xml" + EndIf + EndIf + + If BrewCommand = "RefreshAll" Then + Var BrewCommand = "-" + Open CurrentXMLFileName2 + EndIf + + If Seeker = "curr" Then + If DoorCupPosition = "bottom" Then + ; It normal + Var EmergencyStop = "false" + Else + Var EmergencyStop = "true" + + ;Open "ROOT/taobin_project/xml/page_back_to_error.xml" + + EndIf + EndIf + + If IgnoreNetCore = "true" Then + + Else + ;stop_now + If NETCORE_LOST_CNT > 120 Then + Var stop_now = "true" + Var MachineErrorDetailAll = "???" + SAVELOG "NETCORE_LOST_CNT" + + Open "ROOT/taobin_project/xml/page_back_to_error.xml" + EndIf + EndIf + + + ; zone cup on arm + If CupOnArm = "true" Then + + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + + + Var Timeout = Timeout + 1 + TimerReset + + + +; under line + + 0 + 494 + "ROOT/taobin_project/image/page3/tab_line_bottom.png" + + + +; under line + + 0 + 358 + "ROOT/taobin_project/image/page3/bg1.png" + + + +; back + + + + +; + + 1080 + "auto" + 0 + 395 + + "Enable" + 896 + 102 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DEBUGVAR web_ready + If web_ready = "true" Then + If web_ref = QRCODE99x Then + + Var web_readyOK = web_ready + Var web_telnumOK = web_telnum + + Var web_app_prepar = "true" + Open "/mnt/sdcard/coffeevending/taobin_project/xml/page_payment.xml" + + EndIf + Else + EndIf + + + + + + + + + + + + + + 10 + 497 + 1080 + "auto" + "Vertical" + 4 + +; menu_new_list 33 + ; ==================> Len = 11 + ; 12-02-01-0001 12-02-02-0001 12-02-03-0001 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0001.Button,12-02-02-0001.Button,12-02-03-0001.Button,$Sum120201000112020200011202030001) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เก็กฮวย " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำเก๊กฮวย น้ำตาล" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "CHRYSANTHS TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Chrysanthemum & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0001.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0001.Button + StringFmt( $12-02-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0001.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0001.Button + StringFmt( $12-02-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0001.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0001.Button + StringFmt( $12-02-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201000112020200011202030001 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201000112020200011202030001 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0001.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0001.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0001.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201000112020200011202030001 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0020 12-02-02-0020 12-02-03-0020 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0020.Button,12-02-02-0020.Button,12-02-03-0020.Button,$Sum120201002012020200201202030020) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำขิง " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง และ น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "GINGER TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0020.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0020.Button + StringFmt( $12-02-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0020.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0020.Button + StringFmt( $12-02-02-0020.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0020.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0020.Button + StringFmt( $12-02-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002012020200201202030020 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002012020200201202030020 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0020.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0020.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0020.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002012020200201202030020 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0041 12-02-02-0041 12-02-03-0041 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0041.Button,12-02-02-0041.Button,12-02-03-0041.Button,$Sum120201004112020200411202030041) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำขิง " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง และ น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "GINGER TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0041.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0041.Button + StringFmt( $12-02-01-0041.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0041.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0041.Button + StringFmt( $12-02-02-0041.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0041.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0041.Button + StringFmt( $12-02-03-0041.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201004112020200411202030041 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201004112020200411202030041 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0041.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0041.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0041.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201004112020200411202030041 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0017 12-05-02-0027 12-05-03-0027 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0017.Button,12-05-02-0027.Button,12-05-03-0027.Button,$Sum120201001712050200271205030027) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำกัญชา " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำเชื่อมกัญชา (อายุมากกว่า 20+ เท่านั้น)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "CANNABIS DRINK" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Cannabis Syrup & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0017.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0017.Button + StringFmt( $12-02-01-0017.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0027.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0027.Button + StringFmt( $12-05-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0027.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0027.Button + StringFmt( $12-05-03-0027.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201001712050200271205030027 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201001712050200271205030027 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0017.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0027.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0027.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201001712050200271205030027 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0007 12-02-02-0007 12-02-03-0007 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0007.Button,12-02-02-0007.Button,12-02-03-0007.Button,$Sum120201000712020200071202030007) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชามะนาว " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย มะนาว" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "LIME TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai Tea, Limenade, Sugar & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0007.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0007.Button + StringFmt( $12-02-01-0007.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0007.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0007.Button + StringFmt( $12-02-02-0007.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0007.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0007.Button + StringFmt( $12-02-03-0007.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201000712020200071202030007 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201000712020200071202030007 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0007.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0007.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0007.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201000712020200071202030007 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0021 - - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0021.Button,$Sum1202010021) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาขิงมะนาว " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง มะนาว และน้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "LIME +GINGER TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger, Lime & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0021.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0021.Button + StringFmt( $12-02-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + "Invisible" + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum1202010021 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum1202010021 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0021.TAG tag1_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum1202010021 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0042 12-02-02-0042 12-02-03-0042 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0042.Button,12-02-02-0042.Button,12-02-03-0042.Button,$Sum120201004212020200421202030042) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาขิงมะนาว " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง มะนาว และน้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "LIME +GINGER TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger, Lime & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0042.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0042.Button + StringFmt( $12-02-01-0042.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0042.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0042.Button + StringFmt( $12-02-02-0042.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0042.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0042.Button + StringFmt( $12-02-03-0042.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201004212020200421202030042 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201004212020200421202030042 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0042.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0042.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0042.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201004212020200421202030042 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0039 12-02-02-0039 12-02-03-0039 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0039.Button,12-02-02-0039.Button,12-02-03-0039.Button,$Sum120201003912020200391202030039) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชานมไทย " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย และ นม" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "THAI MILK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Sugar, milk" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0039.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0039.Button + StringFmt( $12-02-01-0039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0039.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0039.Button + StringFmt( $12-02-02-0039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0039.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0039.Button + StringFmt( $12-02-03-0039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201003912020200391202030039 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201003912020200391202030039 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0039.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0039.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0039.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201003912020200391202030039 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 11 + ; 12-02-01-0040 12-02-02-0040 12-02-03-0040 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0040.Button,12-02-02-0040.Button,12-02-03-0040.Button,$Sum120201004012020200401202030040) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชามะนาว " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย มะนาว" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "LIME TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai Tea, Limenade, Sugar & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0040.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0040.Button + StringFmt( $12-02-01-0040.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0040.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0040.Button + StringFmt( $12-02-02-0040.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0040.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0040.Button + StringFmt( $12-02-03-0040.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201004012020200401202030040 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201004012020200401202030040 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0040.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0040.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0040.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201004012020200401202030040 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 11 + ; 12-02-01-0047 12-02-02-0047 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0047.Button,12-02-02-0047.Button,$Sum12020100471202020047) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย และน้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "THAI BLACK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai Tea & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0047.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0047.Button + StringFmt( $12-02-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0047.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0047.Button + StringFmt( $12-02-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100471202020047 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100471202020047 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0047.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0047.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100471202020047 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0024 12-02-02-0024 12-02-03-0024 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0024.Button,12-02-02-0024.Button,12-02-03-0024.Button,$Sum120201002412020200241202030024) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชานมไทย " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย และ นมอุ่น" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "THAI MILK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Sugar, Warm milk" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0024.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0024.Button + StringFmt( $12-02-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0024.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0024.Button + StringFmt( $12-02-02-0024.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0024.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0024.Button + StringFmt( $12-02-03-0024.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002412020200241202030024 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002412020200241202030024 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0024.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0024.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0024.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002412020200241202030024 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0025 12-02-02-0025 12-02-03-0025 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0025.Button,12-02-02-0025.Button,12-02-03-0025.Button,$Sum120201002512020200251202030025) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชานมไต้หวัน " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไต้หวัน และ นมอุ่น" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "TAIWANESE TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Taiwanese Tea, Sugar, Milk" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0025.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0025.Button + StringFmt( $12-02-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0025.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0025.Button + StringFmt( $12-02-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0025.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0025.Button + StringFmt( $12-02-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002512020200251202030025 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002512020200251202030025 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0025.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0025.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0025.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002512020200251202030025 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0003 12-02-02-0003 12-02-03-0003 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0003.Button,12-02-02-0003.Button,12-02-03-0003.Button,$Sum120201000312020200031202030003) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชานมไต้หวัน" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไต้หวัน นม " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "TAIWANESE TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Taiwan Tea, Milk, Sugar" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0003.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0003.Button + StringFmt( $12-02-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0003.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0003.Button + StringFmt( $12-02-02-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0003.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0003.Button + StringFmt( $12-02-03-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201000312020200031202030003 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201000312020200031202030003 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0003.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0003.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0003.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201000312020200031202030003 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0004 12-02-02-0004 12-02-03-0004 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0004.Button,12-02-02-0004.Button,12-02-03-0004.Button,$Sum120201000412020200041202030004) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มัทฉะลาเต้ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเชียว นม " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "MATCHA LATTE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Green Tea, Milk, Sugar" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0004.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0004.Button + StringFmt( $12-02-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0004.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0004.Button + StringFmt( $12-02-02-0004.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0004.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0004.Button + StringFmt( $12-02-03-0004.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201000412020200041202030004 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201000412020200041202030004 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0004.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0004.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0004.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201000412020200041202030004 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0026 12-02-02-0026 12-02-03-0026 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0026.Button,12-02-02-0026.Button,12-02-03-0026.Button,$Sum120201002612020200261202030026) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มัทฉะลาเต้ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเขียวมัทฉะ และ นมอุ่น" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "MATCHA LATTE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Matcha, Milk" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0026.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0026.Button + StringFmt( $12-02-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0026.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0026.Button + StringFmt( $12-02-02-0026.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0026.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0026.Button + StringFmt( $12-02-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002612020200261202030026 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002612020200261202030026 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0026.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0026.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0026.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002612020200261202030026 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0037 12-02-02-0037 12-02-03-0037 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0037.Button,12-02-02-0037.Button,12-02-03-0037.Button,$Sum120201003712020200371202030037) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "โฮจิฉะลาเต้" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเขียวคั่ว และ นม" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "HOJICHA LATTE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Hojicha and milk" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0037.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0037.Button + StringFmt( $12-02-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0037.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0037.Button + StringFmt( $12-02-02-0037.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0037.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0037.Button + StringFmt( $12-02-03-0037.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201003712020200371202030037 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201003712020200371202030037 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0037.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0037.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0037.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201003712020200371202030037 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0027 12-02-02-0027 12-02-03-0027 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0027.Button,12-02-02-0027.Button,12-02-03-0027.Button,$Sum120201002712020200271202030027) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาเขียวญี่ปุ่น " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเชียว และน้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "MATCHA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Matcha & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0027.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0027.Button + StringFmt( $12-02-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0027.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0027.Button + StringFmt( $12-02-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0027.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0027.Button + StringFmt( $12-02-03-0027.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002712020200271202030027 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002712020200271202030027 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0027.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0027.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0027.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002712020200271202030027 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0028 12-02-02-0028 12-02-03-0028 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0028.Button,12-02-02-0028.Button,12-02-03-0028.Button,$Sum120201002812020200281202030028) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาเขียวญี่ปุ่นมะนาว + " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเชียว มะนาว " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "MATCHA +LIMENADE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Matcha, Limenade, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0028.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0028.Button + StringFmt( $12-02-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0028.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0028.Button + StringFmt( $12-02-02-0028.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0028.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0028.Button + StringFmt( $12-02-03-0028.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002812020200281202030028 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002812020200281202030028 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0028.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0028.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0028.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002812020200281202030028 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0011 12-02-02-0011 12-02-03-0011 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0011.Button,12-02-02-0011.Button,12-02-03-0011.Button,$Sum120201001112020200111202030011) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาเขียวญี่ปุ่น " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเชียว และน้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "MATCHA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Matcha & Water " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0011.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0011.Button + StringFmt( $12-02-01-0011.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0011.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0011.Button + StringFmt( $12-02-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0011.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0011.Button + StringFmt( $12-02-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201001112020200111202030011 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201001112020200111202030011 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0011.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0011.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0011.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201001112020200111202030011 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0012 12-02-02-0012 12-02-03-0012 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0012.Button,12-02-02-0012.Button,12-02-03-0012.Button,$Sum120201001212020200121202030012) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาเขียวญี่ปุ่นมะนาว + " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาเชียว น้ำ มะนาว " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "MATCHA +LIMENADE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Matcha, Limenade, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0012.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0012.Button + StringFmt( $12-02-01-0012.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0012.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0012.Button + StringFmt( $12-02-02-0012.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0012.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0012.Button + StringFmt( $12-02-03-0012.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201001212020200121202030012 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201001212020200121202030012 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0012.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0012.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0012.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201001212020200121202030012 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 11 + ; 12-02-01-0045 12-02-02-0045 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0045.Button,12-02-02-0045.Button,$Sum12020100451202020045) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชามะลิ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชามะลิ น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "JASMINE TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Jasmine Tea ,Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0045.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0045.Button + StringFmt( $12-02-01-0045.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0045.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0045.Button + StringFmt( $12-02-02-0045.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100451202020045 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100451202020045 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0045.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0045.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100451202020045 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 11 + ; 12-02-01-0046 12-02-02-0046 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0046.Button,12-02-02-0046.Button,$Sum12020100461202020046) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชามะลิลาเต้" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชามะลิ และนม" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "JASMINE MILK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Jasmine & Milk" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0046.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0046.Button + StringFmt( $12-02-01-0046.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0046.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0046.Button + StringFmt( $12-02-02-0046.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100461202020046 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100461202020046 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0046.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0046.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100461202020046 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0006 12-02-02-0006 12-02-03-0006 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0006.Button,12-02-02-0006.Button,12-02-03-0006.Button,$Sum120201000612020200061202030006) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาบราวน์ชูการ์ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำเชื่อมน้ำตาลแดง + นม " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "BROWN SUGAR +TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Milk, Kokuto syrup" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0006.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0006.Button + StringFmt( $12-02-01-0006.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0006.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0006.Button + StringFmt( $12-02-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0006.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0006.Button + StringFmt( $12-02-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201000612020200061202030006 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201000612020200061202030006 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0006.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0006.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0006.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201000612020200061202030006 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0008 12-02-02-0008 12-02-03-0008 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0008.Button,12-02-02-0008.Button,12-02-03-0008.Button,$Sum120201000812020200081202030008) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาลิ้นจี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำเชื่อมลิ้นจี่ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "LYCHEE TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Lychee, Sugar, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0008.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0008.Button + StringFmt( $12-02-01-0008.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0008.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0008.Button + StringFmt( $12-02-02-0008.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0008.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0008.Button + StringFmt( $12-02-03-0008.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201000812020200081202030008 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201000812020200081202030008 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0008.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0008.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0008.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201000812020200081202030008 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0019 12-02-02-0019 12-02-03-0019 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0019.Button,12-02-02-0019.Button,12-02-03-0019.Button,$Sum120201001912020200191202030019) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาลิ้นจี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำเชื่อมลิ้นจี่" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "LYCHEE TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Lychee, Sugar, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0019.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0019.Button + StringFmt( $12-02-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0019.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0019.Button + StringFmt( $12-02-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0019.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0019.Button + StringFmt( $12-02-03-0019.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201001912020200191202030019 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201001912020200191202030019 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0019.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0019.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0019.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201001912020200191202030019 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-02-0009 12-02-01-0009 - + + 33 + 22 + 225 + 296 + Flag( 12-02-02-0009.Button,12-02-01-0009.Button,$Sum12020200091202010009) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาสตอเบอร์รี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำเชื่อมสตอเบอร์รี่ + " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "STRAWBERRY TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Strawberry Syrup, +Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-02-0009.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0009.Button + StringFmt( $12-02-02-0009.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-01-0009.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0009.Button + StringFmt( $12-02-01-0009.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020200091202010009 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020200091202010009 = "Disable" Then + STRCONTAIN "ERR" $12-02-02-0009.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-01-0009.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020200091202010009 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0022 12-02-02-0022 12-02-03-0022 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0022.Button,12-02-02-0022.Button,12-02-03-0022.Button,$Sum120201002212020200221202030022) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาสตอเบอร์รี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำเชื่อมสตอเบอร์รี่ + " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "STRAWBERRY TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Strawberry Syrup, +Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0022.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0022.Button + StringFmt( $12-02-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0022.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0022.Button + StringFmt( $12-02-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0022.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0022.Button + StringFmt( $12-02-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201002212020200221202030022 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201002212020200221202030022 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0022.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0022.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0022.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201002212020200221202030022 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0016 12-02-02-0017 12-02-03-0017 + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0016.Button,12-02-02-0017.Button,12-02-03-0017.Button,$Sum120201001612020200171202030017) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาบ๊วย " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำเชื่อมบ๊วย" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + " PLUM TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Ume Syrup, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0016.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0016.Button + StringFmt( $12-02-01-0016.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0017.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0017.Button + StringFmt( $12-02-02-0017.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-02-03-0017.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-03-0017.Button + StringFmt( $12-02-03-0017.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120201001612020200171202030017 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum120201001612020200171202030017 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0016.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0017.TAG tag2_is_disable + STRCONTAIN "ERR" $12-02-03-0017.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum120201001612020200171202030017 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0029 12-02-02-0029 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0029.Button,12-02-02-0029.Button,$Sum12020100291202020029) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "THAI TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Water, & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0029.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0029.Button + StringFmt( $12-02-01-0029.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0029.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0029.Button + StringFmt( $12-02-02-0029.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100291202020029 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100291202020029 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0029.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0029.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100291202020029 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0030 12-02-02-0030 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0030.Button,12-02-02-0030.Button,$Sum12020100301202020030) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำมะนาว" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไทย น้ำ มะนาว " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "THAI TEA +LIMENADE" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Thai tea, Limenade, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0030.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0030.Button + StringFmt( $12-02-01-0030.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0030.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0030.Button + StringFmt( $12-02-02-0030.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100301202020030 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100301202020030 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0030.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0030.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100301202020030 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0031 12-02-02-0031 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0031.Button,12-02-02-0031.Button,$Sum12020100311202020031) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำไต้หวัน" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไต้หวัน น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "TAIWANESE + BLACK TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Taiwanese tea, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0031.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0031.Button + StringFmt( $12-02-01-0031.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0031.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0031.Button + StringFmt( $12-02-02-0031.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100311202020031 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100311202020031 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0031.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0031.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100311202020031 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0032 12-02-02-0032 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0032.Button,12-02-02-0032.Button,$Sum12020100321202020032) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชาดำไต้หวันมะนาว" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไต้หวัน น้ำ มะนาว " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "TAIWANESE +LIME TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Taiwanese tea, Limenade, +Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0032.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0032.Button + StringFmt( $12-02-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0032.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0032.Button + StringFmt( $12-02-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100321202020032 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100321202020032 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0032.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0032.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100321202020032 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 16 + ; 12-02-01-0038 12-02-02-0038 - + + 33 + 22 + 225 + 296 + Flag( 12-02-01-0038.Button,12-02-02-0038.Button,$Sum12020100381202020038) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ชายูซุ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ชาไต้หวัน น้ำเชื่อมยูซุ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "YUZU TEA" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Yuzu, Taiwanese tea, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-02-01-0038.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-01-0038.Button + StringFmt( $12-02-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-02-02-0038.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-02-02-0038.Button + StringFmt( $12-02-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum12020100381202020038 = "Disable" Then + Var ice_tab_process_show = "Disable" + Else + Var ice_tab_process_show = "Enable" + EndIf + + Else + Var ice_tab_process_show = "Invisible" + EndIf + Var return = ice_tab_process_show + ) + + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible.png" + "ROOT/taobin_project/image/drink_option/ice_tab_unavalible_dis.png" + + + 49 + 117 + + eval( + If $Sum12020100381202020038 = "Disable" Then + STRCONTAIN "ERR" $12-02-01-0038.TAG tag1_is_disable + STRCONTAIN "ERR" $12-02-02-0038.TAG tag2_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag3_is_disable + Var return = "Invisible" + If tag1_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag2_is_disable = "true" Then + Var return = "Enable" + EndIf + If tag3_is_disable = "true" Then + Var return = "Enable" + EndIf + Else + Var return = "Invisible" + EndIf + ) + + "ROOT/taobin_project/image//img_menu_err2.png" + + + 84 + 266 + 10 + OpunMediumTTF + 0xDE794E + ice_tab_process_show + ice_show_open + + + 48 + 116 + 32 + 128 + 64 + MITRegularTTF + 0x5A5A5A + "disable-show" + $Sum12020100381202020038 + text_unavailable + center-vertical-horizontal + + + ; - - - + +; Cart + + + + + diff --git a/xml/page_catalog_group_whey.xml b/xml/page_catalog_group_whey.xml index 762bc94f..cf07fc20 100644 --- a/xml/page_catalog_group_whey.xml +++ b/xml/page_catalog_group_whey.xml @@ -225,6 +225,7 @@ EndIf + ; zone cup on arm If CupOnArm = "true" Then If CheckCupStateDoorCupClose = "" Then diff --git a/xml/page_drinkfail3.xml b/xml/page_drinkfail3.xml index b034ff0c..ff08cf76 100644 --- a/xml/page_drinkfail3.xml +++ b/xml/page_drinkfail3.xml @@ -25,7 +25,22 @@ + If HaveCup = "true" Then + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + + Var CheckCupStateDoorCupCloseCnt = 15 1000 @@ -37,6 +52,7 @@ DEBUGVAR Timeout DEBUGVAR MachineStage DEBUGVAR NextOrder + DEBUGVAR HaveCup If Door_Open_flagBlink = 0 Then Var Door_Open_flagBlink = 1 @@ -46,6 +62,38 @@ Var Door_Open_State="Invisible" EndIf + If HaveCup = "true" Then + DEBUGVAR CheckCupStateDoorCupClose + + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "reset" Then + + If CheckCupStateDoorCupCloseCnt = 0 Then + Var CheckCupStateDoorCupClose = "" + Else + Var CheckCupStateDoorCupCloseCnt = CheckCupStateDoorCupCloseCnt - 1 + + EndIf + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + + If buttonRemoveCup = "Invisible" Then + Var Door_Open_State = "Invisible" + EndIf + + DEBUGVAR buttonRemoveCup + DEBUGVAR Door_Open_State If MachineStage = "remove-cup" Then @@ -136,9 +184,13 @@ Var( DirImage + "/bp_door_open.png" ) "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume +buttonRemoveCup Machine RemoveCup + Var buttonRemoveCup = "Invisible" + Var CheckCupStateDoorCupClose = "reset" + Var CheckCupStateDoorCupCloseCnt = 15 @@ -152,6 +204,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume + Machine RemoveCup + Var buttonRemoveCup = "Invisible" + Var CheckCupStateDoorCupClose = "reset" + Var CheckCupStateDoorCupCloseCnt = 15 diff --git a/xml/page_remove_cup.xml b/xml/page_remove_cup.xml index 9f77b59d..808936a7 100644 --- a/xml/page_remove_cup.xml +++ b/xml/page_remove_cup.xml @@ -53,6 +53,21 @@ Var Timeout = 0 EndIf + If HaveCup = "true" Then + + If CheckCupStateDoorCupClose = "" Then + Var buttonRemoveCup = "Enable" + EndIf + + If CheckCupStateDoorCupClose = "done" Then + Var buttonRemoveCup = "Enable" + EndIf + Else + If buttonRemoveCup = "Enable" Then + Var buttonRemoveCup = "Invisible" + EndIf + EndIf + Refresh TimerReset @@ -72,11 +87,14 @@ Var( DirImage + "/bp_door_open.png" ) "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume + buttonRemoveCup Machine RemoveCup Machine DoorLidOpen + Var buttonRemoveCup = "Invisible" + Var CheckCupStateDoorCupClose = "reset" diff --git a/xml/topview2.xml b/xml/topview2.xml index c314313e..336bbe23 100644 --- a/xml/topview2.xml +++ b/xml/topview2.xml @@ -7,8 +7,8 @@ Var lang_icon_file_name[0] = "bn_eng_lang.png" Var lang_icon_file_name[1] = "bn_thai_lang.png" - Var lang_icon_file_name[2] = "bn_japan_lang.png" - Var lang_icon_file_name[3] = "bn_china_lang.png" + Var lang_icon_file_name[3] = "bn_japan_lang.png" + Var lang_icon_file_name[2] = "bn_china_lang.png" Var LanguageButtonEnable = "Enable" @@ -104,7 +104,7 @@ Var langFileNameIcon = lang_icon_file_name[LanguageShowByIndex] Var langfn = "ROOT/taobin_project/image/lang/" + langFileNameIcon SetLanguage "THAI" - Refresh + RefreshAll