diff --git a/image/page_doing/brewing_txt_adv15.png b/image/page_doing/brewing_txt_adv15.png new file mode 100644 index 00000000..55428eca Binary files /dev/null and b/image/page_doing/brewing_txt_adv15.png differ diff --git a/image/page_doing/brewing_txt_adv15_en.png b/image/page_doing/brewing_txt_adv15_en.png new file mode 100644 index 00000000..c0828d78 Binary files /dev/null and b/image/page_doing/brewing_txt_adv15_en.png differ diff --git a/inter/tha/xml/event/script_common_for_open_promotion_xml.ev b/inter/tha/xml/event/script_common_for_open_promotion_xml.ev index 23eaafb5..22c97fee 100644 --- a/inter/tha/xml/event/script_common_for_open_promotion_xml.ev +++ b/inter/tha/xml/event/script_common_for_open_promotion_xml.ev @@ -1,16 +1,5 @@ -; thailand -; zone promote -Var BigButtonEnable = "Enable" -If OpenFromMulti = 1 Then - TabMenuVisibleInst 99 -EndIf -Var OpenFromMulti = 0 - -Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml" -Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml" - If WinterWarmersCatalogFlag = 1 Then Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_winter_warmers.lxml" EndIf @@ -23,18 +12,45 @@ If AnniverseryPro = 1 Then Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_anniversary_1st.lxml" EndIf -If OpenFromPageBoard = 1 Then - If EnableMultiInstance = "true" Then - OpenInst 2 RecommendPageMulti + + + +; thailand + + +; zone promote +Var BigButtonEnable = "Enable" +If OpenFromMulti = 1 Then + TabMenuVisibleInst 99 +EndIf +Var OpenFromMulti = 0 + +Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml" +Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml" + + +If MyanmarLangEnable = "true" Then + + ; nothing to do + + + If OpenFromPageBoard = 1 Then + If EnableMultiInstance = "true" Then + OpenInst 2 RecommendPageMulti + Else + OpenInst 2 RecommendPage + EndIf Else - OpenInst 2 RecommendPage + If EnableMultiInstance = "true" Then + OpenInst 2 RecommendPageMulti + Else + Open RecommendPage + EndIf EndIf + Else - If EnableMultiInstance = "true" Then - OpenInst 2 RecommendPageMulti - Else - Open RecommendPage - EndIf + TRY "/mnt/sdcard/coffeevending/taobin_project/xml/event/script_common_for_open_promotion_xml.ev" EndIf Var OpenFromPageBoard = 0 + diff --git a/inter/tha/xml/multi/event/dummy_layout_promotion.py b/inter/tha/xml/multi/event/dummy_layout_promotion.py deleted file mode 100644 index 4d315d8d..00000000 --- a/inter/tha/xml/multi/event/dummy_layout_promotion.py +++ /dev/null @@ -1,166 +0,0 @@ - -if False: - print("params=" + param) - print( "dir= " + directory_to_process + "/page_catalog_group_recommend.lxml"); - file_xml = open(directory_to_process + "/page_catalog_group_recommend.lxml", '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_xml.close() - - - file_inc2 = open(directory_to_process + "/event/promotion_template1.inc", 'r') - file_inc2_content = file_inc2.read() - file_inc_img = open(directory_to_process + "/../image/event/image_template1", 'r') - file_inc2_img_content = file_inc_img.read() - - # replace key. - - sp_key = file_inc2_img_content.split("\n") - print("sp_key = " + str(len( sp_key))) - for sp_line in sp_key: - sp_line = sp_line.strip() - key_val = sp_line.split("=") - if len( key_val) == 2: - print("k = " + key_val[0] + " val=" + key_val[1]) - file_inc2_content = file_inc2_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"') - - - file_inc_event_click = open(directory_to_process + "/event/promotion_onclick1.inc", 'r') - file_inc_event_click_content = file_inc_event_click.read() - - file_inc2_content = file_inc2_content.replace("###EventOnClick", file_inc_event_click_content) - - - print(file_inc2_content) - - #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("TAGESP 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_out = open(directory_to_process + "/event/out_put_file1.txt", 'r') - file_xml3_out_content = file_xml3_out.read() - file_xml3_out_content = file_xml3_out_content.strip() - file_xml3_out_content = file_xml3_out_content.replace("\r", "") - file_xml3_out_content = file_xml3_out_content.replace("\n", "") - - file_xml3 = open(directory_to_process + file_xml3_out_content, 'w') - file_xml3.write( content_data) - file_xml3.close() - - - file_inc2 = open(directory_to_process + "/event/promotion_template2.inc", 'r') - file_inc2_content = file_inc2.read() - file_inc_img = open(directory_to_process + "/../image/event/image_template2", 'r') - file_inc2_img_content = file_inc_img.read() - - # replace key. - - sp_key = file_inc2_img_content.split("\n") - print("sp_key = " + str(len( sp_key))) - for sp_line in sp_key: - sp_line = sp_line.strip() - key_val = sp_line.split("=") - if len( key_val) == 2: - print("k = " + key_val[0] + " val=" + key_val[1]) - file_inc2_content = file_inc2_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"') - - - file_inc_event_click = open(directory_to_process + "/event/promotion_onclick2.inc", 'r') - file_inc_event_click_content = file_inc_event_click.read() - - file_inc2_content = file_inc2_content.replace("###EventOnClick", file_inc_event_click_content) - - - print(file_inc2_content) - - #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] - - tmp2 = content_data[ end_text:-1] - #print("tmp1=" + tmp1) - #print("tmp2=" + tmp2) - - content_data = tmp1 + tmp2 - - file_xml3_out = open(directory_to_process + "/event/out_put_file2.txt", 'r') - file_xml3_out_content = file_xml3_out.read() - file_xml3_out_content = file_xml3_out_content.strip() - file_xml3_out_content = file_xml3_out_content.replace("\r", "") - file_xml3_out_content = file_xml3_out_content.replace("\n", "") - - file_xml3 = open(directory_to_process + file_xml3_out_content, 'w') - file_xml3.write( content_data) - file_xml3.close() - - file_inc3 = open(directory_to_process + "/event/promotion_template3.inc", 'r') - file_inc3_content = file_inc3.read() - file_inc_img = open(directory_to_process + "/../image/event/image_template3", 'r') - file_inc3_img_content = file_inc_img.read() - - # replace key. - - sp_key = file_inc3_img_content.split("\n") - print("sp_key = " + str(len( sp_key))) - for sp_line in sp_key: - sp_line = sp_line.strip() - key_val = sp_line.split("=") - print("Kenta420:", key_val) - if len( key_val) == 2: - print("k = " + key_val[0] + " val=" + key_val[1]) - file_inc3_content = file_inc3_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"') - - - file_inc_event_click = open(directory_to_process + "/event/promotion_onclick3.inc", 'r') - file_inc_event_click_content = file_inc_event_click.read() - - file_inc3_content = file_inc3_content.replace("###EventOnClick", file_inc_event_click_content) - - - print(file_inc3_content) - - #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_inc3_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] - - tmp3 = content_data[ end_text:-1] - #print("tmp1=" + tmp1) - #print("tmp3=" + tmp3) - - content_data = tmp1 + tmp3 - - file_xml3_out = open(directory_to_process + "/event/out_put_file3.txt", 'r') - file_xml3_out_content = file_xml3_out.read() - file_xml3_out_content = file_xml3_out_content.strip() - file_xml3_out_content = file_xml3_out_content.replace("\r", "") - file_xml3_out_content = file_xml3_out_content.replace("\n", "") - - file_xml3 = open(directory_to_process + file_xml3_out_content, 'w') - file_xml3.write( content_data) - file_xml3.close() diff --git a/inter/tha/xml/multi/event/out_put_file1.txt b/inter/tha/xml/multi/event/out_put_file1.txt deleted file mode 100644 index b7ba06eb..00000000 --- a/inter/tha/xml/multi/event/out_put_file1.txt +++ /dev/null @@ -1 +0,0 @@ -/event/promotion_winter_warmers.lxml diff --git a/inter/tha/xml/multi/event/out_put_file2.txt b/inter/tha/xml/multi/event/out_put_file2.txt deleted file mode 100644 index 0b655659..00000000 --- a/inter/tha/xml/multi/event/out_put_file2.txt +++ /dev/null @@ -1 +0,0 @@ -/event/promotion_anniversary_1st.lxml \ No newline at end of file diff --git a/inter/tha/xml/multi/event/out_put_file3.txt b/inter/tha/xml/multi/event/out_put_file3.txt deleted file mode 100644 index f35009f6..00000000 --- a/inter/tha/xml/multi/event/out_put_file3.txt +++ /dev/null @@ -1 +0,0 @@ -/event/promotion_3.xml \ No newline at end of file diff --git a/inter/tha/xml/multi/event/promotion_2.xml b/inter/tha/xml/multi/event/promotion_2.xml deleted file mode 100644 index 106a1bdd..00000000 --- a/inter/tha/xml/multi/event/promotion_2.xml +++ /dev/null @@ -1,12288 +0,0 @@ - - - - "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 Menu1Selected = "PressForever" - - Var OreoBigButtonEnable = "Enable" - - If $12-01-01-0001.Button = "Invisible" Then - Var esp102101001Enable = "Invisible" - Var esp122101001Enable = "Enable" - - Else - Var esp102101001Enable = "Enable" - Var esp122101001Enable = "Invisible" - - EndIf - - SAVELOG PreviseXMLFileName2 - - Var Timeout = 0 - - If show_eng = "true" Then - - Var text_unavailable = "UNAVAILABLE###size=16" - Else - Var text_unavailable = "หมด###size=32" - - EndIf - - - 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 - - Var Timeout = Timeout + 1 - TimerReset - - - - DEBUGVAR LanguageShow - If LanguageShow = "ENG" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option_en/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" - - EndIf - If LanguageShow = "THAI" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2/" - EndIf - ;inter-image - If CountryName = "Malaysia" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option_myr/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" - Var DirImage = "ROOT/taobin_project/image/page3_en" - Var ice_tab_text = "Ice will be ready at " - EndIf - - SAVELOG "EventLanguageOnChange menu -list" - - Refresh - - Var LanguageButtonEnable = "Enable" - Var ButtonLanguageCurrentXPosition = 990 - Var ButtonLanguageCurrentYPosition = 438 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 430 - 38 - OpenInst 3 "ROOT/taobin_project/xml/topview2.xml" - - - - - -; 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 - - - - - - - - 16 - 10 - 497 - 1080 - "auto" - "Vertical" - 4 - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0026.Button,Disable=Invisible,$Sum1203030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Susu Pink\nOreo Volcano - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Sirap Salak, Susu, Gula, Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0026.Button - StringFmt( $12-03-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030026 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030026 - - 000013 - - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - Flag( 12-21-01-0001.Button,Disable=Invisible,$Sum1221010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-21-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-01-0001.Button - StringFmt( $12-21-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1221010001 = "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 $Sum1221010001 = "Disable" Then - STRCONTAIN "ERR" $12-21-01-0001.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 - "disable-show" - $Sum1221010001 - - 000013 - - center-vertical-horizontal - - - ; - - - - ; ==================> Len = 16 - ; - - 12-03-03-0026 - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - Len = 3 - ; 12-01-01-0003 12-01-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0003.Button,12-01-02-0001.Button,Disable=Invisible,$Sum12010100031201020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - Espresso, Air - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0003.Button - StringFmt( $12-01-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0001.Button - StringFmt( $12-01-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100031201020001 = "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 $Sum12010100031201020001 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0001.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 - "disable-show" - $Sum12010100031201020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-21-01-0003 12-21-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 12-21-01-0003.Button,12-21-02-0001.Button,Disable=Invisible,$Sum12210100031221020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - Espresso, Air - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-21-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-21-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-02-0001.Button - StringFmt( $12-21-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12210100031221020001 = "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 $Sum12210100031221020001 = "Disable" Then - STRCONTAIN "ERR" $12-21-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $12-21-02-0001.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 - "disable-show" - $Sum12210100031221020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0013 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0013.Button,Disable=Invisible,$Sum1201010013) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO ETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Proses Semulajadi Panggang Ringan Aroma: Strawberi, Oren, Bungaan - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0013.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0013.Button - StringFmt( $12-01-01-0013.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010013 = "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 $Sum1201010013 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0013.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 - "disable-show" - $Sum1201010013 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0020 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0020.Button,Disable=Invisible,$Sum1201010020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - ESPRESSO BLUE DADDY - เอสเพรสโซ่ช็อต \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Proses Cucian. Aroma: Bluberi & Bungaan - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0020.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0020.Button - StringFmt( $12-01-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010020 = "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 $Sum1201010020 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0020.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 - "disable-show" - $Sum1201010020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0022 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0022.Button,Disable=Invisible,$Sum1201010022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - ESPRESSO MOZART - เอสเพรสโซ่ช็อต \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0022.Button - StringFmt( $12-01-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010022 = "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 $Sum1201010022 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0022.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 - "disable-show" - $Sum1201010022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0024 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0024.Button,Disable=Invisible,$Sum1201010024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - ESPRESSO SNOW WHITE - เอสเพรสโซ่ช็อต \nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Proses Anaerobik Aroma: Jasmin & Madu - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0024.Button - StringFmt( $12-01-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010024 = "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 $Sum1201010024 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0024.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 - "disable-show" - $Sum1201010024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0026 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0026.Button,Disable=Invisible,$Sum1201010026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - WHISKY DUDE \nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - WHISKY DUDE \nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - ESPRESSO WHISKY DUDE - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Penapaian Tong Sherry Yang Telah Dibasuh Nota: Wiski & Vanila - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0026.Button - StringFmt( $12-01-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010026 = "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 $Sum1201010026 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0026.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 - "disable-show" - $Sum1201010026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0028 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0028.Button,Disable=Invisible,$Sum1201010028) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - ESPRESSO PIC - เอสเพรสโซ่ช็อต \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Proses Penuaan Dalam Tong Aroma: Pic, teh, Coklat - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0028.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0028.Button - StringFmt( $12-01-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010028 = "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 $Sum1201010028 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0028.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 - "disable-show" - $Sum1201010028 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0033 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0033.Button,Disable=Invisible,$Sum1201010033) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - ESPRESSO AYU TULIN - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Proses Light Roast Natural. Aroma: Bungaan & Buah-buahan Tropika - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0033.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0033.Button - StringFmt( $12-01-01-0033.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010033 = "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 $Sum1201010033 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0033.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 - "disable-show" - $Sum1201010033 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0036 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0036.Button,Disable=Invisible,$Sum1201010036) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Proses Light Roast Natural. Aroma: Lemon, Pic, Madu, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0036.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0036.Button - StringFmt( $12-01-01-0036.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010036 = "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 $Sum1201010036 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0036.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 - "disable-show" - $Sum1201010036 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0037 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0037.Button,Disable=Invisible,$Sum1201010037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ESPRESSO ROSALYN - เอสเพรสโซ่ช็อต \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Proses Light Roast Natural. Aroma: Ros Pink & Beri - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0037.Button - StringFmt( $12-01-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010037 = "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 $Sum1201010037 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0037.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 - "disable-show" - $Sum1201010037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0014 12-01-02-0011 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0014.Button,12-01-02-0011.Button,Disable=Invisible,$Sum12010100141201020011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO ETHIOPIA GUJI - อเมริกาโน \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Proses Light Roast Natural. Aroma: Strawberi, Oren & Bungaan - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0014.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0014.Button - StringFmt( $12-01-01-0014.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0011.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0011.Button - StringFmt( $12-01-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100141201020011 = "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 $Sum12010100141201020011 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0014.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0011.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 - "disable-show" - $Sum12010100141201020011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0019 12-01-02-0019 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0019.Button,12-01-02-0019.Button,Disable=Invisible,$Sum12010100191201020019) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - AMERICANO BLUE DADDY - อเมริกาโน \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Proses Cucian. Aroma: Bluberi & Bungaan - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0019.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0019.Button - StringFmt( $12-01-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0019.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0019.Button - StringFmt( $12-01-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100191201020019 = "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 $Sum12010100191201020019 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0019.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0019.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 - "disable-show" - $Sum12010100191201020019 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0021 12-01-02-0021 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0021.Button,12-01-02-0021.Button,Disable=Invisible,$Sum12010100211201020021) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nAMERICANO - อเมริกาโน \nMOZART - MOZART \nAMERICANO - อเมริกาโน \nMOZART - AMERICANO MOZART - อเมริกาโน \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0021.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0021.Button - StringFmt( $12-01-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0021.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0021.Button - StringFmt( $12-01-02-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100211201020021 = "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 $Sum12010100211201020021 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0021.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0021.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 - "disable-show" - $Sum12010100211201020021 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0025 12-01-02-0025 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0025.Button,12-01-02-0025.Button,Disable=Invisible,$Sum12010100251201020025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - WHISKY DUDE \nAMERICANO - อเมริกาโน \nWHISKY DUDE - WHISKY DUDE \nAMERICANO - อเมริกาโน \nWHISKY DUDE - AMERICANO WHISKY DUDE - อเมริกาโน \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Penapaian Tong Sherry Yang Telah Dibasuh Nota: Wiski & Vanila - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0025.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0025.Button - StringFmt( $12-01-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0025.Button - StringFmt( $12-01-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100251201020025 = "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 $Sum12010100251201020025 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0025.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0025.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 - "disable-show" - $Sum12010100251201020025 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0023 12-01-02-0023 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0023.Button,12-01-02-0023.Button,Disable=Invisible,$Sum12010100231201020023) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - AMERICANO SNOW WHITE - อเมริกาโน\nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Proses Anaerobik Aroma: Jasmin & Madu - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0023.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0023.Button - StringFmt( $12-01-01-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0023.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0023.Button - StringFmt( $12-01-02-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100231201020023 = "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 $Sum12010100231201020023 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0023.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0023.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 - "disable-show" - $Sum12010100231201020023 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0044 12-01-02-0044 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0044.Button,12-01-02-0044.Button,Disable=Invisible,$Sum12010100441201020044) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - AMERICANO CHOPIN - อเมริกาโน \nCHOPIN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0044.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0044.Button - StringFmt( $12-01-01-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0044.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0044.Button - StringFmt( $12-01-02-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100441201020044 = "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 $Sum12010100441201020044 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0044.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0044.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 - "disable-show" - $Sum12010100441201020044 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0047 12-01-02-0047 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0047.Button,12-01-02-0047.Button,Disable=Invisible,$Sum12010100471201020047) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - AMERICANO MANDARIN - อเมริกาโน \nMANDARINE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Panggang Ringan. Nota: Bunga Oren, Madu, Karamel, Bar Coklat - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0047.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0047.Button - StringFmt( $12-01-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0047.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0047.Button - StringFmt( $12-01-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100471201020047 = "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 $Sum12010100471201020047 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0047.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100471201020047 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0050 12-01-02-0050 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0050.Button,12-01-02-0050.Button,Disable=Invisible,$Sum12010100501201020050) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - AMERICANO OPUS ONE - อเมริกาโน \nOPUS ONE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Panggang Ringan. Nota: Jeli Anggur, Pai Epal, Walnut, Pudina - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0050.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0050.Button - StringFmt( $12-01-01-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0050.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0050.Button - StringFmt( $12-01-02-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100501201020050 = "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 $Sum12010100501201020050 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0050.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0050.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 - "disable-show" - $Sum12010100501201020050 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0027 12-01-02-0027 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0027.Button,12-01-02-0027.Button,Disable=Invisible,$Sum12010100271201020027) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - AMERICANO PIC - อเมริกาโน \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Proses Penuaan Dalam Tong. Aroma: Pic, Teh, Coklat - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0027.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0027.Button - StringFmt( $12-01-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0027.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0027.Button - StringFmt( $12-01-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100271201020027 = "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 $Sum12010100271201020027 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0027.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0027.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 - "disable-show" - $Sum12010100271201020027 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0032 12-01-02-0032 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0032.Button,12-01-02-0032.Button,Disable=Invisible,$Sum12010100321201020032) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - AMERICANO AYU TULIN - อเมริกาโน \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Proses Light Roast Natural. Aroma: Bungaan & Buah-buahan Tropika - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0032.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0032.Button - StringFmt( $12-01-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0032.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0032.Button - StringFmt( $12-01-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100321201020032 = "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 $Sum12010100321201020032 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0032.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100321201020032 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0035 12-01-02-0035 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0035.Button,12-01-02-0035.Button,Disable=Invisible,$Sum12010100351201020035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - AMERICANO GEISHA - อเมริกาโน \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Proses Light Roast Natural. Aroma: Lemon, Pic, Madu, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0035.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0035.Button - StringFmt( $12-01-01-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0035.Button - StringFmt( $12-01-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100351201020035 = "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 $Sum12010100351201020035 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0035.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0035.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 - "disable-show" - $Sum12010100351201020035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0038 12-01-02-0038 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0038.Button,12-01-02-0038.Button,Disable=Invisible,$Sum12010100381201020038) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - AMERICANO ROSALYN - อเมริกาโน \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Proses Light Roast Natural. Aroma: Ros Pink & Beri - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0038.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0038.Button - StringFmt( $12-01-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0038.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0038.Button - StringFmt( $12-01-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100381201020038 = "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 $Sum12010100381201020038 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0038.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100381201020038 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0004 12-01-02-0002 12-01-03-0002 - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0004.Button,12-01-02-0002.Button,12-01-03-0002.Button,Disable=Invisible,$Sum120101000412010200021201030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - LATTE - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Susu - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0004.Button - StringFmt( $12-01-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0002.Button - StringFmt( $12-01-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-01-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-03-0002.Button - StringFmt( $12-01-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120101000412010200021201030002 = "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 $Sum120101000412010200021201030002 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $12-01-03-0002.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 - "disable-show" - $Sum120101000412010200021201030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201003712020200371202030037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha, Susu - ชาเขียวคั่ว และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201003712020200371202030037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201002612020200261202030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Teh Hijau, Susu, Gula, Ais - ชาเชียว นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201002612020200261202030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201002412020200241202030024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - THAI MILK TEA - ชานมไทย - THAI MILK TEA - ชานมไทย - TEH SUSU THAI - ชานมไทย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Teh Thai, Gula, Susu - ชาไทย น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201002412020200241202030024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0002 12-03-02-0002 12-03-03-0002 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0002.Button,12-03-02-0002.Button,12-03-03-0002.Button,Disable=Invisible,$Sum120301000212030200021203030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - COCOA - โกโก้ - COCOA - โกโก้ - KOKO - โกโก้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Susu, Koko, Gula - โกโก้ นมและน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0002.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0002.Button - StringFmt( $12-03-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0002.Button - StringFmt( $12-03-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0002.Button - StringFmt( $12-03-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301000212030200021203030002 = "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 $Sum120301000212030200021203030002 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0002.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-03-0002.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 - "disable-show" - $Sum120301000212030200021203030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0001 12-03-02-0001 12-03-03-0001 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0001.Button,12-03-02-0001.Button,12-03-03-0001.Button,Disable=Invisible,$Sum120301000112030200011203030001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CARAMEL MILK - นมคาราเมล - CARAMEL MILK - นมคาราเมล - SUSU KARAMEL - นมคาราเมล - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Susu, Sirap Karamel - นม น้ำเชื่อมคาราเมล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0001.Button - StringFmt( $12-03-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0001.Button - StringFmt( $12-03-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0001.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0001.Button - StringFmt( $12-03-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301000112030200011203030001 = "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 $Sum120301000112030200011203030001 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0001.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0001.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum120301000112030200011203030001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-03-02-0006 12-03-03-0006 - - 33 - 22 - 225 - 296 - Flag( 12-03-02-0006.Button,12-03-03-0006.Button,Disable=Invisible,$Sum12030200061203030006) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PINK MILK - นมชมพู - PINK MILK - นมชมพู - SUSU PINK - นมชมพู - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Sirap Salak, Susu, Gula - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0006.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0006.Button - StringFmt( $12-03-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0006.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0006.Button - StringFmt( $12-03-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12030200061203030006 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0006.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum12030200061203030006 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0011 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0011.Button,Disable=Invisible,$Sum1203030011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - SMOOTHIE\nSUSU STRAWBERI - นมสตอเบอร์รี่ปั่น - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Susu, Sirap Strawberi - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0011.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0011.Button - StringFmt( $12-03-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030011 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0022 12-03-02-0022 12-03-03-0022 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0022.Button,12-03-02-0022.Button,12-03-03-0022.Button,Disable=Invisible,$Sum120301002212030200221203030022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON MILK - นมเมล่อน - MELON MILK - นมเมล่อน - SUSU MELON - นมเมล่อน - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Susu, Sirap Melon - นม และ น้ำเชื่อมเมล่อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0022.Button - StringFmt( $12-03-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0022.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0022.Button - StringFmt( $12-03-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0022.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0022.Button - StringFmt( $12-03-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301002212030200221203030022 = "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 $Sum120301002212030200221203030022 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0022.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0022.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum120301002212030200221203030022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0009 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0009.Button,Disable=Invisible,$Sum1203030009) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OREO SMOOTHIE \nVOLCANO - โอริโอ้ปั่นภูเขาไฟ - OREO SMOOTHIE \nVOLCANO - โอริโอ้ปั่นภูเขาไฟ - SMOOTHIE\nOREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Susu, Gula, Oreo - นม น้ำตาล โอริโอ้ \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0009.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0009.Button - StringFmt( $12-03-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030009 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-03-0009.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 - "disable-show" - $Sum1203030009 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0020 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0020.Button,Disable=Invisible,$Sum1203030020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - SMOOTHIE\nOVALTINE VOLCANO - โอวัลตินปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Gula, Susu - โอวัลติน น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0020.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0020.Button - StringFmt( $12-03-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030020 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0007 12-05-03-0007 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0007.Button,12-05-03-0007.Button,Disable=Invisible,$Sum12050200071205030007) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI - เป็ปซี่น้ำแข็ง - PEPSI - เป็ปซี่น้ำแข็ง - PEPSI - เป็ปซี่น้ำแข็ง - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi, Ice - เป๊ปซี่ - Pepsi, Ice - เป๊ปซี่ - Pepsi, Ais - เป๊ปซี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0007.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0007.Button - StringFmt( $12-05-02-0007.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0007.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0007.Button - StringFmt( $12-05-03-0007.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200071205030007 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0007.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-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 - "disable-show" - $Sum12050200071205030007 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0046 12-05-03-0046 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0046.Button,12-05-03-0046.Button,Disable=Invisible,$Sum12050200461205030046) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI PLUM - เป๊ปซี่บ๊วย - PEPSI PLUM - เป๊ปซี่บ๊วย - PEPSI PLUM - เป๊ปซี่บ๊วย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi, Ume Syrup & Ice - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - Pepsi, Ume Syrup & Ice - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - Pepsi, Sirap Ume, Ais - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0046.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0046.Button - StringFmt( $12-05-02-0046.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0046.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0046.Button - StringFmt( $12-05-03-0046.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200461205030046 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0046.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-03-0046.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 - "disable-show" - $Sum12050200461205030046 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0035 12-05-03-0035 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0035.Button,12-05-03-0035.Button,Disable=Invisible,$Sum12050200351205030035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - TAO POWER \nDRINK SODA - เต่าทรงพลังโซดา - TAO POWER \nDRINK SODA - เต่าทรงพลังโซดา - SODA TAO POWER - เต่าทรงพลังโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Energy drink, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - Energy drink, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - Minuman Bervitamin, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0035.Button - StringFmt( $12-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0035.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0035.Button - StringFmt( $12-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200351205030035 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0035.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-03-0035.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 - "disable-show" - $Sum12050200351205030035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0025 12-05-03-0025 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0025.Button,12-05-03-0025.Button,Disable=Invisible,$Sum12050200251205030025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PLUM \nLIMENADE SODA - บ๊วยมะนาวโซดา - PLUM \nLIMENADE SODA - บ๊วยมะนาวโซดา - SODA PLUM LIMAU - บ๊วยมะนาวโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Sirap Ume, Sirap Limau, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0025.Button - StringFmt( $12-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0025.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0025.Button - StringFmt( $12-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200251205030025 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0025.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-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 - "disable-show" - $Sum12050200251205030025 - - 000013 - - center-vertical-horizontal - - - -; Cart - - - - - - - - - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - - - - - diff --git a/inter/tha/xml/multi/event/promotion_3.xml b/inter/tha/xml/multi/event/promotion_3.xml deleted file mode 100644 index d8049075..00000000 --- a/inter/tha/xml/multi/event/promotion_3.xml +++ /dev/null @@ -1,12865 +0,0 @@ - - - - "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 Menu1Selected = "PressForever" - - Var OreoBigButtonEnable = "Enable" - - If $12-01-01-0001.Button = "Invisible" Then - Var esp102101001Enable = "Invisible" - Var esp122101001Enable = "Enable" - - Else - Var esp102101001Enable = "Enable" - Var esp122101001Enable = "Invisible" - - EndIf - - SAVELOG PreviseXMLFileName2 - - Var Timeout = 0 - - If show_eng = "true" Then - - Var text_unavailable = "UNAVAILABLE###size=16" - Else - Var text_unavailable = "หมด###size=32" - - EndIf - - - 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 - - Var Timeout = Timeout + 1 - TimerReset - - - - DEBUGVAR LanguageShow - If LanguageShow = "ENG" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option_en/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" - - EndIf - If LanguageShow = "THAI" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2/" - EndIf - ;inter-image - If CountryName = "Malaysia" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option_myr/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" - Var DirImage = "ROOT/taobin_project/image/page3_en" - Var ice_tab_text = "Ice will be ready at " - EndIf - - SAVELOG "EventLanguageOnChange menu -list" - - Refresh - - Var LanguageButtonEnable = "Enable" - Var ButtonLanguageCurrentXPosition = 990 - Var ButtonLanguageCurrentYPosition = 438 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 430 - 38 - OpenInst 3 "ROOT/taobin_project/xml/topview2.xml" - - - - - -; 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 - - - - - - - - 16 - 10 - 497 - 1080 - "auto" - "Vertical" - 4 - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0026.Button,Disable=Invisible,$Sum1203030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Susu Pink\nOreo Volcano - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Sirap Salak, Susu, Gula, Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0026.Button - StringFmt( $12-03-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030026 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030026 - - 000013 - - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - Flag( 12-21-01-0001.Button,Disable=Invisible,$Sum1221010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-21-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-01-0001.Button - StringFmt( $12-21-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1221010001 = "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 $Sum1221010001 = "Disable" Then - STRCONTAIN "ERR" $12-21-01-0001.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 - "disable-show" - $Sum1221010001 - - 000013 - - center-vertical-horizontal - - - ; - - - - ; ==================> Len = 16 - ; - - 12-03-03-0026 - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - Len = 3 - ; 12-01-01-0003 12-01-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0003.Button,12-01-02-0001.Button,Disable=Invisible,$Sum12010100031201020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - Espresso, Air - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0003.Button - StringFmt( $12-01-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0001.Button - StringFmt( $12-01-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100031201020001 = "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 $Sum12010100031201020001 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0001.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 - "disable-show" - $Sum12010100031201020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-21-01-0003 12-21-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 12-21-01-0003.Button,12-21-02-0001.Button,Disable=Invisible,$Sum12210100031221020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - Espresso, Air - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-21-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-21-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-02-0001.Button - StringFmt( $12-21-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12210100031221020001 = "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 $Sum12210100031221020001 = "Disable" Then - STRCONTAIN "ERR" $12-21-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $12-21-02-0001.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 - "disable-show" - $Sum12210100031221020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0013 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0013.Button,Disable=Invisible,$Sum1201010013) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO ETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Proses Semulajadi Panggang Ringan Aroma: Strawberi, Oren, Bungaan - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0013.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0013.Button - StringFmt( $12-01-01-0013.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010013 = "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 $Sum1201010013 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0013.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 - "disable-show" - $Sum1201010013 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0020 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0020.Button,Disable=Invisible,$Sum1201010020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - ESPRESSO BLUE DADDY - เอสเพรสโซ่ช็อต \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Proses Cucian. Aroma: Bluberi & Bungaan - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0020.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0020.Button - StringFmt( $12-01-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010020 = "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 $Sum1201010020 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0020.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 - "disable-show" - $Sum1201010020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0022 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0022.Button,Disable=Invisible,$Sum1201010022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - ESPRESSO MOZART - เอสเพรสโซ่ช็อต \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0022.Button - StringFmt( $12-01-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010022 = "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 $Sum1201010022 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0022.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 - "disable-show" - $Sum1201010022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0024 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0024.Button,Disable=Invisible,$Sum1201010024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - ESPRESSO SNOW WHITE - เอสเพรสโซ่ช็อต \nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Proses Anaerobik Aroma: Jasmin & Madu - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0024.Button - StringFmt( $12-01-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010024 = "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 $Sum1201010024 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0024.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 - "disable-show" - $Sum1201010024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0026 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0026.Button,Disable=Invisible,$Sum1201010026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - WHISKY DUDE \nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - WHISKY DUDE \nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - ESPRESSO WHISKY DUDE - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Penapaian Tong Sherry Yang Telah Dibasuh Nota: Wiski & Vanila - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0026.Button - StringFmt( $12-01-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010026 = "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 $Sum1201010026 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0026.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 - "disable-show" - $Sum1201010026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0028 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0028.Button,Disable=Invisible,$Sum1201010028) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - ESPRESSO PIC - เอสเพรสโซ่ช็อต \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Proses Penuaan Dalam Tong Aroma: Pic, teh, Coklat - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0028.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0028.Button - StringFmt( $12-01-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010028 = "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 $Sum1201010028 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0028.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 - "disable-show" - $Sum1201010028 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0033 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0033.Button,Disable=Invisible,$Sum1201010033) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - ESPRESSO AYU TULIN - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Proses Light Roast Natural. Aroma: Bungaan & Buah-buahan Tropika - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0033.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0033.Button - StringFmt( $12-01-01-0033.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010033 = "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 $Sum1201010033 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0033.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 - "disable-show" - $Sum1201010033 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0036 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0036.Button,Disable=Invisible,$Sum1201010036) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Proses Light Roast Natural. Aroma: Lemon, Pic, Madu, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0036.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0036.Button - StringFmt( $12-01-01-0036.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010036 = "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 $Sum1201010036 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0036.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 - "disable-show" - $Sum1201010036 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0037 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0037.Button,Disable=Invisible,$Sum1201010037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ESPRESSO ROSALYN - เอสเพรสโซ่ช็อต \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Proses Light Roast Natural. Aroma: Ros Pink & Beri - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0037.Button - StringFmt( $12-01-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010037 = "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 $Sum1201010037 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0037.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 - "disable-show" - $Sum1201010037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0014 12-01-02-0011 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0014.Button,12-01-02-0011.Button,Disable=Invisible,$Sum12010100141201020011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO ETHIOPIA GUJI - อเมริกาโน \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Proses Light Roast Natural. Aroma: Strawberi, Oren & Bungaan - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0014.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0014.Button - StringFmt( $12-01-01-0014.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0011.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0011.Button - StringFmt( $12-01-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100141201020011 = "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 $Sum12010100141201020011 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0014.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0011.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 - "disable-show" - $Sum12010100141201020011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0019 12-01-02-0019 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0019.Button,12-01-02-0019.Button,Disable=Invisible,$Sum12010100191201020019) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - AMERICANO BLUE DADDY - อเมริกาโน \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Proses Cucian. Aroma: Bluberi & Bungaan - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0019.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0019.Button - StringFmt( $12-01-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0019.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0019.Button - StringFmt( $12-01-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100191201020019 = "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 $Sum12010100191201020019 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0019.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0019.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 - "disable-show" - $Sum12010100191201020019 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0021 12-01-02-0021 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0021.Button,12-01-02-0021.Button,Disable=Invisible,$Sum12010100211201020021) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nAMERICANO - อเมริกาโน \nMOZART - MOZART \nAMERICANO - อเมริกาโน \nMOZART - AMERICANO MOZART - อเมริกาโน \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0021.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0021.Button - StringFmt( $12-01-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0021.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0021.Button - StringFmt( $12-01-02-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100211201020021 = "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 $Sum12010100211201020021 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0021.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0021.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 - "disable-show" - $Sum12010100211201020021 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0025 12-01-02-0025 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0025.Button,12-01-02-0025.Button,Disable=Invisible,$Sum12010100251201020025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - WHISKY DUDE \nAMERICANO - อเมริกาโน \nWHISKY DUDE - WHISKY DUDE \nAMERICANO - อเมริกาโน \nWHISKY DUDE - AMERICANO WHISKY DUDE - อเมริกาโน \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Penapaian Tong Sherry Yang Telah Dibasuh Nota: Wiski & Vanila - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0025.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0025.Button - StringFmt( $12-01-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0025.Button - StringFmt( $12-01-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100251201020025 = "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 $Sum12010100251201020025 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0025.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0025.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 - "disable-show" - $Sum12010100251201020025 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0023 12-01-02-0023 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0023.Button,12-01-02-0023.Button,Disable=Invisible,$Sum12010100231201020023) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - AMERICANO SNOW WHITE - อเมริกาโน\nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Proses Anaerobik Aroma: Jasmin & Madu - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0023.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0023.Button - StringFmt( $12-01-01-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0023.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0023.Button - StringFmt( $12-01-02-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100231201020023 = "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 $Sum12010100231201020023 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0023.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0023.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 - "disable-show" - $Sum12010100231201020023 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0044 12-01-02-0044 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0044.Button,12-01-02-0044.Button,Disable=Invisible,$Sum12010100441201020044) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - AMERICANO CHOPIN - อเมริกาโน \nCHOPIN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0044.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0044.Button - StringFmt( $12-01-01-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0044.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0044.Button - StringFmt( $12-01-02-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100441201020044 = "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 $Sum12010100441201020044 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0044.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0044.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 - "disable-show" - $Sum12010100441201020044 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0047 12-01-02-0047 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0047.Button,12-01-02-0047.Button,Disable=Invisible,$Sum12010100471201020047) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - AMERICANO MANDARIN - อเมริกาโน \nMANDARINE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Panggang Ringan. Nota: Bunga Oren, Madu, Karamel, Bar Coklat - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0047.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0047.Button - StringFmt( $12-01-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0047.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0047.Button - StringFmt( $12-01-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100471201020047 = "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 $Sum12010100471201020047 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0047.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100471201020047 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0050 12-01-02-0050 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0050.Button,12-01-02-0050.Button,Disable=Invisible,$Sum12010100501201020050) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - AMERICANO OPUS ONE - อเมริกาโน \nOPUS ONE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Panggang Ringan. Nota: Jeli Anggur, Pai Epal, Walnut, Pudina - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0050.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0050.Button - StringFmt( $12-01-01-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0050.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0050.Button - StringFmt( $12-01-02-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100501201020050 = "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 $Sum12010100501201020050 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0050.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0050.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 - "disable-show" - $Sum12010100501201020050 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0027 12-01-02-0027 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0027.Button,12-01-02-0027.Button,Disable=Invisible,$Sum12010100271201020027) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - AMERICANO PIC - อเมริกาโน \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Proses Penuaan Dalam Tong. Aroma: Pic, Teh, Coklat - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0027.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0027.Button - StringFmt( $12-01-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0027.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0027.Button - StringFmt( $12-01-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100271201020027 = "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 $Sum12010100271201020027 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0027.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0027.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 - "disable-show" - $Sum12010100271201020027 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0032 12-01-02-0032 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0032.Button,12-01-02-0032.Button,Disable=Invisible,$Sum12010100321201020032) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - AMERICANO AYU TULIN - อเมริกาโน \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Proses Light Roast Natural. Aroma: Bungaan & Buah-buahan Tropika - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0032.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0032.Button - StringFmt( $12-01-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0032.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0032.Button - StringFmt( $12-01-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100321201020032 = "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 $Sum12010100321201020032 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0032.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100321201020032 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0035 12-01-02-0035 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0035.Button,12-01-02-0035.Button,Disable=Invisible,$Sum12010100351201020035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - AMERICANO GEISHA - อเมริกาโน \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Proses Light Roast Natural. Aroma: Lemon, Pic, Madu, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0035.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0035.Button - StringFmt( $12-01-01-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0035.Button - StringFmt( $12-01-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100351201020035 = "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 $Sum12010100351201020035 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0035.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0035.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 - "disable-show" - $Sum12010100351201020035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0038 12-01-02-0038 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0038.Button,12-01-02-0038.Button,Disable=Invisible,$Sum12010100381201020038) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - AMERICANO ROSALYN - อเมริกาโน \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Proses Light Roast Natural. Aroma: Ros Pink & Beri - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0038.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0038.Button - StringFmt( $12-01-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0038.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0038.Button - StringFmt( $12-01-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100381201020038 = "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 $Sum12010100381201020038 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0038.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100381201020038 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0004 12-01-02-0002 12-01-03-0002 - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0004.Button,12-01-02-0002.Button,12-01-03-0002.Button,Disable=Invisible,$Sum120101000412010200021201030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - LATTE - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Susu - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0004.Button - StringFmt( $12-01-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0002.Button - StringFmt( $12-01-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-01-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-03-0002.Button - StringFmt( $12-01-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120101000412010200021201030002 = "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 $Sum120101000412010200021201030002 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $12-01-03-0002.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 - "disable-show" - $Sum120101000412010200021201030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201003712020200371202030037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha, Susu - ชาเขียวคั่ว และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201003712020200371202030037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201002612020200261202030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Teh Hijau, Susu, Gula, Ais - ชาเชียว นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201002612020200261202030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201002412020200241202030024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - THAI MILK TEA - ชานมไทย - THAI MILK TEA - ชานมไทย - TEH SUSU THAI - ชานมไทย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Teh Thai, Gula, Susu - ชาไทย น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201002412020200241202030024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0002 12-03-02-0002 12-03-03-0002 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0002.Button,12-03-02-0002.Button,12-03-03-0002.Button,Disable=Invisible,$Sum120301000212030200021203030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - COCOA - โกโก้ - COCOA - โกโก้ - KOKO - โกโก้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Susu, Koko, Gula - โกโก้ นมและน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0002.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0002.Button - StringFmt( $12-03-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0002.Button - StringFmt( $12-03-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0002.Button - StringFmt( $12-03-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301000212030200021203030002 = "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 $Sum120301000212030200021203030002 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0002.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-03-0002.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 - "disable-show" - $Sum120301000212030200021203030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0001 12-03-02-0001 12-03-03-0001 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0001.Button,12-03-02-0001.Button,12-03-03-0001.Button,Disable=Invisible,$Sum120301000112030200011203030001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CARAMEL MILK - นมคาราเมล - CARAMEL MILK - นมคาราเมล - SUSU KARAMEL - นมคาราเมล - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Susu, Sirap Karamel - นม น้ำเชื่อมคาราเมล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0001.Button - StringFmt( $12-03-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0001.Button - StringFmt( $12-03-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0001.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0001.Button - StringFmt( $12-03-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301000112030200011203030001 = "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 $Sum120301000112030200011203030001 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0001.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0001.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum120301000112030200011203030001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-03-02-0006 12-03-03-0006 - - 33 - 22 - 225 - 296 - Flag( 12-03-02-0006.Button,12-03-03-0006.Button,Disable=Invisible,$Sum12030200061203030006) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PINK MILK - นมชมพู - PINK MILK - นมชมพู - SUSU PINK - นมชมพู - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Sirap Salak, Susu, Gula - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0006.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0006.Button - StringFmt( $12-03-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0006.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0006.Button - StringFmt( $12-03-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12030200061203030006 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0006.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum12030200061203030006 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0011 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0011.Button,Disable=Invisible,$Sum1203030011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - SMOOTHIE\nSUSU STRAWBERI - นมสตอเบอร์รี่ปั่น - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Susu, Sirap Strawberi - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0011.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0011.Button - StringFmt( $12-03-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030011 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0022 12-03-02-0022 12-03-03-0022 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0022.Button,12-03-02-0022.Button,12-03-03-0022.Button,Disable=Invisible,$Sum120301002212030200221203030022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON MILK - นมเมล่อน - MELON MILK - นมเมล่อน - SUSU MELON - นมเมล่อน - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Susu, Sirap Melon - นม และ น้ำเชื่อมเมล่อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0022.Button - StringFmt( $12-03-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0022.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0022.Button - StringFmt( $12-03-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0022.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0022.Button - StringFmt( $12-03-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301002212030200221203030022 = "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 $Sum120301002212030200221203030022 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0022.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0022.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum120301002212030200221203030022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0009 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0009.Button,Disable=Invisible,$Sum1203030009) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OREO SMOOTHIE \nVOLCANO - โอริโอ้ปั่นภูเขาไฟ - OREO SMOOTHIE \nVOLCANO - โอริโอ้ปั่นภูเขาไฟ - SMOOTHIE\nOREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Susu, Gula, Oreo - นม น้ำตาล โอริโอ้ \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0009.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0009.Button - StringFmt( $12-03-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030009 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-03-0009.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 - "disable-show" - $Sum1203030009 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0020 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0020.Button,Disable=Invisible,$Sum1203030020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - SMOOTHIE\nOVALTINE VOLCANO - โอวัลตินปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Gula, Susu - โอวัลติน น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0020.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0020.Button - StringFmt( $12-03-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030020 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0007 12-05-03-0007 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0007.Button,12-05-03-0007.Button,Disable=Invisible,$Sum12050200071205030007) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI - เป็ปซี่น้ำแข็ง - PEPSI - เป็ปซี่น้ำแข็ง - PEPSI - เป็ปซี่น้ำแข็ง - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi, Ice - เป๊ปซี่ - Pepsi, Ice - เป๊ปซี่ - Pepsi, Ais - เป๊ปซี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0007.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0007.Button - StringFmt( $12-05-02-0007.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0007.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0007.Button - StringFmt( $12-05-03-0007.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200071205030007 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0007.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-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 - "disable-show" - $Sum12050200071205030007 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0046 12-05-03-0046 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0046.Button,12-05-03-0046.Button,Disable=Invisible,$Sum12050200461205030046) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI PLUM - เป๊ปซี่บ๊วย - PEPSI PLUM - เป๊ปซี่บ๊วย - PEPSI PLUM - เป๊ปซี่บ๊วย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi, Ume Syrup & Ice - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - Pepsi, Ume Syrup & Ice - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - Pepsi, Sirap Ume, Ais - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0046.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0046.Button - StringFmt( $12-05-02-0046.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0046.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0046.Button - StringFmt( $12-05-03-0046.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200461205030046 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0046.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-03-0046.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 - "disable-show" - $Sum12050200461205030046 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0035 12-05-03-0035 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0035.Button,12-05-03-0035.Button,Disable=Invisible,$Sum12050200351205030035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - TAO POWER \nDRINK SODA - เต่าทรงพลังโซดา - TAO POWER \nDRINK SODA - เต่าทรงพลังโซดา - SODA TAO POWER - เต่าทรงพลังโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Energy drink, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - Energy drink, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - Minuman Bervitamin, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0035.Button - StringFmt( $12-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0035.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0035.Button - StringFmt( $12-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200351205030035 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0035.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-03-0035.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 - "disable-show" - $Sum12050200351205030035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0025 12-05-03-0025 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0025.Button,12-05-03-0025.Button,Disable=Invisible,$Sum12050200251205030025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PLUM \nLIMENADE SODA - บ๊วยมะนาวโซดา - PLUM \nLIMENADE SODA - บ๊วยมะนาวโซดา - SODA PLUM LIMAU - บ๊วยมะนาวโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Sirap Ume, Sirap Limau, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0025.Button - StringFmt( $12-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0025.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0025.Button - StringFmt( $12-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200251205030025 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0025.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-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 - "disable-show" - $Sum12050200251205030025 - - 000013 - - center-vertical-horizontal - - - -; Cart - - - - - - - - -; -; -; - -; Sub-button for 4 random menu - -; -; -; - - - - 91 - 635 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandMilkButtonEnable - text_unavailable - center-vertical-horizontal - - - - - 349 - 635 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandTeaButtonEnable - text_unavailable - center-vertical-horizontal - - - - - - 91 - 953 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandCoffButtonEnable - text_unavailable - center-vertical-horizontal - - - - - 349 - 953 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandAllButtonEnable - text_unavailable - center-vertical-horizontal - - -; -; -; -; -; Big button for mys event -; -; -; - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - - - - - diff --git a/inter/tha/xml/multi/event/promotion_anniversary_1st.lxml b/inter/tha/xml/multi/event/promotion_anniversary_1st.lxml deleted file mode 100644 index 8476016c..00000000 --- a/inter/tha/xml/multi/event/promotion_anniversary_1st.lxml +++ /dev/null @@ -1,12166 +0,0 @@ - - - - "Enable" - 1080 - 1920 -; "0xeae6e1" - SoundVolume - - ; On open - ;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_default_init.lxml" - - Var Menu1Selected = "PressForever" - - Var OreoBigButtonEnable = "Enable" - - If $12-01-01-0001.Button = "Invisible" Then - Var esp102101001Enable = "Invisible" - Var esp122101001Enable = "Enable" - - Else - Var esp102101001Enable = "Enable" - Var esp122101001Enable = "Invisible" - - EndIf - - SAVELOG PreviseXMLFileName2 - - Var Timeout = 0 - - If show_eng = "true" Then - - Var text_unavailable = "UNAVAILABLE###size=16" - Else - Var text_unavailable = "หมด###size=32" - - EndIf - - ;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_new_menu.lxml" - - - - - -;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_new.lxml" - - - 16 - 10 - 497 - 1080 - "auto" - "Vertical" - 4 - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - ; ==================> Len = 3 - ; - 51-05-02-0062 51-05-03-0062 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0062.Button,51-05-03-0062.Button,$Sum51050200625105030062) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI Max - เป็ปซี่น้ำแข็ง - PEPSI Max - เป็ปซี่น้ำแข็ง - - เป็ปซี่น้ำแข็ง - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi Max, Ice - เป๊ปซี่ - Pepsi Max, Ice - เป๊ปซี่ - - เป๊ปซี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0062.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0062.Button - StringFmt( $51-05-02-0062.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0062.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0062.Button - StringFmt( $51-05-03-0062.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200625105030062 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0062.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0062.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 - "disable-show" - $Sum51050200625105030062 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0035 51-05-03-0035 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0035.Button,51-05-03-0035.Button,$Sum51050200355105030035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - FLYING TURTLE\nENERGY DRINK SODA - เต่าทรงพลังโซดา - FLYING TURTLE\nENERGY DRINK SODA - เต่าทรงพลังโซดา - - เต่าทรงพลังโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Energy drink, Soda, Ice - เครื่องดื่มเต่าทรงพลัง โซดา - Energy drink, Soda, Ice - เครื่องดื่มเต่าทรงพลัง โซดา - - เครื่องดื่มเต่าทรงพลัง โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0035.Button - StringFmt( $51-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0035.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0035.Button - StringFmt( $51-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200355105030035 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0035.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0035.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 - "disable-show" - $Sum51050200355105030035 - - 000013 - - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - ; ==================> Len = 3 - ; 51-21-01-0003 51-21-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0003.Button,51-21-02-0001.Button,Disable=Invisible,$Sum51210100035121020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LONG BLACK - กาแฟดำ(อเมริกาโน) - LONG BLACK - กาแฟดำ(อเมริกาโน) - - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0003.Button - StringFmt( $51-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-21-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-02-0001.Button - StringFmt( $51-21-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51210100035121020001 = "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 $Sum51210100035121020001 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $51-21-02-0001.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 - "disable-show" - $Sum51210100035121020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0026 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0026.Button,Disable=Invisible,$Sum5103030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0026.Button - StringFmt( $51-03-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030026 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0001 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0001.Button,$Sum5101010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0001.Button - StringFmt( $51-01-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010001 = "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 $Sum5101010001 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0001.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 - "disable-show" - $Sum5101010001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-21-01-0001 - - - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0001.Button,Disable=Invisible,$Sum5121010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0001.Button - StringFmt( $51-21-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5121010001 = "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 $Sum5121010001 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0001.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 - "disable-show" - $Sum5121010001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0003 51-01-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0003.Button,51-01-02-0001.Button,Disable=Invisible,$Sum51010100035101020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LONG BLACK - กาแฟดำ(อเมริกาโน) - LONG BLACK - กาแฟดำ(อเมริกาโน) - - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0003.Button - StringFmt( $51-01-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0001.Button - StringFmt( $51-01-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100035101020001 = "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 $Sum51010100035101020001 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0001.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 - "disable-show" - $Sum51010100035101020001 - - 000013 - - center-vertical-horizontal - - - - ; ==================> Len = 3 - ; 51-01-01-0013 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0013.Button,Disable=Invisible,$Sum5101010013) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0013.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0013.Button - StringFmt( $51-01-01-0013.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010013 = "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 $Sum5101010013 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0013.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 - "disable-show" - $Sum5101010013 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0020 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0020.Button,Disable=Invisible,$Sum5101010020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - - เอสเพรสโซ่ช็อต \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0020.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0020.Button - StringFmt( $51-01-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010020 = "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 $Sum5101010020 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0020.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 - "disable-show" - $Sum5101010020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0022 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0022.Button,Disable=Invisible,$Sum5101010022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - - เอสเพรสโซ่ช็อต \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0022.Button - StringFmt( $51-01-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010022 = "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 $Sum5101010022 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0022.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 - "disable-show" - $Sum5101010022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0024 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0024.Button,Disable=Invisible,$Sum5101010024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - - เอสเพรสโซ่ช็อต \nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0024.Button - StringFmt( $51-01-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010024 = "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 $Sum5101010024 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0024.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 - "disable-show" - $Sum5101010024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0026 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0026.Button,Disable=Invisible,$Sum5101010026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HONDURAS\nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - HONDURAS\nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0026.Button - StringFmt( $51-01-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010026 = "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 $Sum5101010026 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0026.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 - "disable-show" - $Sum5101010026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0028 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0028.Button,Disable=Invisible,$Sum5101010028) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - - เอสเพรสโซ่ช็อต \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0028.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0028.Button - StringFmt( $51-01-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010028 = "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 $Sum5101010028 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0028.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 - "disable-show" - $Sum5101010028 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0033 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0033.Button,Disable=Invisible,$Sum5101010033) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0033.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0033.Button - StringFmt( $51-01-01-0033.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010033 = "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 $Sum5101010033 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0033.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 - "disable-show" - $Sum5101010033 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0036 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0036.Button,Disable=Invisible,$Sum5101010036) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - - เอสเพรสโซ่ช็อต \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0036.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0036.Button - StringFmt( $51-01-01-0036.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010036 = "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 $Sum5101010036 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0036.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 - "disable-show" - $Sum5101010036 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0037 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0037.Button,Disable=Invisible,$Sum5101010037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - - เอสเพรสโซ่ช็อต \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0037.Button - StringFmt( $51-01-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010037 = "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 $Sum5101010037 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0037.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 - "disable-show" - $Sum5101010037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0014 51-01-02-0011 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0014.Button,51-01-02-0011.Button,Disable=Invisible,$Sum51010100145101020011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - - อเมริกาโน \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0014.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0014.Button - StringFmt( $51-01-01-0014.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0011.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0011.Button - StringFmt( $51-01-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100145101020011 = "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 $Sum51010100145101020011 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0014.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0011.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 - "disable-show" - $Sum51010100145101020011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0019 51-01-02-0019 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0019.Button,51-01-02-0019.Button,Disable=Invisible,$Sum51010100195101020019) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - - อเมริกาโน \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0019.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0019.Button - StringFmt( $51-01-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0019.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0019.Button - StringFmt( $51-01-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100195101020019 = "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 $Sum51010100195101020019 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0019.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0019.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 - "disable-show" - $Sum51010100195101020019 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0021 51-01-02-0021 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0021.Button,51-01-02-0021.Button,Disable=Invisible,$Sum51010100215101020021) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nAMERICANO - อเมริกาโน \nMOZART - MOZART \nAMERICANO - อเมริกาโน \nMOZART - - อเมริกาโน \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0021.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0021.Button - StringFmt( $51-01-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0021.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0021.Button - StringFmt( $51-01-02-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100215101020021 = "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 $Sum51010100215101020021 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0021.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0021.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 - "disable-show" - $Sum51010100215101020021 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0025 51-01-02-0025 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0025.Button,51-01-02-0025.Button,Disable=Invisible,$Sum51010100255101020025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HONDURAS\nAMERICANO - อเมริกาโน \nWHISKY DUDE - HONDURAS\nAMERICANO - อเมริกาโน \nWHISKY DUDE - - อเมริกาโน \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0025.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0025.Button - StringFmt( $51-01-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0025.Button - StringFmt( $51-01-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100255101020025 = "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 $Sum51010100255101020025 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0025.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0025.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 - "disable-show" - $Sum51010100255101020025 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0023 51-01-02-0023 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0023.Button,51-01-02-0023.Button,Disable=Invisible,$Sum51010100235101020023) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - - อเมริกาโน\nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0023.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0023.Button - StringFmt( $51-01-01-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0023.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0023.Button - StringFmt( $51-01-02-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100235101020023 = "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 $Sum51010100235101020023 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0023.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0023.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 - "disable-show" - $Sum51010100235101020023 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0044 51-01-02-0044 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0044.Button,51-01-02-0044.Button,Disable=Invisible,$Sum51010100445101020044) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - - อเมริกาโน \nCHOPIN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0044.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0044.Button - StringFmt( $51-01-01-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0044.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0044.Button - StringFmt( $51-01-02-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100445101020044 = "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 $Sum51010100445101020044 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0044.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0044.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 - "disable-show" - $Sum51010100445101020044 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0047 51-01-02-0047 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0047.Button,51-01-02-0047.Button,Disable=Invisible,$Sum51010100475101020047) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - - อเมริกาโน \nMANDARINE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0047.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0047.Button - StringFmt( $51-01-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0047.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0047.Button - StringFmt( $51-01-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100475101020047 = "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 $Sum51010100475101020047 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0047.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100475101020047 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0050 51-01-02-0050 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0050.Button,51-01-02-0050.Button,Disable=Invisible,$Sum51010100505101020050) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - - อเมริกาโน \nOPUS ONE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0050.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0050.Button - StringFmt( $51-01-01-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0050.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0050.Button - StringFmt( $51-01-02-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100505101020050 = "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 $Sum51010100505101020050 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0050.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0050.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 - "disable-show" - $Sum51010100505101020050 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0027 51-01-02-0027 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0027.Button,51-01-02-0027.Button,Disable=Invisible,$Sum51010100275101020027) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - - อเมริกาโน \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0027.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0027.Button - StringFmt( $51-01-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0027.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0027.Button - StringFmt( $51-01-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100275101020027 = "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 $Sum51010100275101020027 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0027.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0027.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 - "disable-show" - $Sum51010100275101020027 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0032 51-01-02-0032 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0032.Button,51-01-02-0032.Button,Disable=Invisible,$Sum51010100325101020032) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - - อเมริกาโน \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0032.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0032.Button - StringFmt( $51-01-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0032.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0032.Button - StringFmt( $51-01-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100325101020032 = "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 $Sum51010100325101020032 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0032.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100325101020032 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0035 51-01-02-0035 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0035.Button,51-01-02-0035.Button,Disable=Invisible,$Sum51010100355101020035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - - อเมริกาโน \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0035.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0035.Button - StringFmt( $51-01-01-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0035.Button - StringFmt( $51-01-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100355101020035 = "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 $Sum51010100355101020035 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0035.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0035.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 - "disable-show" - $Sum51010100355101020035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0038 51-01-02-0038 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0038.Button,51-01-02-0038.Button,Disable=Invisible,$Sum51010100385101020038) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - - อเมริกาโน \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0038.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0038.Button - StringFmt( $51-01-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0038.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0038.Button - StringFmt( $51-01-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100385101020038 = "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 $Sum51010100385101020038 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0038.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100385101020038 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0004 51-01-02-0002 51-01-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0004.Button,51-01-02-0002.Button,51-01-03-0002.Button,Disable=Invisible,$Sum510101000451010200025101030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0004.Button - StringFmt( $51-01-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0002.Button - StringFmt( $51-01-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-01-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-03-0002.Button - StringFmt( $51-01-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510101000451010200025101030002 = "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 $Sum510101000451010200025101030002 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-01-03-0002.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 - "disable-show" - $Sum510101000451010200025101030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-21-01-0004 51-21-02-0002 51-21-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0004.Button,51-21-02-0002.Button,51-21-03-0002.Button,Disable=Invisible,$Sum512101000451210200025121030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0004.Button - StringFmt( $51-21-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-21-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-02-0002.Button - StringFmt( $51-21-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-21-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-03-0002.Button - StringFmt( $51-21-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum512101000451210200025121030002 = "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 $Sum512101000451210200025121030002 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $51-21-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-21-03-0002.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 - "disable-show" - $Sum512101000451210200025121030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0037 51-02-02-0037 51-02-03-0037 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0037.Button,51-02-02-0037.Button,51-02-03-0037.Button,Disable=Invisible,$Sum510201003751020200375102030037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - - โฮจิฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha and milk - ชาเขียวคั่ว และ นม - - ชาเขียวคั่ว และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0037.Button - StringFmt( $51-02-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0037.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0037.Button - StringFmt( $51-02-02-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0037.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0037.Button - StringFmt( $51-02-03-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201003751020200375102030037 = "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 $Sum510201003751020200375102030037 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0037.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0037.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201003751020200375102030037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0026 51-02-02-0026 51-02-03-0026 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0026.Button,51-02-02-0026.Button,51-02-03-0026.Button,Disable=Invisible,$Sum510201002651020200265102030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - - มัทฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - - ชาเชียว นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0026.Button - StringFmt( $51-02-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0026.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0026.Button - StringFmt( $51-02-02-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0026.Button - StringFmt( $51-02-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201002651020200265102030026 = "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 $Sum510201002651020200265102030026 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0026.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0026.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201002651020200265102030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0024 51-02-02-0024 51-02-03-0024 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0024.Button,51-02-02-0024.Button,51-02-03-0024.Button,Disable=Invisible,$Sum510201002451020200245102030024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - THAI MILK TEA - ชานมไทย - THAI MILK TEA - ชานมไทย - - ชานมไทย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - - ชาไทย น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0024.Button - StringFmt( $51-02-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0024.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0024.Button - StringFmt( $51-02-02-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0024.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0024.Button - StringFmt( $51-02-03-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201002451020200245102030024 = "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 $Sum510201002451020200245102030024 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0024.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0024.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201002451020200245102030024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0002 51-03-02-0002 51-03-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0002.Button,51-03-02-0002.Button,51-03-03-0002.Button,Disable=Invisible,$Sum510301000251030200025103030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOCOLATE - โกโก้ - CHOCOLATE - โกโก้ - - โกโก้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - - โกโก้ นมและน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0002.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0002.Button - StringFmt( $51-03-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0002.Button - StringFmt( $51-03-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0002.Button - StringFmt( $51-03-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301000251030200025103030002 = "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 $Sum510301000251030200025103030002 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0002.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-03-0002.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 - "disable-show" - $Sum510301000251030200025103030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0001 51-03-02-0001 51-03-03-0001 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0001.Button,51-03-02-0001.Button,51-03-03-0001.Button,Disable=Invisible,$Sum510301000151030200015103030001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CARAMEL MILK - นมคาราเมล - CARAMEL MILK - นมคาราเมล - - นมคาราเมล - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - - นม น้ำเชื่อมคาราเมล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0001.Button - StringFmt( $51-03-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0001.Button - StringFmt( $51-03-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0001.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0001.Button - StringFmt( $51-03-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301000151030200015103030001 = "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 $Sum510301000151030200015103030001 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0001.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0001.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum510301000151030200015103030001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-03-02-0006 51-03-03-0006 - - 33 - 22 - 225 - 296 - Flag( 51-03-02-0006.Button,51-03-03-0006.Button,Disable=Invisible,$Sum51030200065103030006) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PINK MILK - นมชมพู - PINK MILK - นมชมพู - - นมชมพู - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0006.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0006.Button - StringFmt( $51-03-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0006.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0006.Button - StringFmt( $51-03-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51030200065103030006 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0006.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum51030200065103030006 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0011 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0011.Button,Disable=Invisible,$Sum5103030011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - - นมสตอเบอร์รี่ปั่น - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0011.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0011.Button - StringFmt( $51-03-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030011 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0088 51-05-03-0088 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0088.Button,51-05-03-0088.Button,Disable=Invisible,$Sum51050200885105030088) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON - เมล่อนโซดา - MELON - เมล่อนโซดา - - เมล่อนโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Melon Syrup, Ice - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - Melon Syrup, Ice - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0088.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0088.Button - StringFmt( $51-05-02-0088.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0088.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0088.Button - StringFmt( $51-05-03-0088.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200885105030088 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0088.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0088.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 - "disable-show" - $Sum51050200885105030088 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0022 51-03-02-0022 51-03-03-0022 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0022.Button,51-03-02-0022.Button,51-03-03-0022.Button,Disable=Invisible,$Sum510301002251030200225103030022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON MILK - นมเมล่อน - MELON MILK - นมเมล่อน - - นมเมล่อน - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - - นม และ น้ำเชื่อมเมล่อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0022.Button - StringFmt( $51-03-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0022.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0022.Button - StringFmt( $51-03-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0022.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0022.Button - StringFmt( $51-03-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301002251030200225103030022 = "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 $Sum510301002251030200225103030022 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0022.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0022.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum510301002251030200225103030022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0089 51-05-03-0089 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0089.Button,51-05-03-0089.Button,Disable=Invisible,$Sum51050200895105030089) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - YUZU - ยูซุโซดา - YUZU - ยูซุโซดา - - ยูซุโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Yuzu Syrup, Ice - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - Yuzu Syrup, Ice - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0089.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0089.Button - StringFmt( $51-05-02-0089.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0089.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0089.Button - StringFmt( $51-05-03-0089.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200895105030089 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0089.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0089.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 - "disable-show" - $Sum51050200895105030089 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0009 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0009.Button,Disable=Invisible,$Sum5103030009) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - OREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - - โอริโอ้ปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - - นม น้ำตาล โอริโอ้ \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0009.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0009.Button - StringFmt( $51-03-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030009 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-03-0009.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 - "disable-show" - $Sum5103030009 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0020 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0020.Button,Disable=Invisible,$Sum5103030020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - - โอวัลตินปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - - โอวัลติน น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0020.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0020.Button - StringFmt( $51-03-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030020 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0076 - - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0076.Button,Disable=Invisible,$Sum5105020076) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI Max YUZU - เป๊ปซี่ยูซุ - PEPSI Max YUZU - เป๊ปซี่ยูซุ - - เป๊ปซี่ยูซุ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi Max, Yuzu Syrup& Ice - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - Pepsi Max, Yuzu Syrup& Ice - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0076.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0076.Button - StringFmt( $51-05-02-0076.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5105020076 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0076.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 - "disable-show" - $Sum5105020076 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0025 51-05-03-0025 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0025.Button,51-05-03-0025.Button,Disable=Invisible,$Sum51050200255105030025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PLUM \nSPARKLING LIMENADE - บ๊วยมะนาวโซดา - PLUM \nSPARKLING LIMENADE - บ๊วยมะนาวโซดา - - บ๊วยมะนาวโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0025.Button - StringFmt( $51-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0025.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0025.Button - StringFmt( $51-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200255105030025 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0025.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-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 - "disable-show" - $Sum51050200255105030025 - - 000013 - - center-vertical-horizontal - - - -; Cart - - - - - - - - - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - - - - - - diff --git a/inter/tha/xml/multi/event/promotion_config.json b/inter/tha/xml/multi/event/promotion_config.json deleted file mode 100644 index 46803fb0..00000000 --- a/inter/tha/xml/multi/event/promotion_config.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "recommendPath": "/sdcard/coffeevending/taobin_project/xml/page_catalog_group_recommend.xml", - "dummyLayoutPath": "/sdcard/coffeevending/taobin_project/xml/dummy_layout.inc", - "trickerYamlPath": "/sdcard/coffeevending/taobin_project/xml/event/tricker.yaml", - "outDir": "/sdcard/coffeevending/taobin_project/xml/event/", - "templates": [ - { - "name": "promotion_pepsi", - "path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template1.inc", - "onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick1.inc", - "imagesTemplate": { - "normal_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png", - "normal_thai": "ROOT/taobin_project/image/event/welcomedrink.png", - "press_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png", - "press_thai": "ROOT/taobin_project/image/event/welcomedrink.png", - "disable_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png", - "disable_thai": "ROOT/taobin_project/image/event/welcomedrink.png" - } - }, - { - "name": "promotion_pepsi_end", - "path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template2.inc", - "onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick2.inc", - "imagesTemplate": { - "normal_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png", - "normal_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png", - "press_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png", - "press_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png", - "disable_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png", - "disable_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png" - - } - }, - { - "name": "promotion_mystery_cup_35", - "path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template3.inc", - "onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick3.inc", - "imagesTemplate": { - "normal_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png", - "normal_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png", - "press_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png", - "press_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png", - "disable_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png", - "disable_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png" - } - } - ] -} \ No newline at end of file diff --git a/inter/tha/xml/multi/event/promotion_onclick1.inc b/inter/tha/xml/multi/event/promotion_onclick1.inc deleted file mode 100644 index 0a67367c..00000000 --- a/inter/tha/xml/multi/event/promotion_onclick1.inc +++ /dev/null @@ -1 +0,0 @@ - Open "ROOT/taobin_project/inter/aus/xml/page_catalog_group_winter_warmers_ignore.lxml" diff --git a/inter/tha/xml/multi/event/promotion_onclick2.inc b/inter/tha/xml/multi/event/promotion_onclick2.inc deleted file mode 100644 index 032521a9..00000000 --- a/inter/tha/xml/multi/event/promotion_onclick2.inc +++ /dev/null @@ -1 +0,0 @@ -; Do nothing diff --git a/inter/tha/xml/multi/event/promotion_onclick3.inc b/inter/tha/xml/multi/event/promotion_onclick3.inc deleted file mode 100644 index 82966ef9..00000000 --- a/inter/tha/xml/multi/event/promotion_onclick3.inc +++ /dev/null @@ -1,320 +0,0 @@ - Var BigButtonEnable = "Invisible" - - DEBUGVAR BigButtonEnable - DEBUGVAR OreoGuarantee - - ; Enable all 4 buttons - Var SubRandMilkButtonEnable = "Enable" - DEBUGVAR SubRandMilkButtonEnable - - Var SubRandTeaButtonEnable = "Enable" - DEBUGVAR SubRandTeaButtonEnable - - Var SubRandCoffButtonEnable = "Enable" - DEBUGVAR SubRandCoffButtonEnable - - Var SubRandAllButtonEnable = "Enable" - DEBUGVAR SubRandAllButtonEnable - - - - - - ; For real, yeah for real - ; All random cup - - Var IndexOfAllRandom = 0 - Var IndexOfMilk = 0 - Var IndexOfTea = 0 - Var IndexOfCoffee = 0 - - Var IndexOfRateupOreoAll = 0 - Var IndexOfRateupOreoMilk = 0 - Var IndexOfRateupOreoTea = 0 - Var IndexOfRateupOreoCoffee = 0 - - ; Oreo smoothie volcano - If $12-99-03-0020.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0020" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0020" - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0020" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0020" - - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Pink milk oreo volcano - If $12-99-03-0021.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0021" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0021" - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0021" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0021" - - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Choco oreo volcano - If $12-99-03-0022.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0022" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0022" - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0022" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0022" - - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Caramel milk oreo volcano - If $12-99-03-0023.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0023" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0023" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0023" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0023" -Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Thai milk tea oreo smoothie - If $12-99-03-0024.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0024" - Var ListOfTea[IndexOfTea] = "12-99-03-0024" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0024" - Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0024" -Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoTea = IndexOfRateupOreoTea + 1 - EndIf - - ; Cafe late oreo smoothie - If $12-99-03-0025.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0025" - Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0025" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfCoffee = IndexOfCoffee + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0025" - Var ListOfOreoCoffee[IndexOfRateupOreoCoffee] = "12-99-03-0025" -Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoCoffee = IndexOfRateupOreoCoffee + 1 - EndIf - - ; Strawberry milk oreo volcano - If $12-99-03-0026.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0026" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0026" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0026" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0026" -Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Melon milk oreo volcano - If $12-99-03-0027.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0027" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0027" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0027" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0027" -Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Bana^2 milk oreo volcano - If $12-99-03-0028.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0028" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0028" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0028" - Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0028" -Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Hojicha oreo volcano - If $12-99-03-0028.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0029" - Var ListOfTea[IndexOfTea] = "12-99-03-0029" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0029" - Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0029" - Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1 - EndIf - - ; Thai milk tea smoothie - If $12-99-03-0030.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0030" - Var ListOfTea[IndexOfTea] = "12-99-03-0030" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - EndIf - - ; Melon milk smoothie - If $12-99-03-0031.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0031" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0031" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - EndIf - - ; Taiwanese tea smoothie - If $12-99-03-0032.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0032" - Var ListOfTea[IndexOfTea] = "12-99-03-0032" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - EndIf - - ; THAI MILK TEA OREO SMOOTHIE - If $12-99-03-0040.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0040" - Var ListOfTea[IndexOfTea] = "12-99-03-0040" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - - Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0040" - Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0040" - Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1 - Var IndexOfRateupOreoTea = IndexOfRateupOreoTea + 1 - EndIf - - ; THAI MILK TEA SMOOTHIE - If $12-99-03-0041.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0041" - Var ListOfTea[IndexOfTea] = "12-99-03-0041" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - EndIf - - - ; Tokyo bana^2 milk smoothie - If $12-99-03-0033.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0033" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0033" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - EndIf - - ; Hojicha smoothie - If $12-99-03-0034.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0034" - Var ListOfTea[IndexOfTea] = "12-99-03-0034" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfTea = IndexOfTea + 1 - EndIf - - ; Cocoa bana^2 smoothie - If $12-99-03-0035.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0035" - Var ListOfMilk[IndexOfMilk] = "12-99-03-0035" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfMilk = IndexOfMilk + 1 - EndIf - - ; Taiwanese tea cafe latte smoothie - If $12-99-03-0036.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0036" - Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0036" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfCoffee = IndexOfCoffee + 1 - EndIf - - ; Melon cafe latte smoothie - If $12-99-03-0037.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0037" - Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0037" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfCoffee = IndexOfCoffee + 1 - EndIf - - ; Taiwanese tea cafe latte smoothie v2 - If $12-99-03-0038.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0038" - Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0038" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfCoffee = IndexOfCoffee + 1 - EndIf - - ; Melon cafe latte smoothie v2 - If $12-99-03-0039.Button = "Enable" Then - Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0039" - Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0039" - Var IndexOfAllRandom = IndexOfAllRandom + 1 - Var IndexOfCoffee = IndexOfCoffee + 1 - EndIf - - - DEBUGVAR IndexOfAllRandom - DEBUGVAR IndexOfCoffee - DEBUGVAR IndexOfMilk - DEBUGVAR IndexOfTea - - DEBUGVAR IndexOfRateupOreoAll - DEBUGVAR IndexOfRateupOreoCoffee - DEBUGVAR IndexOfRateupOreoMilk - DEBUGVAR IndexOfRateupOreoTea - - If IndexOfAllRandom = 0 Then - Var SubRandAllButtonEnable = "Disable" - EndIf - - If IndexOfCoffee = 0 Then - Var SubRandCoffButtonEnable = "Disable" - EndIf - If IndexOfMilk = 0 Then - Var SubRandMilkButtonEnable = "Disable" - EndIf - If IndexOfTea = 0 Then - Var SubRandTeaButtonEnable = "Disable" - EndIf - - - If IndexOfRateupOreoAll = 0 Then - Var SubRandAllButtonEnable = "Disable" - EndIf - - If IndexOfRateupOreoCoffee = 0 Then - Var SubRandCoffButtonEnable = "Disable" - EndIf - If IndexOfRateupOreoMilk = 0 Then - Var SubRandMilkButtonEnable = "Disable" - EndIf - If IndexOfRateupOreoTea = 0 Then - Var SubRandTeaButtonEnable = "Disable" - EndIf - - - - - Var ResultRandomIndex = 0 - - - Refresh diff --git a/inter/tha/xml/multi/event/promotion_pepsi_099.lxml b/inter/tha/xml/multi/event/promotion_pepsi_099.lxml deleted file mode 100644 index b98d0f68..00000000 --- a/inter/tha/xml/multi/event/promotion_pepsi_099.lxml +++ /dev/null @@ -1,12372 +0,0 @@ - - - - "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 Menu1Selected = "PressForever" - - Var OreoBigButtonEnable = "Enable" - - If $12-01-01-0001.Button = "Invisible" Then - Var esp102101001Enable = "Invisible" - Var esp122101001Enable = "Enable" - - Else - Var esp102101001Enable = "Enable" - Var esp122101001Enable = "Invisible" - - EndIf - - SAVELOG PreviseXMLFileName2 - - Var Timeout = 0 - - If show_eng = "true" Then - - Var text_unavailable = "UNAVAILABLE###size=16" - Else - Var text_unavailable = "หมด###size=32" - - EndIf - - - 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 - - Var Timeout = Timeout + 1 - TimerReset - - - - DEBUGVAR LanguageShow - If LanguageShow = "ENG" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option_en/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" - - EndIf - If LanguageShow = "THAI" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2/" - EndIf - ;inter-image - If CountryName = "Malaysia" Then - Var DirImage2 = "ROOT/taobin_project/image/drink_option_myr/" - Var DirImageAlter = "ROOT/taobin_project/image/page3_2_en/" - Var DirImage = "ROOT/taobin_project/image/page3_en" - Var ice_tab_text = "Ice will be ready at " - EndIf - - SAVELOG "EventLanguageOnChange menu -list" - - Refresh - - Var LanguageButtonEnable = "Enable" - Var ButtonLanguageCurrentXPosition = 990 - Var ButtonLanguageCurrentYPosition = 438 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 430 - 38 - OpenInst 3 "ROOT/taobin_project/xml/topview2.xml" - - - - - -; 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 - - - - - - - - 16 - 10 - 497 - 1080 - "auto" - "Vertical" - 4 - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0026.Button,Disable=Invisible,$Sum1203030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Susu Pink\nOreo Volcano - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Sirap Salak, Susu, Gula, Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0026.Button - StringFmt( $12-03-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030026 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030026 - - 000013 - - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - Flag( 12-21-01-0001.Button,Disable=Invisible,$Sum1221010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-21-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-01-0001.Button - StringFmt( $12-21-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1221010001 = "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 $Sum1221010001 = "Disable" Then - STRCONTAIN "ERR" $12-21-01-0001.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 - "disable-show" - $Sum1221010001 - - 000013 - - center-vertical-horizontal - - - ; - - - - ; ==================> Len = 16 - ; - - 12-03-03-0026 - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - - - 16 - 164 - 24 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showthaiText - "น้ำดื่ม" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showthaiText - "น้ำ" - - - 16 - 164 - 22 - 220 - "multi2" - KanitMediumTTF - 0x322B26 - showengText - "DRINKING WATER" - - - 16 - 220 - 14 - 220 - KanitMediumTTF - 0x6F5F51 - showengText - "Water" - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - 50 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0016.Button - - - 115 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0016.Button - StringFmt( $12-05-02-0016.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 - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1205020016 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0016.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" - $Sum1205020016 - text_unavailable - center-vertical-horizontal - - Len = 3 - ; 12-01-01-0003 12-01-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0003.Button,12-01-02-0001.Button,Disable=Invisible,$Sum12010100031201020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - Espresso, Air - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0003.Button - StringFmt( $12-01-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0001.Button - StringFmt( $12-01-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100031201020001 = "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 $Sum12010100031201020001 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0001.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 - "disable-show" - $Sum12010100031201020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-21-01-0003 12-21-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 12-21-01-0003.Button,12-21-02-0001.Button,Disable=Invisible,$Sum12210100031221020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - AMERICANO - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - Espresso, Air - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-21-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-01-0003.Button - StringFmt( $12-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-21-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-21-02-0001.Button - StringFmt( $12-21-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12210100031221020001 = "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 $Sum12210100031221020001 = "Disable" Then - STRCONTAIN "ERR" $12-21-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $12-21-02-0001.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 - "disable-show" - $Sum12210100031221020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0013 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0013.Button,Disable=Invisible,$Sum1201010013) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO ETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Proses Semulajadi Panggang Ringan Aroma: Strawberi, Oren, Bungaan - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0013.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0013.Button - StringFmt( $12-01-01-0013.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010013 = "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 $Sum1201010013 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0013.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 - "disable-show" - $Sum1201010013 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0020 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0020.Button,Disable=Invisible,$Sum1201010020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - ESPRESSO BLUE DADDY - เอสเพรสโซ่ช็อต \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Proses Cucian. Aroma: Bluberi & Bungaan - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0020.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0020.Button - StringFmt( $12-01-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010020 = "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 $Sum1201010020 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0020.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 - "disable-show" - $Sum1201010020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0022 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0022.Button,Disable=Invisible,$Sum1201010022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - ESPRESSO MOZART - เอสเพรสโซ่ช็อต \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0022.Button - StringFmt( $12-01-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010022 = "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 $Sum1201010022 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0022.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 - "disable-show" - $Sum1201010022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0024 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0024.Button,Disable=Invisible,$Sum1201010024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - ESPRESSO SNOW WHITE - เอสเพรสโซ่ช็อต \nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Proses Anaerobik Aroma: Jasmin & Madu - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0024.Button - StringFmt( $12-01-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010024 = "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 $Sum1201010024 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0024.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 - "disable-show" - $Sum1201010024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0026 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0026.Button,Disable=Invisible,$Sum1201010026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - WHISKY DUDE \nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - WHISKY DUDE \nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - ESPRESSO WHISKY DUDE - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Penapaian Tong Sherry Yang Telah Dibasuh Nota: Wiski & Vanila - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0026.Button - StringFmt( $12-01-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010026 = "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 $Sum1201010026 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0026.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 - "disable-show" - $Sum1201010026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0028 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0028.Button,Disable=Invisible,$Sum1201010028) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - ESPRESSO PIC - เอสเพรสโซ่ช็อต \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Proses Penuaan Dalam Tong Aroma: Pic, teh, Coklat - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0028.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0028.Button - StringFmt( $12-01-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010028 = "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 $Sum1201010028 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0028.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 - "disable-show" - $Sum1201010028 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0033 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0033.Button,Disable=Invisible,$Sum1201010033) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - ESPRESSO AYU TULIN - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Proses Light Roast Natural. Aroma: Bungaan & Buah-buahan Tropika - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0033.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0033.Button - StringFmt( $12-01-01-0033.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010033 = "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 $Sum1201010033 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0033.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 - "disable-show" - $Sum1201010033 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0036 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0036.Button,Disable=Invisible,$Sum1201010036) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Proses Light Roast Natural. Aroma: Lemon, Pic, Madu, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0036.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0036.Button - StringFmt( $12-01-01-0036.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010036 = "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 $Sum1201010036 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0036.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 - "disable-show" - $Sum1201010036 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0037 - - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0037.Button,Disable=Invisible,$Sum1201010037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ESPRESSO ROSALYN - เอสเพรสโซ่ช็อต \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Proses Light Roast Natural. Aroma: Ros Pink & Beri - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0037.Button - StringFmt( $12-01-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum1201010037 = "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 $Sum1201010037 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0037.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 - "disable-show" - $Sum1201010037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0014 12-01-02-0011 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0014.Button,12-01-02-0011.Button,Disable=Invisible,$Sum12010100141201020011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO ETHIOPIA GUJI - อเมริกาโน \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Proses Light Roast Natural. Aroma: Strawberi, Oren & Bungaan - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0014.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0014.Button - StringFmt( $12-01-01-0014.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0011.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0011.Button - StringFmt( $12-01-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100141201020011 = "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 $Sum12010100141201020011 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0014.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0011.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 - "disable-show" - $Sum12010100141201020011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0019 12-01-02-0019 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0019.Button,12-01-02-0019.Button,Disable=Invisible,$Sum12010100191201020019) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - AMERICANO BLUE DADDY - อเมริกาโน \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Proses Cucian. Aroma: Bluberi & Bungaan - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0019.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0019.Button - StringFmt( $12-01-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0019.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0019.Button - StringFmt( $12-01-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100191201020019 = "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 $Sum12010100191201020019 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0019.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0019.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 - "disable-show" - $Sum12010100191201020019 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0021 12-01-02-0021 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0021.Button,12-01-02-0021.Button,Disable=Invisible,$Sum12010100211201020021) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nAMERICANO - อเมริกาโน \nMOZART - MOZART \nAMERICANO - อเมริกาโน \nMOZART - AMERICANO MOZART - อเมริกาโน \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0021.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0021.Button - StringFmt( $12-01-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0021.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0021.Button - StringFmt( $12-01-02-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100211201020021 = "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 $Sum12010100211201020021 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0021.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0021.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 - "disable-show" - $Sum12010100211201020021 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0025 12-01-02-0025 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0025.Button,12-01-02-0025.Button,Disable=Invisible,$Sum12010100251201020025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - WHISKY DUDE \nAMERICANO - อเมริกาโน \nWHISKY DUDE - WHISKY DUDE \nAMERICANO - อเมริกาโน \nWHISKY DUDE - AMERICANO WHISKY DUDE - อเมริกาโน \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNote: Whisky & Vanilla - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Penapaian Tong Sherry Yang Telah Dibasuh Nota: Wiski & Vanila - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0025.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0025.Button - StringFmt( $12-01-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0025.Button - StringFmt( $12-01-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100251201020025 = "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 $Sum12010100251201020025 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0025.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0025.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 - "disable-show" - $Sum12010100251201020025 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0023 12-01-02-0023 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0023.Button,12-01-02-0023.Button,Disable=Invisible,$Sum12010100231201020023) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - AMERICANO SNOW WHITE - อเมริกาโน\nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Proses Anaerobik Aroma: Jasmin & Madu - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0023.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0023.Button - StringFmt( $12-01-01-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0023.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0023.Button - StringFmt( $12-01-02-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100231201020023 = "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 $Sum12010100231201020023 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0023.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0023.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 - "disable-show" - $Sum12010100231201020023 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0044 12-01-02-0044 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0044.Button,12-01-02-0044.Button,Disable=Invisible,$Sum12010100441201020044) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - AMERICANO CHOPIN - อเมริกาโน \nCHOPIN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Proses Kismis Madu Aroma: Strawberi & Bungaan - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0044.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0044.Button - StringFmt( $12-01-01-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0044.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0044.Button - StringFmt( $12-01-02-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100441201020044 = "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 $Sum12010100441201020044 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0044.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0044.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 - "disable-show" - $Sum12010100441201020044 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0047 12-01-02-0047 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0047.Button,12-01-02-0047.Button,Disable=Invisible,$Sum12010100471201020047) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - AMERICANO MANDARIN - อเมริกาโน \nMANDARINE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Panggang Ringan. Nota: Bunga Oren, Madu, Karamel, Bar Coklat - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0047.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0047.Button - StringFmt( $12-01-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0047.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0047.Button - StringFmt( $12-01-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100471201020047 = "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 $Sum12010100471201020047 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0047.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100471201020047 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0050 12-01-02-0050 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0050.Button,12-01-02-0050.Button,Disable=Invisible,$Sum12010100501201020050) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - AMERICANO OPUS ONE - อเมริกาโน \nOPUS ONE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Panggang Ringan. Nota: Jeli Anggur, Pai Epal, Walnut, Pudina - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0050.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0050.Button - StringFmt( $12-01-01-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0050.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0050.Button - StringFmt( $12-01-02-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100501201020050 = "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 $Sum12010100501201020050 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0050.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0050.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 - "disable-show" - $Sum12010100501201020050 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0027 12-01-02-0027 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0027.Button,12-01-02-0027.Button,Disable=Invisible,$Sum12010100271201020027) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - AMERICANO PIC - อเมริกาโน \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Proses Penuaan Dalam Tong. Aroma: Pic, Teh, Coklat - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0027.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0027.Button - StringFmt( $12-01-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0027.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0027.Button - StringFmt( $12-01-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100271201020027 = "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 $Sum12010100271201020027 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0027.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0027.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 - "disable-show" - $Sum12010100271201020027 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0032 12-01-02-0032 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0032.Button,12-01-02-0032.Button,Disable=Invisible,$Sum12010100321201020032) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - AMERICANO AYU TULIN - อเมริกาโน \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Proses Light Roast Natural. Aroma: Bungaan & Buah-buahan Tropika - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0032.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0032.Button - StringFmt( $12-01-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0032.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0032.Button - StringFmt( $12-01-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100321201020032 = "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 $Sum12010100321201020032 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0032.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100321201020032 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0035 12-01-02-0035 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0035.Button,12-01-02-0035.Button,Disable=Invisible,$Sum12010100351201020035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - AMERICANO GEISHA - อเมริกาโน \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Proses Light Roast Natural. Aroma: Lemon, Pic, Madu, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0035.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0035.Button - StringFmt( $12-01-01-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0035.Button - StringFmt( $12-01-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100351201020035 = "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 $Sum12010100351201020035 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0035.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0035.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 - "disable-show" - $Sum12010100351201020035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0038 12-01-02-0038 - - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0038.Button,12-01-02-0038.Button,Disable=Invisible,$Sum12010100381201020038) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - AMERICANO ROSALYN - อเมริกาโน \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Proses Light Roast Natural. Aroma: Ros Pink & Beri - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0038.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0038.Button - StringFmt( $12-01-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0038.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0038.Button - StringFmt( $12-01-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum12010100381201020038 = "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 $Sum12010100381201020038 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0038.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-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 - "disable-show" - $Sum12010100381201020038 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-01-01-0004 12-01-02-0002 12-01-03-0002 - - 33 - 22 - 225 - 296 - Flag( 12-01-01-0004.Button,12-01-02-0002.Button,12-01-03-0002.Button,Disable=Invisible,$Sum120101000412010200021201030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - LATTE - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Susu - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-01-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-01-0004.Button - StringFmt( $12-01-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-01-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-02-0002.Button - StringFmt( $12-01-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-01-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-01-03-0002.Button - StringFmt( $12-01-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120101000412010200021201030002 = "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 $Sum120101000412010200021201030002 = "Disable" Then - STRCONTAIN "ERR" $12-01-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $12-01-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $12-01-03-0002.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 - "disable-show" - $Sum120101000412010200021201030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201003712020200371202030037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha, Susu - ชาเขียวคั่ว และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201003712020200371202030037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201002612020200261202030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Teh Hijau, Susu, Gula, Ais - ชาเชียว นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201002612020200261202030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 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,Disable=Invisible,$Sum120201002412020200241202030024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - THAI MILK TEA - ชานมไทย - THAI MILK TEA - ชานมไทย - TEH SUSU THAI - ชานมไทย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Teh Thai, Gula, Susu - ชาไทย น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-02-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - 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 - - - 113 - 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 - - - TextPriceMenuBlendX - 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 - "disable-show" - $Sum120201002412020200241202030024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0002 12-03-02-0002 12-03-03-0002 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0002.Button,12-03-02-0002.Button,12-03-03-0002.Button,Disable=Invisible,$Sum120301000212030200021203030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - COCOA - โกโก้ - COCOA - โกโก้ - KOKO - โกโก้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Susu, Koko, Gula - โกโก้ นมและน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0002.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0002.Button - StringFmt( $12-03-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0002.Button - StringFmt( $12-03-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0002.Button - StringFmt( $12-03-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301000212030200021203030002 = "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 $Sum120301000212030200021203030002 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0002.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-03-0002.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 - "disable-show" - $Sum120301000212030200021203030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0001 12-03-02-0001 12-03-03-0001 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0001.Button,12-03-02-0001.Button,12-03-03-0001.Button,Disable=Invisible,$Sum120301000112030200011203030001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CARAMEL MILK - นมคาราเมล - CARAMEL MILK - นมคาราเมล - SUSU KARAMEL - นมคาราเมล - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Susu, Sirap Karamel - นม น้ำเชื่อมคาราเมล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0001.Button - StringFmt( $12-03-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0001.Button - StringFmt( $12-03-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0001.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0001.Button - StringFmt( $12-03-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301000112030200011203030001 = "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 $Sum120301000112030200011203030001 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0001.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0001.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum120301000112030200011203030001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-03-02-0006 12-03-03-0006 - - 33 - 22 - 225 - 296 - Flag( 12-03-02-0006.Button,12-03-03-0006.Button,Disable=Invisible,$Sum12030200061203030006) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PINK MILK - นมชมพู - PINK MILK - นมชมพู - SUSU PINK - นมชมพู - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Sirap Salak, Susu, Gula - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0006.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0006.Button - StringFmt( $12-03-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0006.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0006.Button - StringFmt( $12-03-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12030200061203030006 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0006.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum12030200061203030006 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0011 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0011.Button,Disable=Invisible,$Sum1203030011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - SMOOTHIE\nSUSU STRAWBERI - นมสตอเบอร์รี่ปั่น - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Susu, Sirap Strawberi - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0011.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0011.Button - StringFmt( $12-03-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030011 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 12-03-01-0022 12-03-02-0022 12-03-03-0022 - - 33 - 22 - 225 - 296 - Flag( 12-03-01-0022.Button,12-03-02-0022.Button,12-03-03-0022.Button,Disable=Invisible,$Sum120301002212030200221203030022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON MILK - นมเมล่อน - MELON MILK - นมเมล่อน - SUSU MELON - นมเมล่อน - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Susu, Sirap Melon - นม และ น้ำเชื่อมเมล่อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $12-03-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-01-0022.Button - StringFmt( $12-03-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-03-02-0022.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-02-0022.Button - StringFmt( $12-03-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0022.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0022.Button - StringFmt( $12-03-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum120301002212030200221203030022 = "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 $Sum120301002212030200221203030022 = "Disable" Then - STRCONTAIN "ERR" $12-03-01-0022.TAG tag1_is_disable - STRCONTAIN "ERR" $12-03-02-0022.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum120301002212030200221203030022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0009 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0009.Button,Disable=Invisible,$Sum1203030009) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OREO SMOOTHIE \nVOLCANO - โอริโอ้ปั่นภูเขาไฟ - OREO SMOOTHIE \nVOLCANO - โอริโอ้ปั่นภูเขาไฟ - SMOOTHIE\nOREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Susu, Gula, Oreo - นม น้ำตาล โอริโอ้ \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0009.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0009.Button - StringFmt( $12-03-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030009 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-03-0009.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 - "disable-show" - $Sum1203030009 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 12-03-03-0020 - - 33 - 22 - 225 - 296 - Flag( 12-03-03-0020.Button,Disable=Invisible,$Sum1203030020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - SMOOTHIE\nOVALTINE VOLCANO - โอวัลตินปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Gula, Susu - โอวัลติน น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-03-03-0020.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-03-03-0020.Button - StringFmt( $12-03-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum1203030020 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $12-03-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 - "disable-show" - $Sum1203030020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0007 12-05-03-0007 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0007.Button,12-05-03-0007.Button,Disable=Invisible,$Sum12050200071205030007) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI - เป็ปซี่น้ำแข็ง - PEPSI - เป็ปซี่น้ำแข็ง - PEPSI - เป็ปซี่น้ำแข็ง - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi, Ice - เป๊ปซี่ - Pepsi, Ice - เป๊ปซี่ - Pepsi, Ais - เป๊ปซี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0007.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0007.Button - StringFmt( $12-05-02-0007.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0007.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0007.Button - StringFmt( $12-05-03-0007.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200071205030007 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0007.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-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 - "disable-show" - $Sum12050200071205030007 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0046 12-05-03-0046 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0046.Button,12-05-03-0046.Button,Disable=Invisible,$Sum12050200461205030046) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI PLUM - เป๊ปซี่บ๊วย - PEPSI PLUM - เป๊ปซี่บ๊วย - PEPSI PLUM - เป๊ปซี่บ๊วย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi, Ume Syrup & Ice - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - Pepsi, Ume Syrup & Ice - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - Pepsi, Sirap Ume, Ais - เป๊ปซี่ น้ำเชื่อมบ๊วย โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0046.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0046.Button - StringFmt( $12-05-02-0046.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0046.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0046.Button - StringFmt( $12-05-03-0046.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200461205030046 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0046.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-03-0046.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 - "disable-show" - $Sum12050200461205030046 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0035 12-05-03-0035 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0035.Button,12-05-03-0035.Button,Disable=Invisible,$Sum12050200351205030035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - TAO POWER \nDRINK SODA - เต่าทรงพลังโซดา - TAO POWER \nDRINK SODA - เต่าทรงพลังโซดา - SODA TAO POWER - เต่าทรงพลังโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Energy drink, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - Energy drink, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - Minuman Bervitamin, Soda - เครื่องดื่มเต่าทรงพลัง โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0035.Button - StringFmt( $12-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0035.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0035.Button - StringFmt( $12-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200351205030035 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0035.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-03-0035.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 - "disable-show" - $Sum12050200351205030035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 12-05-02-0025 12-05-03-0025 - - 33 - 22 - 225 - 296 - Flag( 12-05-02-0025.Button,12-05-03-0025.Button,Disable=Invisible,$Sum12050200251205030025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PLUM \nLIMENADE SODA - บ๊วยมะนาวโซดา - PLUM \nLIMENADE SODA - บ๊วยมะนาวโซดา - SODA PLUM LIMAU - บ๊วยมะนาวโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Sirap Ume, Sirap Limau, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $12-05-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-02-0025.Button - StringFmt( $12-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $12-05-03-0025.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $12-05-03-0025.Button - StringFmt( $12-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum12050200251205030025 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $12-05-02-0025.TAG tag2_is_disable - STRCONTAIN "ERR" $12-05-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 - "disable-show" - $Sum12050200251205030025 - - 000013 - - center-vertical-horizontal - - - -; Cart - - - - - - - - - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - - - - - diff --git a/inter/tha/xml/multi/event/promotion_template1.inc b/inter/tha/xml/multi/event/promotion_template1.inc deleted file mode 100644 index c9501803..00000000 --- a/inter/tha/xml/multi/event/promotion_template1.inc +++ /dev/null @@ -1,48 +0,0 @@ - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - diff --git a/inter/tha/xml/multi/event/promotion_template2.inc b/inter/tha/xml/multi/event/promotion_template2.inc deleted file mode 100644 index ddf9ec36..00000000 --- a/inter/tha/xml/multi/event/promotion_template2.inc +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - diff --git a/inter/tha/xml/multi/event/promotion_template3.inc b/inter/tha/xml/multi/event/promotion_template3.inc deleted file mode 100644 index 1830e33b..00000000 --- a/inter/tha/xml/multi/event/promotion_template3.inc +++ /dev/null @@ -1,305 +0,0 @@ -; -; -; - -; Sub-button for 4 random menu - -; -; -; - - - - 91 - 635 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandMilkButtonEnable - text_unavailable - center-vertical-horizontal - - - - - 349 - 635 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandTeaButtonEnable - text_unavailable - center-vertical-horizontal - - - - - - 91 - 953 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandCoffButtonEnable - text_unavailable - center-vertical-horizontal - - - - - 349 - 953 - 32 - 128 - 64 - MITRegularTTF - 0x5A5A5A - "disable-show" - SubRandAllButtonEnable - text_unavailable - center-vertical-horizontal - - -; -; -; -; -; Big button for mys event -; -; -; - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - diff --git a/inter/tha/xml/multi/event/promotion_westfield.lxml b/inter/tha/xml/multi/event/promotion_westfield.lxml deleted file mode 100644 index 56c558e4..00000000 --- a/inter/tha/xml/multi/event/promotion_westfield.lxml +++ /dev/null @@ -1,12166 +0,0 @@ - - - - "Enable" - 1080 - 1920 -; "0xeae6e1" - SoundVolume - - ; On open - ;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_default_init.lxml" - - Var Menu1Selected = "PressForever" - - Var OreoBigButtonEnable = "Enable" - - If $12-01-01-0001.Button = "Invisible" Then - Var esp102101001Enable = "Invisible" - Var esp122101001Enable = "Enable" - - Else - Var esp102101001Enable = "Enable" - Var esp122101001Enable = "Invisible" - - EndIf - - SAVELOG PreviseXMLFileName2 - - Var Timeout = 0 - - If show_eng = "true" Then - - Var text_unavailable = "UNAVAILABLE###size=16" - Else - Var text_unavailable = "หมด###size=32" - - EndIf - - ;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_new_menu.lxml" - - - - - -;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_new.lxml" - - - 16 - 10 - 497 - 1080 - "auto" - "Vertical" - 4 - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - ; ==================> Len = 3 - ; - 51-05-02-0062 51-05-03-0062 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0062.Button,51-05-03-0062.Button,$Sum51050200625105030062) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI Max - เป็ปซี่น้ำแข็ง - PEPSI Max - เป็ปซี่น้ำแข็ง - - เป็ปซี่น้ำแข็ง - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi Max, Ice - เป๊ปซี่ - Pepsi Max, Ice - เป๊ปซี่ - - เป๊ปซี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0062.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0062.Button - StringFmt( $51-05-02-0062.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0062.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0062.Button - StringFmt( $51-05-03-0062.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200625105030062 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0062.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0062.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 - "disable-show" - $Sum51050200625105030062 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0035 51-05-03-0035 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0035.Button,51-05-03-0035.Button,$Sum51050200355105030035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - FLYING TURTLE\nENERGY DRINK SODA - เต่าทรงพลังโซดา - FLYING TURTLE\nENERGY DRINK SODA - เต่าทรงพลังโซดา - - เต่าทรงพลังโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Energy drink, Soda, Ice - เครื่องดื่มเต่าทรงพลัง โซดา - Energy drink, Soda, Ice - เครื่องดื่มเต่าทรงพลัง โซดา - - เครื่องดื่มเต่าทรงพลัง โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0035.Button - StringFmt( $51-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0035.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0035.Button - StringFmt( $51-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200355105030035 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0035.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0035.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 - "disable-show" - $Sum51050200355105030035 - - 000013 - - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - ; ==================> Len = 3 - ; 51-21-01-0003 51-21-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0003.Button,51-21-02-0001.Button,Disable=Invisible,$Sum51210100035121020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LONG BLACK - กาแฟดำ(อเมริกาโน) - LONG BLACK - กาแฟดำ(อเมริกาโน) - - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0003.Button - StringFmt( $51-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-21-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-02-0001.Button - StringFmt( $51-21-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51210100035121020001 = "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 $Sum51210100035121020001 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $51-21-02-0001.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 - "disable-show" - $Sum51210100035121020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0026 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0026.Button,Disable=Invisible,$Sum5103030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0026.Button - StringFmt( $51-03-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030026 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0001 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0001.Button,$Sum5101010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0001.Button - StringFmt( $51-01-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010001 = "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 $Sum5101010001 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0001.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 - "disable-show" - $Sum5101010001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-21-01-0001 - - - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0001.Button,Disable=Invisible,$Sum5121010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0001.Button - StringFmt( $51-21-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5121010001 = "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 $Sum5121010001 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0001.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 - "disable-show" - $Sum5121010001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0003 51-01-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0003.Button,51-01-02-0001.Button,Disable=Invisible,$Sum51010100035101020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LONG BLACK - กาแฟดำ(อเมริกาโน) - LONG BLACK - กาแฟดำ(อเมริกาโน) - - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0003.Button - StringFmt( $51-01-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0001.Button - StringFmt( $51-01-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100035101020001 = "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 $Sum51010100035101020001 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0001.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 - "disable-show" - $Sum51010100035101020001 - - 000013 - - center-vertical-horizontal - - - - ; ==================> Len = 3 - ; 51-01-01-0013 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0013.Button,Disable=Invisible,$Sum5101010013) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0013.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0013.Button - StringFmt( $51-01-01-0013.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010013 = "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 $Sum5101010013 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0013.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 - "disable-show" - $Sum5101010013 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0020 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0020.Button,Disable=Invisible,$Sum5101010020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - - เอสเพรสโซ่ช็อต \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0020.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0020.Button - StringFmt( $51-01-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010020 = "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 $Sum5101010020 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0020.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 - "disable-show" - $Sum5101010020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0022 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0022.Button,Disable=Invisible,$Sum5101010022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - - เอสเพรสโซ่ช็อต \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0022.Button - StringFmt( $51-01-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010022 = "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 $Sum5101010022 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0022.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 - "disable-show" - $Sum5101010022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0024 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0024.Button,Disable=Invisible,$Sum5101010024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - - เอสเพรสโซ่ช็อต \nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0024.Button - StringFmt( $51-01-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010024 = "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 $Sum5101010024 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0024.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 - "disable-show" - $Sum5101010024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0026 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0026.Button,Disable=Invisible,$Sum5101010026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HONDURAS\nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - HONDURAS\nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0026.Button - StringFmt( $51-01-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010026 = "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 $Sum5101010026 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0026.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 - "disable-show" - $Sum5101010026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0028 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0028.Button,Disable=Invisible,$Sum5101010028) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - - เอสเพรสโซ่ช็อต \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0028.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0028.Button - StringFmt( $51-01-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010028 = "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 $Sum5101010028 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0028.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 - "disable-show" - $Sum5101010028 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0033 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0033.Button,Disable=Invisible,$Sum5101010033) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0033.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0033.Button - StringFmt( $51-01-01-0033.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010033 = "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 $Sum5101010033 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0033.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 - "disable-show" - $Sum5101010033 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0036 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0036.Button,Disable=Invisible,$Sum5101010036) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - - เอสเพรสโซ่ช็อต \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0036.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0036.Button - StringFmt( $51-01-01-0036.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010036 = "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 $Sum5101010036 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0036.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 - "disable-show" - $Sum5101010036 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0037 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0037.Button,Disable=Invisible,$Sum5101010037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - - เอสเพรสโซ่ช็อต \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0037.Button - StringFmt( $51-01-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010037 = "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 $Sum5101010037 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0037.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 - "disable-show" - $Sum5101010037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0014 51-01-02-0011 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0014.Button,51-01-02-0011.Button,Disable=Invisible,$Sum51010100145101020011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - - อเมริกาโน \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0014.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0014.Button - StringFmt( $51-01-01-0014.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0011.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0011.Button - StringFmt( $51-01-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100145101020011 = "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 $Sum51010100145101020011 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0014.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0011.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 - "disable-show" - $Sum51010100145101020011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0019 51-01-02-0019 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0019.Button,51-01-02-0019.Button,Disable=Invisible,$Sum51010100195101020019) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - - อเมริกาโน \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0019.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0019.Button - StringFmt( $51-01-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0019.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0019.Button - StringFmt( $51-01-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100195101020019 = "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 $Sum51010100195101020019 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0019.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0019.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 - "disable-show" - $Sum51010100195101020019 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0021 51-01-02-0021 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0021.Button,51-01-02-0021.Button,Disable=Invisible,$Sum51010100215101020021) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nAMERICANO - อเมริกาโน \nMOZART - MOZART \nAMERICANO - อเมริกาโน \nMOZART - - อเมริกาโน \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0021.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0021.Button - StringFmt( $51-01-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0021.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0021.Button - StringFmt( $51-01-02-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100215101020021 = "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 $Sum51010100215101020021 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0021.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0021.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 - "disable-show" - $Sum51010100215101020021 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0025 51-01-02-0025 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0025.Button,51-01-02-0025.Button,Disable=Invisible,$Sum51010100255101020025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HONDURAS\nAMERICANO - อเมริกาโน \nWHISKY DUDE - HONDURAS\nAMERICANO - อเมริกาโน \nWHISKY DUDE - - อเมริกาโน \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0025.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0025.Button - StringFmt( $51-01-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0025.Button - StringFmt( $51-01-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100255101020025 = "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 $Sum51010100255101020025 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0025.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0025.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 - "disable-show" - $Sum51010100255101020025 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0023 51-01-02-0023 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0023.Button,51-01-02-0023.Button,Disable=Invisible,$Sum51010100235101020023) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - - อเมริกาโน\nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0023.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0023.Button - StringFmt( $51-01-01-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0023.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0023.Button - StringFmt( $51-01-02-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100235101020023 = "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 $Sum51010100235101020023 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0023.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0023.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 - "disable-show" - $Sum51010100235101020023 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0044 51-01-02-0044 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0044.Button,51-01-02-0044.Button,Disable=Invisible,$Sum51010100445101020044) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - - อเมริกาโน \nCHOPIN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0044.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0044.Button - StringFmt( $51-01-01-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0044.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0044.Button - StringFmt( $51-01-02-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100445101020044 = "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 $Sum51010100445101020044 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0044.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0044.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 - "disable-show" - $Sum51010100445101020044 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0047 51-01-02-0047 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0047.Button,51-01-02-0047.Button,Disable=Invisible,$Sum51010100475101020047) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - - อเมริกาโน \nMANDARINE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0047.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0047.Button - StringFmt( $51-01-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0047.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0047.Button - StringFmt( $51-01-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100475101020047 = "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 $Sum51010100475101020047 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0047.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100475101020047 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0050 51-01-02-0050 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0050.Button,51-01-02-0050.Button,Disable=Invisible,$Sum51010100505101020050) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - - อเมริกาโน \nOPUS ONE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0050.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0050.Button - StringFmt( $51-01-01-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0050.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0050.Button - StringFmt( $51-01-02-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100505101020050 = "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 $Sum51010100505101020050 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0050.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0050.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 - "disable-show" - $Sum51010100505101020050 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0027 51-01-02-0027 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0027.Button,51-01-02-0027.Button,Disable=Invisible,$Sum51010100275101020027) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - - อเมริกาโน \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0027.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0027.Button - StringFmt( $51-01-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0027.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0027.Button - StringFmt( $51-01-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100275101020027 = "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 $Sum51010100275101020027 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0027.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0027.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 - "disable-show" - $Sum51010100275101020027 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0032 51-01-02-0032 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0032.Button,51-01-02-0032.Button,Disable=Invisible,$Sum51010100325101020032) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - - อเมริกาโน \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0032.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0032.Button - StringFmt( $51-01-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0032.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0032.Button - StringFmt( $51-01-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100325101020032 = "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 $Sum51010100325101020032 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0032.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100325101020032 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0035 51-01-02-0035 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0035.Button,51-01-02-0035.Button,Disable=Invisible,$Sum51010100355101020035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - - อเมริกาโน \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0035.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0035.Button - StringFmt( $51-01-01-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0035.Button - StringFmt( $51-01-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100355101020035 = "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 $Sum51010100355101020035 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0035.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0035.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 - "disable-show" - $Sum51010100355101020035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0038 51-01-02-0038 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0038.Button,51-01-02-0038.Button,Disable=Invisible,$Sum51010100385101020038) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - - อเมริกาโน \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0038.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0038.Button - StringFmt( $51-01-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0038.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0038.Button - StringFmt( $51-01-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100385101020038 = "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 $Sum51010100385101020038 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0038.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100385101020038 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0004 51-01-02-0002 51-01-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0004.Button,51-01-02-0002.Button,51-01-03-0002.Button,Disable=Invisible,$Sum510101000451010200025101030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0004.Button - StringFmt( $51-01-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0002.Button - StringFmt( $51-01-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-01-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-03-0002.Button - StringFmt( $51-01-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510101000451010200025101030002 = "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 $Sum510101000451010200025101030002 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-01-03-0002.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 - "disable-show" - $Sum510101000451010200025101030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-21-01-0004 51-21-02-0002 51-21-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0004.Button,51-21-02-0002.Button,51-21-03-0002.Button,Disable=Invisible,$Sum512101000451210200025121030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0004.Button - StringFmt( $51-21-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-21-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-02-0002.Button - StringFmt( $51-21-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-21-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-03-0002.Button - StringFmt( $51-21-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum512101000451210200025121030002 = "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 $Sum512101000451210200025121030002 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $51-21-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-21-03-0002.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 - "disable-show" - $Sum512101000451210200025121030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0037 51-02-02-0037 51-02-03-0037 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0037.Button,51-02-02-0037.Button,51-02-03-0037.Button,Disable=Invisible,$Sum510201003751020200375102030037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - - โฮจิฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha and milk - ชาเขียวคั่ว และ นม - - ชาเขียวคั่ว และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0037.Button - StringFmt( $51-02-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0037.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0037.Button - StringFmt( $51-02-02-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0037.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0037.Button - StringFmt( $51-02-03-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201003751020200375102030037 = "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 $Sum510201003751020200375102030037 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0037.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0037.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201003751020200375102030037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0026 51-02-02-0026 51-02-03-0026 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0026.Button,51-02-02-0026.Button,51-02-03-0026.Button,Disable=Invisible,$Sum510201002651020200265102030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - - มัทฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - - ชาเชียว นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0026.Button - StringFmt( $51-02-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0026.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0026.Button - StringFmt( $51-02-02-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0026.Button - StringFmt( $51-02-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201002651020200265102030026 = "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 $Sum510201002651020200265102030026 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0026.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0026.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201002651020200265102030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0024 51-02-02-0024 51-02-03-0024 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0024.Button,51-02-02-0024.Button,51-02-03-0024.Button,Disable=Invisible,$Sum510201002451020200245102030024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - THAI MILK TEA - ชานมไทย - THAI MILK TEA - ชานมไทย - - ชานมไทย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - - ชาไทย น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0024.Button - StringFmt( $51-02-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0024.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0024.Button - StringFmt( $51-02-02-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0024.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0024.Button - StringFmt( $51-02-03-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201002451020200245102030024 = "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 $Sum510201002451020200245102030024 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0024.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0024.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201002451020200245102030024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0002 51-03-02-0002 51-03-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0002.Button,51-03-02-0002.Button,51-03-03-0002.Button,Disable=Invisible,$Sum510301000251030200025103030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOCOLATE - โกโก้ - CHOCOLATE - โกโก้ - - โกโก้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - - โกโก้ นมและน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0002.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0002.Button - StringFmt( $51-03-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0002.Button - StringFmt( $51-03-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0002.Button - StringFmt( $51-03-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301000251030200025103030002 = "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 $Sum510301000251030200025103030002 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0002.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-03-0002.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 - "disable-show" - $Sum510301000251030200025103030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0001 51-03-02-0001 51-03-03-0001 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0001.Button,51-03-02-0001.Button,51-03-03-0001.Button,Disable=Invisible,$Sum510301000151030200015103030001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CARAMEL MILK - นมคาราเมล - CARAMEL MILK - นมคาราเมล - - นมคาราเมล - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - - นม น้ำเชื่อมคาราเมล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0001.Button - StringFmt( $51-03-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0001.Button - StringFmt( $51-03-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0001.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0001.Button - StringFmt( $51-03-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301000151030200015103030001 = "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 $Sum510301000151030200015103030001 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0001.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0001.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum510301000151030200015103030001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-03-02-0006 51-03-03-0006 - - 33 - 22 - 225 - 296 - Flag( 51-03-02-0006.Button,51-03-03-0006.Button,Disable=Invisible,$Sum51030200065103030006) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PINK MILK - นมชมพู - PINK MILK - นมชมพู - - นมชมพู - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0006.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0006.Button - StringFmt( $51-03-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0006.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0006.Button - StringFmt( $51-03-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51030200065103030006 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0006.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum51030200065103030006 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0011 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0011.Button,Disable=Invisible,$Sum5103030011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - - นมสตอเบอร์รี่ปั่น - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0011.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0011.Button - StringFmt( $51-03-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030011 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0088 51-05-03-0088 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0088.Button,51-05-03-0088.Button,Disable=Invisible,$Sum51050200885105030088) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON - เมล่อนโซดา - MELON - เมล่อนโซดา - - เมล่อนโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Melon Syrup, Ice - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - Melon Syrup, Ice - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0088.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0088.Button - StringFmt( $51-05-02-0088.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0088.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0088.Button - StringFmt( $51-05-03-0088.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200885105030088 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0088.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0088.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 - "disable-show" - $Sum51050200885105030088 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0022 51-03-02-0022 51-03-03-0022 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0022.Button,51-03-02-0022.Button,51-03-03-0022.Button,Disable=Invisible,$Sum510301002251030200225103030022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON MILK - นมเมล่อน - MELON MILK - นมเมล่อน - - นมเมล่อน - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - - นม และ น้ำเชื่อมเมล่อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0022.Button - StringFmt( $51-03-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0022.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0022.Button - StringFmt( $51-03-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0022.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0022.Button - StringFmt( $51-03-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301002251030200225103030022 = "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 $Sum510301002251030200225103030022 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0022.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0022.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum510301002251030200225103030022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0089 51-05-03-0089 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0089.Button,51-05-03-0089.Button,Disable=Invisible,$Sum51050200895105030089) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - YUZU - ยูซุโซดา - YUZU - ยูซุโซดา - - ยูซุโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Yuzu Syrup, Ice - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - Yuzu Syrup, Ice - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0089.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0089.Button - StringFmt( $51-05-02-0089.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0089.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0089.Button - StringFmt( $51-05-03-0089.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200895105030089 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0089.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0089.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 - "disable-show" - $Sum51050200895105030089 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0009 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0009.Button,Disable=Invisible,$Sum5103030009) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - OREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - - โอริโอ้ปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - - นม น้ำตาล โอริโอ้ \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0009.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0009.Button - StringFmt( $51-03-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030009 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-03-0009.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 - "disable-show" - $Sum5103030009 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0020 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0020.Button,Disable=Invisible,$Sum5103030020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - - โอวัลตินปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - - โอวัลติน น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0020.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0020.Button - StringFmt( $51-03-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030020 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0076 - - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0076.Button,Disable=Invisible,$Sum5105020076) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI Max YUZU - เป๊ปซี่ยูซุ - PEPSI Max YUZU - เป๊ปซี่ยูซุ - - เป๊ปซี่ยูซุ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi Max, Yuzu Syrup& Ice - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - Pepsi Max, Yuzu Syrup& Ice - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0076.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0076.Button - StringFmt( $51-05-02-0076.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5105020076 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0076.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 - "disable-show" - $Sum5105020076 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0025 51-05-03-0025 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0025.Button,51-05-03-0025.Button,Disable=Invisible,$Sum51050200255105030025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PLUM \nSPARKLING LIMENADE - บ๊วยมะนาวโซดา - PLUM \nSPARKLING LIMENADE - บ๊วยมะนาวโซดา - - บ๊วยมะนาวโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0025.Button - StringFmt( $51-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0025.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0025.Button - StringFmt( $51-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200255105030025 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0025.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-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 - "disable-show" - $Sum51050200255105030025 - - 000013 - - center-vertical-horizontal - - - -; Cart - - - - - - - - - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - - - - - - diff --git a/inter/tha/xml/multi/event/promotion_winter_warmers.lxml b/inter/tha/xml/multi/event/promotion_winter_warmers.lxml deleted file mode 100644 index 7b236221..00000000 --- a/inter/tha/xml/multi/event/promotion_winter_warmers.lxml +++ /dev/null @@ -1,12166 +0,0 @@ - - - - "Enable" - 1080 - 1920 -; "0xeae6e1" - SoundVolume - - ; On open - ;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_default_init.lxml" - - Var Menu1Selected = "PressForever" - - Var OreoBigButtonEnable = "Enable" - - If $12-01-01-0001.Button = "Invisible" Then - Var esp102101001Enable = "Invisible" - Var esp122101001Enable = "Enable" - - Else - Var esp102101001Enable = "Enable" - Var esp122101001Enable = "Invisible" - - EndIf - - SAVELOG PreviseXMLFileName2 - - Var Timeout = 0 - - If show_eng = "true" Then - - Var text_unavailable = "UNAVAILABLE###size=16" - Else - Var text_unavailable = "หมด###size=32" - - EndIf - - ;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_new_menu.lxml" - - - - - -;include="ROOT/taobin_project/inter/aus/xml/menu_catalog_new.lxml" - - - 16 - 10 - 497 - 1080 - "auto" - "Vertical" - 4 - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - ; ==================> Len = 3 - ; - 51-05-02-0062 51-05-03-0062 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0062.Button,51-05-03-0062.Button,$Sum51050200625105030062) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI Max - เป็ปซี่น้ำแข็ง - PEPSI Max - เป็ปซี่น้ำแข็ง - - เป็ปซี่น้ำแข็ง - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi Max, Ice - เป๊ปซี่ - Pepsi Max, Ice - เป๊ปซี่ - - เป๊ปซี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0062.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0062.Button - StringFmt( $51-05-02-0062.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0062.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0062.Button - StringFmt( $51-05-03-0062.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200625105030062 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0062.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0062.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 - "disable-show" - $Sum51050200625105030062 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0035 51-05-03-0035 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0035.Button,51-05-03-0035.Button,$Sum51050200355105030035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - FLYING TURTLE\nENERGY DRINK SODA - เต่าทรงพลังโซดา - FLYING TURTLE\nENERGY DRINK SODA - เต่าทรงพลังโซดา - - เต่าทรงพลังโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Energy drink, Soda, Ice - เครื่องดื่มเต่าทรงพลัง โซดา - Energy drink, Soda, Ice - เครื่องดื่มเต่าทรงพลัง โซดา - - เครื่องดื่มเต่าทรงพลัง โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0035.Button - StringFmt( $51-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0035.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0035.Button - StringFmt( $51-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200355105030035 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0035.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0035.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 - "disable-show" - $Sum51050200355105030035 - - 000013 - - center-vertical-horizontal - - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - - 33 - 22 - 225 - 296 - "Enable" - ; empty block - - ; ==================> Len = 3 - ; 51-21-01-0003 51-21-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0003.Button,51-21-02-0001.Button,Disable=Invisible,$Sum51210100035121020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LONG BLACK - กาแฟดำ(อเมริกาโน) - LONG BLACK - กาแฟดำ(อเมริกาโน) - - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0003.Button - StringFmt( $51-21-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-21-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-02-0001.Button - StringFmt( $51-21-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51210100035121020001 = "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 $Sum51210100035121020001 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $51-21-02-0001.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 - "disable-show" - $Sum51210100035121020001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0026 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0026.Button,Disable=Invisible,$Sum5103030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - Pink milk\nOreo Vocalno - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - นมชมพูปั่น\nโอริโอ้ภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - Salak Syrup, Milk,\nSugar Oreo - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - น้ำแดงกลิ่นสละ นม น้ำตาล \n Oreo - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0026.Button - StringFmt( $51-03-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030026 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0001 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0001.Button,$Sum5101010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0001.Button - StringFmt( $51-01-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010001 = "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 $Sum5101010001 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0001.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 - "disable-show" - $Sum5101010001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-21-01-0001 - - - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0001.Button,Disable=Invisible,$Sum5121010001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO - เอสเพรสโซ่ - ESPRESSO - เอสเพรสโซ่ - - เอสเพรสโซ่ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso (30 ml) - กาแฟ (30 ml) - Espresso (30 ml) - กาแฟ (30 ml) - - กาแฟ (30 ml) - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0001.Button - StringFmt( $51-21-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5121010001 = "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 $Sum5121010001 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0001.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 - "disable-show" - $Sum5121010001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0003 51-01-02-0001 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0003.Button,51-01-02-0001.Button,Disable=Invisible,$Sum51010100035101020001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LONG BLACK - กาแฟดำ(อเมริกาโน) - LONG BLACK - กาแฟดำ(อเมริกาโน) - - กาแฟดำ(อเมริกาโน) - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Water - กาแฟ และน้ำ - Espresso, Water - กาแฟ และน้ำ - - กาแฟ และน้ำ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0003.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0003.Button - StringFmt( $51-01-01-0003.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0001.Button - StringFmt( $51-01-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100035101020001 = "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 $Sum51010100035101020001 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0003.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0001.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 - "disable-show" - $Sum51010100035101020001 - - 000013 - - center-vertical-horizontal - - - - ; ==================> Len = 3 - ; 51-01-01-0013 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0013.Button,Disable=Invisible,$Sum5101010013) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - ESPRESSO \nETHIOPAI GUJI - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - เอสเพรสโซ่ช็อต \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - Light roast natural process: \nStrawberry, Orange, Floral - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0013.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0013.Button - StringFmt( $51-01-01-0013.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010013 = "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 $Sum5101010013 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0013.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 - "disable-show" - $Sum5101010013 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0020 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0020.Button,Disable=Invisible,$Sum5101010020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - BLUE DADDY \nESPRESSO - เอสเพรสโซ่ช็อต \nBLUE DADDY - - เอสเพรสโซ่ช็อต \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0020.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0020.Button - StringFmt( $51-01-01-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010020 = "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 $Sum5101010020 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0020.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 - "disable-show" - $Sum5101010020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0022 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0022.Button,Disable=Invisible,$Sum5101010022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - MOZART \nESPRESSO - เอสเพรสโซ่ช็อต \nMOZART - - เอสเพรสโซ่ช็อต \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0022.Button - StringFmt( $51-01-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010022 = "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 $Sum5101010022 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0022.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 - "disable-show" - $Sum5101010022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0024 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0024.Button,Disable=Invisible,$Sum5101010024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - SNOWWHITE \nESPRESSO - เอสเพรสโซ่ช็อต \nSNOWWHITE - - เอสเพรสโซ่ช็อต \nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0024.Button - StringFmt( $51-01-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010024 = "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 $Sum5101010024 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0024.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 - "disable-show" - $Sum5101010024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0026 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0026.Button,Disable=Invisible,$Sum5101010026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HONDURAS\nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - HONDURAS\nESPRESSO - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - เอสเพรสโซ่ช็อต \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0026.Button - StringFmt( $51-01-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010026 = "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 $Sum5101010026 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0026.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 - "disable-show" - $Sum5101010026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0028 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0028.Button,Disable=Invisible,$Sum5101010028) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - PEACHER \nESPRESSO - เอสเพรสโซ่ช็อต \nPEACHER - - เอสเพรสโซ่ช็อต \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0028.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0028.Button - StringFmt( $51-01-01-0028.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010028 = "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 $Sum5101010028 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0028.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 - "disable-show" - $Sum5101010028 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0033 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0033.Button,Disable=Invisible,$Sum5101010033) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - PURE BEAUTY \nESPRESSO - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - เอสเพรสโซ่ช็อต \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0033.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0033.Button - StringFmt( $51-01-01-0033.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010033 = "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 $Sum5101010033 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0033.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 - "disable-show" - $Sum5101010033 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0036 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0036.Button,Disable=Invisible,$Sum5101010036) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - GEISHA ESPRESSO - เอสเพรสโซ่ช็อต \nGEISHA - - เอสเพรสโซ่ช็อต \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0036.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0036.Button - StringFmt( $51-01-01-0036.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010036 = "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 $Sum5101010036 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0036.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 - "disable-show" - $Sum5101010036 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0037 - - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0037.Button,Disable=Invisible,$Sum5101010037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - ROSALYN ESPRESSO - เอสเพรสโซ่ช็อต \nROSALYN - - เอสเพรสโซ่ช็อต \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0037.Button - StringFmt( $51-01-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum5101010037 = "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 $Sum5101010037 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0037.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 - "disable-show" - $Sum5101010037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0014 51-01-02-0011 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0014.Button,51-01-02-0011.Button,Disable=Invisible,$Sum51010100145101020011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - AMERICANO \nETHIOPAI GUJI - อเมริกาโน \nGuji Queen Berry - - อเมริกาโน \nGuji Queen Berry - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0014.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0014.Button - StringFmt( $51-01-01-0014.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0011.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0011.Button - StringFmt( $51-01-02-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100145101020011 = "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 $Sum51010100145101020011 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0014.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0011.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 - "disable-show" - $Sum51010100145101020011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0019 51-01-02-0019 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0019.Button,51-01-02-0019.Button,Disable=Invisible,$Sum51010100195101020019) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - BLUE DADDY \nAMERICANO - อเมริกาโน \nBLUE DADDY - - อเมริกาโน \nBLUE DADDY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - Washed process \nNote: Blue Berry & Floral - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - Washed process \nหอมบลูเบอร์รี และดอกไม้ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0019.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0019.Button - StringFmt( $51-01-01-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0019.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0019.Button - StringFmt( $51-01-02-0019.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100195101020019 = "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 $Sum51010100195101020019 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0019.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0019.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 - "disable-show" - $Sum51010100195101020019 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0021 51-01-02-0021 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0021.Button,51-01-02-0021.Button,Disable=Invisible,$Sum51010100215101020021) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MOZART \nAMERICANO - อเมริกาโน \nMOZART - MOZART \nAMERICANO - อเมริกาโน \nMOZART - - อเมริกาโน \nMOZART - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0021.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0021.Button - StringFmt( $51-01-01-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0021.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0021.Button - StringFmt( $51-01-02-0021.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100215101020021 = "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 $Sum51010100215101020021 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0021.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0021.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 - "disable-show" - $Sum51010100215101020021 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0025 51-01-02-0025 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0025.Button,51-01-02-0025.Button,Disable=Invisible,$Sum51010100255101020025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HONDURAS\nAMERICANO - อเมริกาโน \nWHISKY DUDE - HONDURAS\nAMERICANO - อเมริกาโน \nWHISKY DUDE - - อเมริกาโน \nWHISKY DUDE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - Washed Sherry cask ferment \nNotes: blueberry, walnut, dark... - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0025.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0025.Button - StringFmt( $51-01-01-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0025.Button - StringFmt( $51-01-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100255101020025 = "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 $Sum51010100255101020025 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0025.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0025.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 - "disable-show" - $Sum51010100255101020025 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0023 51-01-02-0023 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0023.Button,51-01-02-0023.Button,Disable=Invisible,$Sum51010100235101020023) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - SNOWWHITE \nAMERICANO - อเมริกาโน\nSNOWWHITE - - อเมริกาโน\nSNOWWHITE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - Anaerobic process \nNote: Jasmine & Honey - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0023.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0023.Button - StringFmt( $51-01-01-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0023.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0023.Button - StringFmt( $51-01-02-0023.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100235101020023 = "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 $Sum51010100235101020023 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0023.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0023.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 - "disable-show" - $Sum51010100235101020023 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0044 51-01-02-0044 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0044.Button,51-01-02-0044.Button,Disable=Invisible,$Sum51010100445101020044) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - CHOPIN \nAMERICANO - อเมริกาโน \nCHOPIN - - อเมริกาโน \nCHOPIN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - Raisin Honey process \nNote: Strawberry & Floral - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0044.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0044.Button - StringFmt( $51-01-01-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0044.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0044.Button - StringFmt( $51-01-02-0044.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100445101020044 = "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 $Sum51010100445101020044 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0044.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0044.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 - "disable-show" - $Sum51010100445101020044 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0047 51-01-02-0047 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0047.Button,51-01-02-0047.Button,Disable=Invisible,$Sum51010100475101020047) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - MANDARINE \nAMERICANO - อเมริกาโน \nMANDARINE - - อเมริกาโน \nMANDARINE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0047.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0047.Button - StringFmt( $51-01-01-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0047.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0047.Button - StringFmt( $51-01-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100475101020047 = "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 $Sum51010100475101020047 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0047.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100475101020047 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0050 51-01-02-0050 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0050.Button,51-01-02-0050.Button,Disable=Invisible,$Sum51010100505101020050) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - OPUS ONE \nAMERICANO - อเมริกาโน \nOPUS ONE - - อเมริกาโน \nOPUS ONE - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0050.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0050.Button - StringFmt( $51-01-01-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0050.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0050.Button - StringFmt( $51-01-02-0050.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100505101020050 = "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 $Sum51010100505101020050 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0050.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0050.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 - "disable-show" - $Sum51010100505101020050 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0027 51-01-02-0027 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0027.Button,51-01-02-0027.Button,Disable=Invisible,$Sum51010100275101020027) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - PEACHER \nAMERICANO - อเมริกาโน \nPEACHER - - อเมริกาโน \nPEACHER - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - Barrel-aged process \nNote: Peach, tea, chocolate - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0027.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0027.Button - StringFmt( $51-01-01-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0027.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0027.Button - StringFmt( $51-01-02-0027.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100275101020027 = "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 $Sum51010100275101020027 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0027.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0027.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 - "disable-show" - $Sum51010100275101020027 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0032 51-01-02-0032 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0032.Button,51-01-02-0032.Button,Disable=Invisible,$Sum51010100325101020032) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - PURE BEAUTY \nAMERICANO - อเมริกาโน \nPURE BEAUTY - - อเมริกาโน \nPURE BEAUTY - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - Light roast (natural process) Note: Floral & Tropical fruit - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0032.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0032.Button - StringFmt( $51-01-01-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0032.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0032.Button - StringFmt( $51-01-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100325101020032 = "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 $Sum51010100325101020032 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0032.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100325101020032 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0035 51-01-02-0035 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0035.Button,51-01-02-0035.Button,Disable=Invisible,$Sum51010100355101020035) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - GEISHA \nAMERICANO - อเมริกาโน \nGEISHA - - อเมริกาโน \nGEISHA - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - Light Roast (natural process) Lemon, Peach, Honey, Jasmin - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0035.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0035.Button - StringFmt( $51-01-01-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0035.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0035.Button - StringFmt( $51-01-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100355101020035 = "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 $Sum51010100355101020035 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0035.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0035.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 - "disable-show" - $Sum51010100355101020035 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0038 51-01-02-0038 - - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0038.Button,51-01-02-0038.Button,Disable=Invisible,$Sum51010100385101020038) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - ROSALYN \nAMERICANO - อเมริกาโน \nROSALYN - - อเมริกาโน \nROSALYN - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - Light Roast (natural process) \nPink​ Rose & Berry - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0038.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0038.Button - StringFmt( $51-01-01-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0038.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0038.Button - StringFmt( $51-01-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum51010100385101020038 = "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 $Sum51010100385101020038 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0038.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-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 - "disable-show" - $Sum51010100385101020038 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-01-01-0004 51-01-02-0002 51-01-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-01-01-0004.Button,51-01-02-0002.Button,51-01-03-0002.Button,Disable=Invisible,$Sum510101000451010200025101030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-01-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-01-0004.Button - StringFmt( $51-01-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-01-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-02-0002.Button - StringFmt( $51-01-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-01-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-01-03-0002.Button - StringFmt( $51-01-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510101000451010200025101030002 = "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 $Sum510101000451010200025101030002 = "Disable" Then - STRCONTAIN "ERR" $51-01-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $51-01-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-01-03-0002.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 - "disable-show" - $Sum510101000451010200025101030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-21-01-0004 51-21-02-0002 51-21-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-21-01-0004.Button,51-21-02-0002.Button,51-21-03-0002.Button,Disable=Invisible,$Sum512101000451210200025121030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - LATTE - ลาเต้ - LATTE - ลาเต้ - - ลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Espresso, Milk,\n milk - กาแฟ นม และ นม - Espresso, Milk,\n milk - กาแฟ นม และ นม - - กาแฟ นม และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-21-01-0004.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-01-0004.Button - StringFmt( $51-21-01-0004.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-21-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-02-0002.Button - StringFmt( $51-21-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-21-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-21-03-0002.Button - StringFmt( $51-21-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum512101000451210200025121030002 = "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 $Sum512101000451210200025121030002 = "Disable" Then - STRCONTAIN "ERR" $51-21-01-0004.TAG tag1_is_disable - STRCONTAIN "ERR" $51-21-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-21-03-0002.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 - "disable-show" - $Sum512101000451210200025121030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0037 51-02-02-0037 51-02-03-0037 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0037.Button,51-02-02-0037.Button,51-02-03-0037.Button,Disable=Invisible,$Sum510201003751020200375102030037) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - HOJICHA LATTE - โฮจิฉะลาเต้ - HOJICHA LATTE - โฮจิฉะลาเต้ - - โฮจิฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Hojicha and milk - ชาเขียวคั่ว และ นม - Hojicha and milk - ชาเขียวคั่ว และ นม - - ชาเขียวคั่ว และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0037.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0037.Button - StringFmt( $51-02-01-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0037.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0037.Button - StringFmt( $51-02-02-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0037.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0037.Button - StringFmt( $51-02-03-0037.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201003751020200375102030037 = "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 $Sum510201003751020200375102030037 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0037.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0037.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201003751020200375102030037 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0026 51-02-02-0026 51-02-03-0026 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0026.Button,51-02-02-0026.Button,51-02-03-0026.Button,Disable=Invisible,$Sum510201002651020200265102030026) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MATCHA LATTE - มัทฉะลาเต้ - MATCHA LATTE - มัทฉะลาเต้ - - มัทฉะลาเต้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - Green Tea, Milk, Sugar, Ice - ชาเชียว นม - - ชาเชียว นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0026.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0026.Button - StringFmt( $51-02-01-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0026.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0026.Button - StringFmt( $51-02-02-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0026.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0026.Button - StringFmt( $51-02-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201002651020200265102030026 = "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 $Sum510201002651020200265102030026 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0026.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0026.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201002651020200265102030026 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-02-01-0024 51-02-02-0024 51-02-03-0024 - - 33 - 22 - 225 - 296 - Flag( 51-02-01-0024.Button,51-02-02-0024.Button,51-02-03-0024.Button,Disable=Invisible,$Sum510201002451020200245102030024) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - THAI MILK TEA - ชานมไทย - THAI MILK TEA - ชานมไทย - - ชานมไทย - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - Thai tea, Sugar, milk - ชาไทย น้ำตาล และ นม - - ชาไทย น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-02-01-0024.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-01-0024.Button - StringFmt( $51-02-01-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-02-02-0024.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-02-0024.Button - StringFmt( $51-02-02-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-02-03-0024.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-02-03-0024.Button - StringFmt( $51-02-03-0024.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510201002451020200245102030024 = "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 $Sum510201002451020200245102030024 = "Disable" Then - STRCONTAIN "ERR" $51-02-01-0024.TAG tag1_is_disable - STRCONTAIN "ERR" $51-02-02-0024.TAG tag2_is_disable - STRCONTAIN "ERR" $51-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 - "disable-show" - $Sum510201002451020200245102030024 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0002 51-03-02-0002 51-03-03-0002 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0002.Button,51-03-02-0002.Button,51-03-03-0002.Button,Disable=Invisible,$Sum510301000251030200025103030002) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CHOCOLATE - โกโก้ - CHOCOLATE - โกโก้ - - โกโก้ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - Milk, Cocoa, Sugar - โกโก้ นมและน้ำตาล - - โกโก้ นมและน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0002.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0002.Button - StringFmt( $51-03-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0002.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0002.Button - StringFmt( $51-03-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0002.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0002.Button - StringFmt( $51-03-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301000251030200025103030002 = "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 $Sum510301000251030200025103030002 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0002.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0002.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-03-0002.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 - "disable-show" - $Sum510301000251030200025103030002 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0001 51-03-02-0001 51-03-03-0001 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0001.Button,51-03-02-0001.Button,51-03-03-0001.Button,Disable=Invisible,$Sum510301000151030200015103030001) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - CARAMEL MILK - นมคาราเมล - CARAMEL MILK - นมคาราเมล - - นมคาราเมล - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - Milk, Caramel Syrup - นม น้ำเชื่อมคาราเมล - - นม น้ำเชื่อมคาราเมล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0001.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0001.Button - StringFmt( $51-03-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0001.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0001.Button - StringFmt( $51-03-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0001.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0001.Button - StringFmt( $51-03-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301000151030200015103030001 = "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 $Sum510301000151030200015103030001 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0001.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0001.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum510301000151030200015103030001 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-03-02-0006 51-03-03-0006 - - 33 - 22 - 225 - 296 - Flag( 51-03-02-0006.Button,51-03-03-0006.Button,Disable=Invisible,$Sum51030200065103030006) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PINK MILK - นมชมพู - PINK MILK - นมชมพู - - นมชมพู - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - Salak Syrup, Milk,\nSugar - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - น้ำแดงกลิ่นสละ นม \nน้ำตาล - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0006.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0006.Button - StringFmt( $51-03-02-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0006.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0006.Button - StringFmt( $51-03-03-0006.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51030200065103030006 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0006.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum51030200065103030006 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0011 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0011.Button,Disable=Invisible,$Sum5103030011) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - STRAWMILK \nSMOOTHIE - นมสตอเบอร์รี่ปั่น - - นมสตอเบอร์รี่ปั่น - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - Milk, Strawberry Syrup - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - นม น้ำเชื่อมสตอเบอร์รี่ \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0011.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0011.Button - StringFmt( $51-03-03-0011.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030011 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030011 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0088 51-05-03-0088 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0088.Button,51-05-03-0088.Button,Disable=Invisible,$Sum51050200885105030088) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON - เมล่อนโซดา - MELON - เมล่อนโซดา - - เมล่อนโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Melon Syrup, Ice - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - Melon Syrup, Ice - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - - น้ำเชื่อมเมล่อน โซดา \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0088.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0088.Button - StringFmt( $51-05-02-0088.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0088.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0088.Button - StringFmt( $51-05-03-0088.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200885105030088 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0088.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0088.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 - "disable-show" - $Sum51050200885105030088 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; 51-03-01-0022 51-03-02-0022 51-03-03-0022 - - 33 - 22 - 225 - 296 - Flag( 51-03-01-0022.Button,51-03-02-0022.Button,51-03-03-0022.Button,Disable=Invisible,$Sum510301002251030200225103030022) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - MELON MILK - นมเมล่อน - MELON MILK - นมเมล่อน - - นมเมล่อน - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - Milk & Melon Syrup - นม และ น้ำเชื่อมเมล่อน - - นม และ น้ำเชื่อมเมล่อน - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - $51-03-01-0022.Button - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-01-0022.Button - StringFmt( $51-03-01-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-03-02-0022.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-02-0022.Button - StringFmt( $51-03-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0022.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0022.Button - StringFmt( $51-03-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - If $Sum510301002251030200225103030022 = "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 $Sum510301002251030200225103030022 = "Disable" Then - STRCONTAIN "ERR" $51-03-01-0022.TAG tag1_is_disable - STRCONTAIN "ERR" $51-03-02-0022.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum510301002251030200225103030022 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0089 51-05-03-0089 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0089.Button,51-05-03-0089.Button,Disable=Invisible,$Sum51050200895105030089) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - YUZU - ยูซุโซดา - YUZU - ยูซุโซดา - - ยูซุโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Yuzu Syrup, Ice - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - Yuzu Syrup, Ice - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - - น้ำเชื่อมยูซุ โซดา \nและน้ำแข็ง - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0089.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0089.Button - StringFmt( $51-05-02-0089.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0089.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0089.Button - StringFmt( $51-05-03-0089.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200895105030089 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0089.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-03-0089.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 - "disable-show" - $Sum51050200895105030089 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0009 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0009.Button,Disable=Invisible,$Sum5103030009) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - OREO VOLCANO - โอริโอ้ปั่นภูเขาไฟ - - โอริโอ้ปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - Milk, Sugar, Oreo - นม น้ำตาล โอริโอ้ \n - - นม น้ำตาล โอริโอ้ \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0009.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0009.Button - StringFmt( $51-03-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030009 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-03-0009.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 - "disable-show" - $Sum5103030009 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - - 51-03-03-0020 - - 33 - 22 - 225 - 296 - Flag( 51-03-03-0020.Button,Disable=Invisible,$Sum5103030020) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - OVALTINE SMOOTHIE \nVOLCANO - โอวัลตินปั่นภูเขาไฟ - - โอวัลตินปั่นภูเขาไฟ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - Ovaltine, Sugar, milk - โอวัลติน น้ำตาล และ นม - - โอวัลติน น้ำตาล และ นม - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - "Invisible" - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-03-03-0020.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-03-03-0020.Button - StringFmt( $51-03-03-0020.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5103030020 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable - STRCONTAIN "ERR" $51-03-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 - "disable-show" - $Sum5103030020 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0076 - - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0076.Button,Disable=Invisible,$Sum5105020076) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PEPSI Max YUZU - เป๊ปซี่ยูซุ - PEPSI Max YUZU - เป๊ปซี่ยูซุ - - เป๊ปซี่ยูซุ - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Pepsi Max, Yuzu Syrup& Ice - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - Pepsi Max, Yuzu Syrup& Ice - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - - เป๊ปซี่ น้ำเชื่อมยูซุ โซดา - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0076.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0076.Button - StringFmt( $51-05-02-0076.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - "Invisible" - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum5105020076 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0076.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 - "disable-show" - $Sum5105020076 - - 000013 - - center-vertical-horizontal - - - ; ==================> Len = 3 - ; - 51-05-02-0025 51-05-03-0025 - - 33 - 22 - 225 - 296 - Flag( 51-05-02-0025.Button,51-05-03-0025.Button,Disable=Invisible,$Sum51050200255105030025) - - - 16 - 164 - 22 - 222 - "multi2" - KanitMediumTTF - 0x322B26 - - PLUM \nSPARKLING LIMENADE - บ๊วยมะนาวโซดา - PLUM \nSPARKLING LIMENADE - บ๊วยมะนาวโซดา - - บ๊วยมะนาวโซดา - - - - 16 - 220 - 14 - 222 - KanitMediumTTF - 0x6F5F51 - - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - Ume Syrup, Limenade, Soda - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - น้ำเชื่อมบ๊วย มะนาว โซดา \n - - - - 16 - 264 - Var( DirImage2 + "option_deactive.png" ) - - - 16 - 264 - "Invisible" - Var( DirImage2 + "hot.png" ) - Var( DirImage2 + "hot_db.png" ) - - - TextPriceMenuHotX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - "Invisible" - StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - Var( DirImage2 + "cold.png" ) - Var( DirImage2 + "cold_db.png" ) - $51-05-02-0025.Button - - - 113 - TextPriceMenuY - TextPriceMenuSize - 220 - KanitMediumTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-02-0025.Button - StringFmt( $51-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 146 - 264 - Var( DirImage2 + "blend.png" ) - Var( DirImage2 + "blend_db.png" ) - $51-05-03-0025.Button - - - TextPriceMenuBlendX - TextPriceMenuY - TextPriceMenuSize - 220 - KanitRegularTTF - 0x6F5F51 - 0xEAE6E1 - $51-05-03-0025.Button - StringFmt( $51-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test - - - 81 - 264 - - eval( - If ICE_PROCESS_STATUS = 2 Then - - Var ice_tab_process_show = "Invisible" - - 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 $Sum51050200255105030025 = "Disable" Then - STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable - STRCONTAIN "ERR" $51-05-02-0025.TAG tag2_is_disable - STRCONTAIN "ERR" $51-05-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 - "disable-show" - $Sum51050200255105030025 - - 000013 - - center-vertical-horizontal - - - -; Cart - - - - - - - - - - - - - Var BigButtonEnable = "Enable" - Refresh - - - Var BigButtonEnable = "Invisible" - Refresh - - - - - - diff --git a/inter/tha/xml/multi/event/script_common_for_open_promotion_xml.ev b/inter/tha/xml/multi/event/script_common_for_open_promotion_xml.ev deleted file mode 100644 index 270ae9ed..00000000 --- a/inter/tha/xml/multi/event/script_common_for_open_promotion_xml.ev +++ /dev/null @@ -1,42 +0,0 @@ -; thailand - - -; zone promote -Var BigButtonEnable = "Enable" - -Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml" -Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml" - -If WinterWarmersCatalogFlag = 1 Then - Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_winter_warmers.lxml" -EndIf - -If WestfieldCatalogFlag = 1 Then - Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_westfield.lxml" -EndIf - -If AnniverseryPro = 1 Then - Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_anniversary_1st.lxml" -EndIf - -If OpenFromPageBoard = 1 Then - If EnableMultiInstance = "true" Then - OpenInst 2 RecommendPageMulti - OpenInst 3 "ROOT/taobin_project/xml/topview2.xml" - Else - OpenInst 2 RecommendPage - EndIf -Else - If EnableMultiInstance = "true" Then - Open RecommendPageMulti - Else - Open RecommendPage - EndIf -EndIf - -Var OpenFromPageBoard = 0 - -If OpenFromMulti = 1 Then - TabMenuVisibleInst 99 -EndIf -Var OpenFromMulti = 0 diff --git a/inter/tha/xml/multi/event/tricker.ev b/inter/tha/xml/multi/event/tricker.ev deleted file mode 100644 index f9f28c1f..00000000 --- a/inter/tha/xml/multi/event/tricker.ev +++ /dev/null @@ -1,37 +0,0 @@ -; thailand - - -;DEBUGVAR SystemDateMonthInt -;DEBUGVAR SystemDateDayInt - -; Reset flag away. - -; Enable app game -Var GameEnableFromTrickerEv = 1 - -Var NewCollectPointFlag = 1 - -Var WinterWarmersCatalogFlag = 0 - -Var WestfieldCatalogFlag = 0 - -; 2 - 29 Sep -Var AnniverseryPro = 0 - -If SystemDateMonthInt = 10 Then - If SystemDateDayInt >= 2 Then - If SystemDateDayInt <= 29 then - Var AnniverseryPro = 1 - EndIf - EndIf -EndIf - -Var XMLLiveInfoEnable = 1 - -If BoxID = 200027 Then - Var AnniverseryPro = 1 -EndIf - - -DEBUGVAR Propepsi99Enable -DEBUGVAR DisplayFormatFull \ No newline at end of file diff --git a/inter/tha/xml/multi/menu_catalog_new.lxml b/inter/tha/xml/multi/menu_catalog_new.lxml index 6a225d26..87ca155f 100644 --- a/inter/tha/xml/multi/menu_catalog_new.lxml +++ b/inter/tha/xml/multi/menu_catalog_new.lxml @@ -21,35 +21,6 @@ EndIf - - If show_eng = "true" Then - If SaveStringInst = "ShowThai" Then - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If show_eng = "false" Then - If SaveStringInst = "ShowMYANMAR" Then - Var show_eng = "" - InstanceGetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If show_eng = "" Then - If SaveStringInst "ShowEng" Then - Var show_eng = "true" - InstanceGetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - diff --git a/inter/tha/xml/multi/menu_new_layout_gen_v2.py b/inter/tha/xml/multi/menu_new_layout_gen_v2.py index 26e673d1..0ac1f8a4 100644 --- a/inter/tha/xml/multi/menu_new_layout_gen_v2.py +++ b/inter/tha/xml/multi/menu_new_layout_gen_v2.py @@ -519,10 +519,12 @@ out_xml( '\t128\r\n') out_xml( '\t64\r\n') out_xml( '\t 1 \r\n') - out_xml( '\t 18 \r\n') + out_xml( '\t 14 \r\n') out_xml( '\t OpunMediumTTF \r\n') out_xml( '\t 0x6F5F51 \r\n') - + + out_xml( '\t "auto,value" \r\n') + out_xml( '\t 128 \r\n') out_xml( '\t "disable-show" \r\n') out_xml( '\t $Sum' + str_con_var +' \r\n') @@ -553,10 +555,17 @@ out_xml( '\t\t\tVar $Sum' + str_con_var +'TextID !assigned GETS($Sum' + str_con_var +'Tag,"TextID")\r\n') #out_xml( '\t\tDEBUGVAR TextMessageID\r\n') + out_xml( '\t\t\tIf $Sum' + str_con_var +'TextID != "" Then\r\n') out_xml( '\t\t\t Var $Sum' + str_con_var +'TextValue = ""\r\n') out_xml( '\t\t\tEndIf\r\n') + out_xml( '\t\t\tIf $Sum' + str_con_var +'TextValue = "" Then\r\n') + out_xml( '\t\t\t\tIf $Sum' + str_con_var +'TextID = "" Then\r\n') + out_xml( '\t\t\t\t Var $Sum' + str_con_var +'TextID = "000013"\r\n') + out_xml( '\t\t\t\tEndIf\r\n') + out_xml( '\t\t\tEndIf\r\n') + out_xml( '\t\tEndIf\r\n') out_xml( '\t\r\n') diff --git a/inter/tha/xml/multi/page_catalog.lxml b/inter/tha/xml/multi/page_catalog.lxml index d18874ec..fb65163b 100644 --- a/inter/tha/xml/multi/page_catalog.lxml +++ b/inter/tha/xml/multi/page_catalog.lxml @@ -18,6 +18,20 @@ DEBUGVAR ToppingNewShow + DEBUGVAR OpenFromPageBoard + If OpenFromPageBoard = 1 Then + Var OpenFromPageBoard = 0 + Var langnext1 = "true" + Var langnext2 = "true" + Var langnext3 = "true" + Var langnext4 = "true" + Var langnext5 = "true" + Var langnext6 = "true" + Var langnext7 = "true" + Var langnext8 = "true" + SAVELOG "======================================= RefreshAll Languages ================================" + EndIf + Var NextPage = "-" Var Seeker.thankLidFlag = 0 @@ -533,7 +547,9 @@ Var OpenFromMulti = 1 + TRY "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/event/script_common_for_open_promotion_xml.ev" + RootLayoutVisible 3 "hide" RootLayoutVisible 13 "hide" @@ -561,6 +577,7 @@ If Inst5MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 2 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -631,6 +648,7 @@ If Inst6MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 3 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -664,6 +682,7 @@ If Inst7MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 4 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -697,6 +716,7 @@ If Inst11MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 7 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -730,6 +750,7 @@ If Inst10MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 8 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -766,6 +787,7 @@ If Inst8MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 5 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -798,6 +820,7 @@ SoundVolume If Inst8MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 5 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" @@ -858,6 +881,7 @@ If Inst9MenuLoaded = "done" Then + Var MultiProcess = "Invisible" TabMenuVisibleInst 6 OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml" diff --git a/inter/tha/xml/multi/page_catalog_group_appfast.lxml b/inter/tha/xml/multi/page_catalog_group_appfast.lxml index e0bc14b9..72fa911b 100644 --- a/inter/tha/xml/multi/page_catalog_group_appfast.lxml +++ b/inter/tha/xml/multi/page_catalog_group_appfast.lxml @@ -451,9 +451,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204021018 @@ -476,6 +477,11 @@ If $Sum1204021018TextID != "" Then Var $Sum1204021018TextValue = "" EndIf + If $Sum1204021018TextValue = "" Then + If $Sum1204021018TextID = "" Then + Var $Sum1204021018TextID = "000013" + EndIf + EndIf EndIf @@ -800,9 +806,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204021019 @@ -825,6 +832,11 @@ If $Sum1204021019TextID != "" Then Var $Sum1204021019TextValue = "" EndIf + If $Sum1204021019TextValue = "" Then + If $Sum1204021019TextID = "" Then + Var $Sum1204021019TextID = "000013" + EndIf + EndIf EndIf @@ -1149,9 +1161,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204021020 @@ -1174,6 +1187,11 @@ If $Sum1204021020TextID != "" Then Var $Sum1204021020TextValue = "" EndIf + If $Sum1204021020TextValue = "" Then + If $Sum1204021020TextID = "" Then + Var $Sum1204021020TextID = "000013" + EndIf + EndIf EndIf @@ -1498,9 +1516,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204021021 @@ -1523,6 +1542,11 @@ If $Sum1204021021TextID != "" Then Var $Sum1204021021TextValue = "" EndIf + If $Sum1204021021TextValue = "" Then + If $Sum1204021021TextID = "" Then + Var $Sum1204021021TextID = "000013" + EndIf + EndIf EndIf @@ -1847,9 +1871,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204021022 @@ -1872,6 +1897,11 @@ If $Sum1204021022TextID != "" Then Var $Sum1204021022TextValue = "" EndIf + If $Sum1204021022TextValue = "" Then + If $Sum1204021022TextID = "" Then + Var $Sum1204021022TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_cocktail.lxml b/inter/tha/xml/multi/page_catalog_group_cocktail.lxml index 7dd3f879..6139e1aa 100644 --- a/inter/tha/xml/multi/page_catalog_group_cocktail.lxml +++ b/inter/tha/xml/multi/page_catalog_group_cocktail.lxml @@ -411,9 +411,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050001 @@ -436,6 +437,11 @@ If $Sum1199050001TextID != "" Then Var $Sum1199050001TextValue = "" EndIf + If $Sum1199050001TextValue = "" Then + If $Sum1199050001TextID = "" Then + Var $Sum1199050001TextID = "000013" + EndIf + EndIf EndIf @@ -760,9 +766,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050002 @@ -785,6 +792,11 @@ If $Sum1199050002TextID != "" Then Var $Sum1199050002TextValue = "" EndIf + If $Sum1199050002TextValue = "" Then + If $Sum1199050002TextID = "" Then + Var $Sum1199050002TextID = "000013" + EndIf + EndIf EndIf @@ -1109,9 +1121,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050003 @@ -1134,6 +1147,11 @@ If $Sum1199050003TextID != "" Then Var $Sum1199050003TextValue = "" EndIf + If $Sum1199050003TextValue = "" Then + If $Sum1199050003TextID = "" Then + Var $Sum1199050003TextID = "000013" + EndIf + EndIf EndIf @@ -1458,9 +1476,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050004 @@ -1483,6 +1502,11 @@ If $Sum1199050004TextID != "" Then Var $Sum1199050004TextValue = "" EndIf + If $Sum1199050004TextValue = "" Then + If $Sum1199050004TextID = "" Then + Var $Sum1199050004TextID = "000013" + EndIf + EndIf EndIf @@ -1807,9 +1831,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050005 @@ -1832,6 +1857,11 @@ If $Sum1199050005TextID != "" Then Var $Sum1199050005TextValue = "" EndIf + If $Sum1199050005TextValue = "" Then + If $Sum1199050005TextID = "" Then + Var $Sum1199050005TextID = "000013" + EndIf + EndIf EndIf @@ -2156,9 +2186,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050006 @@ -2181,6 +2212,11 @@ If $Sum1199050006TextID != "" Then Var $Sum1199050006TextValue = "" EndIf + If $Sum1199050006TextValue = "" Then + If $Sum1199050006TextID = "" Then + Var $Sum1199050006TextID = "000013" + EndIf + EndIf EndIf @@ -2505,9 +2541,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050007 @@ -2530,6 +2567,11 @@ If $Sum1199050007TextID != "" Then Var $Sum1199050007TextValue = "" EndIf + If $Sum1199050007TextValue = "" Then + If $Sum1199050007TextID = "" Then + Var $Sum1199050007TextID = "000013" + EndIf + EndIf EndIf @@ -2854,9 +2896,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050008 @@ -2879,6 +2922,11 @@ If $Sum1199050008TextID != "" Then Var $Sum1199050008TextValue = "" EndIf + If $Sum1199050008TextValue = "" Then + If $Sum1199050008TextID = "" Then + Var $Sum1199050008TextID = "000013" + EndIf + EndIf EndIf @@ -3203,9 +3251,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050009 @@ -3228,6 +3277,11 @@ If $Sum1199050009TextID != "" Then Var $Sum1199050009TextValue = "" EndIf + If $Sum1199050009TextValue = "" Then + If $Sum1199050009TextID = "" Then + Var $Sum1199050009TextID = "000013" + EndIf + EndIf EndIf @@ -3552,9 +3606,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050010 @@ -3577,6 +3632,11 @@ If $Sum1199050010TextID != "" Then Var $Sum1199050010TextValue = "" EndIf + If $Sum1199050010TextValue = "" Then + If $Sum1199050010TextID = "" Then + Var $Sum1199050010TextID = "000013" + EndIf + EndIf EndIf @@ -3901,9 +3961,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050012 @@ -3926,6 +3987,11 @@ If $Sum1199050012TextID != "" Then Var $Sum1199050012TextValue = "" EndIf + If $Sum1199050012TextValue = "" Then + If $Sum1199050012TextID = "" Then + Var $Sum1199050012TextID = "000013" + EndIf + EndIf EndIf @@ -4250,9 +4316,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050013 @@ -4275,6 +4342,11 @@ If $Sum1199050013TextID != "" Then Var $Sum1199050013TextValue = "" EndIf + If $Sum1199050013TextValue = "" Then + If $Sum1199050013TextID = "" Then + Var $Sum1199050013TextID = "000013" + EndIf + EndIf EndIf @@ -4599,9 +4671,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050017 @@ -4624,6 +4697,11 @@ If $Sum1199050017TextID != "" Then Var $Sum1199050017TextValue = "" EndIf + If $Sum1199050017TextValue = "" Then + If $Sum1199050017TextID = "" Then + Var $Sum1199050017TextID = "000013" + EndIf + EndIf EndIf @@ -4948,9 +5026,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050018 @@ -4973,6 +5052,11 @@ If $Sum1199050018TextID != "" Then Var $Sum1199050018TextValue = "" EndIf + If $Sum1199050018TextValue = "" Then + If $Sum1199050018TextID = "" Then + Var $Sum1199050018TextID = "000013" + EndIf + EndIf EndIf @@ -5297,9 +5381,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050015 @@ -5322,6 +5407,11 @@ If $Sum1199050015TextID != "" Then Var $Sum1199050015TextValue = "" EndIf + If $Sum1199050015TextValue = "" Then + If $Sum1199050015TextID = "" Then + Var $Sum1199050015TextID = "000013" + EndIf + EndIf EndIf @@ -5646,9 +5736,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050014 @@ -5671,6 +5762,11 @@ If $Sum1199050014TextID != "" Then Var $Sum1199050014TextValue = "" EndIf + If $Sum1199050014TextValue = "" Then + If $Sum1199050014TextID = "" Then + Var $Sum1199050014TextID = "000013" + EndIf + EndIf EndIf @@ -5995,9 +6091,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050019 @@ -6020,6 +6117,11 @@ If $Sum1199050019TextID != "" Then Var $Sum1199050019TextValue = "" EndIf + If $Sum1199050019TextValue = "" Then + If $Sum1199050019TextID = "" Then + Var $Sum1199050019TextID = "000013" + EndIf + EndIf EndIf @@ -6344,9 +6446,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050020 @@ -6369,6 +6472,11 @@ If $Sum1199050020TextID != "" Then Var $Sum1199050020TextValue = "" EndIf + If $Sum1199050020TextValue = "" Then + If $Sum1199050020TextID = "" Then + Var $Sum1199050020TextID = "000013" + EndIf + EndIf EndIf @@ -6693,9 +6801,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050021 @@ -6718,6 +6827,11 @@ If $Sum1199050021TextID != "" Then Var $Sum1199050021TextValue = "" EndIf + If $Sum1199050021TextValue = "" Then + If $Sum1199050021TextID = "" Then + Var $Sum1199050021TextID = "000013" + EndIf + EndIf EndIf @@ -7042,9 +7156,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050022 @@ -7067,6 +7182,11 @@ If $Sum1199050022TextID != "" Then Var $Sum1199050022TextValue = "" EndIf + If $Sum1199050022TextValue = "" Then + If $Sum1199050022TextID = "" Then + Var $Sum1199050022TextID = "000013" + EndIf + EndIf EndIf @@ -7391,9 +7511,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050023 @@ -7416,6 +7537,11 @@ If $Sum1199050023TextID != "" Then Var $Sum1199050023TextValue = "" EndIf + If $Sum1199050023TextValue = "" Then + If $Sum1199050023TextID = "" Then + Var $Sum1199050023TextID = "000013" + EndIf + EndIf EndIf @@ -7740,9 +7866,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050024 @@ -7765,6 +7892,11 @@ If $Sum1199050024TextID != "" Then Var $Sum1199050024TextValue = "" EndIf + If $Sum1199050024TextValue = "" Then + If $Sum1199050024TextID = "" Then + Var $Sum1199050024TextID = "000013" + EndIf + EndIf EndIf @@ -8089,9 +8221,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050025 @@ -8114,6 +8247,11 @@ If $Sum1199050025TextID != "" Then Var $Sum1199050025TextValue = "" EndIf + If $Sum1199050025TextValue = "" Then + If $Sum1199050025TextID = "" Then + Var $Sum1199050025TextID = "000013" + EndIf + EndIf EndIf @@ -8438,9 +8576,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050026 @@ -8463,6 +8602,11 @@ If $Sum1199050026TextID != "" Then Var $Sum1199050026TextValue = "" EndIf + If $Sum1199050026TextValue = "" Then + If $Sum1199050026TextID = "" Then + Var $Sum1199050026TextID = "000013" + EndIf + EndIf EndIf @@ -8787,9 +8931,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050027 @@ -8812,6 +8957,11 @@ If $Sum1199050027TextID != "" Then Var $Sum1199050027TextValue = "" EndIf + If $Sum1199050027TextValue = "" Then + If $Sum1199050027TextID = "" Then + Var $Sum1199050027TextID = "000013" + EndIf + EndIf EndIf @@ -9136,9 +9286,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050028 @@ -9161,6 +9312,11 @@ If $Sum1199050028TextID != "" Then Var $Sum1199050028TextValue = "" EndIf + If $Sum1199050028TextValue = "" Then + If $Sum1199050028TextID = "" Then + Var $Sum1199050028TextID = "000013" + EndIf + EndIf EndIf @@ -9485,9 +9641,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050029 @@ -9510,6 +9667,11 @@ If $Sum1199050029TextID != "" Then Var $Sum1199050029TextValue = "" EndIf + If $Sum1199050029TextValue = "" Then + If $Sum1199050029TextID = "" Then + Var $Sum1199050029TextID = "000013" + EndIf + EndIf EndIf @@ -9834,9 +9996,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050030 @@ -9859,6 +10022,11 @@ If $Sum1199050030TextID != "" Then Var $Sum1199050030TextValue = "" EndIf + If $Sum1199050030TextValue = "" Then + If $Sum1199050030TextID = "" Then + Var $Sum1199050030TextID = "000013" + EndIf + EndIf EndIf @@ -10183,9 +10351,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -10208,6 +10377,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -10532,9 +10706,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050031 @@ -10557,6 +10732,11 @@ If $Sum1199050031TextID != "" Then Var $Sum1199050031TextValue = "" EndIf + If $Sum1199050031TextValue = "" Then + If $Sum1199050031TextID = "" Then + Var $Sum1199050031TextID = "000013" + EndIf + EndIf EndIf @@ -10881,9 +11061,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -10906,6 +11087,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -11230,9 +11416,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050032 @@ -11255,6 +11442,11 @@ If $Sum1199050032TextID != "" Then Var $Sum1199050032TextValue = "" EndIf + If $Sum1199050032TextValue = "" Then + If $Sum1199050032TextID = "" Then + Var $Sum1199050032TextID = "000013" + EndIf + EndIf EndIf @@ -11579,9 +11771,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -11604,6 +11797,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -11928,9 +12126,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050033 @@ -11953,6 +12152,11 @@ If $Sum1199050033TextID != "" Then Var $Sum1199050033TextValue = "" EndIf + If $Sum1199050033TextValue = "" Then + If $Sum1199050033TextID = "" Then + Var $Sum1199050033TextID = "000013" + EndIf + EndIf EndIf @@ -12277,9 +12481,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -12302,6 +12507,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -12626,9 +12836,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050034 @@ -12651,6 +12862,11 @@ If $Sum1199050034TextID != "" Then Var $Sum1199050034TextValue = "" EndIf + If $Sum1199050034TextValue = "" Then + If $Sum1199050034TextID = "" Then + Var $Sum1199050034TextID = "000013" + EndIf + EndIf EndIf @@ -12975,9 +13191,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -13000,6 +13217,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -13324,9 +13546,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050035 @@ -13349,6 +13572,11 @@ If $Sum1199050035TextID != "" Then Var $Sum1199050035TextValue = "" EndIf + If $Sum1199050035TextValue = "" Then + If $Sum1199050035TextID = "" Then + Var $Sum1199050035TextID = "000013" + EndIf + EndIf EndIf @@ -13673,9 +13901,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -13698,6 +13927,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -14022,9 +14256,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050036 @@ -14047,6 +14282,11 @@ If $Sum1199050036TextID != "" Then Var $Sum1199050036TextValue = "" EndIf + If $Sum1199050036TextValue = "" Then + If $Sum1199050036TextID = "" Then + Var $Sum1199050036TextID = "000013" + EndIf + EndIf EndIf @@ -14371,9 +14611,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -14396,6 +14637,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -14720,9 +14966,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050037 @@ -14745,6 +14992,11 @@ If $Sum1199050037TextID != "" Then Var $Sum1199050037TextValue = "" EndIf + If $Sum1199050037TextValue = "" Then + If $Sum1199050037TextID = "" Then + Var $Sum1199050037TextID = "000013" + EndIf + EndIf EndIf @@ -15069,9 +15321,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -15094,6 +15347,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -15418,9 +15676,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050038 @@ -15443,6 +15702,11 @@ If $Sum1199050038TextID != "" Then Var $Sum1199050038TextValue = "" EndIf + If $Sum1199050038TextValue = "" Then + If $Sum1199050038TextID = "" Then + Var $Sum1199050038TextID = "000013" + EndIf + EndIf EndIf @@ -15767,9 +16031,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -15792,6 +16057,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -16116,9 +16386,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050039 @@ -16141,6 +16412,11 @@ If $Sum1199050039TextID != "" Then Var $Sum1199050039TextValue = "" EndIf + If $Sum1199050039TextValue = "" Then + If $Sum1199050039TextID = "" Then + Var $Sum1199050039TextID = "000013" + EndIf + EndIf EndIf @@ -16465,9 +16741,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -16490,6 +16767,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -16814,9 +17096,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050040 @@ -16839,6 +17122,11 @@ If $Sum1199050040TextID != "" Then Var $Sum1199050040TextValue = "" EndIf + If $Sum1199050040TextValue = "" Then + If $Sum1199050040TextID = "" Then + Var $Sum1199050040TextID = "000013" + EndIf + EndIf EndIf @@ -17163,9 +17451,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -17188,6 +17477,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -17512,9 +17806,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1199050041 @@ -17537,6 +17832,11 @@ If $Sum1199050041TextID != "" Then Var $Sum1199050041TextValue = "" EndIf + If $Sum1199050041TextValue = "" Then + If $Sum1199050041TextID = "" Then + Var $Sum1199050041TextID = "000013" + EndIf + EndIf EndIf @@ -17861,9 +18161,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -17886,6 +18187,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_coffee.lxml b/inter/tha/xml/multi/page_catalog_group_coffee.lxml index 24d0f170..267761b8 100644 --- a/inter/tha/xml/multi/page_catalog_group_coffee.lxml +++ b/inter/tha/xml/multi/page_catalog_group_coffee.lxml @@ -15,20 +15,24 @@ EndIf + Var CoffeeRefreshTimeOut = 0 + + + SAVELOG "Onshow 1" ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_default_init.lxml" Var Menu2Selected = "PressForever" - + SAVELOG "Onshow 2" ;include="ROOT/taobin_project/inter/tha/xml/multi/tab_menu_show_and_refresh.lxml" Var Timeout = 0 - + SAVELOG "Onshow 3" ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new_menu.lxml" SetInstanceIgnoreTouch @@ -57,6 +61,7 @@ InstanceGetString SaveStringInst ;DEBUGVAR SaveStringInst If SaveStringInst = "RefreshNow" Then + SAVELOG "OPEN slient Refresh" GetXMLFileNameCurrentRunning CurrentOpenFile Open CurrentOpenFile @@ -73,6 +78,7 @@ If SlientRefreshEnable = 1 Then If SaveStringInst = "RefreshNow" Then + SAVELOG "OPEN slient 2" GetXMLFileNameCurrentRunning CurrentOpenFile Open CurrentOpenFile @@ -87,6 +93,7 @@ If SlientRefreshIndex = 2 Then If inst_show2 = 0 Then + SAVELOG "OPEN slient 1" GetXMLFileNameCurrentRunning CurrentOpenFile2 Open CurrentOpenFile2 @@ -101,6 +108,24 @@ DEBUGVAR langnext RefreshAll EndIf + + InstanceGetString SaveStringInst + If SaveStringInst = "RefreshNow" Then + + Else + If LanguageShow = "ENG" Then + Var SaveStringInst = "ShowEng" + Var show_eng = "false" + EndIf + If LanguageShow = "THAI" Then + Var SaveStringInst = "ShowThai" + Var show_eng = "true" + EndIf + If LanguageShow "MYANMAR" Then + Var show_eng = "false" + Var SaveStringInst = "ShowMYANMAR" + EndIf + EndIf EndIf @@ -198,71 +223,18 @@ SAVELOG "Runscript 3" Script "-" "-" EndIf + + If CoffeeRefreshTimeOut > 15 Then + Var CoffeeRefreshTimeOut = 0 + Script "-" "-" + EndIf + + Var CoffeeRefreshTimeOut = CoffeeRefreshTimeOut + 1 TimerReset - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - DEBUGVAR EnabledBlockUpdateInst6 - DEBUGVAR EnabledBlocksDrawInst6 - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" @@ -599,9 +571,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101007412010200741201030074 @@ -624,6 +597,11 @@ If $Sum120101007412010200741201030074TextID != "" Then Var $Sum120101007412010200741201030074TextValue = "" EndIf + If $Sum120101007412010200741201030074TextValue = "" Then + If $Sum120101007412010200741201030074TextID = "" Then + Var $Sum120101007412010200741201030074TextID = "000013" + EndIf + EndIf EndIf @@ -952,9 +930,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101007412210200741221030074 @@ -977,6 +956,11 @@ If $Sum122101007412210200741221030074TextID != "" Then Var $Sum122101007412210200741221030074TextValue = "" EndIf + If $Sum122101007412210200741221030074TextValue = "" Then + If $Sum122101007412210200741221030074TextID = "" Then + Var $Sum122101007412210200741221030074TextID = "000013" + EndIf + EndIf EndIf @@ -1305,9 +1289,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010001 @@ -1330,6 +1315,11 @@ If $Sum1201010001TextID != "" Then Var $Sum1201010001TextValue = "" EndIf + If $Sum1201010001TextValue = "" Then + If $Sum1201010001TextID = "" Then + Var $Sum1201010001TextID = "000013" + EndIf + EndIf EndIf @@ -1658,9 +1648,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221010001 @@ -1683,6 +1674,11 @@ If $Sum1221010001TextID != "" Then Var $Sum1221010001TextValue = "" EndIf + If $Sum1221010001TextValue = "" Then + If $Sum1221010001TextID = "" Then + Var $Sum1221010001TextID = "000013" + EndIf + EndIf EndIf @@ -2011,9 +2007,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1211010001 @@ -2036,6 +2033,11 @@ If $Sum1211010001TextID != "" Then Var $Sum1211010001TextValue = "" EndIf + If $Sum1211010001TextValue = "" Then + If $Sum1211010001TextID = "" Then + Var $Sum1211010001TextID = "000013" + EndIf + EndIf EndIf @@ -2364,9 +2366,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1231010001 @@ -2389,6 +2392,11 @@ If $Sum1231010001TextID != "" Then Var $Sum1231010001TextValue = "" EndIf + If $Sum1231010001TextValue = "" Then + If $Sum1231010001TextID = "" Then + Var $Sum1231010001TextID = "000013" + EndIf + EndIf EndIf @@ -2717,9 +2725,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201019901 @@ -2742,6 +2751,11 @@ If $Sum1201019901TextID != "" Then Var $Sum1201019901TextValue = "" EndIf + If $Sum1201019901TextValue = "" Then + If $Sum1201019901TextID = "" Then + Var $Sum1201019901TextID = "000013" + EndIf + EndIf EndIf @@ -3070,9 +3084,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221019901 @@ -3095,6 +3110,11 @@ If $Sum1221019901TextID != "" Then Var $Sum1221019901TextValue = "" EndIf + If $Sum1221019901TextValue = "" Then + If $Sum1221019901TextID = "" Then + Var $Sum1221019901TextID = "000013" + EndIf + EndIf EndIf @@ -3423,9 +3443,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1211019901 @@ -3448,6 +3469,11 @@ If $Sum1211019901TextID != "" Then Var $Sum1211019901TextValue = "" EndIf + If $Sum1211019901TextValue = "" Then + If $Sum1211019901TextID = "" Then + Var $Sum1211019901TextID = "000013" + EndIf + EndIf EndIf @@ -3776,9 +3802,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1231019901 @@ -3801,6 +3828,11 @@ If $Sum1231019901TextID != "" Then Var $Sum1231019901TextValue = "" EndIf + If $Sum1231019901TextValue = "" Then + If $Sum1231019901TextID = "" Then + Var $Sum1231019901TextID = "000013" + EndIf + EndIf EndIf @@ -4129,9 +4161,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100031201020001 @@ -4154,6 +4187,11 @@ If $Sum12010100031201020001TextID != "" Then Var $Sum12010100031201020001TextValue = "" EndIf + If $Sum12010100031201020001TextValue = "" Then + If $Sum12010100031201020001TextID = "" Then + Var $Sum12010100031201020001TextID = "000013" + EndIf + EndIf EndIf @@ -4482,9 +4520,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100031221020001 @@ -4507,6 +4546,11 @@ If $Sum12210100031221020001TextID != "" Then Var $Sum12210100031221020001TextValue = "" EndIf + If $Sum12210100031221020001TextValue = "" Then + If $Sum12210100031221020001TextID = "" Then + Var $Sum12210100031221020001TextID = "000013" + EndIf + EndIf EndIf @@ -4835,9 +4879,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100811201020081 @@ -4860,6 +4905,11 @@ If $Sum12010100811201020081TextID != "" Then Var $Sum12010100811201020081TextValue = "" EndIf + If $Sum12010100811201020081TextValue = "" Then + If $Sum12010100811201020081TextID = "" Then + Var $Sum12010100811201020081TextID = "000013" + EndIf + EndIf EndIf @@ -5188,9 +5238,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100811221020081 @@ -5213,6 +5264,11 @@ If $Sum12210100811221020081TextID != "" Then Var $Sum12210100811221020081TextValue = "" EndIf + If $Sum12210100811221020081TextValue = "" Then + If $Sum12210100811221020081TextID = "" Then + Var $Sum12210100811221020081TextID = "000013" + EndIf + EndIf EndIf @@ -5541,9 +5597,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010013 @@ -5566,6 +5623,11 @@ If $Sum1201010013TextID != "" Then Var $Sum1201010013TextValue = "" EndIf + If $Sum1201010013TextValue = "" Then + If $Sum1201010013TextID = "" Then + Var $Sum1201010013TextID = "000013" + EndIf + EndIf EndIf @@ -5894,9 +5956,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010020 @@ -5919,6 +5982,11 @@ If $Sum1201010020TextID != "" Then Var $Sum1201010020TextValue = "" EndIf + If $Sum1201010020TextValue = "" Then + If $Sum1201010020TextID = "" Then + Var $Sum1201010020TextID = "000013" + EndIf + EndIf EndIf @@ -6247,9 +6315,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010043 @@ -6272,6 +6341,11 @@ If $Sum1201010043TextID != "" Then Var $Sum1201010043TextValue = "" EndIf + If $Sum1201010043TextValue = "" Then + If $Sum1201010043TextID = "" Then + Var $Sum1201010043TextID = "000013" + EndIf + EndIf EndIf @@ -6600,9 +6674,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010046 @@ -6625,6 +6700,11 @@ If $Sum1201010046TextID != "" Then Var $Sum1201010046TextValue = "" EndIf + If $Sum1201010046TextValue = "" Then + If $Sum1201010046TextID = "" Then + Var $Sum1201010046TextID = "000013" + EndIf + EndIf EndIf @@ -6953,9 +7033,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010049 @@ -6978,6 +7059,11 @@ If $Sum1201010049TextID != "" Then Var $Sum1201010049TextValue = "" EndIf + If $Sum1201010049TextValue = "" Then + If $Sum1201010049TextID = "" Then + Var $Sum1201010049TextID = "000013" + EndIf + EndIf EndIf @@ -7306,9 +7392,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010022 @@ -7331,6 +7418,11 @@ If $Sum1201010022TextID != "" Then Var $Sum1201010022TextValue = "" EndIf + If $Sum1201010022TextValue = "" Then + If $Sum1201010022TextID = "" Then + Var $Sum1201010022TextID = "000013" + EndIf + EndIf EndIf @@ -7659,9 +7751,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010024 @@ -7684,6 +7777,11 @@ If $Sum1201010024TextID != "" Then Var $Sum1201010024TextValue = "" EndIf + If $Sum1201010024TextValue = "" Then + If $Sum1201010024TextID = "" Then + Var $Sum1201010024TextID = "000013" + EndIf + EndIf EndIf @@ -8012,9 +8110,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010026 @@ -8037,6 +8136,11 @@ If $Sum1201010026TextID != "" Then Var $Sum1201010026TextValue = "" EndIf + If $Sum1201010026TextValue = "" Then + If $Sum1201010026TextID = "" Then + Var $Sum1201010026TextID = "000013" + EndIf + EndIf EndIf @@ -8365,9 +8469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010028 @@ -8390,6 +8495,11 @@ If $Sum1201010028TextID != "" Then Var $Sum1201010028TextValue = "" EndIf + If $Sum1201010028TextValue = "" Then + If $Sum1201010028TextID = "" Then + Var $Sum1201010028TextID = "000013" + EndIf + EndIf EndIf @@ -8718,9 +8828,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010033 @@ -8743,6 +8854,11 @@ If $Sum1201010033TextID != "" Then Var $Sum1201010033TextValue = "" EndIf + If $Sum1201010033TextValue = "" Then + If $Sum1201010033TextID = "" Then + Var $Sum1201010033TextID = "000013" + EndIf + EndIf EndIf @@ -9071,9 +9187,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010036 @@ -9096,6 +9213,11 @@ If $Sum1201010036TextID != "" Then Var $Sum1201010036TextValue = "" EndIf + If $Sum1201010036TextValue = "" Then + If $Sum1201010036TextID = "" Then + Var $Sum1201010036TextID = "000013" + EndIf + EndIf EndIf @@ -9424,9 +9546,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201010037 @@ -9449,6 +9572,11 @@ If $Sum1201010037TextID != "" Then Var $Sum1201010037TextValue = "" EndIf + If $Sum1201010037TextValue = "" Then + If $Sum1201010037TextID = "" Then + Var $Sum1201010037TextID = "000013" + EndIf + EndIf EndIf @@ -9773,9 +9901,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -9798,6 +9927,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -10122,9 +10256,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -10147,6 +10282,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -10471,9 +10611,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020041 @@ -10496,6 +10637,11 @@ If $Sum1201020041TextID != "" Then Var $Sum1201020041TextValue = "" EndIf + If $Sum1201020041TextValue = "" Then + If $Sum1201020041TextID = "" Then + Var $Sum1201020041TextID = "000013" + EndIf + EndIf EndIf @@ -10820,9 +10966,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020041 @@ -10845,6 +10992,11 @@ If $Sum1221020041TextID != "" Then Var $Sum1221020041TextValue = "" EndIf + If $Sum1221020041TextValue = "" Then + If $Sum1221020041TextID = "" Then + Var $Sum1221020041TextID = "000013" + EndIf + EndIf EndIf @@ -11173,9 +11325,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100141201020011 @@ -11198,6 +11351,11 @@ If $Sum12010100141201020011TextID != "" Then Var $Sum12010100141201020011TextValue = "" EndIf + If $Sum12010100141201020011TextValue = "" Then + If $Sum12010100141201020011TextID = "" Then + Var $Sum12010100141201020011TextID = "000013" + EndIf + EndIf EndIf @@ -11526,9 +11684,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100191201020019 @@ -11551,6 +11710,11 @@ If $Sum12010100191201020019TextID != "" Then Var $Sum12010100191201020019TextValue = "" EndIf + If $Sum12010100191201020019TextValue = "" Then + If $Sum12010100191201020019TextID = "" Then + Var $Sum12010100191201020019TextID = "000013" + EndIf + EndIf EndIf @@ -11879,9 +12043,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100441201020044 @@ -11904,6 +12069,11 @@ If $Sum12010100441201020044TextID != "" Then Var $Sum12010100441201020044TextValue = "" EndIf + If $Sum12010100441201020044TextValue = "" Then + If $Sum12010100441201020044TextID = "" Then + Var $Sum12010100441201020044TextID = "000013" + EndIf + EndIf EndIf @@ -12232,9 +12402,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100471201020047 @@ -12257,6 +12428,11 @@ If $Sum12010100471201020047TextID != "" Then Var $Sum12010100471201020047TextValue = "" EndIf + If $Sum12010100471201020047TextValue = "" Then + If $Sum12010100471201020047TextID = "" Then + Var $Sum12010100471201020047TextID = "000013" + EndIf + EndIf EndIf @@ -12585,9 +12761,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100501201020050 @@ -12610,6 +12787,11 @@ If $Sum12010100501201020050TextID != "" Then Var $Sum12010100501201020050TextValue = "" EndIf + If $Sum12010100501201020050TextValue = "" Then + If $Sum12010100501201020050TextID = "" Then + Var $Sum12010100501201020050TextID = "000013" + EndIf + EndIf EndIf @@ -12938,9 +13120,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100211201020021 @@ -12963,6 +13146,11 @@ If $Sum12010100211201020021TextID != "" Then Var $Sum12010100211201020021TextValue = "" EndIf + If $Sum12010100211201020021TextValue = "" Then + If $Sum12010100211201020021TextID = "" Then + Var $Sum12010100211201020021TextID = "000013" + EndIf + EndIf EndIf @@ -13291,9 +13479,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100251201020025 @@ -13316,6 +13505,11 @@ If $Sum12010100251201020025TextID != "" Then Var $Sum12010100251201020025TextValue = "" EndIf + If $Sum12010100251201020025TextValue = "" Then + If $Sum12010100251201020025TextID = "" Then + Var $Sum12010100251201020025TextID = "000013" + EndIf + EndIf EndIf @@ -13644,9 +13838,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100231201020023 @@ -13669,6 +13864,11 @@ If $Sum12010100231201020023TextID != "" Then Var $Sum12010100231201020023TextValue = "" EndIf + If $Sum12010100231201020023TextValue = "" Then + If $Sum12010100231201020023TextID = "" Then + Var $Sum12010100231201020023TextID = "000013" + EndIf + EndIf EndIf @@ -13997,9 +14197,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100271201020027 @@ -14022,6 +14223,11 @@ If $Sum12010100271201020027TextID != "" Then Var $Sum12010100271201020027TextValue = "" EndIf + If $Sum12010100271201020027TextValue = "" Then + If $Sum12010100271201020027TextID = "" Then + Var $Sum12010100271201020027TextID = "000013" + EndIf + EndIf EndIf @@ -14350,9 +14556,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100321201020032 @@ -14375,6 +14582,11 @@ If $Sum12010100321201020032TextID != "" Then Var $Sum12010100321201020032TextValue = "" EndIf + If $Sum12010100321201020032TextValue = "" Then + If $Sum12010100321201020032TextID = "" Then + Var $Sum12010100321201020032TextID = "000013" + EndIf + EndIf EndIf @@ -14703,9 +14915,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100351201020035 @@ -14728,6 +14941,11 @@ If $Sum12010100351201020035TextID != "" Then Var $Sum12010100351201020035TextValue = "" EndIf + If $Sum12010100351201020035TextValue = "" Then + If $Sum12010100351201020035TextID = "" Then + Var $Sum12010100351201020035TextID = "000013" + EndIf + EndIf EndIf @@ -15056,9 +15274,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100381201020038 @@ -15081,6 +15300,11 @@ If $Sum12010100381201020038TextID != "" Then Var $Sum12010100381201020038TextValue = "" EndIf + If $Sum12010100381201020038TextValue = "" Then + If $Sum12010100381201020038TextID = "" Then + Var $Sum12010100381201020038TextID = "000013" + EndIf + EndIf EndIf @@ -15405,9 +15629,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020020 @@ -15430,6 +15655,11 @@ If $Sum1201020020TextID != "" Then Var $Sum1201020020TextValue = "" EndIf + If $Sum1201020020TextValue = "" Then + If $Sum1201020020TextID = "" Then + Var $Sum1201020020TextID = "000013" + EndIf + EndIf EndIf @@ -15754,9 +15984,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020022 @@ -15779,6 +16010,11 @@ If $Sum1201020022TextID != "" Then Var $Sum1201020022TextValue = "" EndIf + If $Sum1201020022TextValue = "" Then + If $Sum1201020022TextID = "" Then + Var $Sum1201020022TextID = "000013" + EndIf + EndIf EndIf @@ -16103,9 +16339,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020045 @@ -16128,6 +16365,11 @@ If $Sum1201020045TextID != "" Then Var $Sum1201020045TextValue = "" EndIf + If $Sum1201020045TextValue = "" Then + If $Sum1201020045TextID = "" Then + Var $Sum1201020045TextID = "000013" + EndIf + EndIf EndIf @@ -16452,9 +16694,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020048 @@ -16477,6 +16720,11 @@ If $Sum1201020048TextID != "" Then Var $Sum1201020048TextValue = "" EndIf + If $Sum1201020048TextValue = "" Then + If $Sum1201020048TextID = "" Then + Var $Sum1201020048TextID = "000013" + EndIf + EndIf EndIf @@ -16801,9 +17049,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020051 @@ -16826,6 +17075,11 @@ If $Sum1201020051TextID != "" Then Var $Sum1201020051TextValue = "" EndIf + If $Sum1201020051TextValue = "" Then + If $Sum1201020051TextID = "" Then + Var $Sum1201020051TextID = "000013" + EndIf + EndIf EndIf @@ -17150,9 +17404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020026 @@ -17175,6 +17430,11 @@ If $Sum1201020026TextID != "" Then Var $Sum1201020026TextValue = "" EndIf + If $Sum1201020026TextValue = "" Then + If $Sum1201020026TextID = "" Then + Var $Sum1201020026TextID = "000013" + EndIf + EndIf EndIf @@ -17499,9 +17759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020024 @@ -17524,6 +17785,11 @@ If $Sum1201020024TextID != "" Then Var $Sum1201020024TextValue = "" EndIf + If $Sum1201020024TextValue = "" Then + If $Sum1201020024TextID = "" Then + Var $Sum1201020024TextID = "000013" + EndIf + EndIf EndIf @@ -17848,9 +18114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020018 @@ -17873,6 +18140,11 @@ If $Sum1201020018TextID != "" Then Var $Sum1201020018TextValue = "" EndIf + If $Sum1201020018TextValue = "" Then + If $Sum1201020018TextID = "" Then + Var $Sum1201020018TextID = "000013" + EndIf + EndIf EndIf @@ -18197,9 +18469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020028 @@ -18222,6 +18495,11 @@ If $Sum1201020028TextID != "" Then Var $Sum1201020028TextValue = "" EndIf + If $Sum1201020028TextValue = "" Then + If $Sum1201020028TextID = "" Then + Var $Sum1201020028TextID = "000013" + EndIf + EndIf EndIf @@ -18546,9 +18824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020033 @@ -18571,6 +18850,11 @@ If $Sum1201020033TextID != "" Then Var $Sum1201020033TextValue = "" EndIf + If $Sum1201020033TextValue = "" Then + If $Sum1201020033TextID = "" Then + Var $Sum1201020033TextID = "000013" + EndIf + EndIf EndIf @@ -18895,9 +19179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020036 @@ -18920,6 +19205,11 @@ If $Sum1201020036TextID != "" Then Var $Sum1201020036TextValue = "" EndIf + If $Sum1201020036TextValue = "" Then + If $Sum1201020036TextID = "" Then + Var $Sum1201020036TextID = "000013" + EndIf + EndIf EndIf @@ -19244,9 +19534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020037 @@ -19269,6 +19560,11 @@ If $Sum1201020037TextID != "" Then Var $Sum1201020037TextValue = "" EndIf + If $Sum1201020037TextValue = "" Then + If $Sum1201020037TextID = "" Then + Var $Sum1201020037TextID = "000013" + EndIf + EndIf EndIf @@ -19593,9 +19889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12110200011211030001 @@ -19618,6 +19915,11 @@ If $Sum12110200011211030001TextID != "" Then Var $Sum12110200011211030001TextValue = "" EndIf + If $Sum12110200011211030001TextValue = "" Then + If $Sum12110200011211030001TextID = "" Then + Var $Sum12110200011211030001TextID = "000013" + EndIf + EndIf EndIf @@ -19942,9 +20244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12310200011231030001 @@ -19967,6 +20270,11 @@ If $Sum12310200011231030001TextID != "" Then Var $Sum12310200011231030001TextValue = "" EndIf + If $Sum12310200011231030001TextValue = "" Then + If $Sum12310200011231030001TextID = "" Then + Var $Sum12310200011231030001TextID = "000013" + EndIf + EndIf EndIf @@ -20295,9 +20603,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000412010200021201030002 @@ -20320,6 +20629,11 @@ If $Sum120101000412010200021201030002TextID != "" Then Var $Sum120101000412010200021201030002TextValue = "" EndIf + If $Sum120101000412010200021201030002TextValue = "" Then + If $Sum120101000412010200021201030002TextID = "" Then + Var $Sum120101000412010200021201030002TextID = "000013" + EndIf + EndIf EndIf @@ -20648,9 +20962,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000412210200021221030002 @@ -20673,6 +20988,11 @@ If $Sum122101000412210200021221030002TextID != "" Then Var $Sum122101000412210200021221030002TextValue = "" EndIf + If $Sum122101000412210200021221030002TextValue = "" Then + If $Sum122101000412210200021221030002TextID = "" Then + Var $Sum122101000412210200021221030002TextID = "000013" + EndIf + EndIf EndIf @@ -21001,9 +21321,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000512110200021211030002 @@ -21026,6 +21347,11 @@ If $Sum120101000512110200021211030002TextID != "" Then Var $Sum120101000512110200021211030002TextValue = "" EndIf + If $Sum120101000512110200021211030002TextValue = "" Then + If $Sum120101000512110200021211030002TextID = "" Then + Var $Sum120101000512110200021211030002TextID = "000013" + EndIf + EndIf EndIf @@ -21354,9 +21680,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000512310200021231030002 @@ -21379,6 +21706,11 @@ If $Sum122101000512310200021231030002TextID != "" Then Var $Sum122101000512310200021231030002TextValue = "" EndIf + If $Sum122101000512310200021231030002TextValue = "" Then + If $Sum122101000512310200021231030002TextID = "" Then + Var $Sum122101000512310200021231030002TextID = "000013" + EndIf + EndIf EndIf @@ -21707,9 +22039,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000612010200031201030003 @@ -21732,6 +22065,11 @@ If $Sum120101000612010200031201030003TextID != "" Then Var $Sum120101000612010200031201030003TextValue = "" EndIf + If $Sum120101000612010200031201030003TextValue = "" Then + If $Sum120101000612010200031201030003TextID = "" Then + Var $Sum120101000612010200031201030003TextID = "000013" + EndIf + EndIf EndIf @@ -22060,9 +22398,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000612210200031221030003 @@ -22085,6 +22424,11 @@ If $Sum122101000612210200031221030003TextID != "" Then Var $Sum122101000612210200031221030003TextValue = "" EndIf + If $Sum122101000612210200031221030003TextValue = "" Then + If $Sum122101000612210200031221030003TextID = "" Then + Var $Sum122101000612210200031221030003TextID = "000013" + EndIf + EndIf EndIf @@ -22413,9 +22757,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000712010200041201030004 @@ -22438,6 +22783,11 @@ If $Sum120101000712010200041201030004TextID != "" Then Var $Sum120101000712010200041201030004TextValue = "" EndIf + If $Sum120101000712010200041201030004TextValue = "" Then + If $Sum120101000712010200041201030004TextID = "" Then + Var $Sum120101000712010200041201030004TextID = "000013" + EndIf + EndIf EndIf @@ -22766,9 +23116,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000712210200041221030004 @@ -22791,6 +23142,11 @@ If $Sum122101000712210200041221030004TextID != "" Then Var $Sum122101000712210200041221030004TextValue = "" EndIf + If $Sum122101000712210200041221030004TextValue = "" Then + If $Sum122101000712210200041221030004TextID = "" Then + Var $Sum122101000712210200041221030004TextID = "000013" + EndIf + EndIf EndIf @@ -23119,9 +23475,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101003112010200311201030031 @@ -23144,6 +23501,11 @@ If $Sum120101003112010200311201030031TextID != "" Then Var $Sum120101003112010200311201030031TextValue = "" EndIf + If $Sum120101003112010200311201030031TextValue = "" Then + If $Sum120101003112010200311201030031TextID = "" Then + Var $Sum120101003112010200311201030031TextID = "000013" + EndIf + EndIf EndIf @@ -23472,9 +23834,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101003112210200311221030031 @@ -23497,6 +23860,11 @@ If $Sum122101003112210200311221030031TextID != "" Then Var $Sum122101003112210200311221030031TextValue = "" EndIf + If $Sum122101003112210200311221030031TextValue = "" Then + If $Sum122101003112210200311221030031TextID = "" Then + Var $Sum122101003112210200311221030031TextID = "000013" + EndIf + EndIf EndIf @@ -23825,9 +24193,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000812010200051201030005 @@ -23850,6 +24219,11 @@ If $Sum120101000812010200051201030005TextID != "" Then Var $Sum120101000812010200051201030005TextValue = "" EndIf + If $Sum120101000812010200051201030005TextValue = "" Then + If $Sum120101000812010200051201030005TextID = "" Then + Var $Sum120101000812010200051201030005TextID = "000013" + EndIf + EndIf EndIf @@ -24178,9 +24552,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000812210200051221030005 @@ -24203,6 +24578,11 @@ If $Sum122101000812210200051221030005TextID != "" Then Var $Sum122101000812210200051221030005TextValue = "" EndIf + If $Sum122101000812210200051221030005TextValue = "" Then + If $Sum122101000812210200051221030005TextID = "" Then + Var $Sum122101000812210200051221030005TextID = "000013" + EndIf + EndIf EndIf @@ -24531,9 +24911,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101001112010200081201030008 @@ -24556,6 +24937,11 @@ If $Sum120101001112010200081201030008TextID != "" Then Var $Sum120101001112010200081201030008TextValue = "" EndIf + If $Sum120101001112010200081201030008TextValue = "" Then + If $Sum120101001112010200081201030008TextID = "" Then + Var $Sum120101001112010200081201030008TextID = "000013" + EndIf + EndIf EndIf @@ -24884,9 +25270,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101001112210200081221030008 @@ -24909,6 +25296,11 @@ If $Sum122101001112210200081221030008TextID != "" Then Var $Sum122101001112210200081221030008TextValue = "" EndIf + If $Sum122101001112210200081221030008TextValue = "" Then + If $Sum122101001112210200081221030008TextID = "" Then + Var $Sum122101001112210200081221030008TextID = "000013" + EndIf + EndIf EndIf @@ -25237,9 +25629,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100391201020039 @@ -25262,6 +25655,11 @@ If $Sum12010100391201020039TextID != "" Then Var $Sum12010100391201020039TextValue = "" EndIf + If $Sum12010100391201020039TextValue = "" Then + If $Sum12010100391201020039TextID = "" Then + Var $Sum12010100391201020039TextID = "000013" + EndIf + EndIf EndIf @@ -25590,9 +25988,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100391221020039 @@ -25615,6 +26014,11 @@ If $Sum12210100391221020039TextID != "" Then Var $Sum12210100391221020039TextValue = "" EndIf + If $Sum12210100391221020039TextValue = "" Then + If $Sum12210100391221020039TextID = "" Then + Var $Sum12210100391221020039TextID = "000013" + EndIf + EndIf EndIf @@ -25943,9 +26347,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000912010200061201030006 @@ -25968,6 +26373,11 @@ If $Sum120101000912010200061201030006TextID != "" Then Var $Sum120101000912010200061201030006TextValue = "" EndIf + If $Sum120101000912010200061201030006TextValue = "" Then + If $Sum120101000912010200061201030006TextID = "" Then + Var $Sum120101000912010200061201030006TextID = "000013" + EndIf + EndIf EndIf @@ -26296,9 +26706,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000912210200061221030006 @@ -26321,6 +26732,11 @@ If $Sum122101000912210200061221030006TextID != "" Then Var $Sum122101000912210200061221030006TextValue = "" EndIf + If $Sum122101000912210200061221030006TextValue = "" Then + If $Sum122101000912210200061221030006TextID = "" Then + Var $Sum122101000912210200061221030006TextID = "000013" + EndIf + EndIf EndIf @@ -26649,9 +27065,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101002912010200291201030029 @@ -26674,6 +27091,11 @@ If $Sum120101002912010200291201030029TextID != "" Then Var $Sum120101002912010200291201030029TextValue = "" EndIf + If $Sum120101002912010200291201030029TextValue = "" Then + If $Sum120101002912010200291201030029TextID = "" Then + Var $Sum120101002912010200291201030029TextID = "000013" + EndIf + EndIf EndIf @@ -27002,9 +27424,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101002912210200291221030029 @@ -27027,6 +27450,11 @@ If $Sum122101002912210200291221030029TextID != "" Then Var $Sum122101002912210200291221030029TextValue = "" EndIf + If $Sum122101002912210200291221030029TextValue = "" Then + If $Sum122101002912210200291221030029TextID = "" Then + Var $Sum122101002912210200291221030029TextID = "000013" + EndIf + EndIf EndIf @@ -27355,9 +27783,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101005512010200551201030055 @@ -27380,6 +27809,11 @@ If $Sum120101005512010200551201030055TextID != "" Then Var $Sum120101005512010200551201030055TextValue = "" EndIf + If $Sum120101005512010200551201030055TextValue = "" Then + If $Sum120101005512010200551201030055TextID = "" Then + Var $Sum120101005512010200551201030055TextID = "000013" + EndIf + EndIf EndIf @@ -27708,9 +28142,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101005512210200551221030055 @@ -27733,6 +28168,11 @@ If $Sum122101005512210200551221030055TextID != "" Then Var $Sum122101005512210200551221030055TextValue = "" EndIf + If $Sum122101005512210200551221030055TextValue = "" Then + If $Sum122101005512210200551221030055TextID = "" Then + Var $Sum122101005512210200551221030055TextID = "000013" + EndIf + EndIf EndIf @@ -28061,9 +28501,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101003012010200301201030030 @@ -28086,6 +28527,11 @@ If $Sum120101003012010200301201030030TextID != "" Then Var $Sum120101003012010200301201030030TextValue = "" EndIf + If $Sum120101003012010200301201030030TextValue = "" Then + If $Sum120101003012010200301201030030TextID = "" Then + Var $Sum120101003012010200301201030030TextID = "000013" + EndIf + EndIf EndIf @@ -28414,9 +28860,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101003012210200301221030030 @@ -28439,6 +28886,11 @@ If $Sum122101003012210200301221030030TextID != "" Then Var $Sum122101003012210200301221030030TextValue = "" EndIf + If $Sum122101003012210200301221030030TextValue = "" Then + If $Sum122101003012210200301221030030TextID = "" Then + Var $Sum122101003012210200301221030030TextID = "000013" + EndIf + EndIf EndIf @@ -28767,9 +29219,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100171201020017 @@ -28792,6 +29245,11 @@ If $Sum12010100171201020017TextID != "" Then Var $Sum12010100171201020017TextValue = "" EndIf + If $Sum12010100171201020017TextValue = "" Then + If $Sum12010100171201020017TextID = "" Then + Var $Sum12010100171201020017TextID = "000013" + EndIf + EndIf EndIf @@ -29120,9 +29578,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100171221020017 @@ -29145,6 +29604,11 @@ If $Sum12210100171221020017TextID != "" Then Var $Sum12210100171221020017TextValue = "" EndIf + If $Sum12210100171221020017TextValue = "" Then + If $Sum12210100171221020017TextID = "" Then + Var $Sum12210100171221020017TextID = "000013" + EndIf + EndIf EndIf @@ -29473,9 +29937,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100401201020040 @@ -29498,6 +29963,11 @@ If $Sum12010100401201020040TextID != "" Then Var $Sum12010100401201020040TextValue = "" EndIf + If $Sum12010100401201020040TextValue = "" Then + If $Sum12010100401201020040TextID = "" Then + Var $Sum12010100401201020040TextID = "000013" + EndIf + EndIf EndIf @@ -29826,9 +30296,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100401221020040 @@ -29851,6 +30322,11 @@ If $Sum12210100401221020040TextID != "" Then Var $Sum12210100401221020040TextValue = "" EndIf + If $Sum12210100401221020040TextValue = "" Then + If $Sum12210100401221020040TextID = "" Then + Var $Sum12210100401221020040TextID = "000013" + EndIf + EndIf EndIf @@ -30179,9 +30655,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101004212010200421201030042 @@ -30204,6 +30681,11 @@ If $Sum120101004212010200421201030042TextID != "" Then Var $Sum120101004212010200421201030042TextValue = "" EndIf + If $Sum120101004212010200421201030042TextValue = "" Then + If $Sum120101004212010200421201030042TextID = "" Then + Var $Sum120101004212010200421201030042TextID = "000013" + EndIf + EndIf EndIf @@ -30532,9 +31014,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101004212210200421221030042 @@ -30557,6 +31040,11 @@ If $Sum122101004212210200421221030042TextID != "" Then Var $Sum122101004212210200421221030042TextValue = "" EndIf + If $Sum122101004212210200421221030042TextValue = "" Then + If $Sum122101004212210200421221030042TextID = "" Then + Var $Sum122101004212210200421221030042TextID = "000013" + EndIf + EndIf EndIf @@ -30885,9 +31373,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101005712010200571201030057 @@ -30910,6 +31399,11 @@ If $Sum120101005712010200571201030057TextID != "" Then Var $Sum120101005712010200571201030057TextValue = "" EndIf + If $Sum120101005712010200571201030057TextValue = "" Then + If $Sum120101005712010200571201030057TextID = "" Then + Var $Sum120101005712010200571201030057TextID = "000013" + EndIf + EndIf EndIf @@ -31238,9 +31732,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101005712210200571221030057 @@ -31263,6 +31758,11 @@ If $Sum122101005712210200571221030057TextID != "" Then Var $Sum122101005712210200571221030057TextValue = "" EndIf + If $Sum122101005712210200571221030057TextValue = "" Then + If $Sum122101005712210200571221030057TextID = "" Then + Var $Sum122101005712210200571221030057TextID = "000013" + EndIf + EndIf EndIf @@ -31591,9 +32091,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100581201020058 @@ -31616,6 +32117,11 @@ If $Sum12010100581201020058TextID != "" Then Var $Sum12010100581201020058TextValue = "" EndIf + If $Sum12010100581201020058TextValue = "" Then + If $Sum12010100581201020058TextID = "" Then + Var $Sum12010100581201020058TextID = "000013" + EndIf + EndIf EndIf @@ -31944,9 +32450,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100581221020058 @@ -31969,6 +32476,11 @@ If $Sum12210100581221020058TextID != "" Then Var $Sum12210100581221020058TextValue = "" EndIf + If $Sum12210100581221020058TextValue = "" Then + If $Sum12210100581221020058TextID = "" Then + Var $Sum12210100581221020058TextID = "000013" + EndIf + EndIf EndIf @@ -32297,9 +32809,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100591201020059 @@ -32322,6 +32835,11 @@ If $Sum12010100591201020059TextID != "" Then Var $Sum12010100591201020059TextValue = "" EndIf + If $Sum12010100591201020059TextValue = "" Then + If $Sum12010100591201020059TextID = "" Then + Var $Sum12010100591201020059TextID = "000013" + EndIf + EndIf EndIf @@ -32650,9 +33168,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100591221020059 @@ -32675,6 +33194,11 @@ If $Sum12210100591221020059TextID != "" Then Var $Sum12210100591221020059TextValue = "" EndIf + If $Sum12210100591221020059TextValue = "" Then + If $Sum12210100591221020059TextID = "" Then + Var $Sum12210100591221020059TextID = "000013" + EndIf + EndIf EndIf @@ -33003,9 +33527,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101006012010200601201030060 @@ -33028,6 +33553,11 @@ If $Sum120101006012010200601201030060TextID != "" Then Var $Sum120101006012010200601201030060TextValue = "" EndIf + If $Sum120101006012010200601201030060TextValue = "" Then + If $Sum120101006012010200601201030060TextID = "" Then + Var $Sum120101006012010200601201030060TextID = "000013" + EndIf + EndIf EndIf @@ -33356,9 +33886,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101006012210200601221030060 @@ -33381,6 +33912,11 @@ If $Sum122101006012210200601221030060TextID != "" Then Var $Sum122101006012210200601221030060TextValue = "" EndIf + If $Sum122101006012210200601221030060TextValue = "" Then + If $Sum122101006012210200601221030060TextID = "" Then + Var $Sum122101006012210200601221030060TextID = "000013" + EndIf + EndIf EndIf @@ -33705,9 +34241,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020056 @@ -33730,6 +34267,11 @@ If $Sum1201020056TextID != "" Then Var $Sum1201020056TextValue = "" EndIf + If $Sum1201020056TextValue = "" Then + If $Sum1201020056TextID = "" Then + Var $Sum1201020056TextID = "000013" + EndIf + EndIf EndIf @@ -34054,9 +34596,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020056 @@ -34079,6 +34622,11 @@ If $Sum1221020056TextID != "" Then Var $Sum1221020056TextValue = "" EndIf + If $Sum1221020056TextValue = "" Then + If $Sum1221020056TextID = "" Then + Var $Sum1221020056TextID = "000013" + EndIf + EndIf EndIf @@ -34403,9 +34951,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020068 @@ -34428,6 +34977,11 @@ If $Sum1201020068TextID != "" Then Var $Sum1201020068TextValue = "" EndIf + If $Sum1201020068TextValue = "" Then + If $Sum1201020068TextID = "" Then + Var $Sum1201020068TextID = "000013" + EndIf + EndIf EndIf @@ -34752,9 +35306,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020068 @@ -34777,6 +35332,11 @@ If $Sum1221020068TextID != "" Then Var $Sum1221020068TextValue = "" EndIf + If $Sum1221020068TextValue = "" Then + If $Sum1221020068TextID = "" Then + Var $Sum1221020068TextID = "000013" + EndIf + EndIf EndIf @@ -35101,9 +35661,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020069 @@ -35126,6 +35687,11 @@ If $Sum1201020069TextID != "" Then Var $Sum1201020069TextValue = "" EndIf + If $Sum1201020069TextValue = "" Then + If $Sum1201020069TextID = "" Then + Var $Sum1201020069TextID = "000013" + EndIf + EndIf EndIf @@ -35450,9 +36016,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020069 @@ -35475,6 +36042,11 @@ If $Sum1221020069TextID != "" Then Var $Sum1221020069TextValue = "" EndIf + If $Sum1221020069TextValue = "" Then + If $Sum1221020069TextID = "" Then + Var $Sum1221020069TextID = "000013" + EndIf + EndIf EndIf @@ -35799,9 +36371,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020070 @@ -35824,6 +36397,11 @@ If $Sum1201020070TextID != "" Then Var $Sum1201020070TextValue = "" EndIf + If $Sum1201020070TextValue = "" Then + If $Sum1201020070TextID = "" Then + Var $Sum1201020070TextID = "000013" + EndIf + EndIf EndIf @@ -36148,9 +36726,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020070 @@ -36173,6 +36752,11 @@ If $Sum1221020070TextID != "" Then Var $Sum1221020070TextValue = "" EndIf + If $Sum1221020070TextValue = "" Then + If $Sum1221020070TextID = "" Then + Var $Sum1221020070TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_coffee.skt b/inter/tha/xml/multi/page_catalog_group_coffee.skt index d1d467d6..24a4f264 100644 --- a/inter/tha/xml/multi/page_catalog_group_coffee.skt +++ b/inter/tha/xml/multi/page_catalog_group_coffee.skt @@ -17,20 +17,24 @@ EndIf + Var CoffeeRefreshTimeOut = 0 + + + SAVELOG "Onshow 1" ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_default_init.lxml" Var Menu2Selected = "PressForever" - + SAVELOG "Onshow 2" ;include="ROOT/taobin_project/inter/tha/xml/multi/tab_menu_show_and_refresh.lxml" Var Timeout = 0 - + SAVELOG "Onshow 3" ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new_menu.lxml" SetInstanceIgnoreTouch @@ -59,6 +63,7 @@ InstanceGetString SaveStringInst ;DEBUGVAR SaveStringInst If SaveStringInst = "RefreshNow" Then + SAVELOG "OPEN slient Refresh" GetXMLFileNameCurrentRunning CurrentOpenFile Open CurrentOpenFile @@ -75,6 +80,7 @@ If SlientRefreshEnable = 1 Then If SaveStringInst = "RefreshNow" Then + SAVELOG "OPEN slient 2" GetXMLFileNameCurrentRunning CurrentOpenFile Open CurrentOpenFile @@ -89,6 +95,7 @@ If SlientRefreshIndex = 2 Then If inst_show2 = 0 Then + SAVELOG "OPEN slient 1" GetXMLFileNameCurrentRunning CurrentOpenFile2 Open CurrentOpenFile2 @@ -103,6 +110,24 @@ DEBUGVAR langnext RefreshAll EndIf + + InstanceGetString SaveStringInst + If SaveStringInst = "RefreshNow" Then + + Else + If LanguageShow = "ENG" Then + Var SaveStringInst = "ShowEng" + Var show_eng = "false" + EndIf + If LanguageShow = "THAI" Then + Var SaveStringInst = "ShowThai" + Var show_eng = "true" + EndIf + If LanguageShow "MYANMAR" Then + Var show_eng = "false" + Var SaveStringInst = "ShowMYANMAR" + EndIf + EndIf EndIf @@ -200,71 +225,18 @@ SAVELOG "Runscript 3" Script "-" "-" EndIf + + If CoffeeRefreshTimeOut > 15 Then + Var CoffeeRefreshTimeOut = 0 + Script "-" "-" + EndIf + + Var CoffeeRefreshTimeOut = CoffeeRefreshTimeOut + 1 TimerReset - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - DEBUGVAR EnabledBlockUpdateInst6 - DEBUGVAR EnabledBlocksDrawInst6 - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" diff --git a/inter/tha/xml/multi/page_catalog_group_forkid.lxml b/inter/tha/xml/multi/page_catalog_group_forkid.lxml index 01afaa4b..e3ff9bc5 100644 --- a/inter/tha/xml/multi/page_catalog_group_forkid.lxml +++ b/inter/tha/xml/multi/page_catalog_group_forkid.lxml @@ -601,9 +601,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030094 @@ -626,6 +627,11 @@ If $Sum1203030094TextID != "" Then Var $Sum1203030094TextValue = "" EndIf + If $Sum1203030094TextValue = "" Then + If $Sum1203030094TextID = "" Then + Var $Sum1203030094TextID = "000013" + EndIf + EndIf EndIf @@ -950,9 +956,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030095 @@ -975,6 +982,11 @@ If $Sum1203030095TextID != "" Then Var $Sum1203030095TextValue = "" EndIf + If $Sum1203030095TextValue = "" Then + If $Sum1203030095TextID = "" Then + Var $Sum1203030095TextID = "000013" + EndIf + EndIf EndIf @@ -1303,9 +1315,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000512030200051203030005 @@ -1328,6 +1341,11 @@ If $Sum120301000512030200051203030005TextID != "" Then Var $Sum120301000512030200051203030005TextValue = "" EndIf + If $Sum120301000512030200051203030005TextValue = "" Then + If $Sum120301000512030200051203030005TextID = "" Then + Var $Sum120301000512030200051203030005TextID = "000013" + EndIf + EndIf EndIf @@ -1656,9 +1674,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000112030200011203030001 @@ -1681,6 +1700,11 @@ If $Sum120301000112030200011203030001TextID != "" Then Var $Sum120301000112030200011203030001TextValue = "" EndIf + If $Sum120301000112030200011203030001TextValue = "" Then + If $Sum120301000112030200011203030001TextID = "" Then + Var $Sum120301000112030200011203030001TextID = "000013" + EndIf + EndIf EndIf @@ -2009,9 +2033,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000312030200031203030003 @@ -2034,6 +2059,11 @@ If $Sum120301000312030200031203030003TextID != "" Then Var $Sum120301000312030200031203030003TextValue = "" EndIf + If $Sum120301000312030200031203030003TextValue = "" Then + If $Sum120301000312030200031203030003TextID = "" Then + Var $Sum120301000312030200031203030003TextID = "000013" + EndIf + EndIf EndIf @@ -2358,9 +2388,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200061203030006 @@ -2383,6 +2414,11 @@ If $Sum12030200061203030006TextID != "" Then Var $Sum12030200061203030006TextValue = "" EndIf + If $Sum12030200061203030006TextValue = "" Then + If $Sum12030200061203030006TextID = "" Then + Var $Sum12030200061203030006TextID = "000013" + EndIf + EndIf EndIf @@ -2711,9 +2747,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000212030200021203030002 @@ -2736,6 +2773,11 @@ If $Sum120301000212030200021203030002TextID != "" Then Var $Sum120301000212030200021203030002TextValue = "" EndIf + If $Sum120301000212030200021203030002TextValue = "" Then + If $Sum120301000212030200021203030002TextID = "" Then + Var $Sum120301000212030200021203030002TextID = "000013" + EndIf + EndIf EndIf @@ -3064,9 +3106,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002212030200221203030022 @@ -3089,6 +3132,11 @@ If $Sum120301002212030200221203030022TextID != "" Then Var $Sum120301002212030200221203030022TextValue = "" EndIf + If $Sum120301002212030200221203030022TextValue = "" Then + If $Sum120301002212030200221203030022TextID = "" Then + Var $Sum120301002212030200221203030022TextID = "000013" + EndIf + EndIf EndIf @@ -3413,9 +3461,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030010 @@ -3438,6 +3487,11 @@ If $Sum1203030010TextID != "" Then Var $Sum1203030010TextValue = "" EndIf + If $Sum1203030010TextValue = "" Then + If $Sum1203030010TextID = "" Then + Var $Sum1203030010TextID = "000013" + EndIf + EndIf EndIf @@ -3762,9 +3816,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030020 @@ -3787,6 +3842,11 @@ If $Sum1203030020TextID != "" Then Var $Sum1203030020TextValue = "" EndIf + If $Sum1203030020TextValue = "" Then + If $Sum1203030020TextID = "" Then + Var $Sum1203030020TextID = "000013" + EndIf + EndIf EndIf @@ -4111,9 +4171,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030021 @@ -4136,6 +4197,11 @@ If $Sum1203030021TextID != "" Then Var $Sum1203030021TextValue = "" EndIf + If $Sum1203030021TextValue = "" Then + If $Sum1203030021TextID = "" Then + Var $Sum1203030021TextID = "000013" + EndIf + EndIf EndIf @@ -4460,9 +4526,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200411205030041 @@ -4485,6 +4552,11 @@ If $Sum12050200411205030041TextID != "" Then Var $Sum12050200411205030041TextValue = "" EndIf + If $Sum12050200411205030041TextValue = "" Then + If $Sum12050200411205030041TextID = "" Then + Var $Sum12050200411205030041TextID = "000013" + EndIf + EndIf EndIf @@ -4809,9 +4881,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200081205030008 @@ -4834,6 +4907,11 @@ If $Sum12050200081205030008TextID != "" Then Var $Sum12050200081205030008TextValue = "" EndIf + If $Sum12050200081205030008TextValue = "" Then + If $Sum12050200081205030008TextID = "" Then + Var $Sum12050200081205030008TextID = "000013" + EndIf + EndIf EndIf @@ -5158,9 +5236,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020044 @@ -5183,6 +5262,11 @@ If $Sum1205020044TextID != "" Then Var $Sum1205020044TextValue = "" EndIf + If $Sum1205020044TextValue = "" Then + If $Sum1205020044TextID = "" Then + Var $Sum1205020044TextID = "000013" + EndIf + EndIf EndIf @@ -5507,9 +5591,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020045 @@ -5532,6 +5617,11 @@ If $Sum1205020045TextID != "" Then Var $Sum1205020045TextValue = "" EndIf + If $Sum1205020045TextValue = "" Then + If $Sum1205020045TextID = "" Then + Var $Sum1205020045TextID = "000013" + EndIf + EndIf EndIf @@ -5856,9 +5946,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030009 @@ -5881,6 +5972,11 @@ If $Sum1203030009TextID != "" Then Var $Sum1203030009TextValue = "" EndIf + If $Sum1203030009TextValue = "" Then + If $Sum1203030009TextID = "" Then + Var $Sum1203030009TextID = "000013" + EndIf + EndIf EndIf @@ -6209,9 +6305,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002312030200231203030023 @@ -6234,6 +6331,11 @@ If $Sum120301002312030200231203030023TextID != "" Then Var $Sum120301002312030200231203030023TextValue = "" EndIf + If $Sum120301002312030200231203030023TextValue = "" Then + If $Sum120301002312030200231203030023TextID = "" Then + Var $Sum120301002312030200231203030023TextID = "000013" + EndIf + EndIf EndIf @@ -6562,9 +6664,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002412030200241203030024 @@ -6587,6 +6690,11 @@ If $Sum120301002412030200241203030024TextID != "" Then Var $Sum120301002412030200241203030024TextValue = "" EndIf + If $Sum120301002412030200241203030024TextValue = "" Then + If $Sum120301002412030200241203030024TextID = "" Then + Var $Sum120301002412030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -6911,9 +7019,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030061 @@ -6936,6 +7045,11 @@ If $Sum1203030061TextID != "" Then Var $Sum1203030061TextValue = "" EndIf + If $Sum1203030061TextValue = "" Then + If $Sum1203030061TextID = "" Then + Var $Sum1203030061TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_health.lxml b/inter/tha/xml/multi/page_catalog_group_health.lxml index d085e196..ce03b572 100644 --- a/inter/tha/xml/multi/page_catalog_group_health.lxml +++ b/inter/tha/xml/multi/page_catalog_group_health.lxml @@ -13,6 +13,8 @@ If SlientRefreshIndex = 6 Then Var SlientRefreshIndex = 7 EndIf + + Var HealthRefreshTimeOut = 0 @@ -179,71 +181,18 @@ EndIf EndIf + If HealthRefreshTimeOut > 15 Then + Var HealthRefreshTimeOut = 0 + Script "-" "-" + EndIf + Var HealthRefreshTimeOut = HealthRefreshTimeOut + 1 + TimerReset - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - - - - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" @@ -577,9 +526,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010110031201021001 @@ -602,6 +552,11 @@ If $Sum12010110031201021001TextID != "" Then Var $Sum12010110031201021001TextValue = "" EndIf + If $Sum12010110031201021001TextValue = "" Then + If $Sum12010110031201021001TextID = "" Then + Var $Sum12010110031201021001TextID = "000013" + EndIf + EndIf EndIf @@ -930,9 +885,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210110031221021001 @@ -955,6 +911,11 @@ If $Sum12210110031221021001TextID != "" Then Var $Sum12210110031221021001TextValue = "" EndIf + If $Sum12210110031221021001TextValue = "" Then + If $Sum12210110031221021001TextID = "" Then + Var $Sum12210110031221021001TextID = "000013" + EndIf + EndIf EndIf @@ -1283,9 +1244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010110041201021002 @@ -1308,6 +1270,11 @@ If $Sum12010110041201021002TextID != "" Then Var $Sum12010110041201021002TextValue = "" EndIf + If $Sum12010110041201021002TextValue = "" Then + If $Sum12010110041201021002TextID = "" Then + Var $Sum12010110041201021002TextID = "000013" + EndIf + EndIf EndIf @@ -1636,9 +1603,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210110041221021002 @@ -1661,6 +1629,11 @@ If $Sum12210110041221021002TextID != "" Then Var $Sum12210110041221021002TextValue = "" EndIf + If $Sum12210110041221021002TextValue = "" Then + If $Sum12210110041221021002TextID = "" Then + Var $Sum12210110041221021002TextID = "000013" + EndIf + EndIf EndIf @@ -1989,9 +1962,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010110061201021003 @@ -2014,6 +1988,11 @@ If $Sum12010110061201021003TextID != "" Then Var $Sum12010110061201021003TextValue = "" EndIf + If $Sum12010110061201021003TextValue = "" Then + If $Sum12010110061201021003TextID = "" Then + Var $Sum12010110061201021003TextID = "000013" + EndIf + EndIf EndIf @@ -2342,9 +2321,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210110061221021003 @@ -2367,6 +2347,11 @@ If $Sum12210110061221021003TextID != "" Then Var $Sum12210110061221021003TextValue = "" EndIf + If $Sum12210110061221021003TextValue = "" Then + If $Sum12210110061221021003TextID = "" Then + Var $Sum12210110061221021003TextID = "000013" + EndIf + EndIf EndIf @@ -2695,9 +2680,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010110991201021099 @@ -2720,6 +2706,11 @@ If $Sum12010110991201021099TextID != "" Then Var $Sum12010110991201021099TextValue = "" EndIf + If $Sum12010110991201021099TextValue = "" Then + If $Sum12010110991201021099TextID = "" Then + Var $Sum12010110991201021099TextID = "000013" + EndIf + EndIf EndIf @@ -3048,9 +3039,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210110991221021099 @@ -3073,6 +3065,11 @@ If $Sum12210110991221021099TextID != "" Then Var $Sum12210110991221021099TextValue = "" EndIf + If $Sum12210110991221021099TextValue = "" Then + If $Sum12210110991221021099TextID = "" Then + Var $Sum12210110991221021099TextID = "000013" + EndIf + EndIf EndIf @@ -3401,9 +3398,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110241202021024 @@ -3426,6 +3424,11 @@ If $Sum12020110241202021024TextID != "" Then Var $Sum12020110241202021024TextValue = "" EndIf + If $Sum12020110241202021024TextValue = "" Then + If $Sum12020110241202021024TextID = "" Then + Var $Sum12020110241202021024TextID = "000013" + EndIf + EndIf EndIf @@ -3754,9 +3757,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110251202021025 @@ -3779,6 +3783,11 @@ If $Sum12020110251202021025TextID != "" Then Var $Sum12020110251202021025TextValue = "" EndIf + If $Sum12020110251202021025TextValue = "" Then + If $Sum12020110251202021025TextID = "" Then + Var $Sum12020110251202021025TextID = "000013" + EndIf + EndIf EndIf @@ -4107,9 +4116,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110261202021026 @@ -4132,6 +4142,11 @@ If $Sum12020110261202021026TextID != "" Then Var $Sum12020110261202021026TextValue = "" EndIf + If $Sum12020110261202021026TextValue = "" Then + If $Sum12020110261202021026TextID = "" Then + Var $Sum12020110261202021026TextID = "000013" + EndIf + EndIf EndIf @@ -4460,9 +4475,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110271202021027 @@ -4485,6 +4501,11 @@ If $Sum12020110271202021027TextID != "" Then Var $Sum12020110271202021027TextValue = "" EndIf + If $Sum12020110271202021027TextValue = "" Then + If $Sum12020110271202021027TextID = "" Then + Var $Sum12020110271202021027TextID = "000013" + EndIf + EndIf EndIf @@ -4813,9 +4834,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110291202021029 @@ -4838,6 +4860,11 @@ If $Sum12020110291202021029TextID != "" Then Var $Sum12020110291202021029TextValue = "" EndIf + If $Sum12020110291202021029TextValue = "" Then + If $Sum12020110291202021029TextID = "" Then + Var $Sum12020110291202021029TextID = "000013" + EndIf + EndIf EndIf @@ -5166,9 +5193,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110301202021030 @@ -5191,6 +5219,11 @@ If $Sum12020110301202021030TextID != "" Then Var $Sum12020110301202021030TextValue = "" EndIf + If $Sum12020110301202021030TextValue = "" Then + If $Sum12020110301202021030TextID = "" Then + Var $Sum12020110301202021030TextID = "000013" + EndIf + EndIf EndIf @@ -5519,9 +5552,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110311202021031 @@ -5544,6 +5578,11 @@ If $Sum12020110311202021031TextID != "" Then Var $Sum12020110311202021031TextValue = "" EndIf + If $Sum12020110311202021031TextValue = "" Then + If $Sum12020110311202021031TextID = "" Then + Var $Sum12020110311202021031TextID = "000013" + EndIf + EndIf EndIf @@ -5872,9 +5911,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110321202021032 @@ -5897,6 +5937,11 @@ If $Sum12020110321202021032TextID != "" Then Var $Sum12020110321202021032TextValue = "" EndIf + If $Sum12020110321202021032TextValue = "" Then + If $Sum12020110321202021032TextID = "" Then + Var $Sum12020110321202021032TextID = "000013" + EndIf + EndIf EndIf @@ -6225,9 +6270,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110371202021037 @@ -6250,6 +6296,11 @@ If $Sum12020110371202021037TextID != "" Then Var $Sum12020110371202021037TextValue = "" EndIf + If $Sum12020110371202021037TextValue = "" Then + If $Sum12020110371202021037TextID = "" Then + Var $Sum12020110371202021037TextID = "000013" + EndIf + EndIf EndIf @@ -6578,9 +6629,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030110021203021002 @@ -6603,6 +6655,11 @@ If $Sum12030110021203021002TextID != "" Then Var $Sum12030110021203021002TextValue = "" EndIf + If $Sum12030110021203021002TextValue = "" Then + If $Sum12030110021203021002TextID = "" Then + Var $Sum12030110021203021002TextID = "000013" + EndIf + EndIf EndIf @@ -6931,9 +6988,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030110051203021005 @@ -6956,6 +7014,11 @@ If $Sum12030110051203021005TextID != "" Then Var $Sum12030110051203021005TextValue = "" EndIf + If $Sum12030110051203021005TextValue = "" Then + If $Sum12030110051203021005TextID = "" Then + Var $Sum12030110051203021005TextID = "000013" + EndIf + EndIf EndIf @@ -7284,9 +7347,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050110011205021001 @@ -7309,6 +7373,11 @@ If $Sum12050110011205021001TextID != "" Then Var $Sum12050110011205021001TextValue = "" EndIf + If $Sum12050110011205021001TextValue = "" Then + If $Sum12050110011205021001TextID = "" Then + Var $Sum12050110011205021001TextID = "000013" + EndIf + EndIf EndIf @@ -7633,9 +7702,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205021010 @@ -7658,6 +7728,11 @@ If $Sum1205021010TextID != "" Then Var $Sum1205021010TextValue = "" EndIf + If $Sum1205021010TextValue = "" Then + If $Sum1205021010TextID = "" Then + Var $Sum1205021010TextID = "000013" + EndIf + EndIf EndIf @@ -7986,9 +8061,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110381202021038 @@ -8011,6 +8087,11 @@ If $Sum12020110381202021038TextID != "" Then Var $Sum12020110381202021038TextValue = "" EndIf + If $Sum12020110381202021038TextValue = "" Then + If $Sum12020110381202021038TextID = "" Then + Var $Sum12020110381202021038TextID = "000013" + EndIf + EndIf EndIf @@ -8339,9 +8420,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110391202021039 @@ -8364,6 +8446,11 @@ If $Sum12020110391202021039TextID != "" Then Var $Sum12020110391202021039TextValue = "" EndIf + If $Sum12020110391202021039TextValue = "" Then + If $Sum12020110391202021039TextID = "" Then + Var $Sum12020110391202021039TextID = "000013" + EndIf + EndIf EndIf @@ -8692,9 +8779,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110401202021040 @@ -8717,6 +8805,11 @@ If $Sum12020110401202021040TextID != "" Then Var $Sum12020110401202021040TextValue = "" EndIf + If $Sum12020110401202021040TextValue = "" Then + If $Sum12020110401202021040TextID = "" Then + Var $Sum12020110401202021040TextID = "000013" + EndIf + EndIf EndIf @@ -9041,9 +9134,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200751203030075 @@ -9066,6 +9160,11 @@ If $Sum12030200751203030075TextID != "" Then Var $Sum12030200751203030075TextValue = "" EndIf + If $Sum12030200751203030075TextValue = "" Then + If $Sum12030200751203030075TextID = "" Then + Var $Sum12030200751203030075TextID = "000013" + EndIf + EndIf EndIf @@ -9390,9 +9489,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201241205030124 @@ -9415,6 +9515,11 @@ If $Sum12050201241205030124TextID != "" Then Var $Sum12050201241205030124TextValue = "" EndIf + If $Sum12050201241205030124TextValue = "" Then + If $Sum12050201241205030124TextID = "" Then + Var $Sum12050201241205030124TextID = "000013" + EndIf + EndIf EndIf @@ -9739,9 +9844,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200681202030068 @@ -9764,6 +9870,11 @@ If $Sum12020200681202030068TextID != "" Then Var $Sum12020200681202030068TextValue = "" EndIf + If $Sum12020200681202030068TextValue = "" Then + If $Sum12020200681202030068TextID = "" Then + Var $Sum12020200681202030068TextID = "000013" + EndIf + EndIf EndIf @@ -10088,9 +10199,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020125 @@ -10113,6 +10225,11 @@ If $Sum1205020125TextID != "" Then Var $Sum1205020125TextValue = "" EndIf + If $Sum1205020125TextValue = "" Then + If $Sum1205020125TextID = "" Then + Var $Sum1205020125TextID = "000013" + EndIf + EndIf EndIf @@ -10437,9 +10554,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020075 @@ -10462,6 +10580,11 @@ If $Sum1201020075TextID != "" Then Var $Sum1201020075TextValue = "" EndIf + If $Sum1201020075TextValue = "" Then + If $Sum1201020075TextID = "" Then + Var $Sum1201020075TextID = "000013" + EndIf + EndIf EndIf @@ -10786,9 +10909,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020075 @@ -10811,6 +10935,11 @@ If $Sum1221020075TextID != "" Then Var $Sum1221020075TextValue = "" EndIf + If $Sum1221020075TextValue = "" Then + If $Sum1221020075TextID = "" Then + Var $Sum1221020075TextID = "000013" + EndIf + EndIf EndIf @@ -11135,9 +11264,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200761203030076 @@ -11160,6 +11290,11 @@ If $Sum12030200761203030076TextID != "" Then Var $Sum12030200761203030076TextValue = "" EndIf + If $Sum12030200761203030076TextValue = "" Then + If $Sum12030200761203030076TextID = "" Then + Var $Sum12030200761203030076TextID = "000013" + EndIf + EndIf EndIf @@ -11484,9 +11619,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200691202030069 @@ -11509,6 +11645,11 @@ If $Sum12020200691202030069TextID != "" Then Var $Sum12020200691202030069TextValue = "" EndIf + If $Sum12020200691202030069TextValue = "" Then + If $Sum12020200691202030069TextID = "" Then + Var $Sum12020200691202030069TextID = "000013" + EndIf + EndIf EndIf @@ -11833,9 +11974,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201261205030126 @@ -11858,6 +12000,11 @@ If $Sum12050201261205030126TextID != "" Then Var $Sum12050201261205030126TextValue = "" EndIf + If $Sum12050201261205030126TextValue = "" Then + If $Sum12050201261205030126TextID = "" Then + Var $Sum12050201261205030126TextID = "000013" + EndIf + EndIf EndIf @@ -12182,9 +12329,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201271205030127 @@ -12207,6 +12355,11 @@ If $Sum12050201271205030127TextID != "" Then Var $Sum12050201271205030127TextValue = "" EndIf + If $Sum12050201271205030127TextValue = "" Then + If $Sum12050201271205030127TextID = "" Then + Var $Sum12050201271205030127TextID = "000013" + EndIf + EndIf EndIf @@ -12531,9 +12684,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200701202030070 @@ -12556,6 +12710,11 @@ If $Sum12020200701202030070TextID != "" Then Var $Sum12020200701202030070TextValue = "" EndIf + If $Sum12020200701202030070TextValue = "" Then + If $Sum12020200701202030070TextID = "" Then + Var $Sum12020200701202030070TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_health.skt b/inter/tha/xml/multi/page_catalog_group_health.skt index 629dde6e..f30b46db 100644 --- a/inter/tha/xml/multi/page_catalog_group_health.skt +++ b/inter/tha/xml/multi/page_catalog_group_health.skt @@ -16,6 +16,8 @@ If SlientRefreshIndex = 6 Then Var SlientRefreshIndex = 7 EndIf + + Var HealthRefreshTimeOut = 0 @@ -182,71 +184,18 @@ EndIf EndIf + If HealthRefreshTimeOut > 15 Then + Var HealthRefreshTimeOut = 0 + Script "-" "-" + EndIf + Var HealthRefreshTimeOut = HealthRefreshTimeOut + 1 + TimerReset - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - - - - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030094 @@ -541,6 +542,11 @@ If $Sum1203030094TextID != "" Then Var $Sum1203030094TextValue = "" EndIf + If $Sum1203030094TextValue = "" Then + If $Sum1203030094TextID = "" Then + Var $Sum1203030094TextID = "000013" + EndIf + EndIf EndIf @@ -865,9 +871,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030095 @@ -890,6 +897,11 @@ If $Sum1203030095TextID != "" Then Var $Sum1203030095TextValue = "" EndIf + If $Sum1203030095TextValue = "" Then + If $Sum1203030095TextID = "" Then + Var $Sum1203030095TextID = "000013" + EndIf + EndIf EndIf @@ -1214,9 +1226,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030027 @@ -1239,6 +1252,11 @@ If $Sum1203030027TextID != "" Then Var $Sum1203030027TextValue = "" EndIf + If $Sum1203030027TextValue = "" Then + If $Sum1203030027TextID = "" Then + Var $Sum1203030027TextID = "000013" + EndIf + EndIf EndIf @@ -1563,9 +1581,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020081 @@ -1588,6 +1607,11 @@ If $Sum1203020081TextID != "" Then Var $Sum1203020081TextValue = "" EndIf + If $Sum1203020081TextValue = "" Then + If $Sum1203020081TextID = "" Then + Var $Sum1203020081TextID = "000013" + EndIf + EndIf EndIf @@ -1912,9 +1936,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030088 @@ -1937,6 +1962,11 @@ If $Sum1203030088TextID != "" Then Var $Sum1203030088TextValue = "" EndIf + If $Sum1203030088TextValue = "" Then + If $Sum1203030088TextID = "" Then + Var $Sum1203030088TextID = "000013" + EndIf + EndIf EndIf @@ -2261,9 +2291,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030089 @@ -2286,6 +2317,11 @@ If $Sum1203030089TextID != "" Then Var $Sum1203030089TextValue = "" EndIf + If $Sum1203030089TextValue = "" Then + If $Sum1203030089TextID = "" Then + Var $Sum1203030089TextID = "000013" + EndIf + EndIf EndIf @@ -2610,9 +2646,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020084 @@ -2635,6 +2672,11 @@ If $Sum1201020084TextID != "" Then Var $Sum1201020084TextValue = "" EndIf + If $Sum1201020084TextValue = "" Then + If $Sum1201020084TextID = "" Then + Var $Sum1201020084TextID = "000013" + EndIf + EndIf EndIf @@ -2959,9 +3001,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020084 @@ -2984,6 +3027,11 @@ If $Sum1221020084TextID != "" Then Var $Sum1221020084TextValue = "" EndIf + If $Sum1221020084TextValue = "" Then + If $Sum1221020084TextID = "" Then + Var $Sum1221020084TextID = "000013" + EndIf + EndIf EndIf @@ -3312,9 +3360,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000512030200051203030005 @@ -3337,6 +3386,11 @@ If $Sum120301000512030200051203030005TextID != "" Then Var $Sum120301000512030200051203030005TextValue = "" EndIf + If $Sum120301000512030200051203030005TextValue = "" Then + If $Sum120301000512030200051203030005TextID = "" Then + Var $Sum120301000512030200051203030005TextID = "000013" + EndIf + EndIf EndIf @@ -3665,9 +3719,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000112030200011203030001 @@ -3690,6 +3745,11 @@ If $Sum120301000112030200011203030001TextID != "" Then Var $Sum120301000112030200011203030001TextValue = "" EndIf + If $Sum120301000112030200011203030001TextValue = "" Then + If $Sum120301000112030200011203030001TextID = "" Then + Var $Sum120301000112030200011203030001TextID = "000013" + EndIf + EndIf EndIf @@ -4018,9 +4078,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000412030200041203030004 @@ -4043,6 +4104,11 @@ If $Sum120301000412030200041203030004TextID != "" Then Var $Sum120301000412030200041203030004TextValue = "" EndIf + If $Sum120301000412030200041203030004TextValue = "" Then + If $Sum120301000412030200041203030004TextID = "" Then + Var $Sum120301000412030200041203030004TextID = "000013" + EndIf + EndIf EndIf @@ -4371,9 +4437,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000312030200031203030003 @@ -4396,6 +4463,11 @@ If $Sum120301000312030200031203030003TextID != "" Then Var $Sum120301000312030200031203030003TextValue = "" EndIf + If $Sum120301000312030200031203030003TextValue = "" Then + If $Sum120301000312030200031203030003TextID = "" Then + Var $Sum120301000312030200031203030003TextID = "000013" + EndIf + EndIf EndIf @@ -4720,9 +4792,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200061203030006 @@ -4745,6 +4818,11 @@ If $Sum12030200061203030006TextID != "" Then Var $Sum12030200061203030006TextValue = "" EndIf + If $Sum12030200061203030006TextValue = "" Then + If $Sum12030200061203030006TextID = "" Then + Var $Sum12030200061203030006TextID = "000013" + EndIf + EndIf EndIf @@ -5073,9 +5151,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000212030200021203030002 @@ -5098,6 +5177,11 @@ If $Sum120301000212030200021203030002TextID != "" Then Var $Sum120301000212030200021203030002TextValue = "" EndIf + If $Sum120301000212030200021203030002TextValue = "" Then + If $Sum120301000212030200021203030002TextID = "" Then + Var $Sum120301000212030200021203030002TextID = "000013" + EndIf + EndIf EndIf @@ -5422,9 +5506,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200651203030065 @@ -5447,6 +5532,11 @@ If $Sum12030200651203030065TextID != "" Then Var $Sum12030200651203030065TextValue = "" EndIf + If $Sum12030200651203030065TextValue = "" Then + If $Sum12030200651203030065TextID = "" Then + Var $Sum12030200651203030065TextID = "000013" + EndIf + EndIf EndIf @@ -5771,9 +5861,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200671203030067 @@ -5796,6 +5887,11 @@ If $Sum12030200671203030067TextID != "" Then Var $Sum12030200671203030067TextValue = "" EndIf + If $Sum12030200671203030067TextValue = "" Then + If $Sum12030200671203030067TextID = "" Then + Var $Sum12030200671203030067TextID = "000013" + EndIf + EndIf EndIf @@ -6120,9 +6216,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -6145,6 +6242,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -6469,9 +6571,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -6494,6 +6597,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -6818,9 +6926,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -6843,6 +6952,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -7167,9 +7281,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -7192,6 +7307,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf @@ -7520,9 +7640,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301001012030200101203030010 @@ -7545,6 +7666,11 @@ If $Sum120301001012030200101203030010TextID != "" Then Var $Sum120301001012030200101203030010TextValue = "" EndIf + If $Sum120301001012030200101203030010TextValue = "" Then + If $Sum120301001012030200101203030010TextID = "" Then + Var $Sum120301001012030200101203030010TextID = "000013" + EndIf + EndIf EndIf @@ -7869,9 +7995,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030011 @@ -7894,6 +8021,11 @@ If $Sum1203030011TextID != "" Then Var $Sum1203030011TextValue = "" EndIf + If $Sum1203030011TextValue = "" Then + If $Sum1203030011TextID = "" Then + Var $Sum1203030011TextID = "000013" + EndIf + EndIf EndIf @@ -8218,9 +8350,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030009 @@ -8243,6 +8376,11 @@ If $Sum1203030009TextID != "" Then Var $Sum1203030009TextValue = "" EndIf + If $Sum1203030009TextValue = "" Then + If $Sum1203030009TextID = "" Then + Var $Sum1203030009TextID = "000013" + EndIf + EndIf EndIf @@ -8571,9 +8709,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301001912030200191203030019 @@ -8596,6 +8735,11 @@ If $Sum120301001912030200191203030019TextID != "" Then Var $Sum120301001912030200191203030019TextValue = "" EndIf + If $Sum120301001912030200191203030019TextValue = "" Then + If $Sum120301001912030200191203030019TextID = "" Then + Var $Sum120301001912030200191203030019TextID = "000013" + EndIf + EndIf EndIf @@ -8920,9 +9064,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030020 @@ -8945,6 +9090,11 @@ If $Sum1203030020TextID != "" Then Var $Sum1203030020TextValue = "" EndIf + If $Sum1203030020TextValue = "" Then + If $Sum1203030020TextID = "" Then + Var $Sum1203030020TextID = "000013" + EndIf + EndIf EndIf @@ -9269,9 +9419,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030032 @@ -9294,6 +9445,11 @@ If $Sum1203030032TextID != "" Then Var $Sum1203030032TextValue = "" EndIf + If $Sum1203030032TextValue = "" Then + If $Sum1203030032TextID = "" Then + Var $Sum1203030032TextID = "000013" + EndIf + EndIf EndIf @@ -9618,9 +9774,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030021 @@ -9643,6 +9800,11 @@ If $Sum1203030021TextID != "" Then Var $Sum1203030021TextValue = "" EndIf + If $Sum1203030021TextValue = "" Then + If $Sum1203030021TextID = "" Then + Var $Sum1203030021TextID = "000013" + EndIf + EndIf EndIf @@ -9971,9 +10133,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002212030200221203030022 @@ -9996,6 +10159,11 @@ If $Sum120301002212030200221203030022TextID != "" Then Var $Sum120301002212030200221203030022TextValue = "" EndIf + If $Sum120301002212030200221203030022TextValue = "" Then + If $Sum120301002212030200221203030022TextID = "" Then + Var $Sum120301002212030200221203030022TextID = "000013" + EndIf + EndIf EndIf @@ -10324,9 +10492,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002512030200251203030025 @@ -10349,6 +10518,11 @@ If $Sum120301002512030200251203030025TextID != "" Then Var $Sum120301002512030200251203030025TextValue = "" EndIf + If $Sum120301002512030200251203030025TextValue = "" Then + If $Sum120301002512030200251203030025TextID = "" Then + Var $Sum120301002512030200251203030025TextID = "000013" + EndIf + EndIf EndIf @@ -10673,9 +10847,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030026 @@ -10698,6 +10873,11 @@ If $Sum1203030026TextID != "" Then Var $Sum1203030026TextValue = "" EndIf + If $Sum1203030026TextValue = "" Then + If $Sum1203030026TextID = "" Then + Var $Sum1203030026TextID = "000013" + EndIf + EndIf EndIf @@ -11026,9 +11206,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002312030200231203030023 @@ -11051,6 +11232,11 @@ If $Sum120301002312030200231203030023TextID != "" Then Var $Sum120301002312030200231203030023TextValue = "" EndIf + If $Sum120301002312030200231203030023TextValue = "" Then + If $Sum120301002312030200231203030023TextID = "" Then + Var $Sum120301002312030200231203030023TextID = "000013" + EndIf + EndIf EndIf @@ -11379,9 +11565,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002412030200241203030024 @@ -11404,6 +11591,11 @@ If $Sum120301002412030200241203030024TextID != "" Then Var $Sum120301002412030200241203030024TextValue = "" EndIf + If $Sum120301002412030200241203030024TextValue = "" Then + If $Sum120301002412030200241203030024TextID = "" Then + Var $Sum120301002412030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -11728,9 +11920,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -11753,6 +11946,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -12081,9 +12279,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003512030200351203030035 @@ -12106,6 +12305,11 @@ If $Sum120301003512030200351203030035TextID != "" Then Var $Sum120301003512030200351203030035TextValue = "" EndIf + If $Sum120301003512030200351203030035TextValue = "" Then + If $Sum120301003512030200351203030035TextID = "" Then + Var $Sum120301003512030200351203030035TextID = "000013" + EndIf + EndIf EndIf @@ -12434,9 +12638,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003612030200361203030036 @@ -12459,6 +12664,11 @@ If $Sum120301003612030200361203030036TextID != "" Then Var $Sum120301003612030200361203030036TextValue = "" EndIf + If $Sum120301003612030200361203030036TextValue = "" Then + If $Sum120301003612030200361203030036TextID = "" Then + Var $Sum120301003612030200361203030036TextID = "000013" + EndIf + EndIf EndIf @@ -12783,9 +12993,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200371203030037 @@ -12808,6 +13019,11 @@ If $Sum12030200371203030037TextID != "" Then Var $Sum12030200371203030037TextValue = "" EndIf + If $Sum12030200371203030037TextValue = "" Then + If $Sum12030200371203030037TextID = "" Then + Var $Sum12030200371203030037TextID = "000013" + EndIf + EndIf EndIf @@ -13136,9 +13352,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003812030200381203030038 @@ -13161,6 +13378,11 @@ If $Sum120301003812030200381203030038TextID != "" Then Var $Sum120301003812030200381203030038TextValue = "" EndIf + If $Sum120301003812030200381203030038TextValue = "" Then + If $Sum120301003812030200381203030038TextID = "" Then + Var $Sum120301003812030200381203030038TextID = "000013" + EndIf + EndIf EndIf @@ -13485,9 +13707,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200391203030039 @@ -13510,6 +13733,11 @@ If $Sum12030200391203030039TextID != "" Then Var $Sum12030200391203030039TextValue = "" EndIf + If $Sum12030200391203030039TextValue = "" Then + If $Sum12030200391203030039TextID = "" Then + Var $Sum12030200391203030039TextID = "000013" + EndIf + EndIf EndIf @@ -13834,9 +14062,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030040 @@ -13859,6 +14088,11 @@ If $Sum1203030040TextID != "" Then Var $Sum1203030040TextValue = "" EndIf + If $Sum1203030040TextValue = "" Then + If $Sum1203030040TextID = "" Then + Var $Sum1203030040TextID = "000013" + EndIf + EndIf EndIf @@ -14183,9 +14417,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030041 @@ -14208,6 +14443,11 @@ If $Sum1203030041TextID != "" Then Var $Sum1203030041TextValue = "" EndIf + If $Sum1203030041TextValue = "" Then + If $Sum1203030041TextID = "" Then + Var $Sum1203030041TextID = "000013" + EndIf + EndIf EndIf @@ -14532,9 +14772,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030042 @@ -14557,6 +14798,11 @@ If $Sum1203030042TextID != "" Then Var $Sum1203030042TextValue = "" EndIf + If $Sum1203030042TextValue = "" Then + If $Sum1203030042TextID = "" Then + Var $Sum1203030042TextID = "000013" + EndIf + EndIf EndIf @@ -14881,9 +15127,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030043 @@ -14906,6 +15153,11 @@ If $Sum1203030043TextID != "" Then Var $Sum1203030043TextValue = "" EndIf + If $Sum1203030043TextValue = "" Then + If $Sum1203030043TextID = "" Then + Var $Sum1203030043TextID = "000013" + EndIf + EndIf EndIf @@ -15230,9 +15482,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030061 @@ -15255,6 +15508,11 @@ If $Sum1203030061TextID != "" Then Var $Sum1203030061TextValue = "" EndIf + If $Sum1203030061TextValue = "" Then + If $Sum1203030061TextID = "" Then + Var $Sum1203030061TextID = "000013" + EndIf + EndIf EndIf @@ -15579,9 +15837,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200581203030058 @@ -15604,6 +15863,11 @@ If $Sum12030200581203030058TextID != "" Then Var $Sum12030200581203030058TextValue = "" EndIf + If $Sum12030200581203030058TextValue = "" Then + If $Sum12030200581203030058TextID = "" Then + Var $Sum12030200581203030058TextID = "000013" + EndIf + EndIf EndIf @@ -15928,9 +16192,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200591203030059 @@ -15953,6 +16218,11 @@ If $Sum12030200591203030059TextID != "" Then Var $Sum12030200591203030059TextValue = "" EndIf + If $Sum12030200591203030059TextValue = "" Then + If $Sum12030200591203030059TextID = "" Then + Var $Sum12030200591203030059TextID = "000013" + EndIf + EndIf EndIf @@ -16277,9 +16547,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030085 @@ -16302,6 +16573,11 @@ If $Sum1201030085TextID != "" Then Var $Sum1201030085TextValue = "" EndIf + If $Sum1201030085TextValue = "" Then + If $Sum1201030085TextID = "" Then + Var $Sum1201030085TextID = "000013" + EndIf + EndIf EndIf @@ -16626,9 +16902,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030085 @@ -16651,6 +16928,11 @@ If $Sum1221030085TextID != "" Then Var $Sum1221030085TextValue = "" EndIf + If $Sum1221030085TextValue = "" Then + If $Sum1221030085TextID = "" Then + Var $Sum1221030085TextID = "000013" + EndIf + EndIf EndIf @@ -16975,9 +17257,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030086 @@ -17000,6 +17283,11 @@ If $Sum1202030086TextID != "" Then Var $Sum1202030086TextValue = "" EndIf + If $Sum1202030086TextValue = "" Then + If $Sum1202030086TextID = "" Then + Var $Sum1202030086TextID = "000013" + EndIf + EndIf EndIf @@ -17324,9 +17612,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030087 @@ -17349,6 +17638,11 @@ If $Sum1202030087TextID != "" Then Var $Sum1202030087TextValue = "" EndIf + If $Sum1202030087TextValue = "" Then + If $Sum1202030087TextID = "" Then + Var $Sum1202030087TextID = "000013" + EndIf + EndIf EndIf @@ -17673,9 +17967,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030090 @@ -17698,6 +17993,11 @@ If $Sum1203030090TextID != "" Then Var $Sum1203030090TextValue = "" EndIf + If $Sum1203030090TextValue = "" Then + If $Sum1203030090TextID = "" Then + Var $Sum1203030090TextID = "000013" + EndIf + EndIf EndIf @@ -18022,9 +18322,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030091 @@ -18047,6 +18348,11 @@ If $Sum1203030091TextID != "" Then Var $Sum1203030091TextValue = "" EndIf + If $Sum1203030091TextValue = "" Then + If $Sum1203030091TextID = "" Then + Var $Sum1203030091TextID = "000013" + EndIf + EndIf EndIf @@ -18371,9 +18677,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030093 @@ -18396,6 +18703,11 @@ If $Sum1203030093TextID != "" Then Var $Sum1203030093TextValue = "" EndIf + If $Sum1203030093TextValue = "" Then + If $Sum1203030093TextID = "" Then + Var $Sum1203030093TextID = "000013" + EndIf + EndIf EndIf @@ -18720,9 +19032,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030092 @@ -18745,6 +19058,11 @@ If $Sum1203030092TextID != "" Then Var $Sum1203030092TextValue = "" EndIf + If $Sum1203030092TextValue = "" Then + If $Sum1203030092TextID = "" Then + Var $Sum1203030092TextID = "000013" + EndIf + EndIf EndIf @@ -18772,8 +19090,6 @@ - - RefreshAll diff --git a/inter/tha/xml/multi/page_catalog_group_milk.skt b/inter/tha/xml/multi/page_catalog_group_milk.skt index c399cd24..82c7247a 100644 --- a/inter/tha/xml/multi/page_catalog_group_milk.skt +++ b/inter/tha/xml/multi/page_catalog_group_milk.skt @@ -199,10 +199,6 @@ ?> - - RefreshAll diff --git a/inter/tha/xml/multi/page_catalog_group_oreo.lxml b/inter/tha/xml/multi/page_catalog_group_oreo.lxml index 8456036a..d877766d 100644 --- a/inter/tha/xml/multi/page_catalog_group_oreo.lxml +++ b/inter/tha/xml/multi/page_catalog_group_oreo.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030009 @@ -429,6 +430,11 @@ If $Sum1203030009TextID != "" Then Var $Sum1203030009TextValue = "" EndIf + If $Sum1203030009TextValue = "" Then + If $Sum1203030009TextID = "" Then + Var $Sum1203030009TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030027 @@ -778,6 +785,11 @@ If $Sum1203030027TextID != "" Then Var $Sum1203030027TextValue = "" EndIf + If $Sum1203030027TextValue = "" Then + If $Sum1203030027TextID = "" Then + Var $Sum1203030027TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030028 @@ -1127,6 +1140,11 @@ If $Sum1203030028TextID != "" Then Var $Sum1203030028TextValue = "" EndIf + If $Sum1203030028TextValue = "" Then + If $Sum1203030028TextID = "" Then + Var $Sum1203030028TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -1476,6 +1495,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030030 @@ -1825,6 +1850,11 @@ If $Sum1203030030TextID != "" Then Var $Sum1203030030TextValue = "" EndIf + If $Sum1203030030TextValue = "" Then + If $Sum1203030030TextID = "" Then + Var $Sum1203030030TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030031 @@ -2174,6 +2205,11 @@ If $Sum1203030031TextID != "" Then Var $Sum1203030031TextValue = "" EndIf + If $Sum1203030031TextValue = "" Then + If $Sum1203030031TextID = "" Then + Var $Sum1203030031TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030043 @@ -2523,6 +2560,11 @@ If $Sum1202030043TextID != "" Then Var $Sum1202030043TextValue = "" EndIf + If $Sum1202030043TextValue = "" Then + If $Sum1202030043TextID = "" Then + Var $Sum1202030043TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030044 @@ -2872,6 +2915,11 @@ If $Sum1202030044TextID != "" Then Var $Sum1202030044TextValue = "" EndIf + If $Sum1202030044TextValue = "" Then + If $Sum1202030044TextID = "" Then + Var $Sum1202030044TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030043 @@ -3221,6 +3270,11 @@ If $Sum1201030043TextID != "" Then Var $Sum1201030043TextValue = "" EndIf + If $Sum1201030043TextValue = "" Then + If $Sum1201030043TextID = "" Then + Var $Sum1201030043TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030026 @@ -3570,6 +3625,11 @@ If $Sum1203030026TextID != "" Then Var $Sum1203030026TextValue = "" EndIf + If $Sum1203030026TextValue = "" Then + If $Sum1203030026TextID = "" Then + Var $Sum1203030026TextID = "000013" + EndIf + EndIf EndIf @@ -3894,9 +3954,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030045 @@ -3919,6 +3980,11 @@ If $Sum1202030045TextID != "" Then Var $Sum1202030045TextValue = "" EndIf + If $Sum1202030045TextValue = "" Then + If $Sum1202030045TextID = "" Then + Var $Sum1202030045TextID = "000013" + EndIf + EndIf EndIf @@ -4243,9 +4309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -4268,6 +4335,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -4592,9 +4664,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030040 @@ -4617,6 +4690,11 @@ If $Sum1203030040TextID != "" Then Var $Sum1203030040TextValue = "" EndIf + If $Sum1203030040TextValue = "" Then + If $Sum1203030040TextID = "" Then + Var $Sum1203030040TextID = "000013" + EndIf + EndIf EndIf @@ -4941,9 +5019,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -4966,6 +5045,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_other.lxml b/inter/tha/xml/multi/page_catalog_group_other.lxml index 124fd7ef..9313c0e6 100644 --- a/inter/tha/xml/multi/page_catalog_group_other.lxml +++ b/inter/tha/xml/multi/page_catalog_group_other.lxml @@ -527,9 +527,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201431205030143 @@ -552,6 +553,11 @@ If $Sum12050201431205030143TextID != "" Then Var $Sum12050201431205030143TextValue = "" EndIf + If $Sum12050201431205030143TextValue = "" Then + If $Sum12050201431205030143TextID = "" Then + Var $Sum12050201431205030143TextID = "000013" + EndIf + EndIf EndIf @@ -876,9 +882,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020133 @@ -901,6 +908,11 @@ If $Sum1205020133TextID != "" Then Var $Sum1205020133TextValue = "" EndIf + If $Sum1205020133TextValue = "" Then + If $Sum1205020133TextID = "" Then + Var $Sum1205020133TextID = "000013" + EndIf + EndIf EndIf @@ -1225,9 +1237,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201361205030136 @@ -1250,6 +1263,11 @@ If $Sum12050201361205030136TextID != "" Then Var $Sum12050201361205030136TextValue = "" EndIf + If $Sum12050201361205030136TextValue = "" Then + If $Sum12050201361205030136TextID = "" Then + Var $Sum12050201361205030136TextID = "000013" + EndIf + EndIf EndIf @@ -1574,9 +1592,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201371205030137 @@ -1599,6 +1618,11 @@ If $Sum12050201371205030137TextID != "" Then Var $Sum12050201371205030137TextValue = "" EndIf + If $Sum12050201371205030137TextValue = "" Then + If $Sum12050201371205030137TextID = "" Then + Var $Sum12050201371205030137TextID = "000013" + EndIf + EndIf EndIf @@ -1923,9 +1947,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201381205030138 @@ -1948,6 +1973,11 @@ If $Sum12050201381205030138TextID != "" Then Var $Sum12050201381205030138TextValue = "" EndIf + If $Sum12050201381205030138TextValue = "" Then + If $Sum12050201381205030138TextID = "" Then + Var $Sum12050201381205030138TextID = "000013" + EndIf + EndIf EndIf @@ -2272,9 +2302,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201391205030139 @@ -2297,6 +2328,11 @@ If $Sum12050201391205030139TextID != "" Then Var $Sum12050201391205030139TextValue = "" EndIf + If $Sum12050201391205030139TextValue = "" Then + If $Sum12050201391205030139TextID = "" Then + Var $Sum12050201391205030139TextID = "000013" + EndIf + EndIf EndIf @@ -2621,9 +2657,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201401205030140 @@ -2646,6 +2683,11 @@ If $Sum12050201401205030140TextID != "" Then Var $Sum12050201401205030140TextValue = "" EndIf + If $Sum12050201401205030140TextValue = "" Then + If $Sum12050201401205030140TextID = "" Then + Var $Sum12050201401205030140TextID = "000013" + EndIf + EndIf EndIf @@ -2970,9 +3012,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201411205030141 @@ -2995,6 +3038,11 @@ If $Sum12050201411205030141TextID != "" Then Var $Sum12050201411205030141TextValue = "" EndIf + If $Sum12050201411205030141TextValue = "" Then + If $Sum12050201411205030141TextID = "" Then + Var $Sum12050201411205030141TextID = "000013" + EndIf + EndIf EndIf @@ -3319,9 +3367,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201421205030142 @@ -3344,6 +3393,11 @@ If $Sum12050201421205030142TextID != "" Then Var $Sum12050201421205030142TextValue = "" EndIf + If $Sum12050201421205030142TextValue = "" Then + If $Sum12050201421205030142TextID = "" Then + Var $Sum12050201421205030142TextID = "000013" + EndIf + EndIf EndIf @@ -3668,9 +3722,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200071205030007 @@ -3693,6 +3748,11 @@ If $Sum12050200071205030007TextID != "" Then Var $Sum12050200071205030007TextValue = "" EndIf + If $Sum12050200071205030007TextValue = "" Then + If $Sum12050200071205030007TextID = "" Then + Var $Sum12050200071205030007TextID = "000013" + EndIf + EndIf EndIf @@ -4017,9 +4077,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200941205030094 @@ -4042,6 +4103,11 @@ If $Sum12050200941205030094TextID != "" Then Var $Sum12050200941205030094TextValue = "" EndIf + If $Sum12050200941205030094TextValue = "" Then + If $Sum12050200941205030094TextID = "" Then + Var $Sum12050200941205030094TextID = "000013" + EndIf + EndIf EndIf @@ -4366,9 +4432,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020095 @@ -4391,6 +4458,11 @@ If $Sum1205020095TextID != "" Then Var $Sum1205020095TextValue = "" EndIf + If $Sum1205020095TextValue = "" Then + If $Sum1205020095TextID = "" Then + Var $Sum1205020095TextID = "000013" + EndIf + EndIf EndIf @@ -4715,9 +4787,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200351205030035 @@ -4740,6 +4813,11 @@ If $Sum12050200351205030035TextID != "" Then Var $Sum12050200351205030035TextValue = "" EndIf + If $Sum12050200351205030035TextValue = "" Then + If $Sum12050200351205030035TextID = "" Then + Var $Sum12050200351205030035TextID = "000013" + EndIf + EndIf EndIf @@ -5064,9 +5142,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020096 @@ -5089,6 +5168,11 @@ If $Sum1205020096TextID != "" Then Var $Sum1205020096TextValue = "" EndIf + If $Sum1205020096TextValue = "" Then + If $Sum1205020096TextID = "" Then + Var $Sum1205020096TextID = "000013" + EndIf + EndIf EndIf @@ -5413,9 +5497,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020044 @@ -5438,6 +5523,11 @@ If $Sum1205020044TextID != "" Then Var $Sum1205020044TextValue = "" EndIf + If $Sum1205020044TextValue = "" Then + If $Sum1205020044TextID = "" Then + Var $Sum1205020044TextID = "000013" + EndIf + EndIf EndIf @@ -5762,9 +5852,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020045 @@ -5787,6 +5878,11 @@ If $Sum1205020045TextID != "" Then Var $Sum1205020045TextValue = "" EndIf + If $Sum1205020045TextValue = "" Then + If $Sum1205020045TextID = "" Then + Var $Sum1205020045TextID = "000013" + EndIf + EndIf EndIf @@ -6111,9 +6207,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200101205030010 @@ -6136,6 +6233,11 @@ If $Sum12050200101205030010TextID != "" Then Var $Sum12050200101205030010TextValue = "" EndIf + If $Sum12050200101205030010TextValue = "" Then + If $Sum12050200101205030010TextID = "" Then + Var $Sum12050200101205030010TextID = "000013" + EndIf + EndIf EndIf @@ -6460,9 +6562,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200331205030033 @@ -6485,6 +6588,11 @@ If $Sum12050200331205030033TextID != "" Then Var $Sum12050200331205030033TextValue = "" EndIf + If $Sum12050200331205030033TextValue = "" Then + If $Sum12050200331205030033TextID = "" Then + Var $Sum12050200331205030033TextID = "000013" + EndIf + EndIf EndIf @@ -6809,9 +6917,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200221205030022 @@ -6834,6 +6943,11 @@ If $Sum12050200221205030022TextID != "" Then Var $Sum12050200221205030022TextValue = "" EndIf + If $Sum12050200221205030022TextValue = "" Then + If $Sum12050200221205030022TextID = "" Then + Var $Sum12050200221205030022TextID = "000013" + EndIf + EndIf EndIf @@ -7158,9 +7272,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020115 @@ -7183,6 +7298,11 @@ If $Sum1205020115TextID != "" Then Var $Sum1205020115TextValue = "" EndIf + If $Sum1205020115TextValue = "" Then + If $Sum1205020115TextID = "" Then + Var $Sum1205020115TextID = "000013" + EndIf + EndIf EndIf @@ -7507,9 +7627,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020012 @@ -7532,6 +7653,11 @@ If $Sum1205020012TextID != "" Then Var $Sum1205020012TextValue = "" EndIf + If $Sum1205020012TextValue = "" Then + If $Sum1205020012TextID = "" Then + Var $Sum1205020012TextID = "000013" + EndIf + EndIf EndIf @@ -7856,9 +7982,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200411205030041 @@ -7881,6 +8008,11 @@ If $Sum12050200411205030041TextID != "" Then Var $Sum12050200411205030041TextValue = "" EndIf + If $Sum12050200411205030041TextValue = "" Then + If $Sum12050200411205030041TextID = "" Then + Var $Sum12050200411205030041TextID = "000013" + EndIf + EndIf EndIf @@ -8205,9 +8337,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200081205030008 @@ -8230,6 +8363,11 @@ If $Sum12050200081205030008TextID != "" Then Var $Sum12050200081205030008TextValue = "" EndIf + If $Sum12050200081205030008TextValue = "" Then + If $Sum12050200081205030008TextID = "" Then + Var $Sum12050200081205030008TextID = "000013" + EndIf + EndIf EndIf @@ -8554,9 +8692,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200091205030009 @@ -8579,6 +8718,11 @@ If $Sum12050200091205030009TextID != "" Then Var $Sum12050200091205030009TextValue = "" EndIf + If $Sum12050200091205030009TextValue = "" Then + If $Sum12050200091205030009TextID = "" Then + Var $Sum12050200091205030009TextID = "000013" + EndIf + EndIf EndIf @@ -8903,9 +9047,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020100 @@ -8928,6 +9073,11 @@ If $Sum1205020100TextID != "" Then Var $Sum1205020100TextValue = "" EndIf + If $Sum1205020100TextValue = "" Then + If $Sum1205020100TextID = "" Then + Var $Sum1205020100TextID = "000013" + EndIf + EndIf EndIf @@ -9252,9 +9402,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200241205030024 @@ -9277,6 +9428,11 @@ If $Sum12050200241205030024TextID != "" Then Var $Sum12050200241205030024TextValue = "" EndIf + If $Sum12050200241205030024TextValue = "" Then + If $Sum12050200241205030024TextID = "" Then + Var $Sum12050200241205030024TextID = "000013" + EndIf + EndIf EndIf @@ -9601,9 +9757,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200251205030025 @@ -9626,6 +9783,11 @@ If $Sum12050200251205030025TextID != "" Then Var $Sum12050200251205030025TextValue = "" EndIf + If $Sum12050200251205030025TextValue = "" Then + If $Sum12050200251205030025TextID = "" Then + Var $Sum12050200251205030025TextID = "000013" + EndIf + EndIf EndIf @@ -9950,9 +10112,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200461205030046 @@ -9975,6 +10138,11 @@ If $Sum12050200461205030046TextID != "" Then Var $Sum12050200461205030046TextValue = "" EndIf + If $Sum12050200461205030046TextValue = "" Then + If $Sum12050200461205030046TextID = "" Then + Var $Sum12050200461205030046TextID = "000013" + EndIf + EndIf EndIf @@ -10299,9 +10467,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201041205030104 @@ -10324,6 +10493,11 @@ If $Sum12050201041205030104TextID != "" Then Var $Sum12050201041205030104TextValue = "" EndIf + If $Sum12050201041205030104TextValue = "" Then + If $Sum12050201041205030104TextID = "" Then + Var $Sum12050201041205030104TextID = "000013" + EndIf + EndIf EndIf @@ -10648,9 +10822,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200741205030074 @@ -10673,6 +10848,11 @@ If $Sum12050200741205030074TextID != "" Then Var $Sum12050200741205030074TextValue = "" EndIf + If $Sum12050200741205030074TextValue = "" Then + If $Sum12050200741205030074TextID = "" Then + Var $Sum12050200741205030074TextID = "000013" + EndIf + EndIf EndIf @@ -10997,9 +11177,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020097 @@ -11022,6 +11203,11 @@ If $Sum1205020097TextID != "" Then Var $Sum1205020097TextValue = "" EndIf + If $Sum1205020097TextValue = "" Then + If $Sum1205020097TextID = "" Then + Var $Sum1205020097TextID = "000013" + EndIf + EndIf EndIf @@ -11346,9 +11532,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020101 @@ -11371,6 +11558,11 @@ If $Sum1205020101TextID != "" Then Var $Sum1205020101TextValue = "" EndIf + If $Sum1205020101TextValue = "" Then + If $Sum1205020101TextID = "" Then + Var $Sum1205020101TextID = "000013" + EndIf + EndIf EndIf @@ -11695,9 +11887,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200471205030047 @@ -11720,6 +11913,11 @@ If $Sum12050200471205030047TextID != "" Then Var $Sum12050200471205030047TextValue = "" EndIf + If $Sum12050200471205030047TextValue = "" Then + If $Sum12050200471205030047TextID = "" Then + Var $Sum12050200471205030047TextID = "000013" + EndIf + EndIf EndIf @@ -12044,9 +12242,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201051205030105 @@ -12069,6 +12268,11 @@ If $Sum12050201051205030105TextID != "" Then Var $Sum12050201051205030105TextValue = "" EndIf + If $Sum12050201051205030105TextValue = "" Then + If $Sum12050201051205030105TextID = "" Then + Var $Sum12050201051205030105TextID = "000013" + EndIf + EndIf EndIf @@ -12393,9 +12597,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200751205030075 @@ -12418,6 +12623,11 @@ If $Sum12050200751205030075TextID != "" Then Var $Sum12050200751205030075TextValue = "" EndIf + If $Sum12050200751205030075TextValue = "" Then + If $Sum12050200751205030075TextID = "" Then + Var $Sum12050200751205030075TextID = "000013" + EndIf + EndIf EndIf @@ -12742,9 +12952,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020053 @@ -12767,6 +12978,11 @@ If $Sum1205020053TextID != "" Then Var $Sum1205020053TextValue = "" EndIf + If $Sum1205020053TextValue = "" Then + If $Sum1205020053TextID = "" Then + Var $Sum1205020053TextID = "000013" + EndIf + EndIf EndIf @@ -13091,9 +13307,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020106 @@ -13116,6 +13333,11 @@ If $Sum1205020106TextID != "" Then Var $Sum1205020106TextValue = "" EndIf + If $Sum1205020106TextValue = "" Then + If $Sum1205020106TextID = "" Then + Var $Sum1205020106TextID = "000013" + EndIf + EndIf EndIf @@ -13440,9 +13662,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020076 @@ -13465,6 +13688,11 @@ If $Sum1205020076TextID != "" Then Var $Sum1205020076TextValue = "" EndIf + If $Sum1205020076TextValue = "" Then + If $Sum1205020076TextID = "" Then + Var $Sum1205020076TextID = "000013" + EndIf + EndIf EndIf @@ -13789,9 +14017,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020102 @@ -13814,6 +14043,11 @@ If $Sum1205020102TextID != "" Then Var $Sum1205020102TextValue = "" EndIf + If $Sum1205020102TextValue = "" Then + If $Sum1205020102TextID = "" Then + Var $Sum1205020102TextID = "000013" + EndIf + EndIf EndIf @@ -14138,9 +14372,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020054 @@ -14163,6 +14398,11 @@ If $Sum1205020054TextID != "" Then Var $Sum1205020054TextValue = "" EndIf + If $Sum1205020054TextValue = "" Then + If $Sum1205020054TextID = "" Then + Var $Sum1205020054TextID = "000013" + EndIf + EndIf EndIf @@ -14487,9 +14727,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020107 @@ -14512,6 +14753,11 @@ If $Sum1205020107TextID != "" Then Var $Sum1205020107TextValue = "" EndIf + If $Sum1205020107TextValue = "" Then + If $Sum1205020107TextID = "" Then + Var $Sum1205020107TextID = "000013" + EndIf + EndIf EndIf @@ -14836,9 +15082,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020077 @@ -14861,6 +15108,11 @@ If $Sum1205020077TextID != "" Then Var $Sum1205020077TextValue = "" EndIf + If $Sum1205020077TextValue = "" Then + If $Sum1205020077TextID = "" Then + Var $Sum1205020077TextID = "000013" + EndIf + EndIf EndIf @@ -15185,9 +15437,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200381205030038 @@ -15210,6 +15463,11 @@ If $Sum12050200381205030038TextID != "" Then Var $Sum12050200381205030038TextValue = "" EndIf + If $Sum12050200381205030038TextValue = "" Then + If $Sum12050200381205030038TextID = "" Then + Var $Sum12050200381205030038TextID = "000013" + EndIf + EndIf EndIf @@ -15534,9 +15792,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200391205030039 @@ -15559,6 +15818,11 @@ If $Sum12050200391205030039TextID != "" Then Var $Sum12050200391205030039TextValue = "" EndIf + If $Sum12050200391205030039TextValue = "" Then + If $Sum12050200391205030039TextID = "" Then + Var $Sum12050200391205030039TextID = "000013" + EndIf + EndIf EndIf @@ -15883,9 +16147,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020051 @@ -15908,6 +16173,11 @@ If $Sum1205020051TextID != "" Then Var $Sum1205020051TextValue = "" EndIf + If $Sum1205020051TextValue = "" Then + If $Sum1205020051TextID = "" Then + Var $Sum1205020051TextID = "000013" + EndIf + EndIf EndIf @@ -16232,9 +16502,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020052 @@ -16257,6 +16528,11 @@ If $Sum1205020052TextID != "" Then Var $Sum1205020052TextValue = "" EndIf + If $Sum1205020052TextValue = "" Then + If $Sum1205020052TextID = "" Then + Var $Sum1205020052TextID = "000013" + EndIf + EndIf EndIf @@ -16581,9 +16857,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020060 @@ -16606,6 +16883,11 @@ If $Sum1205020060TextID != "" Then Var $Sum1205020060TextValue = "" EndIf + If $Sum1205020060TextValue = "" Then + If $Sum1205020060TextID = "" Then + Var $Sum1205020060TextID = "000013" + EndIf + EndIf EndIf @@ -16930,9 +17212,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020116 @@ -16955,6 +17238,11 @@ If $Sum1205020116TextID != "" Then Var $Sum1205020116TextValue = "" EndIf + If $Sum1205020116TextValue = "" Then + If $Sum1205020116TextID = "" Then + Var $Sum1205020116TextID = "000013" + EndIf + EndIf EndIf @@ -17279,9 +17567,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020063 @@ -17304,6 +17593,11 @@ If $Sum1205020063TextID != "" Then Var $Sum1205020063TextValue = "" EndIf + If $Sum1205020063TextValue = "" Then + If $Sum1205020063TextID = "" Then + Var $Sum1205020063TextID = "000013" + EndIf + EndIf EndIf @@ -17628,9 +17922,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020064 @@ -17653,6 +17948,11 @@ If $Sum1205020064TextID != "" Then Var $Sum1205020064TextValue = "" EndIf + If $Sum1205020064TextValue = "" Then + If $Sum1205020064TextID = "" Then + Var $Sum1205020064TextID = "000013" + EndIf + EndIf EndIf @@ -17977,9 +18277,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020065 @@ -18002,6 +18303,11 @@ If $Sum1205020065TextID != "" Then Var $Sum1205020065TextValue = "" EndIf + If $Sum1205020065TextValue = "" Then + If $Sum1205020065TextID = "" Then + Var $Sum1205020065TextID = "000013" + EndIf + EndIf EndIf @@ -18326,9 +18632,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020066 @@ -18351,6 +18658,11 @@ If $Sum1205020066TextID != "" Then Var $Sum1205020066TextValue = "" EndIf + If $Sum1205020066TextValue = "" Then + If $Sum1205020066TextID = "" Then + Var $Sum1205020066TextID = "000013" + EndIf + EndIf EndIf @@ -18675,9 +18987,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -18700,6 +19013,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf @@ -19024,9 +19342,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020108 @@ -19049,6 +19368,11 @@ If $Sum1205020108TextID != "" Then Var $Sum1205020108TextValue = "" EndIf + If $Sum1205020108TextValue = "" Then + If $Sum1205020108TextID = "" Then + Var $Sum1205020108TextID = "000013" + EndIf + EndIf EndIf @@ -19373,9 +19697,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020069 @@ -19398,6 +19723,11 @@ If $Sum1205020069TextID != "" Then Var $Sum1205020069TextValue = "" EndIf + If $Sum1205020069TextValue = "" Then + If $Sum1205020069TextID = "" Then + Var $Sum1205020069TextID = "000013" + EndIf + EndIf EndIf @@ -19722,9 +20052,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020070 @@ -19747,6 +20078,11 @@ If $Sum1205020070TextID != "" Then Var $Sum1205020070TextValue = "" EndIf + If $Sum1205020070TextValue = "" Then + If $Sum1205020070TextID = "" Then + Var $Sum1205020070TextID = "000013" + EndIf + EndIf EndIf @@ -20071,9 +20407,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020071 @@ -20096,6 +20433,11 @@ If $Sum1205020071TextID != "" Then Var $Sum1205020071TextValue = "" EndIf + If $Sum1205020071TextValue = "" Then + If $Sum1205020071TextID = "" Then + Var $Sum1205020071TextID = "000013" + EndIf + EndIf EndIf @@ -20420,9 +20762,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020072 @@ -20445,6 +20788,11 @@ If $Sum1205020072TextID != "" Then Var $Sum1205020072TextValue = "" EndIf + If $Sum1205020072TextValue = "" Then + If $Sum1205020072TextID = "" Then + Var $Sum1205020072TextID = "000013" + EndIf + EndIf EndIf @@ -20769,9 +21117,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020109 @@ -20794,6 +21143,11 @@ If $Sum1205020109TextID != "" Then Var $Sum1205020109TextValue = "" EndIf + If $Sum1205020109TextValue = "" Then + If $Sum1205020109TextID = "" Then + Var $Sum1205020109TextID = "000013" + EndIf + EndIf EndIf @@ -21118,9 +21472,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020073 @@ -21143,6 +21498,11 @@ If $Sum1205020073TextID != "" Then Var $Sum1205020073TextValue = "" EndIf + If $Sum1205020073TextValue = "" Then + If $Sum1205020073TextID = "" Then + Var $Sum1205020073TextID = "000013" + EndIf + EndIf EndIf @@ -21467,9 +21827,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030092 @@ -21492,6 +21853,11 @@ If $Sum1205030092TextID != "" Then Var $Sum1205030092TextValue = "" EndIf + If $Sum1205030092TextValue = "" Then + If $Sum1205030092TextID = "" Then + Var $Sum1205030092TextID = "000013" + EndIf + EndIf EndIf @@ -21816,9 +22182,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020090 @@ -21841,6 +22208,11 @@ If $Sum1205020090TextID != "" Then Var $Sum1205020090TextValue = "" EndIf + If $Sum1205020090TextValue = "" Then + If $Sum1205020090TextID = "" Then + Var $Sum1205020090TextID = "000013" + EndIf + EndIf EndIf @@ -22165,9 +22537,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200911205030091 @@ -22190,6 +22563,11 @@ If $Sum12050200911205030091TextID != "" Then Var $Sum12050200911205030091TextValue = "" EndIf + If $Sum12050200911205030091TextValue = "" Then + If $Sum12050200911205030091TextID = "" Then + Var $Sum12050200911205030091TextID = "000013" + EndIf + EndIf EndIf @@ -22514,9 +22892,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201141205030114 @@ -22539,6 +22918,11 @@ If $Sum12050201141205030114TextID != "" Then Var $Sum12050201141205030114TextValue = "" EndIf + If $Sum12050201141205030114TextValue = "" Then + If $Sum12050201141205030114TextID = "" Then + Var $Sum12050201141205030114TextID = "000013" + EndIf + EndIf EndIf @@ -22863,9 +23247,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020093 @@ -22888,6 +23273,11 @@ If $Sum1205020093TextID != "" Then Var $Sum1205020093TextValue = "" EndIf + If $Sum1205020093TextValue = "" Then + If $Sum1205020093TextID = "" Then + Var $Sum1205020093TextID = "000013" + EndIf + EndIf EndIf @@ -23212,9 +23602,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020103 @@ -23237,6 +23628,11 @@ If $Sum1205020103TextID != "" Then Var $Sum1205020103TextValue = "" EndIf + If $Sum1205020103TextValue = "" Then + If $Sum1205020103TextID = "" Then + Var $Sum1205020103TextID = "000013" + EndIf + EndIf EndIf @@ -23561,9 +23957,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020014 @@ -23586,6 +23983,11 @@ If $Sum1205020014TextID != "" Then Var $Sum1205020014TextValue = "" EndIf + If $Sum1205020014TextValue = "" Then + If $Sum1205020014TextID = "" Then + Var $Sum1205020014TextID = "000013" + EndIf + EndIf EndIf @@ -23910,9 +24312,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020015 @@ -23935,6 +24338,11 @@ If $Sum1205020015TextID != "" Then Var $Sum1205020015TextValue = "" EndIf + If $Sum1205020015TextValue = "" Then + If $Sum1205020015TextID = "" Then + Var $Sum1205020015TextID = "000013" + EndIf + EndIf EndIf @@ -24259,9 +24667,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200341205030034 @@ -24284,6 +24693,11 @@ If $Sum12050200341205030034TextID != "" Then Var $Sum12050200341205030034TextValue = "" EndIf + If $Sum12050200341205030034TextValue = "" Then + If $Sum12050200341205030034TextID = "" Then + Var $Sum12050200341205030034TextID = "000013" + EndIf + EndIf EndIf @@ -24608,9 +25022,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200031205030003 @@ -24633,6 +25048,11 @@ If $Sum12050200031205030003TextID != "" Then Var $Sum12050200031205030003TextValue = "" EndIf + If $Sum12050200031205030003TextValue = "" Then + If $Sum12050200031205030003TextID = "" Then + Var $Sum12050200031205030003TextID = "000013" + EndIf + EndIf EndIf @@ -24957,9 +25377,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200041205030004 @@ -24982,6 +25403,11 @@ If $Sum12050200041205030004TextID != "" Then Var $Sum12050200041205030004TextValue = "" EndIf + If $Sum12050200041205030004TextValue = "" Then + If $Sum12050200041205030004TextID = "" Then + Var $Sum12050200041205030004TextID = "000013" + EndIf + EndIf EndIf @@ -25306,9 +25732,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200021205030002 @@ -25331,6 +25758,11 @@ If $Sum12050200021205030002TextID != "" Then Var $Sum12050200021205030002TextValue = "" EndIf + If $Sum12050200021205030002TextValue = "" Then + If $Sum12050200021205030002TextID = "" Then + Var $Sum12050200021205030002TextID = "000013" + EndIf + EndIf EndIf @@ -25655,9 +26087,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020005 @@ -25680,6 +26113,11 @@ If $Sum1205020005TextID != "" Then Var $Sum1205020005TextValue = "" EndIf + If $Sum1205020005TextValue = "" Then + If $Sum1205020005TextID = "" Then + Var $Sum1205020005TextID = "000013" + EndIf + EndIf EndIf @@ -26008,9 +26446,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120501000112050200011205030001 @@ -26033,6 +26472,11 @@ If $Sum120501000112050200011205030001TextID != "" Then Var $Sum120501000112050200011205030001TextValue = "" EndIf + If $Sum120501000112050200011205030001TextValue = "" Then + If $Sum120501000112050200011205030001TextID = "" Then + Var $Sum120501000112050200011205030001TextID = "000013" + EndIf + EndIf EndIf @@ -26357,9 +26801,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200261205030026 @@ -26382,6 +26827,11 @@ If $Sum12050200261205030026TextID != "" Then Var $Sum12050200261205030026TextValue = "" EndIf + If $Sum12050200261205030026TextValue = "" Then + If $Sum12050200261205030026TextID = "" Then + Var $Sum12050200261205030026TextID = "000013" + EndIf + EndIf EndIf @@ -26706,9 +27156,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200321205030032 @@ -26731,6 +27182,11 @@ If $Sum12050200321205030032TextID != "" Then Var $Sum12050200321205030032TextValue = "" EndIf + If $Sum12050200321205030032TextValue = "" Then + If $Sum12050200321205030032TextID = "" Then + Var $Sum12050200321205030032TextID = "000013" + EndIf + EndIf EndIf @@ -27055,9 +27511,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030040 @@ -27080,6 +27537,11 @@ If $Sum1205030040TextID != "" Then Var $Sum1205030040TextValue = "" EndIf + If $Sum1205030040TextValue = "" Then + If $Sum1205030040TextID = "" Then + Var $Sum1205030040TextID = "000013" + EndIf + EndIf EndIf @@ -27404,9 +27866,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020068 @@ -27429,6 +27892,11 @@ If $Sum1205020068TextID != "" Then Var $Sum1205020068TextValue = "" EndIf + If $Sum1205020068TextValue = "" Then + If $Sum1205020068TextID = "" Then + Var $Sum1205020068TextID = "000013" + EndIf + EndIf EndIf @@ -27757,9 +28225,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1206010001 @@ -27782,6 +28251,11 @@ If $Sum1206010001TextID != "" Then Var $Sum1206010001TextValue = "" EndIf + If $Sum1206010001TextValue = "" Then + If $Sum1206010001TextID = "" Then + Var $Sum1206010001TextID = "000013" + EndIf + EndIf EndIf @@ -28110,9 +28584,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1206010002 @@ -28135,6 +28610,11 @@ If $Sum1206010002TextID != "" Then Var $Sum1206010002TextValue = "" EndIf + If $Sum1206010002TextValue = "" Then + If $Sum1206010002TextID = "" Then + Var $Sum1206010002TextID = "000013" + EndIf + EndIf EndIf @@ -28459,9 +28939,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020017 @@ -28484,6 +28965,11 @@ If $Sum1205020017TextID != "" Then Var $Sum1205020017TextValue = "" EndIf + If $Sum1205020017TextValue = "" Then + If $Sum1205020017TextID = "" Then + Var $Sum1205020017TextID = "000013" + EndIf + EndIf EndIf @@ -28808,9 +29294,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020016 @@ -28833,6 +29320,11 @@ If $Sum1205020016TextID != "" Then Var $Sum1205020016TextValue = "" EndIf + If $Sum1205020016TextValue = "" Then + If $Sum1205020016TextID = "" Then + Var $Sum1205020016TextID = "000013" + EndIf + EndIf EndIf @@ -29161,9 +29653,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050100021205020018 @@ -29186,6 +29679,11 @@ If $Sum12050100021205020018TextID != "" Then Var $Sum12050100021205020018TextValue = "" EndIf + If $Sum12050100021205020018TextValue = "" Then + If $Sum12050100021205020018TextID = "" Then + Var $Sum12050100021205020018TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_other_other.lxml b/inter/tha/xml/multi/page_catalog_group_other_other.lxml index 0760412b..44ebdd96 100644 --- a/inter/tha/xml/multi/page_catalog_group_other_other.lxml +++ b/inter/tha/xml/multi/page_catalog_group_other_other.lxml @@ -178,66 +178,6 @@ - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - - EndIf - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" @@ -571,9 +511,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201431205030143 @@ -596,6 +537,11 @@ If $Sum12050201431205030143TextID != "" Then Var $Sum12050201431205030143TextValue = "" EndIf + If $Sum12050201431205030143TextValue = "" Then + If $Sum12050201431205030143TextID = "" Then + Var $Sum12050201431205030143TextID = "000013" + EndIf + EndIf EndIf @@ -920,9 +866,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020133 @@ -945,6 +892,11 @@ If $Sum1205020133TextID != "" Then Var $Sum1205020133TextValue = "" EndIf + If $Sum1205020133TextValue = "" Then + If $Sum1205020133TextID = "" Then + Var $Sum1205020133TextID = "000013" + EndIf + EndIf EndIf @@ -1269,9 +1221,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200231205030023 @@ -1294,6 +1247,11 @@ If $Sum12050200231205030023TextID != "" Then Var $Sum12050200231205030023TextValue = "" EndIf + If $Sum12050200231205030023TextValue = "" Then + If $Sum12050200231205030023TextID = "" Then + Var $Sum12050200231205030023TextID = "000013" + EndIf + EndIf EndIf @@ -1618,9 +1576,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201361205030136 @@ -1643,6 +1602,11 @@ If $Sum12050201361205030136TextID != "" Then Var $Sum12050201361205030136TextValue = "" EndIf + If $Sum12050201361205030136TextValue = "" Then + If $Sum12050201361205030136TextID = "" Then + Var $Sum12050201361205030136TextID = "000013" + EndIf + EndIf EndIf @@ -1967,9 +1931,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201371205030137 @@ -1992,6 +1957,11 @@ If $Sum12050201371205030137TextID != "" Then Var $Sum12050201371205030137TextValue = "" EndIf + If $Sum12050201371205030137TextValue = "" Then + If $Sum12050201371205030137TextID = "" Then + Var $Sum12050201371205030137TextID = "000013" + EndIf + EndIf EndIf @@ -2316,9 +2286,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201381205030138 @@ -2341,6 +2312,11 @@ If $Sum12050201381205030138TextID != "" Then Var $Sum12050201381205030138TextValue = "" EndIf + If $Sum12050201381205030138TextValue = "" Then + If $Sum12050201381205030138TextID = "" Then + Var $Sum12050201381205030138TextID = "000013" + EndIf + EndIf EndIf @@ -2665,9 +2641,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201391205030139 @@ -2690,6 +2667,11 @@ If $Sum12050201391205030139TextID != "" Then Var $Sum12050201391205030139TextValue = "" EndIf + If $Sum12050201391205030139TextValue = "" Then + If $Sum12050201391205030139TextID = "" Then + Var $Sum12050201391205030139TextID = "000013" + EndIf + EndIf EndIf @@ -3014,9 +2996,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201401205030140 @@ -3039,6 +3022,11 @@ If $Sum12050201401205030140TextID != "" Then Var $Sum12050201401205030140TextValue = "" EndIf + If $Sum12050201401205030140TextValue = "" Then + If $Sum12050201401205030140TextID = "" Then + Var $Sum12050201401205030140TextID = "000013" + EndIf + EndIf EndIf @@ -3363,9 +3351,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201411205030141 @@ -3388,6 +3377,11 @@ If $Sum12050201411205030141TextID != "" Then Var $Sum12050201411205030141TextValue = "" EndIf + If $Sum12050201411205030141TextValue = "" Then + If $Sum12050201411205030141TextID = "" Then + Var $Sum12050201411205030141TextID = "000013" + EndIf + EndIf EndIf @@ -3712,9 +3706,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201421205030142 @@ -3737,6 +3732,11 @@ If $Sum12050201421205030142TextID != "" Then Var $Sum12050201421205030142TextValue = "" EndIf + If $Sum12050201421205030142TextValue = "" Then + If $Sum12050201421205030142TextID = "" Then + Var $Sum12050201421205030142TextID = "000013" + EndIf + EndIf EndIf @@ -4061,9 +4061,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200941205030094 @@ -4086,6 +4087,11 @@ If $Sum12050200941205030094TextID != "" Then Var $Sum12050200941205030094TextValue = "" EndIf + If $Sum12050200941205030094TextValue = "" Then + If $Sum12050200941205030094TextID = "" Then + Var $Sum12050200941205030094TextID = "000013" + EndIf + EndIf EndIf @@ -4410,9 +4416,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020095 @@ -4435,6 +4442,11 @@ If $Sum1205020095TextID != "" Then Var $Sum1205020095TextValue = "" EndIf + If $Sum1205020095TextValue = "" Then + If $Sum1205020095TextID = "" Then + Var $Sum1205020095TextID = "000013" + EndIf + EndIf EndIf @@ -4759,9 +4771,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200351205030035 @@ -4784,6 +4797,11 @@ If $Sum12050200351205030035TextID != "" Then Var $Sum12050200351205030035TextValue = "" EndIf + If $Sum12050200351205030035TextValue = "" Then + If $Sum12050200351205030035TextID = "" Then + Var $Sum12050200351205030035TextID = "000013" + EndIf + EndIf EndIf @@ -5108,9 +5126,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020044 @@ -5133,6 +5152,11 @@ If $Sum1205020044TextID != "" Then Var $Sum1205020044TextValue = "" EndIf + If $Sum1205020044TextValue = "" Then + If $Sum1205020044TextID = "" Then + Var $Sum1205020044TextID = "000013" + EndIf + EndIf EndIf @@ -5457,9 +5481,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020045 @@ -5482,6 +5507,11 @@ If $Sum1205020045TextID != "" Then Var $Sum1205020045TextValue = "" EndIf + If $Sum1205020045TextValue = "" Then + If $Sum1205020045TextID = "" Then + Var $Sum1205020045TextID = "000013" + EndIf + EndIf EndIf @@ -5806,9 +5836,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200101205030010 @@ -5831,6 +5862,11 @@ If $Sum12050200101205030010TextID != "" Then Var $Sum12050200101205030010TextValue = "" EndIf + If $Sum12050200101205030010TextValue = "" Then + If $Sum12050200101205030010TextID = "" Then + Var $Sum12050200101205030010TextID = "000013" + EndIf + EndIf EndIf @@ -6155,9 +6191,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200331205030033 @@ -6180,6 +6217,11 @@ If $Sum12050200331205030033TextID != "" Then Var $Sum12050200331205030033TextValue = "" EndIf + If $Sum12050200331205030033TextValue = "" Then + If $Sum12050200331205030033TextID = "" Then + Var $Sum12050200331205030033TextID = "000013" + EndIf + EndIf EndIf @@ -6504,9 +6546,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200221205030022 @@ -6529,6 +6572,11 @@ If $Sum12050200221205030022TextID != "" Then Var $Sum12050200221205030022TextValue = "" EndIf + If $Sum12050200221205030022TextValue = "" Then + If $Sum12050200221205030022TextID = "" Then + Var $Sum12050200221205030022TextID = "000013" + EndIf + EndIf EndIf @@ -6853,9 +6901,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020012 @@ -6878,6 +6927,11 @@ If $Sum1205020012TextID != "" Then Var $Sum1205020012TextValue = "" EndIf + If $Sum1205020012TextValue = "" Then + If $Sum1205020012TextID = "" Then + Var $Sum1205020012TextID = "000013" + EndIf + EndIf EndIf @@ -7202,9 +7256,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200411205030041 @@ -7227,6 +7282,11 @@ If $Sum12050200411205030041TextID != "" Then Var $Sum12050200411205030041TextValue = "" EndIf + If $Sum12050200411205030041TextValue = "" Then + If $Sum12050200411205030041TextID = "" Then + Var $Sum12050200411205030041TextID = "000013" + EndIf + EndIf EndIf @@ -7551,9 +7611,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200081205030008 @@ -7576,6 +7637,11 @@ If $Sum12050200081205030008TextID != "" Then Var $Sum12050200081205030008TextValue = "" EndIf + If $Sum12050200081205030008TextValue = "" Then + If $Sum12050200081205030008TextID = "" Then + Var $Sum12050200081205030008TextID = "000013" + EndIf + EndIf EndIf @@ -7900,9 +7966,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200091205030009 @@ -7925,6 +7992,11 @@ If $Sum12050200091205030009TextID != "" Then Var $Sum12050200091205030009TextValue = "" EndIf + If $Sum12050200091205030009TextValue = "" Then + If $Sum12050200091205030009TextID = "" Then + Var $Sum12050200091205030009TextID = "000013" + EndIf + EndIf EndIf @@ -8249,9 +8321,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200241205030024 @@ -8274,6 +8347,11 @@ If $Sum12050200241205030024TextID != "" Then Var $Sum12050200241205030024TextValue = "" EndIf + If $Sum12050200241205030024TextValue = "" Then + If $Sum12050200241205030024TextID = "" Then + Var $Sum12050200241205030024TextID = "000013" + EndIf + EndIf EndIf @@ -8598,9 +8676,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200251205030025 @@ -8623,6 +8702,11 @@ If $Sum12050200251205030025TextID != "" Then Var $Sum12050200251205030025TextValue = "" EndIf + If $Sum12050200251205030025TextValue = "" Then + If $Sum12050200251205030025TextID = "" Then + Var $Sum12050200251205030025TextID = "000013" + EndIf + EndIf EndIf @@ -8947,9 +9031,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200381205030038 @@ -8972,6 +9057,11 @@ If $Sum12050200381205030038TextID != "" Then Var $Sum12050200381205030038TextValue = "" EndIf + If $Sum12050200381205030038TextValue = "" Then + If $Sum12050200381205030038TextID = "" Then + Var $Sum12050200381205030038TextID = "000013" + EndIf + EndIf EndIf @@ -9296,9 +9386,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200391205030039 @@ -9321,6 +9412,11 @@ If $Sum12050200391205030039TextID != "" Then Var $Sum12050200391205030039TextValue = "" EndIf + If $Sum12050200391205030039TextValue = "" Then + If $Sum12050200391205030039TextID = "" Then + Var $Sum12050200391205030039TextID = "000013" + EndIf + EndIf EndIf @@ -9645,9 +9741,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020051 @@ -9670,6 +9767,11 @@ If $Sum1205020051TextID != "" Then Var $Sum1205020051TextValue = "" EndIf + If $Sum1205020051TextValue = "" Then + If $Sum1205020051TextID = "" Then + Var $Sum1205020051TextID = "000013" + EndIf + EndIf EndIf @@ -9994,9 +10096,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020052 @@ -10019,6 +10122,11 @@ If $Sum1205020052TextID != "" Then Var $Sum1205020052TextValue = "" EndIf + If $Sum1205020052TextValue = "" Then + If $Sum1205020052TextID = "" Then + Var $Sum1205020052TextID = "000013" + EndIf + EndIf EndIf @@ -10343,9 +10451,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020060 @@ -10368,6 +10477,11 @@ If $Sum1205020060TextID != "" Then Var $Sum1205020060TextValue = "" EndIf + If $Sum1205020060TextValue = "" Then + If $Sum1205020060TextID = "" Then + Var $Sum1205020060TextID = "000013" + EndIf + EndIf EndIf @@ -10692,9 +10806,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020063 @@ -10717,6 +10832,11 @@ If $Sum1205020063TextID != "" Then Var $Sum1205020063TextValue = "" EndIf + If $Sum1205020063TextValue = "" Then + If $Sum1205020063TextID = "" Then + Var $Sum1205020063TextID = "000013" + EndIf + EndIf EndIf @@ -11041,9 +11161,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020064 @@ -11066,6 +11187,11 @@ If $Sum1205020064TextID != "" Then Var $Sum1205020064TextValue = "" EndIf + If $Sum1205020064TextValue = "" Then + If $Sum1205020064TextID = "" Then + Var $Sum1205020064TextID = "000013" + EndIf + EndIf EndIf @@ -11390,9 +11516,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020065 @@ -11415,6 +11542,11 @@ If $Sum1205020065TextID != "" Then Var $Sum1205020065TextValue = "" EndIf + If $Sum1205020065TextValue = "" Then + If $Sum1205020065TextID = "" Then + Var $Sum1205020065TextID = "000013" + EndIf + EndIf EndIf @@ -11739,9 +11871,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020066 @@ -11764,6 +11897,11 @@ If $Sum1205020066TextID != "" Then Var $Sum1205020066TextValue = "" EndIf + If $Sum1205020066TextValue = "" Then + If $Sum1205020066TextID = "" Then + Var $Sum1205020066TextID = "000013" + EndIf + EndIf EndIf @@ -12088,9 +12226,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020069 @@ -12113,6 +12252,11 @@ If $Sum1205020069TextID != "" Then Var $Sum1205020069TextValue = "" EndIf + If $Sum1205020069TextValue = "" Then + If $Sum1205020069TextID = "" Then + Var $Sum1205020069TextID = "000013" + EndIf + EndIf EndIf @@ -12437,9 +12581,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020070 @@ -12462,6 +12607,11 @@ If $Sum1205020070TextID != "" Then Var $Sum1205020070TextValue = "" EndIf + If $Sum1205020070TextValue = "" Then + If $Sum1205020070TextID = "" Then + Var $Sum1205020070TextID = "000013" + EndIf + EndIf EndIf @@ -12786,9 +12936,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020071 @@ -12811,6 +12962,11 @@ If $Sum1205020071TextID != "" Then Var $Sum1205020071TextValue = "" EndIf + If $Sum1205020071TextValue = "" Then + If $Sum1205020071TextID = "" Then + Var $Sum1205020071TextID = "000013" + EndIf + EndIf EndIf @@ -13135,9 +13291,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020073 @@ -13160,6 +13317,11 @@ If $Sum1205020073TextID != "" Then Var $Sum1205020073TextValue = "" EndIf + If $Sum1205020073TextValue = "" Then + If $Sum1205020073TextID = "" Then + Var $Sum1205020073TextID = "000013" + EndIf + EndIf EndIf @@ -13484,9 +13646,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030092 @@ -13509,6 +13672,11 @@ If $Sum1205030092TextID != "" Then Var $Sum1205030092TextValue = "" EndIf + If $Sum1205030092TextValue = "" Then + If $Sum1205030092TextID = "" Then + Var $Sum1205030092TextID = "000013" + EndIf + EndIf EndIf @@ -13833,9 +14001,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020090 @@ -13858,6 +14027,11 @@ If $Sum1205020090TextID != "" Then Var $Sum1205020090TextValue = "" EndIf + If $Sum1205020090TextValue = "" Then + If $Sum1205020090TextID = "" Then + Var $Sum1205020090TextID = "000013" + EndIf + EndIf EndIf @@ -14182,9 +14356,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020093 @@ -14207,6 +14382,11 @@ If $Sum1205020093TextID != "" Then Var $Sum1205020093TextValue = "" EndIf + If $Sum1205020093TextValue = "" Then + If $Sum1205020093TextID = "" Then + Var $Sum1205020093TextID = "000013" + EndIf + EndIf EndIf @@ -14531,9 +14711,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020014 @@ -14556,6 +14737,11 @@ If $Sum1205020014TextID != "" Then Var $Sum1205020014TextValue = "" EndIf + If $Sum1205020014TextValue = "" Then + If $Sum1205020014TextID = "" Then + Var $Sum1205020014TextID = "000013" + EndIf + EndIf EndIf @@ -14880,9 +15066,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020015 @@ -14905,6 +15092,11 @@ If $Sum1205020015TextID != "" Then Var $Sum1205020015TextValue = "" EndIf + If $Sum1205020015TextValue = "" Then + If $Sum1205020015TextID = "" Then + Var $Sum1205020015TextID = "000013" + EndIf + EndIf EndIf @@ -15229,9 +15421,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200341205030034 @@ -15254,6 +15447,11 @@ If $Sum12050200341205030034TextID != "" Then Var $Sum12050200341205030034TextValue = "" EndIf + If $Sum12050200341205030034TextValue = "" Then + If $Sum12050200341205030034TextID = "" Then + Var $Sum12050200341205030034TextID = "000013" + EndIf + EndIf EndIf @@ -15578,9 +15776,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200031205030003 @@ -15603,6 +15802,11 @@ If $Sum12050200031205030003TextID != "" Then Var $Sum12050200031205030003TextValue = "" EndIf + If $Sum12050200031205030003TextValue = "" Then + If $Sum12050200031205030003TextID = "" Then + Var $Sum12050200031205030003TextID = "000013" + EndIf + EndIf EndIf @@ -15927,9 +16131,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200041205030004 @@ -15952,6 +16157,11 @@ If $Sum12050200041205030004TextID != "" Then Var $Sum12050200041205030004TextValue = "" EndIf + If $Sum12050200041205030004TextValue = "" Then + If $Sum12050200041205030004TextID = "" Then + Var $Sum12050200041205030004TextID = "000013" + EndIf + EndIf EndIf @@ -16276,9 +16486,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200021205030002 @@ -16301,6 +16512,11 @@ If $Sum12050200021205030002TextID != "" Then Var $Sum12050200021205030002TextValue = "" EndIf + If $Sum12050200021205030002TextValue = "" Then + If $Sum12050200021205030002TextID = "" Then + Var $Sum12050200021205030002TextID = "000013" + EndIf + EndIf EndIf @@ -16625,9 +16841,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020005 @@ -16650,6 +16867,11 @@ If $Sum1205020005TextID != "" Then Var $Sum1205020005TextValue = "" EndIf + If $Sum1205020005TextValue = "" Then + If $Sum1205020005TextID = "" Then + Var $Sum1205020005TextID = "000013" + EndIf + EndIf EndIf @@ -16978,9 +17200,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120501000112050200011205030001 @@ -17003,6 +17226,11 @@ If $Sum120501000112050200011205030001TextID != "" Then Var $Sum120501000112050200011205030001TextValue = "" EndIf + If $Sum120501000112050200011205030001TextValue = "" Then + If $Sum120501000112050200011205030001TextID = "" Then + Var $Sum120501000112050200011205030001TextID = "000013" + EndIf + EndIf EndIf @@ -17327,9 +17555,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200261205030026 @@ -17352,6 +17581,11 @@ If $Sum12050200261205030026TextID != "" Then Var $Sum12050200261205030026TextValue = "" EndIf + If $Sum12050200261205030026TextValue = "" Then + If $Sum12050200261205030026TextID = "" Then + Var $Sum12050200261205030026TextID = "000013" + EndIf + EndIf EndIf @@ -17676,9 +17910,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200321205030032 @@ -17701,6 +17936,11 @@ If $Sum12050200321205030032TextID != "" Then Var $Sum12050200321205030032TextValue = "" EndIf + If $Sum12050200321205030032TextValue = "" Then + If $Sum12050200321205030032TextID = "" Then + Var $Sum12050200321205030032TextID = "000013" + EndIf + EndIf EndIf @@ -18029,9 +18269,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120501004012050200401205030040 @@ -18054,6 +18295,11 @@ If $Sum120501004012050200401205030040TextID != "" Then Var $Sum120501004012050200401205030040TextValue = "" EndIf + If $Sum120501004012050200401205030040TextValue = "" Then + If $Sum120501004012050200401205030040TextID = "" Then + Var $Sum120501004012050200401205030040TextID = "000013" + EndIf + EndIf EndIf @@ -18378,9 +18624,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020068 @@ -18403,6 +18650,11 @@ If $Sum1205020068TextID != "" Then Var $Sum1205020068TextValue = "" EndIf + If $Sum1205020068TextValue = "" Then + If $Sum1205020068TextID = "" Then + Var $Sum1205020068TextID = "000013" + EndIf + EndIf EndIf @@ -18731,9 +18983,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1206010001 @@ -18756,6 +19009,11 @@ If $Sum1206010001TextID != "" Then Var $Sum1206010001TextValue = "" EndIf + If $Sum1206010001TextValue = "" Then + If $Sum1206010001TextID = "" Then + Var $Sum1206010001TextID = "000013" + EndIf + EndIf EndIf @@ -19084,9 +19342,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1206010002 @@ -19109,6 +19368,11 @@ If $Sum1206010002TextID != "" Then Var $Sum1206010002TextValue = "" EndIf + If $Sum1206010002TextValue = "" Then + If $Sum1206010002TextID = "" Then + Var $Sum1206010002TextID = "000013" + EndIf + EndIf EndIf @@ -19433,9 +19697,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020017 @@ -19458,6 +19723,11 @@ If $Sum1205020017TextID != "" Then Var $Sum1205020017TextValue = "" EndIf + If $Sum1205020017TextValue = "" Then + If $Sum1205020017TextID = "" Then + Var $Sum1205020017TextID = "000013" + EndIf + EndIf EndIf @@ -19782,9 +20052,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020016 @@ -19807,6 +20078,11 @@ If $Sum1205020016TextID != "" Then Var $Sum1205020016TextValue = "" EndIf + If $Sum1205020016TextValue = "" Then + If $Sum1205020016TextID = "" Then + Var $Sum1205020016TextID = "000013" + EndIf + EndIf EndIf @@ -20135,9 +20411,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050100021205020018 @@ -20160,6 +20437,11 @@ If $Sum12050100021205020018TextID != "" Then Var $Sum12050100021205020018TextValue = "" EndIf + If $Sum12050100021205020018TextValue = "" Then + If $Sum12050100021205020018TextID = "" Then + Var $Sum12050100021205020018TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_other_other.skt b/inter/tha/xml/multi/page_catalog_group_other_other.skt index 077aacdd..1255b429 100644 --- a/inter/tha/xml/multi/page_catalog_group_other_other.skt +++ b/inter/tha/xml/multi/page_catalog_group_other_other.skt @@ -181,66 +181,6 @@ - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - - EndIf - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" diff --git a/inter/tha/xml/multi/page_catalog_group_pepsi_7up.lxml b/inter/tha/xml/multi/page_catalog_group_pepsi_7up.lxml index 6a5727f8..91ea08c2 100644 --- a/inter/tha/xml/multi/page_catalog_group_pepsi_7up.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pepsi_7up.lxml @@ -98,8 +98,8 @@ EndIf If inst_show9 = 1 Then - If langnext8 = "true" Then - Var langnext8 = "false" + If inst_show9 = "true" Then + Var inst_show9 = "false" DEBUGVAR langnext RefreshAll EndIf @@ -186,64 +186,6 @@ TimerReset - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" @@ -578,9 +520,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020133 @@ -603,6 +546,11 @@ If $Sum1205020133TextID != "" Then Var $Sum1205020133TextValue = "" EndIf + If $Sum1205020133TextValue = "" Then + If $Sum1205020133TextID = "" Then + Var $Sum1205020133TextID = "000013" + EndIf + EndIf EndIf @@ -927,9 +875,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200071205030007 @@ -952,6 +901,11 @@ If $Sum12050200071205030007TextID != "" Then Var $Sum12050200071205030007TextValue = "" EndIf + If $Sum12050200071205030007TextValue = "" Then + If $Sum12050200071205030007TextID = "" Then + Var $Sum12050200071205030007TextID = "000013" + EndIf + EndIf EndIf @@ -1276,9 +1230,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200941205030094 @@ -1301,6 +1256,11 @@ If $Sum12050200941205030094TextID != "" Then Var $Sum12050200941205030094TextValue = "" EndIf + If $Sum12050200941205030094TextValue = "" Then + If $Sum12050200941205030094TextID = "" Then + Var $Sum12050200941205030094TextID = "000013" + EndIf + EndIf EndIf @@ -1625,9 +1585,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020095 @@ -1650,6 +1611,11 @@ If $Sum1205020095TextID != "" Then Var $Sum1205020095TextValue = "" EndIf + If $Sum1205020095TextValue = "" Then + If $Sum1205020095TextID = "" Then + Var $Sum1205020095TextID = "000013" + EndIf + EndIf EndIf @@ -1974,9 +1940,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020096 @@ -1999,6 +1966,11 @@ If $Sum1205020096TextID != "" Then Var $Sum1205020096TextValue = "" EndIf + If $Sum1205020096TextValue = "" Then + If $Sum1205020096TextID = "" Then + Var $Sum1205020096TextID = "000013" + EndIf + EndIf EndIf @@ -2323,9 +2295,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020115 @@ -2348,6 +2321,11 @@ If $Sum1205020115TextID != "" Then Var $Sum1205020115TextValue = "" EndIf + If $Sum1205020115TextValue = "" Then + If $Sum1205020115TextID = "" Then + Var $Sum1205020115TextID = "000013" + EndIf + EndIf EndIf @@ -2672,9 +2650,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020100 @@ -2697,6 +2676,11 @@ If $Sum1205020100TextID != "" Then Var $Sum1205020100TextValue = "" EndIf + If $Sum1205020100TextValue = "" Then + If $Sum1205020100TextID = "" Then + Var $Sum1205020100TextID = "000013" + EndIf + EndIf EndIf @@ -3021,9 +3005,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200461205030046 @@ -3046,6 +3031,11 @@ If $Sum12050200461205030046TextID != "" Then Var $Sum12050200461205030046TextValue = "" EndIf + If $Sum12050200461205030046TextValue = "" Then + If $Sum12050200461205030046TextID = "" Then + Var $Sum12050200461205030046TextID = "000013" + EndIf + EndIf EndIf @@ -3370,9 +3360,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201041205030104 @@ -3395,6 +3386,11 @@ If $Sum12050201041205030104TextID != "" Then Var $Sum12050201041205030104TextValue = "" EndIf + If $Sum12050201041205030104TextValue = "" Then + If $Sum12050201041205030104TextID = "" Then + Var $Sum12050201041205030104TextID = "000013" + EndIf + EndIf EndIf @@ -3719,9 +3715,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200741205030074 @@ -3744,6 +3741,11 @@ If $Sum12050200741205030074TextID != "" Then Var $Sum12050200741205030074TextValue = "" EndIf + If $Sum12050200741205030074TextValue = "" Then + If $Sum12050200741205030074TextID = "" Then + Var $Sum12050200741205030074TextID = "000013" + EndIf + EndIf EndIf @@ -4068,9 +4070,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020097 @@ -4093,6 +4096,11 @@ If $Sum1205020097TextID != "" Then Var $Sum1205020097TextValue = "" EndIf + If $Sum1205020097TextValue = "" Then + If $Sum1205020097TextID = "" Then + Var $Sum1205020097TextID = "000013" + EndIf + EndIf EndIf @@ -4417,9 +4425,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020101 @@ -4442,6 +4451,11 @@ If $Sum1205020101TextID != "" Then Var $Sum1205020101TextValue = "" EndIf + If $Sum1205020101TextValue = "" Then + If $Sum1205020101TextID = "" Then + Var $Sum1205020101TextID = "000013" + EndIf + EndIf EndIf @@ -4766,9 +4780,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200471205030047 @@ -4791,6 +4806,11 @@ If $Sum12050200471205030047TextID != "" Then Var $Sum12050200471205030047TextValue = "" EndIf + If $Sum12050200471205030047TextValue = "" Then + If $Sum12050200471205030047TextID = "" Then + Var $Sum12050200471205030047TextID = "000013" + EndIf + EndIf EndIf @@ -5115,9 +5135,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201051205030105 @@ -5140,6 +5161,11 @@ If $Sum12050201051205030105TextID != "" Then Var $Sum12050201051205030105TextValue = "" EndIf + If $Sum12050201051205030105TextValue = "" Then + If $Sum12050201051205030105TextID = "" Then + Var $Sum12050201051205030105TextID = "000013" + EndIf + EndIf EndIf @@ -5464,9 +5490,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200751205030075 @@ -5489,6 +5516,11 @@ If $Sum12050200751205030075TextID != "" Then Var $Sum12050200751205030075TextValue = "" EndIf + If $Sum12050200751205030075TextValue = "" Then + If $Sum12050200751205030075TextID = "" Then + Var $Sum12050200751205030075TextID = "000013" + EndIf + EndIf EndIf @@ -5813,9 +5845,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020053 @@ -5838,6 +5871,11 @@ If $Sum1205020053TextID != "" Then Var $Sum1205020053TextValue = "" EndIf + If $Sum1205020053TextValue = "" Then + If $Sum1205020053TextID = "" Then + Var $Sum1205020053TextID = "000013" + EndIf + EndIf EndIf @@ -6162,9 +6200,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020106 @@ -6187,6 +6226,11 @@ If $Sum1205020106TextID != "" Then Var $Sum1205020106TextValue = "" EndIf + If $Sum1205020106TextValue = "" Then + If $Sum1205020106TextID = "" Then + Var $Sum1205020106TextID = "000013" + EndIf + EndIf EndIf @@ -6511,9 +6555,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020076 @@ -6536,6 +6581,11 @@ If $Sum1205020076TextID != "" Then Var $Sum1205020076TextValue = "" EndIf + If $Sum1205020076TextValue = "" Then + If $Sum1205020076TextID = "" Then + Var $Sum1205020076TextID = "000013" + EndIf + EndIf EndIf @@ -6860,9 +6910,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020102 @@ -6885,6 +6936,11 @@ If $Sum1205020102TextID != "" Then Var $Sum1205020102TextValue = "" EndIf + If $Sum1205020102TextValue = "" Then + If $Sum1205020102TextID = "" Then + Var $Sum1205020102TextID = "000013" + EndIf + EndIf EndIf @@ -7209,9 +7265,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020054 @@ -7234,6 +7291,11 @@ If $Sum1205020054TextID != "" Then Var $Sum1205020054TextValue = "" EndIf + If $Sum1205020054TextValue = "" Then + If $Sum1205020054TextID = "" Then + Var $Sum1205020054TextID = "000013" + EndIf + EndIf EndIf @@ -7558,9 +7620,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020107 @@ -7583,6 +7646,11 @@ If $Sum1205020107TextID != "" Then Var $Sum1205020107TextValue = "" EndIf + If $Sum1205020107TextValue = "" Then + If $Sum1205020107TextID = "" Then + Var $Sum1205020107TextID = "000013" + EndIf + EndIf EndIf @@ -7907,9 +7975,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020077 @@ -7932,6 +8001,11 @@ If $Sum1205020077TextID != "" Then Var $Sum1205020077TextValue = "" EndIf + If $Sum1205020077TextValue = "" Then + If $Sum1205020077TextID = "" Then + Var $Sum1205020077TextID = "000013" + EndIf + EndIf EndIf @@ -8256,9 +8330,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020116 @@ -8281,6 +8356,11 @@ If $Sum1205020116TextID != "" Then Var $Sum1205020116TextValue = "" EndIf + If $Sum1205020116TextValue = "" Then + If $Sum1205020116TextID = "" Then + Var $Sum1205020116TextID = "000013" + EndIf + EndIf EndIf @@ -8605,9 +8685,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -8630,6 +8711,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf @@ -8954,9 +9040,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020108 @@ -8979,6 +9066,11 @@ If $Sum1205020108TextID != "" Then Var $Sum1205020108TextValue = "" EndIf + If $Sum1205020108TextValue = "" Then + If $Sum1205020108TextID = "" Then + Var $Sum1205020108TextID = "000013" + EndIf + EndIf EndIf @@ -9303,9 +9395,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020072 @@ -9328,6 +9421,11 @@ If $Sum1205020072TextID != "" Then Var $Sum1205020072TextValue = "" EndIf + If $Sum1205020072TextValue = "" Then + If $Sum1205020072TextID = "" Then + Var $Sum1205020072TextID = "000013" + EndIf + EndIf EndIf @@ -9652,9 +9750,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020109 @@ -9677,6 +9776,11 @@ If $Sum1205020109TextID != "" Then Var $Sum1205020109TextValue = "" EndIf + If $Sum1205020109TextValue = "" Then + If $Sum1205020109TextID = "" Then + Var $Sum1205020109TextID = "000013" + EndIf + EndIf EndIf @@ -10001,9 +10105,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200911205030091 @@ -10026,6 +10131,11 @@ If $Sum12050200911205030091TextID != "" Then Var $Sum12050200911205030091TextValue = "" EndIf + If $Sum12050200911205030091TextValue = "" Then + If $Sum12050200911205030091TextID = "" Then + Var $Sum12050200911205030091TextID = "000013" + EndIf + EndIf EndIf @@ -10350,9 +10460,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201141205030114 @@ -10375,6 +10486,11 @@ If $Sum12050201141205030114TextID != "" Then Var $Sum12050201141205030114TextValue = "" EndIf + If $Sum12050201141205030114TextValue = "" Then + If $Sum12050201141205030114TextID = "" Then + Var $Sum12050201141205030114TextID = "000013" + EndIf + EndIf EndIf @@ -10699,9 +10815,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020103 @@ -10724,6 +10841,11 @@ If $Sum1205020103TextID != "" Then Var $Sum1205020103TextValue = "" EndIf + If $Sum1205020103TextValue = "" Then + If $Sum1205020103TextID = "" Then + Var $Sum1205020103TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pepsi_7up.skt b/inter/tha/xml/multi/page_catalog_group_pepsi_7up.skt index abf90313..22c87bb8 100644 --- a/inter/tha/xml/multi/page_catalog_group_pepsi_7up.skt +++ b/inter/tha/xml/multi/page_catalog_group_pepsi_7up.skt @@ -101,8 +101,8 @@ EndIf If inst_show9 = 1 Then - If langnext8 = "true" Then - Var langnext8 = "false" + If inst_show9 = "true" Then + Var inst_show9 = "false" DEBUGVAR langnext RefreshAll EndIf @@ -189,64 +189,6 @@ TimerReset - - InstanceGetString SaveStringInst - DEBUGVAR SaveStringInst - DEBUGVAR show_eng - - - Var ButtonLanguageCurrentXPosition = 1005 - Var ButtonLanguageCurrentYPosition = 458 - 38 - - Var ButtonLanguageListXPosition = 970 - Var ButtonLanguageListYPosition = 450 - 38 - - - - If SaveStringInst = "RefreshNow" Then - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - DEBUGVAR LanguageShow - - - If SaveStringInst = "ShowThai" Then - If LanguageShow = "THAI" Then - - Else - Var show_eng = "true" - InstanceSetString "ShowMYANMAR" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowMYANMAR" Then - If LanguageShow = "MYANMAR" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowEng" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - If SaveStringInst = "ShowEng" Then - If LanguageShow = "ENG" Then - - Else - Var show_eng = "false" - InstanceSetString "ShowThai" - GetXMLFileNameCurrentRunning CurrentOpenFile - Open CurrentOpenFile - EndIf - EndIf - - - - - ;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml" diff --git a/inter/tha/xml/multi/page_catalog_group_pepsi_pro.lxml b/inter/tha/xml/multi/page_catalog_group_pepsi_pro.lxml index 5242cbb4..de070c3d 100644 --- a/inter/tha/xml/multi/page_catalog_group_pepsi_pro.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pepsi_pro.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020009 @@ -429,6 +430,11 @@ If $Sum1299020009TextID != "" Then Var $Sum1299020009TextValue = "" EndIf + If $Sum1299020009TextValue = "" Then + If $Sum1299020009TextID = "" Then + Var $Sum1299020009TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020002 @@ -778,6 +785,11 @@ If $Sum1299020002TextID != "" Then Var $Sum1299020002TextValue = "" EndIf + If $Sum1299020002TextValue = "" Then + If $Sum1299020002TextID = "" Then + Var $Sum1299020002TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020019 @@ -1127,6 +1140,11 @@ If $Sum1299020019TextID != "" Then Var $Sum1299020019TextValue = "" EndIf + If $Sum1299020019TextValue = "" Then + If $Sum1299020019TextID = "" Then + Var $Sum1299020019TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020006 @@ -1476,6 +1495,11 @@ If $Sum1299020006TextID != "" Then Var $Sum1299020006TextValue = "" EndIf + If $Sum1299020006TextValue = "" Then + If $Sum1299020006TextID = "" Then + Var $Sum1299020006TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020007 @@ -1825,6 +1850,11 @@ If $Sum1299020007TextID != "" Then Var $Sum1299020007TextValue = "" EndIf + If $Sum1299020007TextValue = "" Then + If $Sum1299020007TextID = "" Then + Var $Sum1299020007TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020008 @@ -2174,6 +2205,11 @@ If $Sum1299020008TextID != "" Then Var $Sum1299020008TextValue = "" EndIf + If $Sum1299020008TextValue = "" Then + If $Sum1299020008TextID = "" Then + Var $Sum1299020008TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020001 @@ -2523,6 +2560,11 @@ If $Sum1299020001TextID != "" Then Var $Sum1299020001TextValue = "" EndIf + If $Sum1299020001TextValue = "" Then + If $Sum1299020001TextID = "" Then + Var $Sum1299020001TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020003 @@ -2872,6 +2915,11 @@ If $Sum1299020003TextID != "" Then Var $Sum1299020003TextValue = "" EndIf + If $Sum1299020003TextValue = "" Then + If $Sum1299020003TextID = "" Then + Var $Sum1299020003TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020005 @@ -3221,6 +3270,11 @@ If $Sum1299020005TextID != "" Then Var $Sum1299020005TextValue = "" EndIf + If $Sum1299020005TextValue = "" Then + If $Sum1299020005TextID = "" Then + Var $Sum1299020005TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020004 @@ -3570,6 +3625,11 @@ If $Sum1299020004TextID != "" Then Var $Sum1299020004TextValue = "" EndIf + If $Sum1299020004TextValue = "" Then + If $Sum1299020004TextID = "" Then + Var $Sum1299020004TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_15THB.lxml b/inter/tha/xml/multi/page_catalog_group_pro_15THB.lxml index aa19fbf5..cb8e1154 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_15THB.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_15THB.lxml @@ -375,9 +375,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050100011205020001 @@ -400,6 +401,11 @@ If $Sum12050100011205020001TextID != "" Then Var $Sum12050100011205020001TextValue = "" EndIf + If $Sum12050100011205020001TextValue = "" Then + If $Sum12050100011205020001TextID = "" Then + Var $Sum12050100011205020001TextID = "000013" + EndIf + EndIf EndIf @@ -724,9 +730,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020002 @@ -749,6 +756,11 @@ If $Sum1205020002TextID != "" Then Var $Sum1205020002TextValue = "" EndIf + If $Sum1205020002TextValue = "" Then + If $Sum1205020002TextID = "" Then + Var $Sum1205020002TextID = "000013" + EndIf + EndIf EndIf @@ -1073,9 +1085,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020007 @@ -1098,6 +1111,11 @@ If $Sum1205020007TextID != "" Then Var $Sum1205020007TextValue = "" EndIf + If $Sum1205020007TextValue = "" Then + If $Sum1205020007TextID = "" Then + Var $Sum1205020007TextID = "000013" + EndIf + EndIf EndIf @@ -1422,9 +1440,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020034 @@ -1447,6 +1466,11 @@ If $Sum1205020034TextID != "" Then Var $Sum1205020034TextValue = "" EndIf + If $Sum1205020034TextValue = "" Then + If $Sum1205020034TextID = "" Then + Var $Sum1205020034TextID = "000013" + EndIf + EndIf EndIf @@ -1771,9 +1795,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020035 @@ -1796,6 +1821,11 @@ If $Sum1205020035TextID != "" Then Var $Sum1205020035TextValue = "" EndIf + If $Sum1205020035TextValue = "" Then + If $Sum1205020035TextID = "" Then + Var $Sum1205020035TextID = "000013" + EndIf + EndIf EndIf @@ -2124,9 +2154,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100271202020027 @@ -2149,6 +2180,11 @@ If $Sum12020100271202020027TextID != "" Then Var $Sum12020100271202020027TextValue = "" EndIf + If $Sum12020100271202020027TextValue = "" Then + If $Sum12020100271202020027TextID = "" Then + Var $Sum12020100271202020027TextID = "000013" + EndIf + EndIf EndIf @@ -2477,9 +2513,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100451202020045 @@ -2502,6 +2539,11 @@ If $Sum12020100451202020045TextID != "" Then Var $Sum12020100451202020045TextValue = "" EndIf + If $Sum12020100451202020045TextValue = "" Then + If $Sum12020100451202020045TextID = "" Then + Var $Sum12020100451202020045TextID = "000013" + EndIf + EndIf EndIf @@ -2830,9 +2872,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100481202020049 @@ -2855,6 +2898,11 @@ If $Sum12020100481202020049TextID != "" Then Var $Sum12020100481202020049TextValue = "" EndIf + If $Sum12020100481202020049TextValue = "" Then + If $Sum12020100481202020049TextID = "" Then + Var $Sum12020100481202020049TextID = "000013" + EndIf + EndIf EndIf @@ -3183,9 +3231,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100471202020047 @@ -3208,6 +3257,11 @@ If $Sum12020100471202020047TextID != "" Then Var $Sum12020100471202020047TextValue = "" EndIf + If $Sum12020100471202020047TextValue = "" Then + If $Sum12020100471202020047TextID = "" Then + Var $Sum12020100471202020047TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_7up_lucky_draw_x2.lxml b/inter/tha/xml/multi/page_catalog_group_pro_7up_lucky_draw_x2.lxml index 5281cb49..7fbe32c9 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_7up_lucky_draw_x2.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_7up_lucky_draw_x2.lxml @@ -400,9 +400,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020095 @@ -425,6 +426,11 @@ If $Sum1205020095TextID != "" Then Var $Sum1205020095TextValue = "" EndIf + If $Sum1205020095TextValue = "" Then + If $Sum1205020095TextID = "" Then + Var $Sum1205020095TextID = "000013" + EndIf + EndIf EndIf @@ -749,9 +755,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020096 @@ -774,6 +781,11 @@ If $Sum1205020096TextID != "" Then Var $Sum1205020096TextValue = "" EndIf + If $Sum1205020096TextValue = "" Then + If $Sum1205020096TextID = "" Then + Var $Sum1205020096TextID = "000013" + EndIf + EndIf EndIf @@ -1098,9 +1110,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020097 @@ -1123,6 +1136,11 @@ If $Sum1205020097TextID != "" Then Var $Sum1205020097TextValue = "" EndIf + If $Sum1205020097TextValue = "" Then + If $Sum1205020097TextID = "" Then + Var $Sum1205020097TextID = "000013" + EndIf + EndIf EndIf @@ -1447,9 +1465,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020069 @@ -1472,6 +1491,11 @@ If $Sum1201020069TextID != "" Then Var $Sum1201020069TextValue = "" EndIf + If $Sum1201020069TextValue = "" Then + If $Sum1201020069TextID = "" Then + Var $Sum1201020069TextID = "000013" + EndIf + EndIf EndIf @@ -1796,9 +1820,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020070 @@ -1821,6 +1846,11 @@ If $Sum1201020070TextID != "" Then Var $Sum1201020070TextValue = "" EndIf + If $Sum1201020070TextValue = "" Then + If $Sum1201020070TextID = "" Then + Var $Sum1201020070TextID = "000013" + EndIf + EndIf EndIf @@ -2145,9 +2175,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020100 @@ -2170,6 +2201,11 @@ If $Sum1205020100TextID != "" Then Var $Sum1205020100TextValue = "" EndIf + If $Sum1205020100TextValue = "" Then + If $Sum1205020100TextID = "" Then + Var $Sum1205020100TextID = "000013" + EndIf + EndIf EndIf @@ -2494,9 +2530,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020101 @@ -2519,6 +2556,11 @@ If $Sum1205020101TextID != "" Then Var $Sum1205020101TextValue = "" EndIf + If $Sum1205020101TextValue = "" Then + If $Sum1205020101TextID = "" Then + Var $Sum1205020101TextID = "000013" + EndIf + EndIf EndIf @@ -2843,9 +2885,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020102 @@ -2868,6 +2911,11 @@ If $Sum1205020102TextID != "" Then Var $Sum1205020102TextValue = "" EndIf + If $Sum1205020102TextValue = "" Then + If $Sum1205020102TextID = "" Then + Var $Sum1205020102TextID = "000013" + EndIf + EndIf EndIf @@ -3192,9 +3240,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020103 @@ -3217,6 +3266,11 @@ If $Sum1205020103TextID != "" Then Var $Sum1205020103TextValue = "" EndIf + If $Sum1205020103TextValue = "" Then + If $Sum1205020103TextID = "" Then + Var $Sum1205020103TextID = "000013" + EndIf + EndIf EndIf @@ -3541,9 +3595,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020115 @@ -3566,6 +3621,11 @@ If $Sum1205020115TextID != "" Then Var $Sum1205020115TextValue = "" EndIf + If $Sum1205020115TextValue = "" Then + If $Sum1205020115TextID = "" Then + Var $Sum1205020115TextID = "000013" + EndIf + EndIf EndIf @@ -3890,9 +3950,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020116 @@ -3915,6 +3976,11 @@ If $Sum1205020116TextID != "" Then Var $Sum1205020116TextValue = "" EndIf + If $Sum1205020116TextValue = "" Then + If $Sum1205020116TextID = "" Then + Var $Sum1205020116TextID = "000013" + EndIf + EndIf EndIf @@ -4239,9 +4305,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020118 @@ -4264,6 +4331,11 @@ If $Sum1205020118TextID != "" Then Var $Sum1205020118TextValue = "" EndIf + If $Sum1205020118TextValue = "" Then + If $Sum1205020118TextID = "" Then + Var $Sum1205020118TextID = "000013" + EndIf + EndIf EndIf @@ -4588,9 +4660,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020119 @@ -4613,6 +4686,11 @@ If $Sum1205020119TextID != "" Then Var $Sum1205020119TextValue = "" EndIf + If $Sum1205020119TextValue = "" Then + If $Sum1205020119TextID = "" Then + Var $Sum1205020119TextID = "000013" + EndIf + EndIf EndIf @@ -4937,9 +5015,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020120 @@ -4962,6 +5041,11 @@ If $Sum1205020120TextID != "" Then Var $Sum1205020120TextValue = "" EndIf + If $Sum1205020120TextValue = "" Then + If $Sum1205020120TextID = "" Then + Var $Sum1205020120TextID = "000013" + EndIf + EndIf EndIf @@ -5286,9 +5370,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020121 @@ -5311,6 +5396,11 @@ If $Sum1205020121TextID != "" Then Var $Sum1205020121TextValue = "" EndIf + If $Sum1205020121TextValue = "" Then + If $Sum1205020121TextID = "" Then + Var $Sum1205020121TextID = "000013" + EndIf + EndIf EndIf @@ -5635,9 +5725,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020008 @@ -5660,6 +5751,11 @@ If $Sum1299020008TextID != "" Then Var $Sum1299020008TextValue = "" EndIf + If $Sum1299020008TextValue = "" Then + If $Sum1299020008TextID = "" Then + Var $Sum1299020008TextID = "000013" + EndIf + EndIf EndIf @@ -5984,9 +6080,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050066 @@ -6009,6 +6106,11 @@ If $Sum1299050066TextID != "" Then Var $Sum1299050066TextValue = "" EndIf + If $Sum1299050066TextValue = "" Then + If $Sum1299050066TextID = "" Then + Var $Sum1299050066TextID = "000013" + EndIf + EndIf EndIf @@ -6333,9 +6435,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020003 @@ -6358,6 +6461,11 @@ If $Sum1299020003TextID != "" Then Var $Sum1299020003TextValue = "" EndIf + If $Sum1299020003TextValue = "" Then + If $Sum1299020003TextID = "" Then + Var $Sum1299020003TextID = "000013" + EndIf + EndIf EndIf @@ -6682,9 +6790,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050067 @@ -6707,6 +6816,11 @@ If $Sum1299050067TextID != "" Then Var $Sum1299050067TextValue = "" EndIf + If $Sum1299050067TextValue = "" Then + If $Sum1299050067TextID = "" Then + Var $Sum1299050067TextID = "000013" + EndIf + EndIf EndIf @@ -7031,9 +7145,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020046 @@ -7056,6 +7171,11 @@ If $Sum1205020046TextID != "" Then Var $Sum1205020046TextValue = "" EndIf + If $Sum1205020046TextValue = "" Then + If $Sum1205020046TextID = "" Then + Var $Sum1205020046TextID = "000013" + EndIf + EndIf EndIf @@ -7380,9 +7500,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020104 @@ -7405,6 +7526,11 @@ If $Sum1205020104TextID != "" Then Var $Sum1205020104TextValue = "" EndIf + If $Sum1205020104TextValue = "" Then + If $Sum1205020104TextID = "" Then + Var $Sum1205020104TextID = "000013" + EndIf + EndIf EndIf @@ -7729,9 +7855,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050058 @@ -7754,6 +7881,11 @@ If $Sum1299050058TextID != "" Then Var $Sum1299050058TextValue = "" EndIf + If $Sum1299050058TextValue = "" Then + If $Sum1299050058TextID = "" Then + Var $Sum1299050058TextID = "000013" + EndIf + EndIf EndIf @@ -8078,9 +8210,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050068 @@ -8103,6 +8236,11 @@ If $Sum1299050068TextID != "" Then Var $Sum1299050068TextValue = "" EndIf + If $Sum1299050068TextValue = "" Then + If $Sum1299050068TextID = "" Then + Var $Sum1299050068TextID = "000013" + EndIf + EndIf EndIf @@ -8427,9 +8565,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050060 @@ -8452,6 +8591,11 @@ If $Sum1299050060TextID != "" Then Var $Sum1299050060TextValue = "" EndIf + If $Sum1299050060TextValue = "" Then + If $Sum1299050060TextID = "" Then + Var $Sum1299050060TextID = "000013" + EndIf + EndIf EndIf @@ -8776,9 +8920,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050069 @@ -8801,6 +8946,11 @@ If $Sum1299050069TextID != "" Then Var $Sum1299050069TextValue = "" EndIf + If $Sum1299050069TextValue = "" Then + If $Sum1299050069TextID = "" Then + Var $Sum1299050069TextID = "000013" + EndIf + EndIf EndIf @@ -9125,9 +9275,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020007 @@ -9150,6 +9301,11 @@ If $Sum1205020007TextID != "" Then Var $Sum1205020007TextValue = "" EndIf + If $Sum1205020007TextValue = "" Then + If $Sum1205020007TextID = "" Then + Var $Sum1205020007TextID = "000013" + EndIf + EndIf EndIf @@ -9474,9 +9630,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020094 @@ -9499,6 +9656,11 @@ If $Sum1205020094TextID != "" Then Var $Sum1205020094TextValue = "" EndIf + If $Sum1205020094TextValue = "" Then + If $Sum1205020094TextID = "" Then + Var $Sum1205020094TextID = "000013" + EndIf + EndIf EndIf @@ -9823,9 +9985,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050053 @@ -9848,6 +10011,11 @@ If $Sum1299050053TextID != "" Then Var $Sum1299050053TextValue = "" EndIf + If $Sum1299050053TextValue = "" Then + If $Sum1299050053TextID = "" Then + Var $Sum1299050053TextID = "000013" + EndIf + EndIf EndIf @@ -10172,9 +10340,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050070 @@ -10197,6 +10366,11 @@ If $Sum1299050070TextID != "" Then Var $Sum1299050070TextValue = "" EndIf + If $Sum1299050070TextValue = "" Then + If $Sum1299050070TextID = "" Then + Var $Sum1299050070TextID = "000013" + EndIf + EndIf EndIf @@ -10521,9 +10695,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020054 @@ -10546,6 +10721,11 @@ If $Sum1205020054TextID != "" Then Var $Sum1205020054TextValue = "" EndIf + If $Sum1205020054TextValue = "" Then + If $Sum1205020054TextID = "" Then + Var $Sum1205020054TextID = "000013" + EndIf + EndIf EndIf @@ -10870,9 +11050,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020107 @@ -10895,6 +11076,11 @@ If $Sum1205020107TextID != "" Then Var $Sum1205020107TextValue = "" EndIf + If $Sum1205020107TextValue = "" Then + If $Sum1205020107TextID = "" Then + Var $Sum1205020107TextID = "000013" + EndIf + EndIf EndIf @@ -11219,9 +11405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020084 @@ -11244,6 +11431,11 @@ If $Sum1205020084TextID != "" Then Var $Sum1205020084TextValue = "" EndIf + If $Sum1205020084TextValue = "" Then + If $Sum1205020084TextID = "" Then + Var $Sum1205020084TextID = "000013" + EndIf + EndIf EndIf @@ -11568,9 +11760,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020110 @@ -11593,6 +11786,11 @@ If $Sum1205020110TextID != "" Then Var $Sum1205020110TextValue = "" EndIf + If $Sum1205020110TextValue = "" Then + If $Sum1205020110TextID = "" Then + Var $Sum1205020110TextID = "000013" + EndIf + EndIf EndIf @@ -11917,9 +12115,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050052 @@ -11942,6 +12141,11 @@ If $Sum1299050052TextID != "" Then Var $Sum1299050052TextValue = "" EndIf + If $Sum1299050052TextValue = "" Then + If $Sum1299050052TextID = "" Then + Var $Sum1299050052TextID = "000013" + EndIf + EndIf EndIf @@ -12266,9 +12470,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050072 @@ -12291,6 +12496,11 @@ If $Sum1299050072TextID != "" Then Var $Sum1299050072TextValue = "" EndIf + If $Sum1299050072TextValue = "" Then + If $Sum1299050072TextID = "" Then + Var $Sum1299050072TextID = "000013" + EndIf + EndIf EndIf @@ -12615,9 +12825,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -12640,6 +12851,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf @@ -12964,9 +13180,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020108 @@ -12989,6 +13206,11 @@ If $Sum1205020108TextID != "" Then Var $Sum1205020108TextValue = "" EndIf + If $Sum1205020108TextValue = "" Then + If $Sum1205020108TextID = "" Then + Var $Sum1205020108TextID = "000013" + EndIf + EndIf EndIf @@ -13313,9 +13535,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030007 @@ -13338,6 +13561,11 @@ If $Sum1205030007TextID != "" Then Var $Sum1205030007TextValue = "" EndIf + If $Sum1205030007TextValue = "" Then + If $Sum1205030007TextID = "" Then + Var $Sum1205030007TextID = "000013" + EndIf + EndIf EndIf @@ -13662,9 +13890,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030094 @@ -13687,6 +13916,11 @@ If $Sum1205030094TextID != "" Then Var $Sum1205030094TextValue = "" EndIf + If $Sum1205030094TextValue = "" Then + If $Sum1205030094TextID = "" Then + Var $Sum1205030094TextID = "000013" + EndIf + EndIf EndIf @@ -14011,9 +14245,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050057 @@ -14036,6 +14271,11 @@ If $Sum1299050057TextID != "" Then Var $Sum1299050057TextValue = "" EndIf + If $Sum1299050057TextValue = "" Then + If $Sum1299050057TextID = "" Then + Var $Sum1299050057TextID = "000013" + EndIf + EndIf EndIf @@ -14360,9 +14600,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200471205030047 @@ -14385,6 +14626,11 @@ If $Sum12050200471205030047TextID != "" Then Var $Sum12050200471205030047TextValue = "" EndIf + If $Sum12050200471205030047TextValue = "" Then + If $Sum12050200471205030047TextID = "" Then + Var $Sum12050200471205030047TextID = "000013" + EndIf + EndIf EndIf @@ -14709,9 +14955,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201051205030105 @@ -14734,6 +14981,11 @@ If $Sum12050201051205030105TextID != "" Then Var $Sum12050201051205030105TextValue = "" EndIf + If $Sum12050201051205030105TextValue = "" Then + If $Sum12050201051205030105TextID = "" Then + Var $Sum12050201051205030105TextID = "000013" + EndIf + EndIf EndIf @@ -15058,9 +15310,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020053 @@ -15083,6 +15336,11 @@ If $Sum1205020053TextID != "" Then Var $Sum1205020053TextValue = "" EndIf + If $Sum1205020053TextValue = "" Then + If $Sum1205020053TextID = "" Then + Var $Sum1205020053TextID = "000013" + EndIf + EndIf EndIf @@ -15407,9 +15665,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020106 @@ -15432,6 +15691,11 @@ If $Sum1205020106TextID != "" Then Var $Sum1205020106TextValue = "" EndIf + If $Sum1205020106TextValue = "" Then + If $Sum1205020106TextID = "" Then + Var $Sum1205020106TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_bad_valentine.lxml b/inter/tha/xml/multi/page_catalog_group_pro_bad_valentine.lxml index d2175437..1e0af209 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_bad_valentine.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_bad_valentine.lxml @@ -405,9 +405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010200611201030061 @@ -430,6 +431,11 @@ If $Sum12010200611201030061TextID != "" Then Var $Sum12010200611201030061TextValue = "" EndIf + If $Sum12010200611201030061TextValue = "" Then + If $Sum12010200611201030061TextID = "" Then + Var $Sum12010200611201030061TextID = "000013" + EndIf + EndIf EndIf @@ -754,9 +760,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210200611221030061 @@ -779,6 +786,11 @@ If $Sum12210200611221030061TextID != "" Then Var $Sum12210200611221030061TextValue = "" EndIf + If $Sum12210200611221030061TextValue = "" Then + If $Sum12210200611221030061TextID = "" Then + Var $Sum12210200611221030061TextID = "000013" + EndIf + EndIf EndIf @@ -1103,9 +1115,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020062 @@ -1128,6 +1141,11 @@ If $Sum1201020062TextID != "" Then Var $Sum1201020062TextValue = "" EndIf + If $Sum1201020062TextValue = "" Then + If $Sum1201020062TextID = "" Then + Var $Sum1201020062TextID = "000013" + EndIf + EndIf EndIf @@ -1452,9 +1470,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020062 @@ -1477,6 +1496,11 @@ If $Sum1221020062TextID != "" Then Var $Sum1221020062TextValue = "" EndIf + If $Sum1221020062TextValue = "" Then + If $Sum1221020062TextID = "" Then + Var $Sum1221020062TextID = "000013" + EndIf + EndIf EndIf @@ -1801,9 +1825,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200241203030024 @@ -1826,6 +1851,11 @@ If $Sum12030200241203030024TextID != "" Then Var $Sum12030200241203030024TextValue = "" EndIf + If $Sum12030200241203030024TextValue = "" Then + If $Sum12030200241203030024TextID = "" Then + Var $Sum12030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -2150,9 +2180,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030045 @@ -2175,6 +2206,11 @@ If $Sum1203030045TextID != "" Then Var $Sum1203030045TextValue = "" EndIf + If $Sum1203030045TextValue = "" Then + If $Sum1203030045TextID = "" Then + Var $Sum1203030045TextID = "000013" + EndIf + EndIf EndIf @@ -2499,9 +2535,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -2524,6 +2561,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -2848,9 +2890,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020053 @@ -2873,6 +2916,11 @@ If $Sum1202020053TextID != "" Then Var $Sum1202020053TextValue = "" EndIf + If $Sum1202020053TextValue = "" Then + If $Sum1202020053TextID = "" Then + Var $Sum1202020053TextID = "000013" + EndIf + EndIf EndIf @@ -3197,9 +3245,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020054 @@ -3222,6 +3271,11 @@ If $Sum1202020054TextID != "" Then Var $Sum1202020054TextValue = "" EndIf + If $Sum1202020054TextValue = "" Then + If $Sum1202020054TextID = "" Then + Var $Sum1202020054TextID = "000013" + EndIf + EndIf EndIf @@ -3546,9 +3600,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200231203030023 @@ -3571,6 +3626,11 @@ If $Sum12030200231203030023TextID != "" Then Var $Sum12030200231203030023TextValue = "" EndIf + If $Sum12030200231203030023TextValue = "" Then + If $Sum12030200231203030023TextID = "" Then + Var $Sum12030200231203030023TextID = "000013" + EndIf + EndIf EndIf @@ -3895,9 +3955,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020078 @@ -3920,6 +3981,11 @@ If $Sum1205020078TextID != "" Then Var $Sum1205020078TextValue = "" EndIf + If $Sum1205020078TextValue = "" Then + If $Sum1205020078TextID = "" Then + Var $Sum1205020078TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_banana_mint_lucky_draw_x3.lxml b/inter/tha/xml/multi/page_catalog_group_pro_banana_mint_lucky_draw_x3.lxml index cc770840..d2acc5e2 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_banana_mint_lucky_draw_x3.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_banana_mint_lucky_draw_x3.lxml @@ -398,9 +398,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020057 @@ -423,6 +424,11 @@ If $Sum1201020057TextID != "" Then Var $Sum1201020057TextValue = "" EndIf + If $Sum1201020057TextValue = "" Then + If $Sum1201020057TextID = "" Then + Var $Sum1201020057TextID = "000013" + EndIf + EndIf EndIf @@ -747,9 +753,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020057 @@ -772,6 +779,11 @@ If $Sum1221020057TextID != "" Then Var $Sum1221020057TextValue = "" EndIf + If $Sum1221020057TextValue = "" Then + If $Sum1221020057TextID = "" Then + Var $Sum1221020057TextID = "000013" + EndIf + EndIf EndIf @@ -1096,9 +1108,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020058 @@ -1121,6 +1134,11 @@ If $Sum1201020058TextID != "" Then Var $Sum1201020058TextValue = "" EndIf + If $Sum1201020058TextValue = "" Then + If $Sum1201020058TextID = "" Then + Var $Sum1201020058TextID = "000013" + EndIf + EndIf EndIf @@ -1445,9 +1463,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020058 @@ -1470,6 +1489,11 @@ If $Sum1221020058TextID != "" Then Var $Sum1221020058TextValue = "" EndIf + If $Sum1221020058TextValue = "" Then + If $Sum1221020058TextID = "" Then + Var $Sum1221020058TextID = "000013" + EndIf + EndIf EndIf @@ -1794,9 +1818,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030050 @@ -1819,6 +1844,11 @@ If $Sum1202030050TextID != "" Then Var $Sum1202030050TextValue = "" EndIf + If $Sum1202030050TextValue = "" Then + If $Sum1202030050TextID = "" Then + Var $Sum1202030050TextID = "000013" + EndIf + EndIf EndIf @@ -2143,9 +2173,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020064 @@ -2168,6 +2199,11 @@ If $Sum1201020064TextID != "" Then Var $Sum1201020064TextValue = "" EndIf + If $Sum1201020064TextValue = "" Then + If $Sum1201020064TextID = "" Then + Var $Sum1201020064TextID = "000013" + EndIf + EndIf EndIf @@ -2492,9 +2528,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020064 @@ -2517,6 +2554,11 @@ If $Sum1221020064TextID != "" Then Var $Sum1221020064TextValue = "" EndIf + If $Sum1221020064TextValue = "" Then + If $Sum1221020064TextID = "" Then + Var $Sum1221020064TextID = "000013" + EndIf + EndIf EndIf @@ -2841,9 +2883,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020035 @@ -2866,6 +2909,11 @@ If $Sum1203020035TextID != "" Then Var $Sum1203020035TextValue = "" EndIf + If $Sum1203020035TextValue = "" Then + If $Sum1203020035TextID = "" Then + Var $Sum1203020035TextID = "000013" + EndIf + EndIf EndIf @@ -3194,9 +3242,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003612030200361203030036 @@ -3219,6 +3268,11 @@ If $Sum120301003612030200361203030036TextID != "" Then Var $Sum120301003612030200361203030036TextValue = "" EndIf + If $Sum120301003612030200361203030036TextValue = "" Then + If $Sum120301003612030200361203030036TextID = "" Then + Var $Sum120301003612030200361203030036TextID = "000013" + EndIf + EndIf EndIf @@ -3543,9 +3597,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030037 @@ -3568,6 +3623,11 @@ If $Sum1203030037TextID != "" Then Var $Sum1203030037TextValue = "" EndIf + If $Sum1203030037TextValue = "" Then + If $Sum1203030037TextID = "" Then + Var $Sum1203030037TextID = "000013" + EndIf + EndIf EndIf @@ -3892,9 +3952,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -3917,6 +3978,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -4241,9 +4307,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020060 @@ -4266,6 +4333,11 @@ If $Sum1205020060TextID != "" Then Var $Sum1205020060TextValue = "" EndIf + If $Sum1205020060TextValue = "" Then + If $Sum1205020060TextID = "" Then + Var $Sum1205020060TextID = "000013" + EndIf + EndIf EndIf @@ -4590,9 +4662,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020063 @@ -4615,6 +4688,11 @@ If $Sum1205020063TextID != "" Then Var $Sum1205020063TextValue = "" EndIf + If $Sum1205020063TextValue = "" Then + If $Sum1205020063TextID = "" Then + Var $Sum1205020063TextID = "000013" + EndIf + EndIf EndIf @@ -4939,9 +5017,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020064 @@ -4964,6 +5043,11 @@ If $Sum1205020064TextID != "" Then Var $Sum1205020064TextValue = "" EndIf + If $Sum1205020064TextValue = "" Then + If $Sum1205020064TextID = "" Then + Var $Sum1205020064TextID = "000013" + EndIf + EndIf EndIf @@ -5288,9 +5372,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020065 @@ -5313,6 +5398,11 @@ If $Sum1205020065TextID != "" Then Var $Sum1205020065TextValue = "" EndIf + If $Sum1205020065TextValue = "" Then + If $Sum1205020065TextID = "" Then + Var $Sum1205020065TextID = "000013" + EndIf + EndIf EndIf @@ -5637,9 +5727,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020066 @@ -5662,6 +5753,11 @@ If $Sum1205020066TextID != "" Then Var $Sum1205020066TextValue = "" EndIf + If $Sum1205020066TextValue = "" Then + If $Sum1205020066TextID = "" Then + Var $Sum1205020066TextID = "000013" + EndIf + EndIf EndIf @@ -5986,9 +6082,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -6011,6 +6108,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf @@ -6335,9 +6437,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010200611201030061 @@ -6360,6 +6463,11 @@ If $Sum12010200611201030061TextID != "" Then Var $Sum12010200611201030061TextValue = "" EndIf + If $Sum12010200611201030061TextValue = "" Then + If $Sum12010200611201030061TextID = "" Then + Var $Sum12010200611201030061TextID = "000013" + EndIf + EndIf EndIf @@ -6684,9 +6792,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020062 @@ -6709,6 +6818,11 @@ If $Sum1201020062TextID != "" Then Var $Sum1201020062TextValue = "" EndIf + If $Sum1201020062TextValue = "" Then + If $Sum1201020062TextID = "" Then + Var $Sum1201020062TextID = "000013" + EndIf + EndIf EndIf @@ -7033,9 +7147,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200241203030024 @@ -7058,6 +7173,11 @@ If $Sum12030200241203030024TextID != "" Then Var $Sum12030200241203030024TextValue = "" EndIf + If $Sum12030200241203030024TextValue = "" Then + If $Sum12030200241203030024TextID = "" Then + Var $Sum12030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -7382,9 +7502,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030045 @@ -7407,6 +7528,11 @@ If $Sum1203030045TextID != "" Then Var $Sum1203030045TextValue = "" EndIf + If $Sum1203030045TextValue = "" Then + If $Sum1203030045TextID = "" Then + Var $Sum1203030045TextID = "000013" + EndIf + EndIf EndIf @@ -7731,9 +7857,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -7756,6 +7883,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -8080,9 +8212,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020053 @@ -8105,6 +8238,11 @@ If $Sum1202020053TextID != "" Then Var $Sum1202020053TextValue = "" EndIf + If $Sum1202020053TextValue = "" Then + If $Sum1202020053TextID = "" Then + Var $Sum1202020053TextID = "000013" + EndIf + EndIf EndIf @@ -8429,9 +8567,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020054 @@ -8454,6 +8593,11 @@ If $Sum1202020054TextID != "" Then Var $Sum1202020054TextValue = "" EndIf + If $Sum1202020054TextValue = "" Then + If $Sum1202020054TextID = "" Then + Var $Sum1202020054TextID = "000013" + EndIf + EndIf EndIf @@ -8778,9 +8922,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200231203030023 @@ -8803,6 +8948,11 @@ If $Sum12030200231203030023TextID != "" Then Var $Sum12030200231203030023TextValue = "" EndIf + If $Sum12030200231203030023TextValue = "" Then + If $Sum12030200231203030023TextID = "" Then + Var $Sum12030200231203030023TextID = "000013" + EndIf + EndIf EndIf @@ -9127,9 +9277,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020078 @@ -9152,6 +9303,11 @@ If $Sum1205020078TextID != "" Then Var $Sum1205020078TextValue = "" EndIf + If $Sum1205020078TextValue = "" Then + If $Sum1205020078TextID = "" Then + Var $Sum1205020078TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_buble_tea.lxml b/inter/tha/xml/multi/page_catalog_group_pro_buble_tea.lxml index 774d89e2..1a7e83ca 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_buble_tea.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_buble_tea.lxml @@ -401,9 +401,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12216200021221630002 @@ -426,6 +427,11 @@ If $Sum12216200021221630002TextID != "" Then Var $Sum12216200021221630002TextValue = "" EndIf + If $Sum12216200021221630002TextValue = "" Then + If $Sum12216200021221630002TextID = "" Then + Var $Sum12216200021221630002TextID = "000013" + EndIf + EndIf EndIf @@ -750,9 +756,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -775,6 +782,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -1099,9 +1111,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12216200031221630003 @@ -1124,6 +1137,11 @@ If $Sum12216200031221630003TextID != "" Then Var $Sum12216200031221630003TextValue = "" EndIf + If $Sum12216200031221630003TextValue = "" Then + If $Sum12216200031221630003TextID = "" Then + Var $Sum12216200031221630003TextID = "000013" + EndIf + EndIf EndIf @@ -1448,9 +1466,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -1473,6 +1492,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -1797,9 +1821,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12216200041221630004 @@ -1822,6 +1847,11 @@ If $Sum12216200041221630004TextID != "" Then Var $Sum12216200041221630004TextValue = "" EndIf + If $Sum12216200041221630004TextValue = "" Then + If $Sum12216200041221630004TextID = "" Then + Var $Sum12216200041221630004TextID = "000013" + EndIf + EndIf EndIf @@ -2146,9 +2176,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -2171,6 +2202,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -2495,9 +2531,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12036200021203630002 @@ -2520,6 +2557,11 @@ If $Sum12036200021203630002TextID != "" Then Var $Sum12036200021203630002TextValue = "" EndIf + If $Sum12036200021203630002TextValue = "" Then + If $Sum12036200021203630002TextID = "" Then + Var $Sum12036200021203630002TextID = "000013" + EndIf + EndIf EndIf @@ -2844,9 +2886,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -2869,6 +2912,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -3193,9 +3241,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12036200051203630005 @@ -3218,6 +3267,11 @@ If $Sum12036200051203630005TextID != "" Then Var $Sum12036200051203630005TextValue = "" EndIf + If $Sum12036200051203630005TextValue = "" Then + If $Sum12036200051203630005TextID = "" Then + Var $Sum12036200051203630005TextID = "000013" + EndIf + EndIf EndIf @@ -3542,9 +3596,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -3567,6 +3622,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -3891,9 +3951,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12036200061203630006 @@ -3916,6 +3977,11 @@ If $Sum12036200061203630006TextID != "" Then Var $Sum12036200061203630006TextValue = "" EndIf + If $Sum12036200061203630006TextValue = "" Then + If $Sum12036200061203630006TextID = "" Then + Var $Sum12036200061203630006TextID = "000013" + EndIf + EndIf EndIf @@ -4240,9 +4306,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -4265,6 +4332,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -4589,9 +4661,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12056200071203630009 @@ -4614,6 +4687,11 @@ If $Sum12056200071203630009TextID != "" Then Var $Sum12056200071203630009TextValue = "" EndIf + If $Sum12056200071203630009TextValue = "" Then + If $Sum12056200071203630009TextID = "" Then + Var $Sum12056200071203630009TextID = "000013" + EndIf + EndIf EndIf @@ -4938,9 +5016,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -4963,6 +5042,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -5287,9 +5371,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12056200091205630007 @@ -5312,6 +5397,11 @@ If $Sum12056200091205630007TextID != "" Then Var $Sum12056200091205630007TextValue = "" EndIf + If $Sum12056200091205630007TextValue = "" Then + If $Sum12056200091205630007TextID = "" Then + Var $Sum12056200091205630007TextID = "000013" + EndIf + EndIf EndIf @@ -5636,9 +5726,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -5661,6 +5752,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -5985,9 +6081,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12056200251205630009 @@ -6010,6 +6107,11 @@ If $Sum12056200251205630009TextID != "" Then Var $Sum12056200251205630009TextValue = "" EndIf + If $Sum12056200251205630009TextValue = "" Then + If $Sum12056200251205630009TextID = "" Then + Var $Sum12056200251205630009TextID = "000013" + EndIf + EndIf EndIf @@ -6334,9 +6436,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -6359,6 +6462,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -6683,9 +6791,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12056200351205630025 @@ -6708,6 +6817,11 @@ If $Sum12056200351205630025TextID != "" Then Var $Sum12056200351205630025TextValue = "" EndIf + If $Sum12056200351205630025TextValue = "" Then + If $Sum12056200351205630025TextID = "" Then + Var $Sum12056200351205630025TextID = "000013" + EndIf + EndIf EndIf @@ -7032,9 +7146,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -7057,6 +7172,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -7381,9 +7501,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12056200461205630046 @@ -7406,6 +7527,11 @@ If $Sum12056200461205630046TextID != "" Then Var $Sum12056200461205630046TextValue = "" EndIf + If $Sum12056200461205630046TextValue = "" Then + If $Sum12056200461205630046TextID = "" Then + Var $Sum12056200461205630046TextID = "000013" + EndIf + EndIf EndIf @@ -7730,9 +7856,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -7755,6 +7882,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -8079,9 +8211,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200261203630026 @@ -8104,6 +8237,11 @@ If $Sum12026200261203630026TextID != "" Then Var $Sum12026200261203630026TextValue = "" EndIf + If $Sum12026200261203630026TextValue = "" Then + If $Sum12026200261203630026TextID = "" Then + Var $Sum12026200261203630026TextID = "000013" + EndIf + EndIf EndIf @@ -8428,9 +8566,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -8453,6 +8592,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -8777,9 +8921,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200391203630039 @@ -8802,6 +8947,11 @@ If $Sum12026200391203630039TextID != "" Then Var $Sum12026200391203630039TextValue = "" EndIf + If $Sum12026200391203630039TextValue = "" Then + If $Sum12026200391203630039TextID = "" Then + Var $Sum12026200391203630039TextID = "000013" + EndIf + EndIf EndIf @@ -9126,9 +9276,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -9151,6 +9302,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -9475,9 +9631,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200471203630047 @@ -9500,6 +9657,11 @@ If $Sum12026200471203630047TextID != "" Then Var $Sum12026200471203630047TextValue = "" EndIf + If $Sum12026200471203630047TextValue = "" Then + If $Sum12026200471203630047TextID = "" Then + Var $Sum12026200471203630047TextID = "000013" + EndIf + EndIf EndIf @@ -9824,9 +9986,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -9849,6 +10012,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -10173,9 +10341,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200251202630025 @@ -10198,6 +10367,11 @@ If $Sum12026200251202630025TextID != "" Then Var $Sum12026200251202630025TextValue = "" EndIf + If $Sum12026200251202630025TextValue = "" Then + If $Sum12026200251202630025TextID = "" Then + Var $Sum12026200251202630025TextID = "000013" + EndIf + EndIf EndIf @@ -10522,9 +10696,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -10547,6 +10722,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -10871,9 +11051,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030028 @@ -10896,6 +11077,11 @@ If $Sum1241030028TextID != "" Then Var $Sum1241030028TextValue = "" EndIf + If $Sum1241030028TextValue = "" Then + If $Sum1241030028TextID = "" Then + Var $Sum1241030028TextID = "000013" + EndIf + EndIf EndIf @@ -11220,9 +11406,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -11245,6 +11432,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_cocoa_77.lxml b/inter/tha/xml/multi/page_catalog_group_pro_cocoa_77.lxml index 481d1cc0..f1e79065 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_cocoa_77.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_cocoa_77.lxml @@ -413,9 +413,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000612010200031201030003 @@ -438,6 +439,11 @@ If $Sum120101000612010200031201030003TextID != "" Then Var $Sum120101000612010200031201030003TextValue = "" EndIf + If $Sum120101000612010200031201030003TextValue = "" Then + If $Sum120101000612010200031201030003TextID = "" Then + Var $Sum120101000612010200031201030003TextID = "000013" + EndIf + EndIf EndIf @@ -766,9 +772,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101000612210200031221030003 @@ -791,6 +798,11 @@ If $Sum122101000612210200031221030003TextID != "" Then Var $Sum122101000612210200031221030003TextValue = "" EndIf + If $Sum122101000612210200031221030003TextValue = "" Then + If $Sum122101000612210200031221030003TextID = "" Then + Var $Sum122101000612210200031221030003TextID = "000013" + EndIf + EndIf EndIf @@ -1119,9 +1131,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010110061201021003 @@ -1144,6 +1157,11 @@ If $Sum12010110061201021003TextID != "" Then Var $Sum12010110061201021003TextValue = "" EndIf + If $Sum12010110061201021003TextValue = "" Then + If $Sum12010110061201021003TextID = "" Then + Var $Sum12010110061201021003TextID = "000013" + EndIf + EndIf EndIf @@ -1472,9 +1490,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210110061221021003 @@ -1497,6 +1516,11 @@ If $Sum12210110061221021003TextID != "" Then Var $Sum12210110061221021003TextValue = "" EndIf + If $Sum12210110061221021003TextValue = "" Then + If $Sum12210110061221021003TextID = "" Then + Var $Sum12210110061221021003TextID = "000013" + EndIf + EndIf EndIf @@ -1821,9 +1845,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010200611201030061 @@ -1846,6 +1871,11 @@ If $Sum12010200611201030061TextID != "" Then Var $Sum12010200611201030061TextValue = "" EndIf + If $Sum12010200611201030061TextValue = "" Then + If $Sum12010200611201030061TextID = "" Then + Var $Sum12010200611201030061TextID = "000013" + EndIf + EndIf EndIf @@ -2170,9 +2200,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210200611221030061 @@ -2195,6 +2226,11 @@ If $Sum12210200611221030061TextID != "" Then Var $Sum12210200611221030061TextValue = "" EndIf + If $Sum12210200611221030061TextValue = "" Then + If $Sum12210200611221030061TextID = "" Then + Var $Sum12210200611221030061TextID = "000013" + EndIf + EndIf EndIf @@ -2523,9 +2559,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000212030200021203030002 @@ -2548,6 +2585,11 @@ If $Sum120301000212030200021203030002TextID != "" Then Var $Sum120301000212030200021203030002TextValue = "" EndIf + If $Sum120301000212030200021203030002TextValue = "" Then + If $Sum120301000212030200021203030002TextID = "" Then + Var $Sum120301000212030200021203030002TextID = "000013" + EndIf + EndIf EndIf @@ -2876,9 +2918,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030110021203021002 @@ -2901,6 +2944,11 @@ If $Sum12030110021203021002TextID != "" Then Var $Sum12030110021203021002TextValue = "" EndIf + If $Sum12030110021203021002TextValue = "" Then + If $Sum12030110021203021002TextID = "" Then + Var $Sum12030110021203021002TextID = "000013" + EndIf + EndIf EndIf @@ -3229,9 +3277,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000412030200041203030004 @@ -3254,6 +3303,11 @@ If $Sum120301000412030200041203030004TextID != "" Then Var $Sum120301000412030200041203030004TextValue = "" EndIf + If $Sum120301000412030200041203030004TextValue = "" Then + If $Sum120301000412030200041203030004TextID = "" Then + Var $Sum120301000412030200041203030004TextID = "000013" + EndIf + EndIf EndIf @@ -3582,9 +3636,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002412030200241203030024 @@ -3607,6 +3662,11 @@ If $Sum120301002412030200241203030024TextID != "" Then Var $Sum120301002412030200241203030024TextValue = "" EndIf + If $Sum120301002412030200241203030024TextValue = "" Then + If $Sum120301002412030200241203030024TextID = "" Then + Var $Sum120301002412030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -3935,9 +3995,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002512030200251203030025 @@ -3960,6 +4021,11 @@ If $Sum120301002512030200251203030025TextID != "" Then Var $Sum120301002512030200251203030025TextValue = "" EndIf + If $Sum120301002512030200251203030025TextValue = "" Then + If $Sum120301002512030200251203030025TextID = "" Then + Var $Sum120301002512030200251203030025TextID = "000013" + EndIf + EndIf EndIf @@ -4288,9 +4354,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003512030200351203030035 @@ -4313,6 +4380,11 @@ If $Sum120301003512030200351203030035TextID != "" Then Var $Sum120301003512030200351203030035TextValue = "" EndIf + If $Sum120301003512030200351203030035TextValue = "" Then + If $Sum120301003512030200351203030035TextID = "" Then + Var $Sum120301003512030200351203030035TextID = "000013" + EndIf + EndIf EndIf @@ -4637,9 +4709,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020040 @@ -4662,6 +4735,11 @@ If $Sum1203020040TextID != "" Then Var $Sum1203020040TextValue = "" EndIf + If $Sum1203020040TextValue = "" Then + If $Sum1203020040TextID = "" Then + Var $Sum1203020040TextID = "000013" + EndIf + EndIf EndIf @@ -4986,9 +5064,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200591203030059 @@ -5011,6 +5090,11 @@ If $Sum12030200591203030059TextID != "" Then Var $Sum12030200591203030059TextValue = "" EndIf + If $Sum12030200591203030059TextValue = "" Then + If $Sum12030200591203030059TextID = "" Then + Var $Sum12030200591203030059TextID = "000013" + EndIf + EndIf EndIf @@ -5335,9 +5419,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030010 @@ -5360,6 +5445,11 @@ If $Sum1203030010TextID != "" Then Var $Sum1203030010TextValue = "" EndIf + If $Sum1203030010TextValue = "" Then + If $Sum1203030010TextID = "" Then + Var $Sum1203030010TextID = "000013" + EndIf + EndIf EndIf @@ -5684,9 +5774,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030030 @@ -5709,6 +5800,11 @@ If $Sum1203030030TextID != "" Then Var $Sum1203030030TextValue = "" EndIf + If $Sum1203030030TextValue = "" Then + If $Sum1203030030TextID = "" Then + Var $Sum1203030030TextID = "000013" + EndIf + EndIf EndIf @@ -6033,9 +6129,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030044 @@ -6058,6 +6155,11 @@ If $Sum1203030044TextID != "" Then Var $Sum1203030044TextValue = "" EndIf + If $Sum1203030044TextValue = "" Then + If $Sum1203030044TextID = "" Then + Var $Sum1203030044TextID = "000013" + EndIf + EndIf EndIf @@ -6382,9 +6484,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030061 @@ -6407,6 +6510,11 @@ If $Sum1203030061TextID != "" Then Var $Sum1203030061TextValue = "" EndIf + If $Sum1203030061TextValue = "" Then + If $Sum1203030061TextID = "" Then + Var $Sum1203030061TextID = "000013" + EndIf + EndIf EndIf @@ -6731,9 +6839,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030017 @@ -6756,6 +6865,11 @@ If $Sum1299030017TextID != "" Then Var $Sum1299030017TextValue = "" EndIf + If $Sum1299030017TextValue = "" Then + If $Sum1299030017TextID = "" Then + Var $Sum1299030017TextID = "000013" + EndIf + EndIf EndIf @@ -7080,9 +7194,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030067 @@ -7105,6 +7220,11 @@ If $Sum1299030067TextID != "" Then Var $Sum1299030067TextValue = "" EndIf + If $Sum1299030067TextValue = "" Then + If $Sum1299030067TextID = "" Then + Var $Sum1299030067TextID = "000013" + EndIf + EndIf EndIf @@ -7429,9 +7549,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030068 @@ -7454,6 +7575,11 @@ If $Sum1299030068TextID != "" Then Var $Sum1299030068TextValue = "" EndIf + If $Sum1299030068TextValue = "" Then + If $Sum1299030068TextID = "" Then + Var $Sum1299030068TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_freefile.lxml b/inter/tha/xml/multi/page_catalog_group_pro_freefile.lxml index e1a8f039..693dfee8 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_freefile.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_freefile.lxml @@ -403,9 +403,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030026 @@ -428,6 +429,11 @@ If $Sum1299030026TextID != "" Then Var $Sum1299030026TextValue = "" EndIf + If $Sum1299030026TextValue = "" Then + If $Sum1299030026TextID = "" Then + Var $Sum1299030026TextID = "000013" + EndIf + EndIf EndIf @@ -752,9 +758,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030067 @@ -777,6 +784,11 @@ If $Sum1299030067TextID != "" Then Var $Sum1299030067TextValue = "" EndIf + If $Sum1299030067TextValue = "" Then + If $Sum1299030067TextID = "" Then + Var $Sum1299030067TextID = "000013" + EndIf + EndIf EndIf @@ -1101,9 +1113,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030066 @@ -1126,6 +1139,11 @@ If $Sum1299030066TextID != "" Then Var $Sum1299030066TextValue = "" EndIf + If $Sum1299030066TextValue = "" Then + If $Sum1299030066TextID = "" Then + Var $Sum1299030066TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_halloween.lxml b/inter/tha/xml/multi/page_catalog_group_pro_halloween.lxml index 65215793..ce83e267 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_halloween.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_halloween.lxml @@ -401,9 +401,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020080 @@ -426,6 +427,11 @@ If $Sum1202020080TextID != "" Then Var $Sum1202020080TextValue = "" EndIf + If $Sum1202020080TextValue = "" Then + If $Sum1202020080TextID = "" Then + Var $Sum1202020080TextID = "000013" + EndIf + EndIf EndIf @@ -750,9 +756,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030128 @@ -775,6 +782,11 @@ If $Sum1205030128TextID != "" Then Var $Sum1205030128TextValue = "" EndIf + If $Sum1205030128TextValue = "" Then + If $Sum1205030128TextID = "" Then + Var $Sum1205030128TextID = "000013" + EndIf + EndIf EndIf @@ -1099,9 +1111,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030084 @@ -1124,6 +1137,11 @@ If $Sum1203030084TextID != "" Then Var $Sum1203030084TextValue = "" EndIf + If $Sum1203030084TextValue = "" Then + If $Sum1203030084TextID = "" Then + Var $Sum1203030084TextID = "000013" + EndIf + EndIf EndIf @@ -1448,9 +1466,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030085 @@ -1473,6 +1492,11 @@ If $Sum1203030085TextID != "" Then Var $Sum1203030085TextValue = "" EndIf + If $Sum1203030085TextValue = "" Then + If $Sum1203030085TextID = "" Then + Var $Sum1203030085TextID = "000013" + EndIf + EndIf EndIf @@ -1797,9 +1821,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020081 @@ -1822,6 +1847,11 @@ If $Sum1202020081TextID != "" Then Var $Sum1202020081TextValue = "" EndIf + If $Sum1202020081TextValue = "" Then + If $Sum1202020081TextID = "" Then + Var $Sum1202020081TextID = "000013" + EndIf + EndIf EndIf @@ -2146,9 +2176,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020082 @@ -2171,6 +2202,11 @@ If $Sum1202020082TextID != "" Then Var $Sum1202020082TextValue = "" EndIf + If $Sum1202020082TextValue = "" Then + If $Sum1202020082TextID = "" Then + Var $Sum1202020082TextID = "000013" + EndIf + EndIf EndIf @@ -2499,9 +2535,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202010079 @@ -2524,6 +2561,11 @@ If $Sum1202010079TextID != "" Then Var $Sum1202010079TextValue = "" EndIf + If $Sum1202010079TextValue = "" Then + If $Sum1202010079TextID = "" Then + Var $Sum1202010079TextID = "000013" + EndIf + EndIf EndIf @@ -2848,9 +2890,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030081 @@ -2873,6 +2916,11 @@ If $Sum1203030081TextID != "" Then Var $Sum1203030081TextValue = "" EndIf + If $Sum1203030081TextValue = "" Then + If $Sum1203030081TextID = "" Then + Var $Sum1203030081TextID = "000013" + EndIf + EndIf EndIf @@ -3197,9 +3245,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020082 @@ -3222,6 +3271,11 @@ If $Sum1201020082TextID != "" Then Var $Sum1201020082TextValue = "" EndIf + If $Sum1201020082TextValue = "" Then + If $Sum1201020082TextID = "" Then + Var $Sum1201020082TextID = "000013" + EndIf + EndIf EndIf @@ -3546,9 +3600,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020082 @@ -3571,6 +3626,11 @@ If $Sum1221020082TextID != "" Then Var $Sum1221020082TextValue = "" EndIf + If $Sum1221020082TextValue = "" Then + If $Sum1221020082TextID = "" Then + Var $Sum1221020082TextID = "000013" + EndIf + EndIf EndIf @@ -3895,9 +3955,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020080 @@ -3920,6 +3981,11 @@ If $Sum1203020080TextID != "" Then Var $Sum1203020080TextValue = "" EndIf + If $Sum1203020080TextValue = "" Then + If $Sum1203020080TextID = "" Then + Var $Sum1203020080TextID = "000013" + EndIf + EndIf EndIf @@ -4244,9 +4310,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030080 @@ -4269,6 +4336,11 @@ If $Sum1203030080TextID != "" Then Var $Sum1203030080TextValue = "" EndIf + If $Sum1203030080TextValue = "" Then + If $Sum1203030080TextID = "" Then + Var $Sum1203030080TextID = "000013" + EndIf + EndIf EndIf @@ -4597,9 +4669,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202010078 @@ -4622,6 +4695,11 @@ If $Sum1202010078TextID != "" Then Var $Sum1202010078TextValue = "" EndIf + If $Sum1202010078TextValue = "" Then + If $Sum1202010078TextID = "" Then + Var $Sum1202010078TextID = "000013" + EndIf + EndIf EndIf @@ -4946,9 +5024,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020083 @@ -4971,6 +5050,11 @@ If $Sum1201020083TextID != "" Then Var $Sum1201020083TextValue = "" EndIf + If $Sum1201020083TextValue = "" Then + If $Sum1201020083TextID = "" Then + Var $Sum1201020083TextID = "000013" + EndIf + EndIf EndIf @@ -5295,9 +5379,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020083 @@ -5320,6 +5405,11 @@ If $Sum1221020083TextID != "" Then Var $Sum1221020083TextValue = "" EndIf + If $Sum1221020083TextValue = "" Then + If $Sum1221020083TextID = "" Then + Var $Sum1221020083TextID = "000013" + EndIf + EndIf EndIf @@ -5644,9 +5734,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030082 @@ -5669,6 +5760,11 @@ If $Sum1203030082TextID != "" Then Var $Sum1203030082TextValue = "" EndIf + If $Sum1203030082TextValue = "" Then + If $Sum1203030082TextID = "" Then + Var $Sum1203030082TextID = "000013" + EndIf + EndIf EndIf @@ -5993,9 +6089,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030083 @@ -6018,6 +6115,11 @@ If $Sum1203030083TextID != "" Then Var $Sum1203030083TextValue = "" EndIf + If $Sum1203030083TextValue = "" Then + If $Sum1203030083TextID = "" Then + Var $Sum1203030083TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_happy_trios.lxml b/inter/tha/xml/multi/page_catalog_group_pro_happy_trios.lxml index 29bf164a..b37c43da 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_happy_trios.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_happy_trios.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -429,6 +430,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -778,6 +785,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -1127,6 +1140,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -1476,6 +1495,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_jemila.lxml b/inter/tha/xml/multi/page_catalog_group_pro_jemila.lxml index ccbb2470..e0660a2d 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_jemila.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_jemila.lxml @@ -403,9 +403,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200751203030075 @@ -428,6 +429,11 @@ If $Sum12030200751203030075TextID != "" Then Var $Sum12030200751203030075TextValue = "" EndIf + If $Sum12030200751203030075TextValue = "" Then + If $Sum12030200751203030075TextID = "" Then + Var $Sum12030200751203030075TextID = "000013" + EndIf + EndIf EndIf @@ -752,9 +758,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201241205030124 @@ -777,6 +784,11 @@ If $Sum12050201241205030124TextID != "" Then Var $Sum12050201241205030124TextValue = "" EndIf + If $Sum12050201241205030124TextValue = "" Then + If $Sum12050201241205030124TextID = "" Then + Var $Sum12050201241205030124TextID = "000013" + EndIf + EndIf EndIf @@ -1101,9 +1113,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200681202030068 @@ -1126,6 +1139,11 @@ If $Sum12020200681202030068TextID != "" Then Var $Sum12020200681202030068TextValue = "" EndIf + If $Sum12020200681202030068TextValue = "" Then + If $Sum12020200681202030068TextID = "" Then + Var $Sum12020200681202030068TextID = "000013" + EndIf + EndIf EndIf @@ -1450,9 +1468,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020125 @@ -1475,6 +1494,11 @@ If $Sum1205020125TextID != "" Then Var $Sum1205020125TextValue = "" EndIf + If $Sum1205020125TextValue = "" Then + If $Sum1205020125TextID = "" Then + Var $Sum1205020125TextID = "000013" + EndIf + EndIf EndIf @@ -1799,9 +1823,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020075 @@ -1824,6 +1849,11 @@ If $Sum1201020075TextID != "" Then Var $Sum1201020075TextValue = "" EndIf + If $Sum1201020075TextValue = "" Then + If $Sum1201020075TextID = "" Then + Var $Sum1201020075TextID = "000013" + EndIf + EndIf EndIf @@ -2148,9 +2178,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020075 @@ -2173,6 +2204,11 @@ If $Sum1221020075TextID != "" Then Var $Sum1221020075TextValue = "" EndIf + If $Sum1221020075TextValue = "" Then + If $Sum1221020075TextID = "" Then + Var $Sum1221020075TextID = "000013" + EndIf + EndIf EndIf @@ -2497,9 +2533,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200761203030076 @@ -2522,6 +2559,11 @@ If $Sum12030200761203030076TextID != "" Then Var $Sum12030200761203030076TextValue = "" EndIf + If $Sum12030200761203030076TextValue = "" Then + If $Sum12030200761203030076TextID = "" Then + Var $Sum12030200761203030076TextID = "000013" + EndIf + EndIf EndIf @@ -2846,9 +2888,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200691202030069 @@ -2871,6 +2914,11 @@ If $Sum12020200691202030069TextID != "" Then Var $Sum12020200691202030069TextValue = "" EndIf + If $Sum12020200691202030069TextValue = "" Then + If $Sum12020200691202030069TextID = "" Then + Var $Sum12020200691202030069TextID = "000013" + EndIf + EndIf EndIf @@ -3195,9 +3243,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201261205030126 @@ -3220,6 +3269,11 @@ If $Sum12050201261205030126TextID != "" Then Var $Sum12050201261205030126TextValue = "" EndIf + If $Sum12050201261205030126TextValue = "" Then + If $Sum12050201261205030126TextID = "" Then + Var $Sum12050201261205030126TextID = "000013" + EndIf + EndIf EndIf @@ -3544,9 +3598,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201271205030127 @@ -3569,6 +3624,11 @@ If $Sum12050201271205030127TextID != "" Then Var $Sum12050201271205030127TextValue = "" EndIf + If $Sum12050201271205030127TextValue = "" Then + If $Sum12050201271205030127TextID = "" Then + Var $Sum12050201271205030127TextID = "000013" + EndIf + EndIf EndIf @@ -3893,9 +3953,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200701202030070 @@ -3918,6 +3979,11 @@ If $Sum12020200701202030070TextID != "" Then Var $Sum12020200701202030070TextValue = "" EndIf + If $Sum12020200701202030070TextValue = "" Then + If $Sum12020200701202030070TextID = "" Then + Var $Sum12020200701202030070TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_lipit.lxml b/inter/tha/xml/multi/page_catalog_group_pro_lipit.lxml index c37a321c..89441268 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_lipit.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_lipit.lxml @@ -405,9 +405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030046 @@ -430,6 +431,11 @@ If $Sum1203030046TextID != "" Then Var $Sum1203030046TextValue = "" EndIf + If $Sum1203030046TextValue = "" Then + If $Sum1203030046TextID = "" Then + Var $Sum1203030046TextID = "000013" + EndIf + EndIf EndIf @@ -754,9 +760,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030047 @@ -779,6 +786,11 @@ If $Sum1203030047TextID != "" Then Var $Sum1203030047TextValue = "" EndIf + If $Sum1203030047TextValue = "" Then + If $Sum1203030047TextID = "" Then + Var $Sum1203030047TextID = "000013" + EndIf + EndIf EndIf @@ -1103,9 +1115,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050063 @@ -1128,6 +1141,11 @@ If $Sum1299050063TextID != "" Then Var $Sum1299050063TextValue = "" EndIf + If $Sum1299050063TextValue = "" Then + If $Sum1299050063TextID = "" Then + Var $Sum1299050063TextID = "000013" + EndIf + EndIf EndIf @@ -1452,9 +1470,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020040 @@ -1477,6 +1496,11 @@ If $Sum1203020040TextID != "" Then Var $Sum1203020040TextValue = "" EndIf + If $Sum1203020040TextValue = "" Then + If $Sum1203020040TextID = "" Then + Var $Sum1203020040TextID = "000013" + EndIf + EndIf EndIf @@ -1801,9 +1825,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030063 @@ -1826,6 +1851,11 @@ If $Sum1205030063TextID != "" Then Var $Sum1205030063TextValue = "" EndIf + If $Sum1205030063TextValue = "" Then + If $Sum1205030063TextID = "" Then + Var $Sum1205030063TextID = "000013" + EndIf + EndIf EndIf @@ -2150,9 +2180,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020080 @@ -2175,6 +2206,11 @@ If $Sum1205020080TextID != "" Then Var $Sum1205020080TextValue = "" EndIf + If $Sum1205020080TextValue = "" Then + If $Sum1205020080TextID = "" Then + Var $Sum1205020080TextID = "000013" + EndIf + EndIf EndIf @@ -2499,9 +2535,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030053 @@ -2524,6 +2561,11 @@ If $Sum1202030053TextID != "" Then Var $Sum1202030053TextValue = "" EndIf + If $Sum1202030053TextValue = "" Then + If $Sum1202030053TextID = "" Then + Var $Sum1202030053TextID = "000013" + EndIf + EndIf EndIf @@ -2848,9 +2890,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020041 @@ -2873,6 +2916,11 @@ If $Sum1203020041TextID != "" Then Var $Sum1203020041TextValue = "" EndIf + If $Sum1203020041TextValue = "" Then + If $Sum1203020041TextID = "" Then + Var $Sum1203020041TextID = "000013" + EndIf + EndIf EndIf @@ -3197,9 +3245,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020056 @@ -3222,6 +3271,11 @@ If $Sum1202020056TextID != "" Then Var $Sum1202020056TextValue = "" EndIf + If $Sum1202020056TextValue = "" Then + If $Sum1202020056TextID = "" Then + Var $Sum1202020056TextID = "000013" + EndIf + EndIf EndIf @@ -3546,9 +3600,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030064 @@ -3571,6 +3626,11 @@ If $Sum1205030064TextID != "" Then Var $Sum1205030064TextValue = "" EndIf + If $Sum1205030064TextValue = "" Then + If $Sum1205030064TextID = "" Then + Var $Sum1205030064TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_melon.lxml b/inter/tha/xml/multi/page_catalog_group_pro_melon.lxml index 3fbcf488..f0bb4bbf 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_melon.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_melon.lxml @@ -402,9 +402,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020011 @@ -427,6 +428,11 @@ If $Sum1299020011TextID != "" Then Var $Sum1299020011TextValue = "" EndIf + If $Sum1299020011TextValue = "" Then + If $Sum1299020011TextID = "" Then + Var $Sum1299020011TextID = "000013" + EndIf + EndIf EndIf @@ -751,9 +757,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020013 @@ -776,6 +783,11 @@ If $Sum1299020013TextID != "" Then Var $Sum1299020013TextValue = "" EndIf + If $Sum1299020013TextValue = "" Then + If $Sum1299020013TextID = "" Then + Var $Sum1299020013TextID = "000013" + EndIf + EndIf EndIf @@ -1100,9 +1112,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020014 @@ -1125,6 +1138,11 @@ If $Sum1299020014TextID != "" Then Var $Sum1299020014TextValue = "" EndIf + If $Sum1299020014TextValue = "" Then + If $Sum1299020014TextID = "" Then + Var $Sum1299020014TextID = "000013" + EndIf + EndIf EndIf @@ -1449,9 +1467,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020015 @@ -1474,6 +1493,11 @@ If $Sum1299020015TextID != "" Then Var $Sum1299020015TextValue = "" EndIf + If $Sum1299020015TextValue = "" Then + If $Sum1299020015TextID = "" Then + Var $Sum1299020015TextID = "000013" + EndIf + EndIf EndIf @@ -1798,9 +1822,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020016 @@ -1823,6 +1848,11 @@ If $Sum1299020016TextID != "" Then Var $Sum1299020016TextValue = "" EndIf + If $Sum1299020016TextValue = "" Then + If $Sum1299020016TextID = "" Then + Var $Sum1299020016TextID = "000013" + EndIf + EndIf EndIf @@ -2147,9 +2177,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020018 @@ -2172,6 +2203,11 @@ If $Sum1299020018TextID != "" Then Var $Sum1299020018TextValue = "" EndIf + If $Sum1299020018TextValue = "" Then + If $Sum1299020018TextID = "" Then + Var $Sum1299020018TextID = "000013" + EndIf + EndIf EndIf @@ -2496,9 +2532,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020015 @@ -2521,6 +2558,11 @@ If $Sum1299020015TextID != "" Then Var $Sum1299020015TextValue = "" EndIf + If $Sum1299020015TextValue = "" Then + If $Sum1299020015TextID = "" Then + Var $Sum1299020015TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_mom_cocoa.lxml b/inter/tha/xml/multi/page_catalog_group_pro_mom_cocoa.lxml index 959264a3..e111824b 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_mom_cocoa.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_mom_cocoa.lxml @@ -399,9 +399,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020002 @@ -424,6 +425,11 @@ If $Sum1203020002TextID != "" Then Var $Sum1203020002TextValue = "" EndIf + If $Sum1203020002TextValue = "" Then + If $Sum1203020002TextID = "" Then + Var $Sum1203020002TextID = "000013" + EndIf + EndIf EndIf @@ -748,9 +754,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020065 @@ -773,6 +780,11 @@ If $Sum1203020065TextID != "" Then Var $Sum1203020065TextValue = "" EndIf + If $Sum1203020065TextValue = "" Then + If $Sum1203020065TextID = "" Then + Var $Sum1203020065TextID = "000013" + EndIf + EndIf EndIf @@ -1097,9 +1109,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020067 @@ -1122,6 +1135,11 @@ If $Sum1203020067TextID != "" Then Var $Sum1203020067TextValue = "" EndIf + If $Sum1203020067TextValue = "" Then + If $Sum1203020067TextID = "" Then + Var $Sum1203020067TextID = "000013" + EndIf + EndIf EndIf @@ -1446,9 +1464,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020066 @@ -1471,6 +1490,11 @@ If $Sum1203020066TextID != "" Then Var $Sum1203020066TextValue = "" EndIf + If $Sum1203020066TextValue = "" Then + If $Sum1203020066TextID = "" Then + Var $Sum1203020066TextID = "000013" + EndIf + EndIf EndIf @@ -1799,9 +1823,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030100681203020068 @@ -1824,6 +1849,11 @@ If $Sum12030100681203020068TextID != "" Then Var $Sum12030100681203020068TextValue = "" EndIf + If $Sum12030100681203020068TextValue = "" Then + If $Sum12030100681203020068TextID = "" Then + Var $Sum12030100681203020068TextID = "000013" + EndIf + EndIf EndIf @@ -2148,9 +2178,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020069 @@ -2173,6 +2204,11 @@ If $Sum1203020069TextID != "" Then Var $Sum1203020069TextValue = "" EndIf + If $Sum1203020069TextValue = "" Then + If $Sum1203020069TextID = "" Then + Var $Sum1203020069TextID = "000013" + EndIf + EndIf EndIf @@ -2497,9 +2533,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020070 @@ -2522,6 +2559,11 @@ If $Sum1203020070TextID != "" Then Var $Sum1203020070TextValue = "" EndIf + If $Sum1203020070TextValue = "" Then + If $Sum1203020070TextID = "" Then + Var $Sum1203020070TextID = "000013" + EndIf + EndIf EndIf @@ -2846,9 +2888,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020071 @@ -2871,6 +2914,11 @@ If $Sum1203020071TextID != "" Then Var $Sum1203020071TextValue = "" EndIf + If $Sum1203020071TextValue = "" Then + If $Sum1203020071TextID = "" Then + Var $Sum1203020071TextID = "000013" + EndIf + EndIf EndIf @@ -3195,9 +3243,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020074 @@ -3220,6 +3269,11 @@ If $Sum1203020074TextID != "" Then Var $Sum1203020074TextValue = "" EndIf + If $Sum1203020074TextValue = "" Then + If $Sum1203020074TextID = "" Then + Var $Sum1203020074TextID = "000013" + EndIf + EndIf EndIf @@ -3548,9 +3602,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101000612010200031201030003 @@ -3573,6 +3628,11 @@ If $Sum120101000612010200031201030003TextID != "" Then Var $Sum120101000612010200031201030003TextValue = "" EndIf + If $Sum120101000612010200031201030003TextValue = "" Then + If $Sum120101000612010200031201030003TextID = "" Then + Var $Sum120101000612010200031201030003TextID = "000013" + EndIf + EndIf EndIf @@ -3901,9 +3961,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010110061201021003 @@ -3926,6 +3987,11 @@ If $Sum12010110061201021003TextID != "" Then Var $Sum12010110061201021003TextValue = "" EndIf + If $Sum12010110061201021003TextValue = "" Then + If $Sum12010110061201021003TextID = "" Then + Var $Sum12010110061201021003TextID = "000013" + EndIf + EndIf EndIf @@ -4250,9 +4316,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010200611201030061 @@ -4275,6 +4342,11 @@ If $Sum12010200611201030061TextID != "" Then Var $Sum12010200611201030061TextValue = "" EndIf + If $Sum12010200611201030061TextValue = "" Then + If $Sum12010200611201030061TextID = "" Then + Var $Sum12010200611201030061TextID = "000013" + EndIf + EndIf EndIf @@ -4603,9 +4675,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000212030200021203030002 @@ -4628,6 +4701,11 @@ If $Sum120301000212030200021203030002TextID != "" Then Var $Sum120301000212030200021203030002TextValue = "" EndIf + If $Sum120301000212030200021203030002TextValue = "" Then + If $Sum120301000212030200021203030002TextID = "" Then + Var $Sum120301000212030200021203030002TextID = "000013" + EndIf + EndIf EndIf @@ -4952,9 +5030,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203021002 @@ -4977,6 +5056,11 @@ If $Sum1203021002TextID != "" Then Var $Sum1203021002TextValue = "" EndIf + If $Sum1203021002TextValue = "" Then + If $Sum1203021002TextID = "" Then + Var $Sum1203021002TextID = "000013" + EndIf + EndIf EndIf @@ -5305,9 +5389,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000412030200041203030004 @@ -5330,6 +5415,11 @@ If $Sum120301000412030200041203030004TextID != "" Then Var $Sum120301000412030200041203030004TextValue = "" EndIf + If $Sum120301000412030200041203030004TextValue = "" Then + If $Sum120301000412030200041203030004TextID = "" Then + Var $Sum120301000412030200041203030004TextID = "000013" + EndIf + EndIf EndIf @@ -5658,9 +5748,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002412030200241203030024 @@ -5683,6 +5774,11 @@ If $Sum120301002412030200241203030024TextID != "" Then Var $Sum120301002412030200241203030024TextValue = "" EndIf + If $Sum120301002412030200241203030024TextValue = "" Then + If $Sum120301002412030200241203030024TextID = "" Then + Var $Sum120301002412030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -6011,9 +6107,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002512030200251203030025 @@ -6036,6 +6133,11 @@ If $Sum120301002512030200251203030025TextID != "" Then Var $Sum120301002512030200251203030025TextValue = "" EndIf + If $Sum120301002512030200251203030025TextValue = "" Then + If $Sum120301002512030200251203030025TextID = "" Then + Var $Sum120301002512030200251203030025TextID = "000013" + EndIf + EndIf EndIf @@ -6364,9 +6466,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003512030200351203030035 @@ -6389,6 +6492,11 @@ If $Sum120301003512030200351203030035TextID != "" Then Var $Sum120301003512030200351203030035TextValue = "" EndIf + If $Sum120301003512030200351203030035TextValue = "" Then + If $Sum120301003512030200351203030035TextID = "" Then + Var $Sum120301003512030200351203030035TextID = "000013" + EndIf + EndIf EndIf @@ -6713,9 +6821,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200391203030039 @@ -6738,6 +6847,11 @@ If $Sum12030200391203030039TextID != "" Then Var $Sum12030200391203030039TextValue = "" EndIf + If $Sum12030200391203030039TextValue = "" Then + If $Sum12030200391203030039TextID = "" Then + Var $Sum12030200391203030039TextID = "000013" + EndIf + EndIf EndIf @@ -7062,9 +7176,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200591203030059 @@ -7087,6 +7202,11 @@ If $Sum12030200591203030059TextID != "" Then Var $Sum12030200591203030059TextValue = "" EndIf + If $Sum12030200591203030059TextValue = "" Then + If $Sum12030200591203030059TextID = "" Then + Var $Sum12030200591203030059TextID = "000013" + EndIf + EndIf EndIf @@ -7411,9 +7531,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030010 @@ -7436,6 +7557,11 @@ If $Sum1203030010TextID != "" Then Var $Sum1203030010TextValue = "" EndIf + If $Sum1203030010TextValue = "" Then + If $Sum1203030010TextID = "" Then + Var $Sum1203030010TextID = "000013" + EndIf + EndIf EndIf @@ -7760,9 +7886,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030030 @@ -7785,6 +7912,11 @@ If $Sum1203030030TextID != "" Then Var $Sum1203030030TextValue = "" EndIf + If $Sum1203030030TextValue = "" Then + If $Sum1203030030TextID = "" Then + Var $Sum1203030030TextID = "000013" + EndIf + EndIf EndIf @@ -8109,9 +8241,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030044 @@ -8134,6 +8267,11 @@ If $Sum1203030044TextID != "" Then Var $Sum1203030044TextValue = "" EndIf + If $Sum1203030044TextValue = "" Then + If $Sum1203030044TextID = "" Then + Var $Sum1203030044TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_monday_banana.lxml b/inter/tha/xml/multi/page_catalog_group_pro_monday_banana.lxml index 70621fa0..dbdf131c 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_monday_banana.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_monday_banana.lxml @@ -405,9 +405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200241203030024 @@ -430,6 +431,11 @@ If $Sum12030200241203030024TextID != "" Then Var $Sum12030200241203030024TextValue = "" EndIf + If $Sum12030200241203030024TextValue = "" Then + If $Sum12030200241203030024TextID = "" Then + Var $Sum12030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -754,9 +760,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -779,6 +786,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -1103,9 +1115,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200231203030023 @@ -1128,6 +1141,11 @@ If $Sum12030200231203030023TextID != "" Then Var $Sum12030200231203030023TextValue = "" EndIf + If $Sum12030200231203030023TextValue = "" Then + If $Sum12030200231203030023TextID = "" Then + Var $Sum12030200231203030023TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_mymint.lxml b/inter/tha/xml/multi/page_catalog_group_pro_mymint.lxml index aada99d5..f853e083 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_mymint.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_mymint.lxml @@ -405,9 +405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101005712010200571201030057 @@ -430,6 +431,11 @@ If $Sum120101005712010200571201030057TextID != "" Then Var $Sum120101005712010200571201030057TextValue = "" EndIf + If $Sum120101005712010200571201030057TextValue = "" Then + If $Sum120101005712010200571201030057TextID = "" Then + Var $Sum120101005712010200571201030057TextID = "000013" + EndIf + EndIf EndIf @@ -758,9 +764,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101005712210200571221030057 @@ -783,6 +790,11 @@ If $Sum122101005712210200571221030057TextID != "" Then Var $Sum122101005712210200571221030057TextValue = "" EndIf + If $Sum122101005712210200571221030057TextValue = "" Then + If $Sum122101005712210200571221030057TextID = "" Then + Var $Sum122101005712210200571221030057TextID = "000013" + EndIf + EndIf EndIf @@ -1111,9 +1123,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100581201020058 @@ -1136,6 +1149,11 @@ If $Sum12010100581201020058TextID != "" Then Var $Sum12010100581201020058TextValue = "" EndIf + If $Sum12010100581201020058TextValue = "" Then + If $Sum12010100581201020058TextID = "" Then + Var $Sum12010100581201020058TextID = "000013" + EndIf + EndIf EndIf @@ -1464,9 +1482,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100581221020058 @@ -1489,6 +1508,11 @@ If $Sum12210100581221020058TextID != "" Then Var $Sum12210100581221020058TextValue = "" EndIf + If $Sum12210100581221020058TextValue = "" Then + If $Sum12210100581221020058TextID = "" Then + Var $Sum12210100581221020058TextID = "000013" + EndIf + EndIf EndIf @@ -1817,9 +1841,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201005012020200501202030050 @@ -1842,6 +1867,11 @@ If $Sum120201005012020200501202030050TextID != "" Then Var $Sum120201005012020200501202030050TextValue = "" EndIf + If $Sum120201005012020200501202030050TextValue = "" Then + If $Sum120201005012020200501202030050TextID = "" Then + Var $Sum120201005012020200501202030050TextID = "000013" + EndIf + EndIf EndIf @@ -2170,9 +2200,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003512030200351203030035 @@ -2195,6 +2226,11 @@ If $Sum120301003512030200351203030035TextID != "" Then Var $Sum120301003512030200351203030035TextValue = "" EndIf + If $Sum120301003512030200351203030035TextValue = "" Then + If $Sum120301003512030200351203030035TextID = "" Then + Var $Sum120301003512030200351203030035TextID = "000013" + EndIf + EndIf EndIf @@ -2523,9 +2559,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003612030200361203030036 @@ -2548,6 +2585,11 @@ If $Sum120301003612030200361203030036TextID != "" Then Var $Sum120301003612030200361203030036TextValue = "" EndIf + If $Sum120301003612030200361203030036TextValue = "" Then + If $Sum120301003612030200361203030036TextID = "" Then + Var $Sum120301003612030200361203030036TextID = "000013" + EndIf + EndIf EndIf @@ -2872,9 +2914,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200371203030037 @@ -2897,6 +2940,11 @@ If $Sum12030200371203030037TextID != "" Then Var $Sum12030200371203030037TextValue = "" EndIf + If $Sum12030200371203030037TextValue = "" Then + If $Sum12030200371203030037TextID = "" Then + Var $Sum12030200371203030037TextID = "000013" + EndIf + EndIf EndIf @@ -3221,9 +3269,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -3246,6 +3295,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -3570,9 +3624,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020060 @@ -3595,6 +3650,11 @@ If $Sum1205020060TextID != "" Then Var $Sum1205020060TextValue = "" EndIf + If $Sum1205020060TextValue = "" Then + If $Sum1205020060TextID = "" Then + Var $Sum1205020060TextID = "000013" + EndIf + EndIf EndIf @@ -3919,9 +3979,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020063 @@ -3944,6 +4005,11 @@ If $Sum1205020063TextID != "" Then Var $Sum1205020063TextValue = "" EndIf + If $Sum1205020063TextValue = "" Then + If $Sum1205020063TextID = "" Then + Var $Sum1205020063TextID = "000013" + EndIf + EndIf EndIf @@ -4268,9 +4334,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020064 @@ -4293,6 +4360,11 @@ If $Sum1205020064TextID != "" Then Var $Sum1205020064TextValue = "" EndIf + If $Sum1205020064TextValue = "" Then + If $Sum1205020064TextID = "" Then + Var $Sum1205020064TextID = "000013" + EndIf + EndIf EndIf @@ -4617,9 +4689,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020065 @@ -4642,6 +4715,11 @@ If $Sum1205020065TextID != "" Then Var $Sum1205020065TextValue = "" EndIf + If $Sum1205020065TextValue = "" Then + If $Sum1205020065TextID = "" Then + Var $Sum1205020065TextID = "000013" + EndIf + EndIf EndIf @@ -4966,9 +5044,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020066 @@ -4991,6 +5070,11 @@ If $Sum1205020066TextID != "" Then Var $Sum1205020066TextValue = "" EndIf + If $Sum1205020066TextValue = "" Then + If $Sum1205020066TextID = "" Then + Var $Sum1205020066TextID = "000013" + EndIf + EndIf EndIf @@ -5315,9 +5399,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -5340,6 +5425,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_nam_hom_coconut.lxml b/inter/tha/xml/multi/page_catalog_group_pro_nam_hom_coconut.lxml index abf1d8ff..00038e5a 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_nam_hom_coconut.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_nam_hom_coconut.lxml @@ -401,9 +401,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020068 @@ -426,6 +427,11 @@ If $Sum1201020068TextID != "" Then Var $Sum1201020068TextValue = "" EndIf + If $Sum1201020068TextValue = "" Then + If $Sum1201020068TextID = "" Then + Var $Sum1201020068TextID = "000013" + EndIf + EndIf EndIf @@ -750,9 +756,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020068 @@ -775,6 +782,11 @@ If $Sum1221020068TextID != "" Then Var $Sum1221020068TextValue = "" EndIf + If $Sum1221020068TextValue = "" Then + If $Sum1221020068TextID = "" Then + Var $Sum1221020068TextID = "000013" + EndIf + EndIf EndIf @@ -1099,9 +1111,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030092 @@ -1124,6 +1137,11 @@ If $Sum1205030092TextID != "" Then Var $Sum1205030092TextValue = "" EndIf + If $Sum1205030092TextValue = "" Then + If $Sum1205030092TextID = "" Then + Var $Sum1205030092TextID = "000013" + EndIf + EndIf EndIf @@ -1448,9 +1466,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200581203030058 @@ -1473,6 +1492,11 @@ If $Sum12030200581203030058TextID != "" Then Var $Sum12030200581203030058TextValue = "" EndIf + If $Sum12030200581203030058TextValue = "" Then + If $Sum12030200581203030058TextID = "" Then + Var $Sum12030200581203030058TextID = "000013" + EndIf + EndIf EndIf @@ -1797,9 +1821,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200591203030059 @@ -1822,6 +1847,11 @@ If $Sum12030200591203030059TextID != "" Then Var $Sum12030200591203030059TextValue = "" EndIf + If $Sum12030200591203030059TextValue = "" Then + If $Sum12030200591203030059TextID = "" Then + Var $Sum12030200591203030059TextID = "000013" + EndIf + EndIf EndIf @@ -2146,9 +2176,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200601202030060 @@ -2171,6 +2202,11 @@ If $Sum12020200601202030060TextID != "" Then Var $Sum12020200601202030060TextValue = "" EndIf + If $Sum12020200601202030060TextValue = "" Then + If $Sum12020200601202030060TextID = "" Then + Var $Sum12020200601202030060TextID = "000013" + EndIf + EndIf EndIf @@ -2495,9 +2531,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200611202030061 @@ -2520,6 +2557,11 @@ If $Sum12020200611202030061TextID != "" Then Var $Sum12020200611202030061TextValue = "" EndIf + If $Sum12020200611202030061TextValue = "" Then + If $Sum12020200611202030061TextID = "" Then + Var $Sum12020200611202030061TextID = "000013" + EndIf + EndIf EndIf @@ -2844,9 +2886,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200621202030062 @@ -2869,6 +2912,11 @@ If $Sum12020200621202030062TextID != "" Then Var $Sum12020200621202030062TextValue = "" EndIf + If $Sum12020200621202030062TextValue = "" Then + If $Sum12020200621202030062TextID = "" Then + Var $Sum12020200621202030062TextID = "000013" + EndIf + EndIf EndIf @@ -3193,9 +3241,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200631202030063 @@ -3218,6 +3267,11 @@ If $Sum12020200631202030063TextID != "" Then Var $Sum12020200631202030063TextValue = "" EndIf + If $Sum12020200631202030063TextValue = "" Then + If $Sum12020200631202030063TextID = "" Then + Var $Sum12020200631202030063TextID = "000013" + EndIf + EndIf EndIf @@ -3542,9 +3596,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200641202030064 @@ -3567,6 +3622,11 @@ If $Sum12020200641202030064TextID != "" Then Var $Sum12020200641202030064TextValue = "" EndIf + If $Sum12020200641202030064TextValue = "" Then + If $Sum12020200641202030064TextID = "" Then + Var $Sum12020200641202030064TextID = "000013" + EndIf + EndIf EndIf @@ -3891,9 +3951,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200651202030065 @@ -3916,6 +3977,11 @@ If $Sum12020200651202030065TextID != "" Then Var $Sum12020200651202030065TextValue = "" EndIf + If $Sum12020200651202030065TextValue = "" Then + If $Sum12020200651202030065TextID = "" Then + Var $Sum12020200651202030065TextID = "000013" + EndIf + EndIf EndIf @@ -4240,9 +4306,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020090 @@ -4265,6 +4332,11 @@ If $Sum1205020090TextID != "" Then Var $Sum1205020090TextValue = "" EndIf + If $Sum1205020090TextValue = "" Then + If $Sum1205020090TextID = "" Then + Var $Sum1205020090TextID = "000013" + EndIf + EndIf EndIf @@ -4589,9 +4661,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200911205030091 @@ -4614,6 +4687,11 @@ If $Sum12050200911205030091TextID != "" Then Var $Sum12050200911205030091TextValue = "" EndIf + If $Sum12050200911205030091TextValue = "" Then + If $Sum12050200911205030091TextID = "" Then + Var $Sum12050200911205030091TextID = "000013" + EndIf + EndIf EndIf @@ -4938,9 +5016,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201141205030114 @@ -4963,6 +5042,11 @@ If $Sum12050201141205030114TextID != "" Then Var $Sum12050201141205030114TextValue = "" EndIf + If $Sum12050201141205030114TextValue = "" Then + If $Sum12050201141205030114TextID = "" Then + Var $Sum12050201141205030114TextID = "000013" + EndIf + EndIf EndIf @@ -5287,9 +5371,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020093 @@ -5312,6 +5397,11 @@ If $Sum1205020093TextID != "" Then Var $Sum1205020093TextValue = "" EndIf + If $Sum1205020093TextValue = "" Then + If $Sum1205020093TextID = "" Then + Var $Sum1205020093TextID = "000013" + EndIf + EndIf EndIf @@ -5636,9 +5726,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200241203030024 @@ -5661,6 +5752,11 @@ If $Sum12030200241203030024TextID != "" Then Var $Sum12030200241203030024TextValue = "" EndIf + If $Sum12030200241203030024TextValue = "" Then + If $Sum12030200241203030024TextID = "" Then + Var $Sum12030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -5985,9 +6081,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -6010,6 +6107,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -6334,9 +6436,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020057 @@ -6359,6 +6462,11 @@ If $Sum1201020057TextID != "" Then Var $Sum1201020057TextValue = "" EndIf + If $Sum1201020057TextValue = "" Then + If $Sum1201020057TextID = "" Then + Var $Sum1201020057TextID = "000013" + EndIf + EndIf EndIf @@ -6683,9 +6791,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020057 @@ -6708,6 +6817,11 @@ If $Sum1221020057TextID != "" Then Var $Sum1221020057TextValue = "" EndIf + If $Sum1221020057TextValue = "" Then + If $Sum1221020057TextID = "" Then + Var $Sum1221020057TextID = "000013" + EndIf + EndIf EndIf @@ -7032,9 +7146,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020058 @@ -7057,6 +7172,11 @@ If $Sum1201020058TextID != "" Then Var $Sum1201020058TextValue = "" EndIf + If $Sum1201020058TextValue = "" Then + If $Sum1201020058TextID = "" Then + Var $Sum1201020058TextID = "000013" + EndIf + EndIf EndIf @@ -7381,9 +7501,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020058 @@ -7406,6 +7527,11 @@ If $Sum1221020058TextID != "" Then Var $Sum1221020058TextValue = "" EndIf + If $Sum1221020058TextValue = "" Then + If $Sum1221020058TextID = "" Then + Var $Sum1221020058TextID = "000013" + EndIf + EndIf EndIf @@ -7730,9 +7856,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030050 @@ -7755,6 +7882,11 @@ If $Sum1202030050TextID != "" Then Var $Sum1202030050TextValue = "" EndIf + If $Sum1202030050TextValue = "" Then + If $Sum1202030050TextID = "" Then + Var $Sum1202030050TextID = "000013" + EndIf + EndIf EndIf @@ -8079,9 +8211,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020064 @@ -8104,6 +8237,11 @@ If $Sum1201020064TextID != "" Then Var $Sum1201020064TextValue = "" EndIf + If $Sum1201020064TextValue = "" Then + If $Sum1201020064TextID = "" Then + Var $Sum1201020064TextID = "000013" + EndIf + EndIf EndIf @@ -8428,9 +8566,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020064 @@ -8453,6 +8592,11 @@ If $Sum1221020064TextID != "" Then Var $Sum1221020064TextValue = "" EndIf + If $Sum1221020064TextValue = "" Then + If $Sum1221020064TextID = "" Then + Var $Sum1221020064TextID = "000013" + EndIf + EndIf EndIf @@ -8777,9 +8921,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020035 @@ -8802,6 +8947,11 @@ If $Sum1203020035TextID != "" Then Var $Sum1203020035TextValue = "" EndIf + If $Sum1203020035TextValue = "" Then + If $Sum1203020035TextID = "" Then + Var $Sum1203020035TextID = "000013" + EndIf + EndIf EndIf @@ -9126,9 +9276,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -9151,6 +9302,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -9475,9 +9631,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030037 @@ -9500,6 +9657,11 @@ If $Sum1203030037TextID != "" Then Var $Sum1203030037TextValue = "" EndIf + If $Sum1203030037TextValue = "" Then + If $Sum1203030037TextID = "" Then + Var $Sum1203030037TextID = "000013" + EndIf + EndIf EndIf @@ -9824,9 +9986,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020063 @@ -9849,6 +10012,11 @@ If $Sum1205020063TextID != "" Then Var $Sum1205020063TextValue = "" EndIf + If $Sum1205020063TextValue = "" Then + If $Sum1205020063TextID = "" Then + Var $Sum1205020063TextID = "000013" + EndIf + EndIf EndIf @@ -10173,9 +10341,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020064 @@ -10198,6 +10367,11 @@ If $Sum1205020064TextID != "" Then Var $Sum1205020064TextValue = "" EndIf + If $Sum1205020064TextValue = "" Then + If $Sum1205020064TextID = "" Then + Var $Sum1205020064TextID = "000013" + EndIf + EndIf EndIf @@ -10522,9 +10696,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -10547,6 +10722,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_oreo_11.lxml b/inter/tha/xml/multi/page_catalog_group_pro_oreo_11.lxml index c8f746f4..7cb84bb8 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_oreo_11.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_oreo_11.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030043 @@ -429,6 +430,11 @@ If $Sum1201030043TextID != "" Then Var $Sum1201030043TextValue = "" EndIf + If $Sum1201030043TextValue = "" Then + If $Sum1201030043TextID = "" Then + Var $Sum1201030043TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030044 @@ -778,6 +785,11 @@ If $Sum1202030044TextID != "" Then Var $Sum1202030044TextValue = "" EndIf + If $Sum1202030044TextValue = "" Then + If $Sum1202030044TextID = "" Then + Var $Sum1202030044TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030009 @@ -1127,6 +1140,11 @@ If $Sum1203030009TextID != "" Then Var $Sum1203030009TextValue = "" EndIf + If $Sum1203030009TextValue = "" Then + If $Sum1203030009TextID = "" Then + Var $Sum1203030009TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030026 @@ -1476,6 +1495,11 @@ If $Sum1203030026TextID != "" Then Var $Sum1203030026TextValue = "" EndIf + If $Sum1203030026TextValue = "" Then + If $Sum1203030026TextID = "" Then + Var $Sum1203030026TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030027 @@ -1825,6 +1850,11 @@ If $Sum1203030027TextID != "" Then Var $Sum1203030027TextValue = "" EndIf + If $Sum1203030027TextValue = "" Then + If $Sum1203030027TextID = "" Then + Var $Sum1203030027TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030030 @@ -2174,6 +2205,11 @@ If $Sum1203030030TextID != "" Then Var $Sum1203030030TextValue = "" EndIf + If $Sum1203030030TextValue = "" Then + If $Sum1203030030TextID = "" Then + Var $Sum1203030030TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030031 @@ -2523,6 +2560,11 @@ If $Sum1203030031TextID != "" Then Var $Sum1203030031TextValue = "" EndIf + If $Sum1203030031TextValue = "" Then + If $Sum1203030031TextID = "" Then + Var $Sum1203030031TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030032 @@ -2872,6 +2915,11 @@ If $Sum1203030032TextID != "" Then Var $Sum1203030032TextValue = "" EndIf + If $Sum1203030032TextValue = "" Then + If $Sum1203030032TextID = "" Then + Var $Sum1203030032TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030048 @@ -3221,6 +3270,11 @@ If $Sum1202030048TextID != "" Then Var $Sum1202030048TextValue = "" EndIf + If $Sum1202030048TextValue = "" Then + If $Sum1202030048TextID = "" Then + Var $Sum1202030048TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030043 @@ -3570,6 +3625,11 @@ If $Sum1202030043TextID != "" Then Var $Sum1202030043TextValue = "" EndIf + If $Sum1202030043TextValue = "" Then + If $Sum1202030043TextID = "" Then + Var $Sum1202030043TextID = "000013" + EndIf + EndIf EndIf @@ -3894,9 +3954,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030028 @@ -3919,6 +3980,11 @@ If $Sum1203030028TextID != "" Then Var $Sum1203030028TextValue = "" EndIf + If $Sum1203030028TextValue = "" Then + If $Sum1203030028TextID = "" Then + Var $Sum1203030028TextID = "000013" + EndIf + EndIf EndIf @@ -4243,9 +4309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -4268,6 +4335,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -4592,9 +4664,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -4617,6 +4690,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -4941,9 +5019,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030056 @@ -4966,6 +5045,11 @@ If $Sum1202030056TextID != "" Then Var $Sum1202030056TextValue = "" EndIf + If $Sum1202030056TextValue = "" Then + If $Sum1202030056TextID = "" Then + Var $Sum1202030056TextID = "000013" + EndIf + EndIf EndIf @@ -5290,9 +5374,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030086 @@ -5315,6 +5400,11 @@ If $Sum1203030086TextID != "" Then Var $Sum1203030086TextValue = "" EndIf + If $Sum1203030086TextValue = "" Then + If $Sum1203030086TextID = "" Then + Var $Sum1203030086TextID = "000013" + EndIf + EndIf EndIf @@ -5639,9 +5729,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030087 @@ -5664,6 +5755,11 @@ If $Sum1203030087TextID != "" Then Var $Sum1203030087TextValue = "" EndIf + If $Sum1203030087TextValue = "" Then + If $Sum1203030087TextID = "" Then + Var $Sum1203030087TextID = "000013" + EndIf + EndIf EndIf @@ -5988,9 +6084,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -6013,6 +6110,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -6337,9 +6439,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -6362,6 +6465,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -6686,9 +6794,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -6711,6 +6820,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -7035,9 +7149,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -7060,6 +7175,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_passion_mint.lxml b/inter/tha/xml/multi/page_catalog_group_pro_passion_mint.lxml index c56e4d98..7c63798f 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_passion_mint.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_passion_mint.lxml @@ -399,9 +399,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020057 @@ -424,6 +425,11 @@ If $Sum1201020057TextID != "" Then Var $Sum1201020057TextValue = "" EndIf + If $Sum1201020057TextValue = "" Then + If $Sum1201020057TextID = "" Then + Var $Sum1201020057TextID = "000013" + EndIf + EndIf EndIf @@ -748,9 +754,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020057 @@ -773,6 +780,11 @@ If $Sum1221020057TextID != "" Then Var $Sum1221020057TextValue = "" EndIf + If $Sum1221020057TextValue = "" Then + If $Sum1221020057TextID = "" Then + Var $Sum1221020057TextID = "000013" + EndIf + EndIf EndIf @@ -1097,9 +1109,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020058 @@ -1122,6 +1135,11 @@ If $Sum1201020058TextID != "" Then Var $Sum1201020058TextValue = "" EndIf + If $Sum1201020058TextValue = "" Then + If $Sum1201020058TextID = "" Then + Var $Sum1201020058TextID = "000013" + EndIf + EndIf EndIf @@ -1446,9 +1464,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020058 @@ -1471,6 +1490,11 @@ If $Sum1221020058TextID != "" Then Var $Sum1221020058TextValue = "" EndIf + If $Sum1221020058TextValue = "" Then + If $Sum1221020058TextID = "" Then + Var $Sum1221020058TextID = "000013" + EndIf + EndIf EndIf @@ -1795,9 +1819,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030050 @@ -1820,6 +1845,11 @@ If $Sum1202030050TextID != "" Then Var $Sum1202030050TextValue = "" EndIf + If $Sum1202030050TextValue = "" Then + If $Sum1202030050TextID = "" Then + Var $Sum1202030050TextID = "000013" + EndIf + EndIf EndIf @@ -2144,9 +2174,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020064 @@ -2169,6 +2200,11 @@ If $Sum1201020064TextID != "" Then Var $Sum1201020064TextValue = "" EndIf + If $Sum1201020064TextValue = "" Then + If $Sum1201020064TextID = "" Then + Var $Sum1201020064TextID = "000013" + EndIf + EndIf EndIf @@ -2493,9 +2529,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020064 @@ -2518,6 +2555,11 @@ If $Sum1221020064TextID != "" Then Var $Sum1221020064TextValue = "" EndIf + If $Sum1221020064TextValue = "" Then + If $Sum1221020064TextID = "" Then + Var $Sum1221020064TextID = "000013" + EndIf + EndIf EndIf @@ -2842,9 +2884,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020035 @@ -2867,6 +2910,11 @@ If $Sum1203020035TextID != "" Then Var $Sum1203020035TextValue = "" EndIf + If $Sum1203020035TextValue = "" Then + If $Sum1203020035TextID = "" Then + Var $Sum1203020035TextID = "000013" + EndIf + EndIf EndIf @@ -3191,9 +3239,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030034 @@ -3216,6 +3265,11 @@ If $Sum1203030034TextID != "" Then Var $Sum1203030034TextValue = "" EndIf + If $Sum1203030034TextValue = "" Then + If $Sum1203030034TextID = "" Then + Var $Sum1203030034TextID = "000013" + EndIf + EndIf EndIf @@ -3540,9 +3594,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030037 @@ -3565,6 +3620,11 @@ If $Sum1203030037TextID != "" Then Var $Sum1203030037TextValue = "" EndIf + If $Sum1203030037TextValue = "" Then + If $Sum1203030037TextID = "" Then + Var $Sum1203030037TextID = "000013" + EndIf + EndIf EndIf @@ -3889,9 +3949,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020063 @@ -3914,6 +3975,11 @@ If $Sum1205020063TextID != "" Then Var $Sum1205020063TextValue = "" EndIf + If $Sum1205020063TextValue = "" Then + If $Sum1205020063TextID = "" Then + Var $Sum1205020063TextID = "000013" + EndIf + EndIf EndIf @@ -4238,9 +4304,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020064 @@ -4263,6 +4330,11 @@ If $Sum1205020064TextID != "" Then Var $Sum1205020064TextValue = "" EndIf + If $Sum1205020064TextValue = "" Then + If $Sum1205020064TextID = "" Then + Var $Sum1205020064TextID = "000013" + EndIf + EndIf EndIf @@ -4587,9 +4659,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -4612,6 +4685,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_peach.lxml b/inter/tha/xml/multi/page_catalog_group_pro_peach.lxml index a3b6a4b2..1c46d1e2 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_peach.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_peach.lxml @@ -407,9 +407,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100591201020059 @@ -432,6 +433,11 @@ If $Sum12010100591201020059TextID != "" Then Var $Sum12010100591201020059TextValue = "" EndIf + If $Sum12010100591201020059TextValue = "" Then + If $Sum12010100591201020059TextID = "" Then + Var $Sum12010100591201020059TextID = "000013" + EndIf + EndIf EndIf @@ -760,9 +766,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100591221020059 @@ -785,6 +792,11 @@ If $Sum12210100591221020059TextID != "" Then Var $Sum12210100591221020059TextValue = "" EndIf + If $Sum12210100591221020059TextValue = "" Then + If $Sum12210100591221020059TextID = "" Then + Var $Sum12210100591221020059TextID = "000013" + EndIf + EndIf EndIf @@ -1113,9 +1125,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101006012010200601201030060 @@ -1138,6 +1151,11 @@ If $Sum120101006012010200601201030060TextID != "" Then Var $Sum120101006012010200601201030060TextValue = "" EndIf + If $Sum120101006012010200601201030060TextValue = "" Then + If $Sum120101006012010200601201030060TextID = "" Then + Var $Sum120101006012010200601201030060TextID = "000013" + EndIf + EndIf EndIf @@ -1466,9 +1484,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101006012210200601221030060 @@ -1491,6 +1510,11 @@ If $Sum122101006012210200601221030060TextID != "" Then Var $Sum122101006012210200601221030060TextValue = "" EndIf + If $Sum122101006012210200601221030060TextValue = "" Then + If $Sum122101006012210200601221030060TextID = "" Then + Var $Sum122101006012210200601221030060TextID = "000013" + EndIf + EndIf EndIf @@ -1819,9 +1843,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201005112020200511202030051 @@ -1844,6 +1869,11 @@ If $Sum120201005112020200511202030051TextID != "" Then Var $Sum120201005112020200511202030051TextValue = "" EndIf + If $Sum120201005112020200511202030051TextValue = "" Then + If $Sum120201005112020200511202030051TextID = "" Then + Var $Sum120201005112020200511202030051TextID = "000013" + EndIf + EndIf EndIf @@ -2168,9 +2198,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020052 @@ -2193,6 +2224,11 @@ If $Sum1202020052TextID != "" Then Var $Sum1202020052TextValue = "" EndIf + If $Sum1202020052TextValue = "" Then + If $Sum1202020052TextID = "" Then + Var $Sum1202020052TextID = "000013" + EndIf + EndIf EndIf @@ -2521,9 +2557,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301003812030200381203030038 @@ -2546,6 +2583,11 @@ If $Sum120301003812030200381203030038TextID != "" Then Var $Sum120301003812030200381203030038TextValue = "" EndIf + If $Sum120301003812030200381203030038TextValue = "" Then + If $Sum120301003812030200381203030038TextID = "" Then + Var $Sum120301003812030200381203030038TextID = "000013" + EndIf + EndIf EndIf @@ -2870,9 +2912,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200391203030039 @@ -2895,6 +2938,11 @@ If $Sum12030200391203030039TextID != "" Then Var $Sum12030200391203030039TextValue = "" EndIf + If $Sum12030200391203030039TextValue = "" Then + If $Sum12030200391203030039TextID = "" Then + Var $Sum12030200391203030039TextID = "000013" + EndIf + EndIf EndIf @@ -3219,9 +3267,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030040 @@ -3244,6 +3293,11 @@ If $Sum1203030040TextID != "" Then Var $Sum1203030040TextValue = "" EndIf + If $Sum1203030040TextValue = "" Then + If $Sum1203030040TextID = "" Then + Var $Sum1203030040TextID = "000013" + EndIf + EndIf EndIf @@ -3568,9 +3622,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020068 @@ -3593,6 +3648,11 @@ If $Sum1205020068TextID != "" Then Var $Sum1205020068TextValue = "" EndIf + If $Sum1205020068TextValue = "" Then + If $Sum1205020068TextID = "" Then + Var $Sum1205020068TextID = "000013" + EndIf + EndIf EndIf @@ -3917,9 +3977,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020069 @@ -3942,6 +4003,11 @@ If $Sum1205020069TextID != "" Then Var $Sum1205020069TextValue = "" EndIf + If $Sum1205020069TextValue = "" Then + If $Sum1205020069TextID = "" Then + Var $Sum1205020069TextID = "000013" + EndIf + EndIf EndIf @@ -4266,9 +4332,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020070 @@ -4291,6 +4358,11 @@ If $Sum1205020070TextID != "" Then Var $Sum1205020070TextValue = "" EndIf + If $Sum1205020070TextValue = "" Then + If $Sum1205020070TextID = "" Then + Var $Sum1205020070TextID = "000013" + EndIf + EndIf EndIf @@ -4615,9 +4687,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020072 @@ -4640,6 +4713,11 @@ If $Sum1205020072TextID != "" Then Var $Sum1205020072TextValue = "" EndIf + If $Sum1205020072TextValue = "" Then + If $Sum1205020072TextID = "" Then + Var $Sum1205020072TextID = "000013" + EndIf + EndIf EndIf @@ -4964,9 +5042,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020073 @@ -4989,6 +5068,11 @@ If $Sum1205020073TextID != "" Then Var $Sum1205020073TextValue = "" EndIf + If $Sum1205020073TextValue = "" Then + If $Sum1205020073TextID = "" Then + Var $Sum1205020073TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_pepsi_second_cup_30.lxml b/inter/tha/xml/multi/page_catalog_group_pro_pepsi_second_cup_30.lxml index 7fe49ced..85025cc6 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_pepsi_second_cup_30.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_pepsi_second_cup_30.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020008 @@ -429,6 +430,11 @@ If $Sum1299020008TextID != "" Then Var $Sum1299020008TextValue = "" EndIf + If $Sum1299020008TextValue = "" Then + If $Sum1299020008TextID = "" Then + Var $Sum1299020008TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020003 @@ -778,6 +785,11 @@ If $Sum1299020003TextID != "" Then Var $Sum1299020003TextValue = "" EndIf + If $Sum1299020003TextValue = "" Then + If $Sum1299020003TextID = "" Then + Var $Sum1299020003TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020046 @@ -1127,6 +1140,11 @@ If $Sum1205020046TextID != "" Then Var $Sum1205020046TextValue = "" EndIf + If $Sum1205020046TextValue = "" Then + If $Sum1205020046TextID = "" Then + Var $Sum1205020046TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050058 @@ -1476,6 +1495,11 @@ If $Sum1299050058TextID != "" Then Var $Sum1299050058TextValue = "" EndIf + If $Sum1299050058TextValue = "" Then + If $Sum1299050058TextID = "" Then + Var $Sum1299050058TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050060 @@ -1825,6 +1850,11 @@ If $Sum1299050060TextID != "" Then Var $Sum1299050060TextValue = "" EndIf + If $Sum1299050060TextValue = "" Then + If $Sum1299050060TextID = "" Then + Var $Sum1299050060TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020007 @@ -2174,6 +2205,11 @@ If $Sum1205020007TextID != "" Then Var $Sum1205020007TextValue = "" EndIf + If $Sum1205020007TextValue = "" Then + If $Sum1205020007TextID = "" Then + Var $Sum1205020007TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050053 @@ -2523,6 +2560,11 @@ If $Sum1299050053TextID != "" Then Var $Sum1299050053TextValue = "" EndIf + If $Sum1299050053TextValue = "" Then + If $Sum1299050053TextID = "" Then + Var $Sum1299050053TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050064 @@ -2872,6 +2915,11 @@ If $Sum1299050064TextID != "" Then Var $Sum1299050064TextValue = "" EndIf + If $Sum1299050064TextValue = "" Then + If $Sum1299050064TextID = "" Then + Var $Sum1299050064TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020007 @@ -3221,6 +3270,11 @@ If $Sum1299020007TextID != "" Then Var $Sum1299020007TextValue = "" EndIf + If $Sum1299020007TextValue = "" Then + If $Sum1299020007TextID = "" Then + Var $Sum1299020007TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020084 @@ -3570,6 +3625,11 @@ If $Sum1205020084TextID != "" Then Var $Sum1205020084TextValue = "" EndIf + If $Sum1205020084TextValue = "" Then + If $Sum1205020084TextID = "" Then + Var $Sum1205020084TextID = "000013" + EndIf + EndIf EndIf @@ -3894,9 +3954,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050052 @@ -3919,6 +3980,11 @@ If $Sum1299050052TextID != "" Then Var $Sum1299050052TextValue = "" EndIf + If $Sum1299050052TextValue = "" Then + If $Sum1299050052TextID = "" Then + Var $Sum1299050052TextID = "000013" + EndIf + EndIf EndIf @@ -4243,9 +4309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020067 @@ -4268,6 +4335,11 @@ If $Sum1205020067TextID != "" Then Var $Sum1205020067TextValue = "" EndIf + If $Sum1205020067TextValue = "" Then + If $Sum1205020067TextID = "" Then + Var $Sum1205020067TextID = "000013" + EndIf + EndIf EndIf @@ -4592,9 +4664,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030007 @@ -4617,6 +4690,11 @@ If $Sum1205030007TextID != "" Then Var $Sum1205030007TextValue = "" EndIf + If $Sum1205030007TextValue = "" Then + If $Sum1205030007TextID = "" Then + Var $Sum1205030007TextID = "000013" + EndIf + EndIf EndIf @@ -4941,9 +5019,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050057 @@ -4966,6 +5045,11 @@ If $Sum1299050057TextID != "" Then Var $Sum1299050057TextValue = "" EndIf + If $Sum1299050057TextValue = "" Then + If $Sum1299050057TextID = "" Then + Var $Sum1299050057TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_rerun.lxml b/inter/tha/xml/multi/page_catalog_group_pro_rerun.lxml index b02f4b25..178a879e 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_rerun.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_rerun.lxml @@ -405,9 +405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020044 @@ -430,6 +431,11 @@ If $Sum1202020044TextID != "" Then Var $Sum1202020044TextValue = "" EndIf + If $Sum1202020044TextValue = "" Then + If $Sum1202020044TextID = "" Then + Var $Sum1202020044TextID = "000013" + EndIf + EndIf EndIf @@ -754,9 +760,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020043 @@ -779,6 +786,11 @@ If $Sum1202020043TextID != "" Then Var $Sum1202020043TextValue = "" EndIf + If $Sum1202020043TextValue = "" Then + If $Sum1202020043TextID = "" Then + Var $Sum1202020043TextID = "000013" + EndIf + EndIf EndIf @@ -1103,9 +1115,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020003 @@ -1128,6 +1141,11 @@ If $Sum1299020003TextID != "" Then Var $Sum1299020003TextValue = "" EndIf + If $Sum1299020003TextValue = "" Then + If $Sum1299020003TextID = "" Then + Var $Sum1299020003TextID = "000013" + EndIf + EndIf EndIf @@ -1452,9 +1470,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020001 @@ -1477,6 +1496,11 @@ If $Sum1299020001TextID != "" Then Var $Sum1299020001TextValue = "" EndIf + If $Sum1299020001TextValue = "" Then + If $Sum1299020001TextID = "" Then + Var $Sum1299020001TextID = "000013" + EndIf + EndIf EndIf @@ -1801,9 +1825,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030046 @@ -1826,6 +1851,11 @@ If $Sum1299030046TextID != "" Then Var $Sum1299030046TextValue = "" EndIf + If $Sum1299030046TextValue = "" Then + If $Sum1299030046TextID = "" Then + Var $Sum1299030046TextID = "000013" + EndIf + EndIf EndIf @@ -2150,9 +2180,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020011 @@ -2175,6 +2206,11 @@ If $Sum1299020011TextID != "" Then Var $Sum1299020011TextValue = "" EndIf + If $Sum1299020011TextValue = "" Then + If $Sum1299020011TextID = "" Then + Var $Sum1299020011TextID = "000013" + EndIf + EndIf EndIf @@ -2499,9 +2535,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020015 @@ -2524,6 +2561,11 @@ If $Sum1299020015TextID != "" Then Var $Sum1299020015TextValue = "" EndIf + If $Sum1299020015TextValue = "" Then + If $Sum1299020015TextID = "" Then + Var $Sum1299020015TextID = "000013" + EndIf + EndIf EndIf @@ -2848,9 +2890,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050059 @@ -2873,6 +2916,11 @@ If $Sum1299050059TextID != "" Then Var $Sum1299050059TextValue = "" EndIf + If $Sum1299050059TextValue = "" Then + If $Sum1299050059TextID = "" Then + Var $Sum1299050059TextID = "000013" + EndIf + EndIf EndIf @@ -3197,9 +3245,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050057 @@ -3222,6 +3271,11 @@ If $Sum1299050057TextID != "" Then Var $Sum1299050057TextValue = "" EndIf + If $Sum1299050057TextValue = "" Then + If $Sum1299050057TextID = "" Then + Var $Sum1299050057TextID = "000013" + EndIf + EndIf EndIf @@ -3546,9 +3600,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030035 @@ -3571,6 +3626,11 @@ If $Sum1203030035TextID != "" Then Var $Sum1203030035TextValue = "" EndIf + If $Sum1203030035TextValue = "" Then + If $Sum1203030035TextID = "" Then + Var $Sum1203030035TextID = "000013" + EndIf + EndIf EndIf @@ -3895,9 +3955,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020036 @@ -3920,6 +3981,11 @@ If $Sum1203020036TextID != "" Then Var $Sum1203020036TextValue = "" EndIf + If $Sum1203020036TextValue = "" Then + If $Sum1203020036TextID = "" Then + Var $Sum1203020036TextID = "000013" + EndIf + EndIf EndIf @@ -4244,9 +4310,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030066 @@ -4269,6 +4336,11 @@ If $Sum1299030066TextID != "" Then Var $Sum1299030066TextValue = "" EndIf + If $Sum1299030066TextValue = "" Then + If $Sum1299030066TextID = "" Then + Var $Sum1299030066TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_robinson_beauty.lxml b/inter/tha/xml/multi/page_catalog_group_pro_robinson_beauty.lxml index 2438f148..883f88ad 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_robinson_beauty.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_robinson_beauty.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030064 @@ -429,6 +430,11 @@ If $Sum1205030064TextID != "" Then Var $Sum1205030064TextValue = "" EndIf + If $Sum1205030064TextValue = "" Then + If $Sum1205030064TextID = "" Then + Var $Sum1205030064TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050073 @@ -778,6 +785,11 @@ If $Sum1299050073TextID != "" Then Var $Sum1299050073TextValue = "" EndIf + If $Sum1299050073TextValue = "" Then + If $Sum1299050073TextID = "" Then + Var $Sum1299050073TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020056 @@ -1127,6 +1140,11 @@ If $Sum1202020056TextID != "" Then Var $Sum1202020056TextValue = "" EndIf + If $Sum1202020056TextValue = "" Then + If $Sum1202020056TextID = "" Then + Var $Sum1202020056TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020073 @@ -1476,6 +1495,11 @@ If $Sum1201020073TextID != "" Then Var $Sum1201020073TextValue = "" EndIf + If $Sum1201020073TextValue = "" Then + If $Sum1201020073TextID = "" Then + Var $Sum1201020073TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020073 @@ -1825,6 +1850,11 @@ If $Sum1221020073TextID != "" Then Var $Sum1221020073TextValue = "" EndIf + If $Sum1221020073TextValue = "" Then + If $Sum1221020073TextID = "" Then + Var $Sum1221020073TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030046 @@ -2174,6 +2205,11 @@ If $Sum1203030046TextID != "" Then Var $Sum1203030046TextValue = "" EndIf + If $Sum1203030046TextValue = "" Then + If $Sum1203030046TextID = "" Then + Var $Sum1203030046TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020073 @@ -2523,6 +2560,11 @@ If $Sum1203020073TextID != "" Then Var $Sum1203020073TextValue = "" EndIf + If $Sum1203020073TextValue = "" Then + If $Sum1203020073TextID = "" Then + Var $Sum1203020073TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020067 @@ -2872,6 +2915,11 @@ If $Sum1202020067TextID != "" Then Var $Sum1202020067TextValue = "" EndIf + If $Sum1202020067TextValue = "" Then + If $Sum1202020067TextID = "" Then + Var $Sum1202020067TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020074 @@ -3221,6 +3270,11 @@ If $Sum1201020074TextID != "" Then Var $Sum1201020074TextValue = "" EndIf + If $Sum1201020074TextValue = "" Then + If $Sum1201020074TextID = "" Then + Var $Sum1201020074TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020074 @@ -3570,6 +3625,11 @@ If $Sum1221020074TextID != "" Then Var $Sum1221020074TextValue = "" EndIf + If $Sum1221020074TextValue = "" Then + If $Sum1221020074TextID = "" Then + Var $Sum1221020074TextID = "000013" + EndIf + EndIf EndIf @@ -3894,9 +3954,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030053 @@ -3919,6 +3980,11 @@ If $Sum1202030053TextID != "" Then Var $Sum1202030053TextValue = "" EndIf + If $Sum1202030053TextValue = "" Then + If $Sum1202030053TextID = "" Then + Var $Sum1202030053TextID = "000013" + EndIf + EndIf EndIf @@ -4243,9 +4309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030115 @@ -4268,6 +4335,11 @@ If $Sum1205030115TextID != "" Then Var $Sum1205030115TextValue = "" EndIf + If $Sum1205030115TextValue = "" Then + If $Sum1205030115TextID = "" Then + Var $Sum1205030115TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_tea_time.lxml b/inter/tha/xml/multi/page_catalog_group_pro_tea_time.lxml index f5a2f096..07027a62 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_tea_time.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_tea_time.lxml @@ -406,9 +406,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003912020200391202030039 @@ -431,6 +432,11 @@ If $Sum120201003912020200391202030039TextID != "" Then Var $Sum120201003912020200391202030039TextValue = "" EndIf + If $Sum120201003912020200391202030039TextValue = "" Then + If $Sum120201003912020200391202030039TextID = "" Then + Var $Sum120201003912020200391202030039TextID = "000013" + EndIf + EndIf EndIf @@ -759,9 +765,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110381202021038 @@ -784,6 +791,11 @@ If $Sum12020110381202021038TextID != "" Then Var $Sum12020110381202021038TextValue = "" EndIf + If $Sum12020110381202021038TextValue = "" Then + If $Sum12020110381202021038TextID = "" Then + Var $Sum12020110381202021038TextID = "000013" + EndIf + EndIf EndIf @@ -1112,9 +1124,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100471202020047 @@ -1137,6 +1150,11 @@ If $Sum12020100471202020047TextID != "" Then Var $Sum12020100471202020047TextValue = "" EndIf + If $Sum12020100471202020047TextValue = "" Then + If $Sum12020100471202020047TextID = "" Then + Var $Sum12020100471202020047TextID = "000013" + EndIf + EndIf EndIf @@ -1465,9 +1483,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101005512010200551201030055 @@ -1490,6 +1509,11 @@ If $Sum120101005512010200551201030055TextID != "" Then Var $Sum120101005512010200551201030055TextValue = "" EndIf + If $Sum120101005512010200551201030055TextValue = "" Then + If $Sum120101005512010200551201030055TextID = "" Then + Var $Sum120101005512010200551201030055TextID = "000013" + EndIf + EndIf EndIf @@ -1818,9 +1842,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101005512210200551221030055 @@ -1843,6 +1868,11 @@ If $Sum122101005512210200551221030055TextID != "" Then Var $Sum122101005512210200551221030055TextValue = "" EndIf + If $Sum122101005512210200551221030055TextValue = "" Then + If $Sum122101005512210200551221030055TextID = "" Then + Var $Sum122101005512210200551221030055TextID = "000013" + EndIf + EndIf EndIf @@ -2171,9 +2201,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110401202021040 @@ -2196,6 +2227,11 @@ If $Sum12020110401202021040TextID != "" Then Var $Sum12020110401202021040TextValue = "" EndIf + If $Sum12020110401202021040TextValue = "" Then + If $Sum12020110401202021040TextID = "" Then + Var $Sum12020110401202021040TextID = "000013" + EndIf + EndIf EndIf @@ -2524,9 +2560,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110391202021039 @@ -2549,6 +2586,11 @@ If $Sum12020110391202021039TextID != "" Then Var $Sum12020110391202021039TextValue = "" EndIf + If $Sum12020110391202021039TextValue = "" Then + If $Sum12020110391202021039TextID = "" Then + Var $Sum12020110391202021039TextID = "000013" + EndIf + EndIf EndIf @@ -2873,9 +2915,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050062 @@ -2898,6 +2941,11 @@ If $Sum1299050062TextID != "" Then Var $Sum1299050062TextValue = "" EndIf + If $Sum1299050062TextValue = "" Then + If $Sum1299050062TextID = "" Then + Var $Sum1299050062TextID = "000013" + EndIf + EndIf EndIf @@ -3222,9 +3270,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020054 @@ -3247,6 +3296,11 @@ If $Sum1202020054TextID != "" Then Var $Sum1202020054TextValue = "" EndIf + If $Sum1202020054TextValue = "" Then + If $Sum1202020054TextID = "" Then + Var $Sum1202020054TextID = "000013" + EndIf + EndIf EndIf @@ -3571,9 +3625,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020002 @@ -3596,6 +3651,11 @@ If $Sum1299020002TextID != "" Then Var $Sum1299020002TextValue = "" EndIf + If $Sum1299020002TextValue = "" Then + If $Sum1299020002TextID = "" Then + Var $Sum1299020002TextID = "000013" + EndIf + EndIf EndIf @@ -3920,9 +3980,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030045 @@ -3945,6 +4006,11 @@ If $Sum1202030045TextID != "" Then Var $Sum1202030045TextValue = "" EndIf + If $Sum1202030045TextValue = "" Then + If $Sum1202030045TextID = "" Then + Var $Sum1202030045TextID = "000013" + EndIf + EndIf EndIf @@ -4273,9 +4339,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002612020200261202030026 @@ -4298,6 +4365,11 @@ If $Sum120201002612020200261202030026TextID != "" Then Var $Sum120201002612020200261202030026TextValue = "" EndIf + If $Sum120201002612020200261202030026TextValue = "" Then + If $Sum120201002612020200261202030026TextID = "" Then + Var $Sum120201002612020200261202030026TextID = "000013" + EndIf + EndIf EndIf @@ -4626,9 +4698,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110261202021026 @@ -4651,6 +4724,11 @@ If $Sum12020110261202021026TextID != "" Then Var $Sum12020110261202021026TextValue = "" EndIf + If $Sum12020110261202021026TextValue = "" Then + If $Sum12020110261202021026TextID = "" Then + Var $Sum12020110261202021026TextID = "000013" + EndIf + EndIf EndIf @@ -4979,9 +5057,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002712020200271202030027 @@ -5004,6 +5083,11 @@ If $Sum120201002712020200271202030027TextID != "" Then Var $Sum120201002712020200271202030027TextValue = "" EndIf + If $Sum120201002712020200271202030027TextValue = "" Then + If $Sum120201002712020200271202030027TextID = "" Then + Var $Sum120201002712020200271202030027TextID = "000013" + EndIf + EndIf EndIf @@ -5332,9 +5416,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110271202021027 @@ -5357,6 +5442,11 @@ If $Sum12020110271202021027TextID != "" Then Var $Sum12020110271202021027TextValue = "" EndIf + If $Sum12020110271202021027TextValue = "" Then + If $Sum12020110271202021027TextID = "" Then + Var $Sum12020110271202021027TextID = "000013" + EndIf + EndIf EndIf @@ -5685,9 +5775,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002812020200281202030028 @@ -5710,6 +5801,11 @@ If $Sum120201002812020200281202030028TextID != "" Then Var $Sum120201002812020200281202030028TextValue = "" EndIf + If $Sum120201002812020200281202030028TextValue = "" Then + If $Sum120201002812020200281202030028TextID = "" Then + Var $Sum120201002812020200281202030028TextID = "000013" + EndIf + EndIf EndIf @@ -6038,9 +6134,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101003112010200311201030031 @@ -6063,6 +6160,11 @@ If $Sum120101003112010200311201030031TextID != "" Then Var $Sum120101003112010200311201030031TextValue = "" EndIf + If $Sum120101003112010200311201030031TextValue = "" Then + If $Sum120101003112010200311201030031TextID = "" Then + Var $Sum120101003112010200311201030031TextID = "000013" + EndIf + EndIf EndIf @@ -6391,9 +6493,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101003112210200311221030031 @@ -6416,6 +6519,11 @@ If $Sum122101003112210200311221030031TextID != "" Then Var $Sum122101003112210200311221030031TextValue = "" EndIf + If $Sum122101003112210200311221030031TextValue = "" Then + If $Sum122101003112210200311221030031TextID = "" Then + Var $Sum122101003112210200311221030031TextID = "000013" + EndIf + EndIf EndIf @@ -6740,9 +6848,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020062 @@ -6765,6 +6874,11 @@ If $Sum1201020062TextID != "" Then Var $Sum1201020062TextValue = "" EndIf + If $Sum1201020062TextValue = "" Then + If $Sum1201020062TextID = "" Then + Var $Sum1201020062TextID = "000013" + EndIf + EndIf EndIf @@ -7089,9 +7203,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020062 @@ -7114,6 +7229,11 @@ If $Sum1221020062TextID != "" Then Var $Sum1221020062TextValue = "" EndIf + If $Sum1221020062TextValue = "" Then + If $Sum1221020062TextID = "" Then + Var $Sum1221020062TextID = "000013" + EndIf + EndIf EndIf @@ -7438,9 +7558,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020055 @@ -7463,6 +7584,11 @@ If $Sum1202020055TextID != "" Then Var $Sum1202020055TextValue = "" EndIf + If $Sum1202020055TextValue = "" Then + If $Sum1202020055TextID = "" Then + Var $Sum1202020055TextID = "000013" + EndIf + EndIf EndIf @@ -7791,9 +7917,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003712020200371202030037 @@ -7816,6 +7943,11 @@ If $Sum120201003712020200371202030037TextID != "" Then Var $Sum120201003712020200371202030037TextValue = "" EndIf + If $Sum120201003712020200371202030037TextValue = "" Then + If $Sum120201003712020200371202030037TextID = "" Then + Var $Sum120201003712020200371202030037TextID = "000013" + EndIf + EndIf EndIf @@ -8144,9 +8276,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020110371202021037 @@ -8169,6 +8302,11 @@ If $Sum12020110371202021037TextID != "" Then Var $Sum12020110371202021037TextValue = "" EndIf + If $Sum12020110371202021037TextValue = "" Then + If $Sum12020110371202021037TextID = "" Then + Var $Sum12020110371202021037TextID = "000013" + EndIf + EndIf EndIf @@ -8493,9 +8631,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030043 @@ -8518,6 +8657,11 @@ If $Sum1202030043TextID != "" Then Var $Sum1202030043TextValue = "" EndIf + If $Sum1202030043TextValue = "" Then + If $Sum1202030043TextID = "" Then + Var $Sum1202030043TextID = "000013" + EndIf + EndIf EndIf @@ -8842,9 +8986,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050052 @@ -8867,6 +9012,11 @@ If $Sum1299050052TextID != "" Then Var $Sum1299050052TextValue = "" EndIf + If $Sum1299050052TextValue = "" Then + If $Sum1299050052TextID = "" Then + Var $Sum1299050052TextID = "000013" + EndIf + EndIf EndIf @@ -9195,9 +9345,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum129901004212990200441299030046 @@ -9220,6 +9371,11 @@ If $Sum129901004212990200441299030046TextID != "" Then Var $Sum129901004212990200441299030046TextValue = "" EndIf + If $Sum129901004212990200441299030046TextValue = "" Then + If $Sum129901004212990200441299030046TextID = "" Then + Var $Sum129901004212990200441299030046TextID = "000013" + EndIf + EndIf EndIf @@ -9548,9 +9704,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum129901004312990200451299030047 @@ -9573,6 +9730,11 @@ If $Sum129901004312990200451299030047TextID != "" Then Var $Sum129901004312990200451299030047TextValue = "" EndIf + If $Sum129901004312990200451299030047TextValue = "" Then + If $Sum129901004312990200451299030047TextID = "" Then + Var $Sum129901004312990200451299030047TextID = "000013" + EndIf + EndIf EndIf @@ -9901,9 +10063,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12990100491299020050 @@ -9926,6 +10089,11 @@ If $Sum12990100491299020050TextID != "" Then Var $Sum12990100491299020050TextValue = "" EndIf + If $Sum12990100491299020050TextValue = "" Then + If $Sum12990100491299020050TextID = "" Then + Var $Sum12990100491299020050TextID = "000013" + EndIf + EndIf EndIf @@ -10250,9 +10418,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050051 @@ -10275,6 +10444,11 @@ If $Sum1299050051TextID != "" Then Var $Sum1299050051TextValue = "" EndIf + If $Sum1299050051TextValue = "" Then + If $Sum1299050051TextID = "" Then + Var $Sum1299050051TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_wednesday_melon.lxml b/inter/tha/xml/multi/page_catalog_group_pro_wednesday_melon.lxml index cfd2576a..ab6020ac 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_wednesday_melon.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_wednesday_melon.lxml @@ -405,9 +405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002212030200221203030022 @@ -430,6 +431,11 @@ If $Sum120301002212030200221203030022TextID != "" Then Var $Sum120301002212030200221203030022TextValue = "" EndIf + If $Sum120301002212030200221203030022TextValue = "" Then + If $Sum120301002212030200221203030022TextID = "" Then + Var $Sum120301002212030200221203030022TextID = "000013" + EndIf + EndIf EndIf @@ -758,9 +764,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100391201020039 @@ -783,6 +790,11 @@ If $Sum12010100391201020039TextID != "" Then Var $Sum12010100391201020039TextValue = "" EndIf + If $Sum12010100391201020039TextValue = "" Then + If $Sum12010100391201020039TextID = "" Then + Var $Sum12010100391201020039TextID = "000013" + EndIf + EndIf EndIf @@ -1111,9 +1123,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100391221020039 @@ -1136,6 +1149,11 @@ If $Sum12210100391221020039TextID != "" Then Var $Sum12210100391221020039TextValue = "" EndIf + If $Sum12210100391221020039TextValue = "" Then + If $Sum12210100391221020039TextID = "" Then + Var $Sum12210100391221020039TextID = "000013" + EndIf + EndIf EndIf @@ -1460,9 +1478,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030028 @@ -1485,6 +1504,11 @@ If $Sum1203030028TextID != "" Then Var $Sum1203030028TextValue = "" EndIf + If $Sum1203030028TextValue = "" Then + If $Sum1203030028TextID = "" Then + Var $Sum1203030028TextID = "000013" + EndIf + EndIf EndIf @@ -1809,9 +1833,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020044 @@ -1834,6 +1859,11 @@ If $Sum1205020044TextID != "" Then Var $Sum1205020044TextValue = "" EndIf + If $Sum1205020044TextValue = "" Then + If $Sum1205020044TextID = "" Then + Var $Sum1205020044TextID = "000013" + EndIf + EndIf EndIf @@ -2158,9 +2188,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200471205030047 @@ -2183,6 +2214,11 @@ If $Sum12050200471205030047TextID != "" Then Var $Sum12050200471205030047TextValue = "" EndIf + If $Sum12050200471205030047TextValue = "" Then + If $Sum12050200471205030047TextID = "" Then + Var $Sum12050200471205030047TextID = "000013" + EndIf + EndIf EndIf @@ -2507,9 +2543,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201051205030105 @@ -2532,6 +2569,11 @@ If $Sum12050201051205030105TextID != "" Then Var $Sum12050201051205030105TextValue = "" EndIf + If $Sum12050201051205030105TextValue = "" Then + If $Sum12050201051205030105TextID = "" Then + Var $Sum12050201051205030105TextID = "000013" + EndIf + EndIf EndIf @@ -2856,9 +2898,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020011 @@ -2881,6 +2924,11 @@ If $Sum1299020011TextID != "" Then Var $Sum1299020011TextValue = "" EndIf + If $Sum1299020011TextValue = "" Then + If $Sum1299020011TextID = "" Then + Var $Sum1299020011TextID = "000013" + EndIf + EndIf EndIf @@ -3205,9 +3253,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020013 @@ -3230,6 +3279,11 @@ If $Sum1299020013TextID != "" Then Var $Sum1299020013TextValue = "" EndIf + If $Sum1299020013TextValue = "" Then + If $Sum1299020013TextID = "" Then + Var $Sum1299020013TextID = "000013" + EndIf + EndIf EndIf @@ -3554,9 +3608,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020014 @@ -3579,6 +3634,11 @@ If $Sum1299020014TextID != "" Then Var $Sum1299020014TextValue = "" EndIf + If $Sum1299020014TextValue = "" Then + If $Sum1299020014TextID = "" Then + Var $Sum1299020014TextID = "000013" + EndIf + EndIf EndIf @@ -3903,9 +3963,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020015 @@ -3928,6 +3989,11 @@ If $Sum1299020015TextID != "" Then Var $Sum1299020015TextValue = "" EndIf + If $Sum1299020015TextValue = "" Then + If $Sum1299020015TextID = "" Then + Var $Sum1299020015TextID = "000013" + EndIf + EndIf EndIf @@ -4252,9 +4318,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020016 @@ -4277,6 +4344,11 @@ If $Sum1299020016TextID != "" Then Var $Sum1299020016TextValue = "" EndIf + If $Sum1299020016TextValue = "" Then + If $Sum1299020016TextID = "" Then + Var $Sum1299020016TextID = "000013" + EndIf + EndIf EndIf @@ -4601,9 +4673,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020018 @@ -4626,6 +4699,11 @@ If $Sum1299020018TextID != "" Then Var $Sum1299020018TextValue = "" EndIf + If $Sum1299020018TextValue = "" Then + If $Sum1299020018TextID = "" Then + Var $Sum1299020018TextID = "000013" + EndIf + EndIf EndIf @@ -4950,9 +5028,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030016 @@ -4975,6 +5054,11 @@ If $Sum1299030016TextID != "" Then Var $Sum1299030016TextValue = "" EndIf + If $Sum1299030016TextValue = "" Then + If $Sum1299030016TextID = "" Then + Var $Sum1299030016TextID = "000013" + EndIf + EndIf EndIf @@ -5299,9 +5383,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -5324,6 +5409,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount.lxml b/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount.lxml index 7cc39ae8..cbda9a04 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -429,6 +430,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -778,6 +785,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -1127,6 +1140,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -1476,6 +1495,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030058 @@ -1825,6 +1850,11 @@ If $Sum1203030058TextID != "" Then Var $Sum1203030058TextValue = "" EndIf + If $Sum1203030058TextValue = "" Then + If $Sum1203030058TextID = "" Then + Var $Sum1203030058TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030011 @@ -2174,6 +2205,11 @@ If $Sum1203030011TextID != "" Then Var $Sum1203030011TextValue = "" EndIf + If $Sum1203030011TextValue = "" Then + If $Sum1203030011TextID = "" Then + Var $Sum1203030011TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030059 @@ -2523,6 +2560,11 @@ If $Sum1203030059TextID != "" Then Var $Sum1203030059TextValue = "" EndIf + If $Sum1203030059TextValue = "" Then + If $Sum1203030059TextID = "" Then + Var $Sum1203030059TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030062 @@ -2872,6 +2915,11 @@ If $Sum1202030062TextID != "" Then Var $Sum1202030062TextValue = "" EndIf + If $Sum1202030062TextValue = "" Then + If $Sum1202030062TextID = "" Then + Var $Sum1202030062TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030004 @@ -3221,6 +3270,11 @@ If $Sum1203030004TextID != "" Then Var $Sum1203030004TextValue = "" EndIf + If $Sum1203030004TextValue = "" Then + If $Sum1203030004TextID = "" Then + Var $Sum1203030004TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030010 @@ -3570,6 +3625,11 @@ If $Sum1203030010TextID != "" Then Var $Sum1203030010TextValue = "" EndIf + If $Sum1203030010TextValue = "" Then + If $Sum1203030010TextID = "" Then + Var $Sum1203030010TextID = "000013" + EndIf + EndIf EndIf @@ -3894,9 +3954,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030032 @@ -3919,6 +3980,11 @@ If $Sum1203030032TextID != "" Then Var $Sum1203030032TextValue = "" EndIf + If $Sum1203030032TextValue = "" Then + If $Sum1203030032TextID = "" Then + Var $Sum1203030032TextID = "000013" + EndIf + EndIf EndIf @@ -4243,9 +4309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030067 @@ -4268,6 +4335,11 @@ If $Sum1203030067TextID != "" Then Var $Sum1203030067TextValue = "" EndIf + If $Sum1203030067TextValue = "" Then + If $Sum1203030067TextID = "" Then + Var $Sum1203030067TextID = "000013" + EndIf + EndIf EndIf @@ -4592,9 +4664,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030065 @@ -4617,6 +4690,11 @@ If $Sum1203030065TextID != "" Then Var $Sum1203030065TextValue = "" EndIf + If $Sum1203030065TextValue = "" Then + If $Sum1203030065TextID = "" Then + Var $Sum1203030065TextID = "000013" + EndIf + EndIf EndIf @@ -4941,9 +5019,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020041 @@ -4966,6 +5045,11 @@ If $Sum1201020041TextID != "" Then Var $Sum1201020041TextValue = "" EndIf + If $Sum1201020041TextValue = "" Then + If $Sum1201020041TextID = "" Then + Var $Sum1201020041TextID = "000013" + EndIf + EndIf EndIf @@ -5290,9 +5374,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020041 @@ -5315,6 +5400,11 @@ If $Sum1221020041TextID != "" Then Var $Sum1221020041TextValue = "" EndIf + If $Sum1221020041TextValue = "" Then + If $Sum1221020041TextID = "" Then + Var $Sum1221020041TextID = "000013" + EndIf + EndIf EndIf @@ -5639,9 +5729,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030127 @@ -5664,6 +5755,11 @@ If $Sum1205030127TextID != "" Then Var $Sum1205030127TextValue = "" EndIf + If $Sum1205030127TextValue = "" Then + If $Sum1205030127TextID = "" Then + Var $Sum1205030127TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount_event_on.lxml b/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount_event_on.lxml index ef31d5f7..c7f90969 100644 --- a/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount_event_on.lxml +++ b/inter/tha/xml/multi/page_catalog_group_pro_weekday_discount_event_on.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030074 @@ -429,6 +430,11 @@ If $Sum1299030074TextID != "" Then Var $Sum1299030074TextValue = "" EndIf + If $Sum1299030074TextValue = "" Then + If $Sum1299030074TextID = "" Then + Var $Sum1299030074TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030075 @@ -778,6 +785,11 @@ If $Sum1299030075TextID != "" Then Var $Sum1299030075TextValue = "" EndIf + If $Sum1299030075TextValue = "" Then + If $Sum1299030075TextID = "" Then + Var $Sum1299030075TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030076 @@ -1127,6 +1140,11 @@ If $Sum1299030076TextID != "" Then Var $Sum1299030076TextValue = "" EndIf + If $Sum1299030076TextValue = "" Then + If $Sum1299030076TextID = "" Then + Var $Sum1299030076TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030077 @@ -1476,6 +1495,11 @@ If $Sum1299030077TextID != "" Then Var $Sum1299030077TextValue = "" EndIf + If $Sum1299030077TextValue = "" Then + If $Sum1299030077TextID = "" Then + Var $Sum1299030077TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030058 @@ -1825,6 +1850,11 @@ If $Sum1299030058TextID != "" Then Var $Sum1299030058TextValue = "" EndIf + If $Sum1299030058TextValue = "" Then + If $Sum1299030058TextID = "" Then + Var $Sum1299030058TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030011 @@ -2174,6 +2205,11 @@ If $Sum1299030011TextID != "" Then Var $Sum1299030011TextValue = "" EndIf + If $Sum1299030011TextValue = "" Then + If $Sum1299030011TextID = "" Then + Var $Sum1299030011TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030059 @@ -2523,6 +2560,11 @@ If $Sum1299030059TextID != "" Then Var $Sum1299030059TextValue = "" EndIf + If $Sum1299030059TextValue = "" Then + If $Sum1299030059TextID = "" Then + Var $Sum1299030059TextID = "000013" + EndIf + EndIf EndIf @@ -2847,9 +2889,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030062 @@ -2872,6 +2915,11 @@ If $Sum1299030062TextID != "" Then Var $Sum1299030062TextValue = "" EndIf + If $Sum1299030062TextValue = "" Then + If $Sum1299030062TextID = "" Then + Var $Sum1299030062TextID = "000013" + EndIf + EndIf EndIf @@ -3196,9 +3244,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030004 @@ -3221,6 +3270,11 @@ If $Sum1299030004TextID != "" Then Var $Sum1299030004TextValue = "" EndIf + If $Sum1299030004TextValue = "" Then + If $Sum1299030004TextID = "" Then + Var $Sum1299030004TextID = "000013" + EndIf + EndIf EndIf @@ -3545,9 +3599,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030010 @@ -3570,6 +3625,11 @@ If $Sum1299030010TextID != "" Then Var $Sum1299030010TextValue = "" EndIf + If $Sum1299030010TextValue = "" Then + If $Sum1299030010TextID = "" Then + Var $Sum1299030010TextID = "000013" + EndIf + EndIf EndIf @@ -3894,9 +3954,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030032 @@ -3919,6 +3980,11 @@ If $Sum1299030032TextID != "" Then Var $Sum1299030032TextValue = "" EndIf + If $Sum1299030032TextValue = "" Then + If $Sum1299030032TextID = "" Then + Var $Sum1299030032TextID = "000013" + EndIf + EndIf EndIf @@ -4243,9 +4309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030067 @@ -4268,6 +4335,11 @@ If $Sum1299030067TextID != "" Then Var $Sum1299030067TextValue = "" EndIf + If $Sum1299030067TextValue = "" Then + If $Sum1299030067TextID = "" Then + Var $Sum1299030067TextID = "000013" + EndIf + EndIf EndIf @@ -4592,9 +4664,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030065 @@ -4617,6 +4690,11 @@ If $Sum1299030065TextID != "" Then Var $Sum1299030065TextValue = "" EndIf + If $Sum1299030065TextValue = "" Then + If $Sum1299030065TextID = "" Then + Var $Sum1299030065TextID = "000013" + EndIf + EndIf EndIf @@ -4941,9 +5019,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030078 @@ -4966,6 +5045,11 @@ If $Sum1299030078TextID != "" Then Var $Sum1299030078TextValue = "" EndIf + If $Sum1299030078TextValue = "" Then + If $Sum1299030078TextID = "" Then + Var $Sum1299030078TextID = "000013" + EndIf + EndIf EndIf @@ -5290,9 +5374,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030079 @@ -5315,6 +5400,11 @@ If $Sum1299030079TextID != "" Then Var $Sum1299030079TextValue = "" EndIf + If $Sum1299030079TextValue = "" Then + If $Sum1299030079TextID = "" Then + Var $Sum1299030079TextID = "000013" + EndIf + EndIf EndIf @@ -5639,9 +5729,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030127 @@ -5664,6 +5755,11 @@ If $Sum1299030127TextID != "" Then Var $Sum1299030127TextValue = "" EndIf + If $Sum1299030127TextValue = "" Then + If $Sum1299030127TextID = "" Then + Var $Sum1299030127TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_recommend.lxml b/inter/tha/xml/multi/page_catalog_group_recommend.lxml index f6682035..505b9072 100644 --- a/inter/tha/xml/multi/page_catalog_group_recommend.lxml +++ b/inter/tha/xml/multi/page_catalog_group_recommend.lxml @@ -524,9 +524,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201411205030141 @@ -549,6 +550,11 @@ If $Sum12050201411205030141TextID != "" Then Var $Sum12050201411205030141TextValue = "" EndIf + If $Sum12050201411205030141TextValue = "" Then + If $Sum12050201411205030141TextID = "" Then + Var $Sum12050201411205030141TextID = "000013" + EndIf + EndIf EndIf @@ -873,9 +879,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201371205030137 @@ -898,6 +905,11 @@ If $Sum12050201371205030137TextID != "" Then Var $Sum12050201371205030137TextValue = "" EndIf + If $Sum12050201371205030137TextValue = "" Then + If $Sum12050201371205030137TextID = "" Then + Var $Sum12050201371205030137TextID = "000013" + EndIf + EndIf EndIf @@ -1222,9 +1234,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201391205030139 @@ -1247,6 +1260,11 @@ If $Sum12050201391205030139TextID != "" Then Var $Sum12050201391205030139TextValue = "" EndIf + If $Sum12050201391205030139TextValue = "" Then + If $Sum12050201391205030139TextID = "" Then + Var $Sum12050201391205030139TextID = "000013" + EndIf + EndIf EndIf @@ -1571,9 +1589,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201361205030136 @@ -1596,6 +1615,11 @@ If $Sum12050201361205030136TextID != "" Then Var $Sum12050201361205030136TextValue = "" EndIf + If $Sum12050201361205030136TextValue = "" Then + If $Sum12050201361205030136TextID = "" Then + Var $Sum12050201361205030136TextID = "000013" + EndIf + EndIf EndIf @@ -1924,9 +1948,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003912020200391202030039 @@ -1949,6 +1974,11 @@ If $Sum120201003912020200391202030039TextID != "" Then Var $Sum120201003912020200391202030039TextValue = "" EndIf + If $Sum120201003912020200391202030039TextValue = "" Then + If $Sum120201003912020200391202030039TextID = "" Then + Var $Sum120201003912020200391202030039TextID = "000013" + EndIf + EndIf EndIf @@ -2273,9 +2303,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201431205030143 @@ -2298,6 +2329,11 @@ If $Sum12050201431205030143TextID != "" Then Var $Sum12050201431205030143TextValue = "" EndIf + If $Sum12050201431205030143TextValue = "" Then + If $Sum12050201431205030143TextID = "" Then + Var $Sum12050201431205030143TextID = "000013" + EndIf + EndIf EndIf @@ -2622,9 +2658,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200671203030067 @@ -2647,6 +2684,11 @@ If $Sum12030200671203030067TextID != "" Then Var $Sum12030200671203030067TextValue = "" EndIf + If $Sum12030200671203030067TextValue = "" Then + If $Sum12030200671203030067TextID = "" Then + Var $Sum12030200671203030067TextID = "000013" + EndIf + EndIf EndIf @@ -2975,9 +3017,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301001912030200191203030019 @@ -3000,6 +3043,11 @@ If $Sum120301001912030200191203030019TextID != "" Then Var $Sum120301001912030200191203030019TextValue = "" EndIf + If $Sum120301001912030200191203030019TextValue = "" Then + If $Sum120301001912030200191203030019TextID = "" Then + Var $Sum120301001912030200191203030019TextID = "000013" + EndIf + EndIf EndIf @@ -3324,9 +3372,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020133 @@ -3349,6 +3398,11 @@ If $Sum1205020133TextID != "" Then Var $Sum1205020133TextValue = "" EndIf + If $Sum1205020133TextValue = "" Then + If $Sum1205020133TextID = "" Then + Var $Sum1205020133TextID = "000013" + EndIf + EndIf EndIf @@ -3673,9 +3727,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -3698,6 +3753,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -4022,9 +4082,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -4047,6 +4108,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -4371,9 +4437,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -4396,6 +4463,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -4720,9 +4792,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -4745,6 +4818,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf @@ -5069,9 +5147,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020041 @@ -5094,6 +5173,11 @@ If $Sum1201020041TextID != "" Then Var $Sum1201020041TextValue = "" EndIf + If $Sum1201020041TextValue = "" Then + If $Sum1201020041TextID = "" Then + Var $Sum1201020041TextID = "000013" + EndIf + EndIf EndIf @@ -5418,9 +5502,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030079 @@ -5443,6 +5528,11 @@ If $Sum1299030079TextID != "" Then Var $Sum1299030079TextValue = "" EndIf + If $Sum1299030079TextValue = "" Then + If $Sum1299030079TextID = "" Then + Var $Sum1299030079TextID = "000013" + EndIf + EndIf EndIf @@ -5767,9 +5857,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030092 @@ -5792,6 +5883,11 @@ If $Sum1205030092TextID != "" Then Var $Sum1205030092TextValue = "" EndIf + If $Sum1205030092TextValue = "" Then + If $Sum1205030092TextID = "" Then + Var $Sum1205030092TextID = "000013" + EndIf + EndIf EndIf @@ -6116,9 +6212,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200581203030058 @@ -6141,6 +6238,11 @@ If $Sum12030200581203030058TextID != "" Then Var $Sum12030200581203030058TextValue = "" EndIf + If $Sum12030200581203030058TextValue = "" Then + If $Sum12030200581203030058TextID = "" Then + Var $Sum12030200581203030058TextID = "000013" + EndIf + EndIf EndIf @@ -6465,9 +6567,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030066 @@ -6490,6 +6593,11 @@ If $Sum1299030066TextID != "" Then Var $Sum1299030066TextValue = "" EndIf + If $Sum1299030066TextValue = "" Then + If $Sum1299030066TextID = "" Then + Var $Sum1299030066TextID = "000013" + EndIf + EndIf EndIf @@ -6814,9 +6922,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020003 @@ -6839,6 +6948,11 @@ If $Sum1299020003TextID != "" Then Var $Sum1299020003TextValue = "" EndIf + If $Sum1299020003TextValue = "" Then + If $Sum1299020003TextID = "" Then + Var $Sum1299020003TextID = "000013" + EndIf + EndIf EndIf @@ -7163,9 +7277,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030009 @@ -7188,6 +7303,11 @@ If $Sum1203030009TextID != "" Then Var $Sum1203030009TextValue = "" EndIf + If $Sum1203030009TextValue = "" Then + If $Sum1203030009TextID = "" Then + Var $Sum1203030009TextID = "000013" + EndIf + EndIf EndIf @@ -7516,9 +7636,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000212030200021203030002 @@ -7541,6 +7662,11 @@ If $Sum120301000212030200021203030002TextID != "" Then Var $Sum120301000212030200021203030002TextValue = "" EndIf + If $Sum120301000212030200021203030002TextValue = "" Then + If $Sum120301000212030200021203030002TextID = "" Then + Var $Sum120301000212030200021203030002TextID = "000013" + EndIf + EndIf EndIf @@ -7865,9 +7991,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -7890,6 +8017,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -8218,9 +8350,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002412030200241203030024 @@ -8243,6 +8376,11 @@ If $Sum120301002412030200241203030024TextID != "" Then Var $Sum120301002412030200241203030024TextValue = "" EndIf + If $Sum120301002412030200241203030024TextValue = "" Then + If $Sum120301002412030200241203030024TextID = "" Then + Var $Sum120301002412030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -8567,9 +8705,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030041 @@ -8592,6 +8731,11 @@ If $Sum1203030041TextID != "" Then Var $Sum1203030041TextValue = "" EndIf + If $Sum1203030041TextValue = "" Then + If $Sum1203030041TextID = "" Then + Var $Sum1203030041TextID = "000013" + EndIf + EndIf EndIf @@ -8916,9 +9060,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030042 @@ -8941,6 +9086,11 @@ If $Sum1203030042TextID != "" Then Var $Sum1203030042TextValue = "" EndIf + If $Sum1203030042TextValue = "" Then + If $Sum1203030042TextID = "" Then + Var $Sum1203030042TextID = "000013" + EndIf + EndIf EndIf @@ -9265,9 +9415,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030043 @@ -9290,6 +9441,11 @@ If $Sum1203030043TextID != "" Then Var $Sum1203030043TextValue = "" EndIf + If $Sum1203030043TextValue = "" Then + If $Sum1203030043TextID = "" Then + Var $Sum1203030043TextID = "000013" + EndIf + EndIf EndIf @@ -9614,9 +9770,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030061 @@ -9639,6 +9796,11 @@ If $Sum1203030061TextID != "" Then Var $Sum1203030061TextValue = "" EndIf + If $Sum1203030061TextValue = "" Then + If $Sum1203030061TextID = "" Then + Var $Sum1203030061TextID = "000013" + EndIf + EndIf EndIf @@ -9963,9 +10125,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200261202630026 @@ -9988,6 +10151,11 @@ If $Sum12026200261202630026TextID != "" Then Var $Sum12026200261202630026TextValue = "" EndIf + If $Sum12026200261202630026TextValue = "" Then + If $Sum12026200261202630026TextID = "" Then + Var $Sum12026200261202630026TextID = "000013" + EndIf + EndIf EndIf @@ -10312,9 +10480,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200391202630039 @@ -10337,6 +10506,11 @@ If $Sum12026200391202630039TextID != "" Then Var $Sum12026200391202630039TextValue = "" EndIf + If $Sum12026200391202630039TextValue = "" Then + If $Sum12026200391202630039TextID = "" Then + Var $Sum12026200391202630039TextID = "000013" + EndIf + EndIf EndIf @@ -10661,9 +10835,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200471202630047 @@ -10686,6 +10861,11 @@ If $Sum12026200471202630047TextID != "" Then Var $Sum12026200471202630047TextValue = "" EndIf + If $Sum12026200471202630047TextValue = "" Then + If $Sum12026200471202630047TextID = "" Then + Var $Sum12026200471202630047TextID = "000013" + EndIf + EndIf EndIf @@ -11010,9 +11190,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200251202630025 @@ -11035,6 +11216,11 @@ If $Sum12026200251202630025TextID != "" Then Var $Sum12026200251202630025TextValue = "" EndIf + If $Sum12026200251202630025TextValue = "" Then + If $Sum12026200251202630025TextID = "" Then + Var $Sum12026200251202630025TextID = "000013" + EndIf + EndIf EndIf @@ -11363,9 +11549,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $SumTAOTIM1241030028 @@ -11388,6 +11575,11 @@ If $SumTAOTIM1241030028TextID != "" Then Var $SumTAOTIM1241030028TextValue = "" EndIf + If $SumTAOTIM1241030028TextValue = "" Then + If $SumTAOTIM1241030028TextID = "" Then + Var $SumTAOTIM1241030028TextID = "000013" + EndIf + EndIf EndIf @@ -11712,9 +11904,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200111203830011 @@ -11737,6 +11930,11 @@ If $Sum12038200111203830011TextID != "" Then Var $Sum12038200111203830011TextValue = "" EndIf + If $Sum12038200111203830011TextValue = "" Then + If $Sum12038200111203830011TextID = "" Then + Var $Sum12038200111203830011TextID = "000013" + EndIf + EndIf EndIf @@ -12061,9 +12259,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200411203830041 @@ -12086,6 +12285,11 @@ If $Sum12038200411203830041TextID != "" Then Var $Sum12038200411203830041TextValue = "" EndIf + If $Sum12038200411203830041TextValue = "" Then + If $Sum12038200411203830041TextID = "" Then + Var $Sum12038200411203830041TextID = "000013" + EndIf + EndIf EndIf @@ -12410,9 +12614,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200421203830042 @@ -12435,6 +12640,11 @@ If $Sum12038200421203830042TextID != "" Then Var $Sum12038200421203830042TextValue = "" EndIf + If $Sum12038200421203830042TextValue = "" Then + If $Sum12038200421203830042TextID = "" Then + Var $Sum12038200421203830042TextID = "000013" + EndIf + EndIf EndIf @@ -12759,9 +12969,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200431203830043 @@ -12784,6 +12995,11 @@ If $Sum12038200431203830043TextID != "" Then Var $Sum12038200431203830043TextValue = "" EndIf + If $Sum12038200431203830043TextValue = "" Then + If $Sum12038200431203830043TextID = "" Then + Var $Sum12038200431203830043TextID = "000013" + EndIf + EndIf EndIf @@ -13112,9 +13328,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003712020200371202030037 @@ -13137,6 +13354,11 @@ If $Sum120201003712020200371202030037TextID != "" Then Var $Sum120201003712020200371202030037TextValue = "" EndIf + If $Sum120201003712020200371202030037TextValue = "" Then + If $Sum120201003712020200371202030037TextID = "" Then + Var $Sum120201003712020200371202030037TextID = "000013" + EndIf + EndIf EndIf @@ -13465,9 +13687,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002612020200261202030026 @@ -13490,6 +13713,11 @@ If $Sum120201002612020200261202030026TextID != "" Then Var $Sum120201002612020200261202030026TextValue = "" EndIf + If $Sum120201002612020200261202030026TextValue = "" Then + If $Sum120201002612020200261202030026TextID = "" Then + Var $Sum120201002612020200261202030026TextID = "000013" + EndIf + EndIf EndIf @@ -13818,9 +14046,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002212030200221203030022 @@ -13843,6 +14072,11 @@ If $Sum120301002212030200221203030022TextID != "" Then Var $Sum120301002212030200221203030022TextValue = "" EndIf + If $Sum120301002212030200221203030022TextValue = "" Then + If $Sum120301002212030200221203030022TextID = "" Then + Var $Sum120301002212030200221203030022TextID = "000013" + EndIf + EndIf EndIf @@ -14171,9 +14405,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100031201020001 @@ -14196,6 +14431,11 @@ If $Sum12010100031201020001TextID != "" Then Var $Sum12010100031201020001TextValue = "" EndIf + If $Sum12010100031201020001TextValue = "" Then + If $Sum12010100031201020001TextID = "" Then + Var $Sum12010100031201020001TextID = "000013" + EndIf + EndIf EndIf @@ -14524,9 +14764,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100031221020001 @@ -14549,6 +14790,11 @@ If $Sum12210100031221020001TextID != "" Then Var $Sum12210100031221020001TextValue = "" EndIf + If $Sum12210100031221020001TextValue = "" Then + If $Sum12210100031221020001TextID = "" Then + Var $Sum12210100031221020001TextID = "000013" + EndIf + EndIf EndIf @@ -14877,9 +15123,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100031221020001 @@ -14902,6 +15149,11 @@ If $Sum12210100031221020001TextID != "" Then Var $Sum12210100031221020001TextValue = "" EndIf + If $Sum12210100031221020001TextValue = "" Then + If $Sum12210100031221020001TextID = "" Then + Var $Sum12210100031221020001TextID = "000013" + EndIf + EndIf EndIf @@ -15230,9 +15482,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100811201020081 @@ -15255,6 +15508,11 @@ If $Sum12010100811201020081TextID != "" Then Var $Sum12010100811201020081TextValue = "" EndIf + If $Sum12010100811201020081TextValue = "" Then + If $Sum12010100811201020081TextID = "" Then + Var $Sum12010100811201020081TextID = "000013" + EndIf + EndIf EndIf @@ -15583,9 +15841,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100811221020081 @@ -15608,6 +15867,11 @@ If $Sum12210100811221020081TextID != "" Then Var $Sum12210100811221020081TextValue = "" EndIf + If $Sum12210100811221020081TextValue = "" Then + If $Sum12210100811221020081TextID = "" Then + Var $Sum12210100811221020081TextID = "000013" + EndIf + EndIf EndIf @@ -15936,9 +16200,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100141201020011 @@ -15961,6 +16226,11 @@ If $Sum12010100141201020011TextID != "" Then Var $Sum12010100141201020011TextValue = "" EndIf + If $Sum12010100141201020011TextValue = "" Then + If $Sum12010100141201020011TextID = "" Then + Var $Sum12010100141201020011TextID = "000013" + EndIf + EndIf EndIf @@ -16289,9 +16559,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100191201020019 @@ -16314,6 +16585,11 @@ If $Sum12010100191201020019TextID != "" Then Var $Sum12010100191201020019TextValue = "" EndIf + If $Sum12010100191201020019TextValue = "" Then + If $Sum12010100191201020019TextID = "" Then + Var $Sum12010100191201020019TextID = "000013" + EndIf + EndIf EndIf @@ -16642,9 +16918,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100211201020021 @@ -16667,6 +16944,11 @@ If $Sum12010100211201020021TextID != "" Then Var $Sum12010100211201020021TextValue = "" EndIf + If $Sum12010100211201020021TextValue = "" Then + If $Sum12010100211201020021TextID = "" Then + Var $Sum12010100211201020021TextID = "000013" + EndIf + EndIf EndIf @@ -16995,9 +17277,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100251201020025 @@ -17020,6 +17303,11 @@ If $Sum12010100251201020025TextID != "" Then Var $Sum12010100251201020025TextValue = "" EndIf + If $Sum12010100251201020025TextValue = "" Then + If $Sum12010100251201020025TextID = "" Then + Var $Sum12010100251201020025TextID = "000013" + EndIf + EndIf EndIf @@ -17348,9 +17636,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100231201020023 @@ -17373,6 +17662,11 @@ If $Sum12010100231201020023TextID != "" Then Var $Sum12010100231201020023TextValue = "" EndIf + If $Sum12010100231201020023TextValue = "" Then + If $Sum12010100231201020023TextID = "" Then + Var $Sum12010100231201020023TextID = "000013" + EndIf + EndIf EndIf @@ -17701,9 +17995,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100271201020027 @@ -17726,6 +18021,11 @@ If $Sum12010100271201020027TextID != "" Then Var $Sum12010100271201020027TextValue = "" EndIf + If $Sum12010100271201020027TextValue = "" Then + If $Sum12010100271201020027TextID = "" Then + Var $Sum12010100271201020027TextID = "000013" + EndIf + EndIf EndIf @@ -18054,9 +18354,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100321201020032 @@ -18079,6 +18380,11 @@ If $Sum12010100321201020032TextID != "" Then Var $Sum12010100321201020032TextValue = "" EndIf + If $Sum12010100321201020032TextValue = "" Then + If $Sum12010100321201020032TextID = "" Then + Var $Sum12010100321201020032TextID = "000013" + EndIf + EndIf EndIf @@ -18407,9 +18713,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100351201020035 @@ -18432,6 +18739,11 @@ If $Sum12010100351201020035TextID != "" Then Var $Sum12010100351201020035TextValue = "" EndIf + If $Sum12010100351201020035TextValue = "" Then + If $Sum12010100351201020035TextID = "" Then + Var $Sum12010100351201020035TextID = "000013" + EndIf + EndIf EndIf @@ -18760,9 +19072,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100381201020038 @@ -18785,6 +19098,11 @@ If $Sum12010100381201020038TextID != "" Then Var $Sum12010100381201020038TextValue = "" EndIf + If $Sum12010100381201020038TextValue = "" Then + If $Sum12010100381201020038TextID = "" Then + Var $Sum12010100381201020038TextID = "000013" + EndIf + EndIf EndIf @@ -19113,9 +19431,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100441201020044 @@ -19138,6 +19457,11 @@ If $Sum12010100441201020044TextID != "" Then Var $Sum12010100441201020044TextValue = "" EndIf + If $Sum12010100441201020044TextValue = "" Then + If $Sum12010100441201020044TextID = "" Then + Var $Sum12010100441201020044TextID = "000013" + EndIf + EndIf EndIf @@ -19466,9 +19790,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100471201020047 @@ -19491,6 +19816,11 @@ If $Sum12010100471201020047TextID != "" Then Var $Sum12010100471201020047TextValue = "" EndIf + If $Sum12010100471201020047TextValue = "" Then + If $Sum12010100471201020047TextID = "" Then + Var $Sum12010100471201020047TextID = "000013" + EndIf + EndIf EndIf @@ -19819,9 +20149,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100501201020050 @@ -19844,6 +20175,11 @@ If $Sum12010100501201020050TextID != "" Then Var $Sum12010100501201020050TextValue = "" EndIf + If $Sum12010100501201020050TextValue = "" Then + If $Sum12010100501201020050TextID = "" Then + Var $Sum12010100501201020050TextID = "000013" + EndIf + EndIf EndIf @@ -20172,9 +20508,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004512020200451202030046 @@ -20197,6 +20534,11 @@ If $Sum120201004512020200451202030046TextID != "" Then Var $Sum120201004512020200451202030046TextValue = "" EndIf + If $Sum120201004512020200451202030046TextValue = "" Then + If $Sum120201004512020200451202030046TextID = "" Then + Var $Sum120201004512020200451202030046TextID = "000013" + EndIf + EndIf EndIf @@ -20525,9 +20867,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004612020200461202030047 @@ -20550,6 +20893,11 @@ If $Sum120201004612020200461202030047TextID != "" Then Var $Sum120201004612020200461202030047TextValue = "" EndIf + If $Sum120201004612020200461202030047TextValue = "" Then + If $Sum120201004612020200461202030047TextID = "" Then + Var $Sum120201004612020200461202030047TextID = "000013" + EndIf + EndIf EndIf @@ -20878,9 +21226,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000112030200011203030001 @@ -20903,6 +21252,11 @@ If $Sum120301000112030200011203030001TextID != "" Then Var $Sum120301000112030200011203030001TextValue = "" EndIf + If $Sum120301000112030200011203030001TextValue = "" Then + If $Sum120301000112030200011203030001TextID = "" Then + Var $Sum120301000112030200011203030001TextID = "000013" + EndIf + EndIf EndIf @@ -21227,9 +21581,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200061203030006 @@ -21252,6 +21607,11 @@ If $Sum12030200061203030006TextID != "" Then Var $Sum12030200061203030006TextValue = "" EndIf + If $Sum12030200061203030006TextValue = "" Then + If $Sum12030200061203030006TextID = "" Then + Var $Sum12030200061203030006TextID = "000013" + EndIf + EndIf EndIf @@ -21576,9 +21936,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030011 @@ -21601,6 +21962,11 @@ If $Sum1203030011TextID != "" Then Var $Sum1203030011TextValue = "" EndIf + If $Sum1203030011TextValue = "" Then + If $Sum1203030011TextID = "" Then + Var $Sum1203030011TextID = "000013" + EndIf + EndIf EndIf @@ -21925,9 +22291,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200071205030007 @@ -21950,6 +22317,11 @@ If $Sum12050200071205030007TextID != "" Then Var $Sum12050200071205030007TextValue = "" EndIf + If $Sum12050200071205030007TextValue = "" Then + If $Sum12050200071205030007TextID = "" Then + Var $Sum12050200071205030007TextID = "000013" + EndIf + EndIf EndIf @@ -22274,9 +22646,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200461205030046 @@ -22299,6 +22672,11 @@ If $Sum12050200461205030046TextID != "" Then Var $Sum12050200461205030046TextValue = "" EndIf + If $Sum12050200461205030046TextValue = "" Then + If $Sum12050200461205030046TextID = "" Then + Var $Sum12050200461205030046TextID = "000013" + EndIf + EndIf EndIf @@ -22623,9 +23001,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200351205030035 @@ -22648,6 +23027,11 @@ If $Sum12050200351205030035TextID != "" Then Var $Sum12050200351205030035TextValue = "" EndIf + If $Sum12050200351205030035TextValue = "" Then + If $Sum12050200351205030035TextID = "" Then + Var $Sum12050200351205030035TextID = "000013" + EndIf + EndIf EndIf @@ -22972,9 +23356,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200251205030025 @@ -22997,6 +23382,11 @@ If $Sum12050200251205030025TextID != "" Then Var $Sum12050200251205030025TextValue = "" EndIf + If $Sum12050200251205030025TextValue = "" Then + If $Sum12050200251205030025TextID = "" Then + Var $Sum12050200251205030025TextID = "000013" + EndIf + EndIf EndIf @@ -23321,9 +23711,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020081 @@ -23346,6 +23737,11 @@ If $Sum1203020081TextID != "" Then Var $Sum1203020081TextValue = "" EndIf + If $Sum1203020081TextValue = "" Then + If $Sum1203020081TextID = "" Then + Var $Sum1203020081TextID = "000013" + EndIf + EndIf EndIf @@ -23670,9 +24066,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030088 @@ -23695,6 +24092,11 @@ If $Sum1203030088TextID != "" Then Var $Sum1203030088TextValue = "" EndIf + If $Sum1203030088TextValue = "" Then + If $Sum1203030088TextID = "" Then + Var $Sum1203030088TextID = "000013" + EndIf + EndIf EndIf @@ -24019,9 +24421,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030089 @@ -24044,6 +24447,11 @@ If $Sum1203030089TextID != "" Then Var $Sum1203030089TextValue = "" EndIf + If $Sum1203030089TextValue = "" Then + If $Sum1203030089TextID = "" Then + Var $Sum1203030089TextID = "000013" + EndIf + EndIf EndIf @@ -24368,9 +24776,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020084 @@ -24393,6 +24802,11 @@ If $Sum1201020084TextID != "" Then Var $Sum1201020084TextValue = "" EndIf + If $Sum1201020084TextValue = "" Then + If $Sum1201020084TextID = "" Then + Var $Sum1201020084TextID = "000013" + EndIf + EndIf EndIf @@ -24717,9 +25131,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020084 @@ -24742,6 +25157,11 @@ If $Sum1221020084TextID != "" Then Var $Sum1221020084TextValue = "" EndIf + If $Sum1221020084TextValue = "" Then + If $Sum1221020084TextID = "" Then + Var $Sum1221020084TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_recommend_multi_pro.lxml b/inter/tha/xml/multi/page_catalog_group_recommend_multi_pro.lxml index 4233e192..4631051e 100644 --- a/inter/tha/xml/multi/page_catalog_group_recommend_multi_pro.lxml +++ b/inter/tha/xml/multi/page_catalog_group_recommend_multi_pro.lxml @@ -402,9 +402,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201411205030141 @@ -427,6 +428,11 @@ If $Sum12050201411205030141TextID != "" Then Var $Sum12050201411205030141TextValue = "" EndIf + If $Sum12050201411205030141TextValue = "" Then + If $Sum12050201411205030141TextID = "" Then + Var $Sum12050201411205030141TextID = "000013" + EndIf + EndIf EndIf @@ -751,9 +757,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201371205030137 @@ -776,6 +783,11 @@ If $Sum12050201371205030137TextID != "" Then Var $Sum12050201371205030137TextValue = "" EndIf + If $Sum12050201371205030137TextValue = "" Then + If $Sum12050201371205030137TextID = "" Then + Var $Sum12050201371205030137TextID = "000013" + EndIf + EndIf EndIf @@ -1100,9 +1112,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201391205030139 @@ -1125,6 +1138,11 @@ If $Sum12050201391205030139TextID != "" Then Var $Sum12050201391205030139TextValue = "" EndIf + If $Sum12050201391205030139TextValue = "" Then + If $Sum12050201391205030139TextID = "" Then + Var $Sum12050201391205030139TextID = "000013" + EndIf + EndIf EndIf @@ -1449,9 +1467,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201361205030136 @@ -1474,6 +1493,11 @@ If $Sum12050201361205030136TextID != "" Then Var $Sum12050201361205030136TextValue = "" EndIf + If $Sum12050201361205030136TextValue = "" Then + If $Sum12050201361205030136TextID = "" Then + Var $Sum12050201361205030136TextID = "000013" + EndIf + EndIf EndIf @@ -1802,9 +1826,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003912020200391202030039 @@ -1827,6 +1852,11 @@ If $Sum120201003912020200391202030039TextID != "" Then Var $Sum120201003912020200391202030039TextValue = "" EndIf + If $Sum120201003912020200391202030039TextValue = "" Then + If $Sum120201003912020200391202030039TextID = "" Then + Var $Sum120201003912020200391202030039TextID = "000013" + EndIf + EndIf EndIf @@ -2151,9 +2181,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050201431205030143 @@ -2176,6 +2207,11 @@ If $Sum12050201431205030143TextID != "" Then Var $Sum12050201431205030143TextValue = "" EndIf + If $Sum12050201431205030143TextValue = "" Then + If $Sum12050201431205030143TextID = "" Then + Var $Sum12050201431205030143TextID = "000013" + EndIf + EndIf EndIf @@ -2500,9 +2536,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200671203030067 @@ -2525,6 +2562,11 @@ If $Sum12030200671203030067TextID != "" Then Var $Sum12030200671203030067TextValue = "" EndIf + If $Sum12030200671203030067TextValue = "" Then + If $Sum12030200671203030067TextID = "" Then + Var $Sum12030200671203030067TextID = "000013" + EndIf + EndIf EndIf @@ -2853,9 +2895,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301001912030200191203030019 @@ -2878,6 +2921,11 @@ If $Sum120301001912030200191203030019TextID != "" Then Var $Sum120301001912030200191203030019TextValue = "" EndIf + If $Sum120301001912030200191203030019TextValue = "" Then + If $Sum120301001912030200191203030019TextID = "" Then + Var $Sum120301001912030200191203030019TextID = "000013" + EndIf + EndIf EndIf @@ -3202,9 +3250,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020133 @@ -3227,6 +3276,11 @@ If $Sum1205020133TextID != "" Then Var $Sum1205020133TextValue = "" EndIf + If $Sum1205020133TextValue = "" Then + If $Sum1205020133TextID = "" Then + Var $Sum1205020133TextID = "000013" + EndIf + EndIf EndIf @@ -3551,9 +3605,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201030078 @@ -3576,6 +3631,11 @@ If $Sum1201030078TextID != "" Then Var $Sum1201030078TextValue = "" EndIf + If $Sum1201030078TextValue = "" Then + If $Sum1201030078TextID = "" Then + Var $Sum1201030078TextID = "000013" + EndIf + EndIf EndIf @@ -3900,9 +3960,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221030078 @@ -3925,6 +3986,11 @@ If $Sum1221030078TextID != "" Then Var $Sum1221030078TextValue = "" EndIf + If $Sum1221030078TextValue = "" Then + If $Sum1221030078TextID = "" Then + Var $Sum1221030078TextID = "000013" + EndIf + EndIf EndIf @@ -4249,9 +4315,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -4274,6 +4341,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -4598,9 +4670,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -4623,6 +4696,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf @@ -4947,9 +5025,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020041 @@ -4972,6 +5051,11 @@ If $Sum1201020041TextID != "" Then Var $Sum1201020041TextValue = "" EndIf + If $Sum1201020041TextValue = "" Then + If $Sum1201020041TextID = "" Then + Var $Sum1201020041TextID = "000013" + EndIf + EndIf EndIf @@ -5296,9 +5380,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030079 @@ -5321,6 +5406,11 @@ If $Sum1299030079TextID != "" Then Var $Sum1299030079TextValue = "" EndIf + If $Sum1299030079TextValue = "" Then + If $Sum1299030079TextID = "" Then + Var $Sum1299030079TextID = "000013" + EndIf + EndIf EndIf @@ -5645,9 +5735,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205030092 @@ -5670,6 +5761,11 @@ If $Sum1205030092TextID != "" Then Var $Sum1205030092TextValue = "" EndIf + If $Sum1205030092TextValue = "" Then + If $Sum1205030092TextID = "" Then + Var $Sum1205030092TextID = "000013" + EndIf + EndIf EndIf @@ -5994,9 +6090,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200581203030058 @@ -6019,6 +6116,11 @@ If $Sum12030200581203030058TextID != "" Then Var $Sum12030200581203030058TextValue = "" EndIf + If $Sum12030200581203030058TextValue = "" Then + If $Sum12030200581203030058TextID = "" Then + Var $Sum12030200581203030058TextID = "000013" + EndIf + EndIf EndIf @@ -6343,9 +6445,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030066 @@ -6368,6 +6471,11 @@ If $Sum1299030066TextID != "" Then Var $Sum1299030066TextValue = "" EndIf + If $Sum1299030066TextValue = "" Then + If $Sum1299030066TextID = "" Then + Var $Sum1299030066TextID = "000013" + EndIf + EndIf EndIf @@ -6692,9 +6800,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299020003 @@ -6717,6 +6826,11 @@ If $Sum1299020003TextID != "" Then Var $Sum1299020003TextValue = "" EndIf + If $Sum1299020003TextValue = "" Then + If $Sum1299020003TextID = "" Then + Var $Sum1299020003TextID = "000013" + EndIf + EndIf EndIf @@ -7041,9 +7155,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030009 @@ -7066,6 +7181,11 @@ If $Sum1203030009TextID != "" Then Var $Sum1203030009TextValue = "" EndIf + If $Sum1203030009TextValue = "" Then + If $Sum1203030009TextID = "" Then + Var $Sum1203030009TextID = "000013" + EndIf + EndIf EndIf @@ -7394,9 +7514,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000212030200021203030002 @@ -7419,6 +7540,11 @@ If $Sum120301000212030200021203030002TextID != "" Then Var $Sum120301000212030200021203030002TextValue = "" EndIf + If $Sum120301000212030200021203030002TextValue = "" Then + If $Sum120301000212030200021203030002TextID = "" Then + Var $Sum120301000212030200021203030002TextID = "000013" + EndIf + EndIf EndIf @@ -7743,9 +7869,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030029 @@ -7768,6 +7895,11 @@ If $Sum1203030029TextID != "" Then Var $Sum1203030029TextValue = "" EndIf + If $Sum1203030029TextValue = "" Then + If $Sum1203030029TextID = "" Then + Var $Sum1203030029TextID = "000013" + EndIf + EndIf EndIf @@ -8096,9 +8228,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002412030200241203030024 @@ -8121,6 +8254,11 @@ If $Sum120301002412030200241203030024TextID != "" Then Var $Sum120301002412030200241203030024TextValue = "" EndIf + If $Sum120301002412030200241203030024TextValue = "" Then + If $Sum120301002412030200241203030024TextID = "" Then + Var $Sum120301002412030200241203030024TextID = "000013" + EndIf + EndIf EndIf @@ -8445,9 +8583,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030041 @@ -8470,6 +8609,11 @@ If $Sum1203030041TextID != "" Then Var $Sum1203030041TextValue = "" EndIf + If $Sum1203030041TextValue = "" Then + If $Sum1203030041TextID = "" Then + Var $Sum1203030041TextID = "000013" + EndIf + EndIf EndIf @@ -8794,9 +8938,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030042 @@ -8819,6 +8964,11 @@ If $Sum1203030042TextID != "" Then Var $Sum1203030042TextValue = "" EndIf + If $Sum1203030042TextValue = "" Then + If $Sum1203030042TextID = "" Then + Var $Sum1203030042TextID = "000013" + EndIf + EndIf EndIf @@ -9143,9 +9293,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030043 @@ -9168,6 +9319,11 @@ If $Sum1203030043TextID != "" Then Var $Sum1203030043TextValue = "" EndIf + If $Sum1203030043TextValue = "" Then + If $Sum1203030043TextID = "" Then + Var $Sum1203030043TextID = "000013" + EndIf + EndIf EndIf @@ -9492,9 +9648,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030061 @@ -9517,6 +9674,11 @@ If $Sum1203030061TextID != "" Then Var $Sum1203030061TextValue = "" EndIf + If $Sum1203030061TextValue = "" Then + If $Sum1203030061TextID = "" Then + Var $Sum1203030061TextID = "000013" + EndIf + EndIf EndIf @@ -9841,9 +10003,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200261202630026 @@ -9866,6 +10029,11 @@ If $Sum12026200261202630026TextID != "" Then Var $Sum12026200261202630026TextValue = "" EndIf + If $Sum12026200261202630026TextValue = "" Then + If $Sum12026200261202630026TextID = "" Then + Var $Sum12026200261202630026TextID = "000013" + EndIf + EndIf EndIf @@ -10190,9 +10358,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200391202630039 @@ -10215,6 +10384,11 @@ If $Sum12026200391202630039TextID != "" Then Var $Sum12026200391202630039TextValue = "" EndIf + If $Sum12026200391202630039TextValue = "" Then + If $Sum12026200391202630039TextID = "" Then + Var $Sum12026200391202630039TextID = "000013" + EndIf + EndIf EndIf @@ -10539,9 +10713,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200471202630047 @@ -10564,6 +10739,11 @@ If $Sum12026200471202630047TextID != "" Then Var $Sum12026200471202630047TextValue = "" EndIf + If $Sum12026200471202630047TextValue = "" Then + If $Sum12026200471202630047TextID = "" Then + Var $Sum12026200471202630047TextID = "000013" + EndIf + EndIf EndIf @@ -10888,9 +11068,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12026200251202630025 @@ -10913,6 +11094,11 @@ If $Sum12026200251202630025TextID != "" Then Var $Sum12026200251202630025TextValue = "" EndIf + If $Sum12026200251202630025TextValue = "" Then + If $Sum12026200251202630025TextID = "" Then + Var $Sum12026200251202630025TextID = "000013" + EndIf + EndIf EndIf @@ -11241,9 +11427,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $SumTAOTIM1241030028 @@ -11266,6 +11453,11 @@ If $SumTAOTIM1241030028TextID != "" Then Var $SumTAOTIM1241030028TextValue = "" EndIf + If $SumTAOTIM1241030028TextValue = "" Then + If $SumTAOTIM1241030028TextID = "" Then + Var $SumTAOTIM1241030028TextID = "000013" + EndIf + EndIf EndIf @@ -11590,9 +11782,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200111203830011 @@ -11615,6 +11808,11 @@ If $Sum12038200111203830011TextID != "" Then Var $Sum12038200111203830011TextValue = "" EndIf + If $Sum12038200111203830011TextValue = "" Then + If $Sum12038200111203830011TextID = "" Then + Var $Sum12038200111203830011TextID = "000013" + EndIf + EndIf EndIf @@ -11939,9 +12137,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200411203830041 @@ -11964,6 +12163,11 @@ If $Sum12038200411203830041TextID != "" Then Var $Sum12038200411203830041TextValue = "" EndIf + If $Sum12038200411203830041TextValue = "" Then + If $Sum12038200411203830041TextID = "" Then + Var $Sum12038200411203830041TextID = "000013" + EndIf + EndIf EndIf @@ -12288,9 +12492,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200421203830042 @@ -12313,6 +12518,11 @@ If $Sum12038200421203830042TextID != "" Then Var $Sum12038200421203830042TextValue = "" EndIf + If $Sum12038200421203830042TextValue = "" Then + If $Sum12038200421203830042TextID = "" Then + Var $Sum12038200421203830042TextID = "000013" + EndIf + EndIf EndIf @@ -12637,9 +12847,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12038200431203830043 @@ -12662,6 +12873,11 @@ If $Sum12038200431203830043TextID != "" Then Var $Sum12038200431203830043TextValue = "" EndIf + If $Sum12038200431203830043TextValue = "" Then + If $Sum12038200431203830043TextID = "" Then + Var $Sum12038200431203830043TextID = "000013" + EndIf + EndIf EndIf @@ -12990,9 +13206,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003712020200371202030037 @@ -13015,6 +13232,11 @@ If $Sum120201003712020200371202030037TextID != "" Then Var $Sum120201003712020200371202030037TextValue = "" EndIf + If $Sum120201003712020200371202030037TextValue = "" Then + If $Sum120201003712020200371202030037TextID = "" Then + Var $Sum120201003712020200371202030037TextID = "000013" + EndIf + EndIf EndIf @@ -13343,9 +13565,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002612020200261202030026 @@ -13368,6 +13591,11 @@ If $Sum120201002612020200261202030026TextID != "" Then Var $Sum120201002612020200261202030026TextValue = "" EndIf + If $Sum120201002612020200261202030026TextValue = "" Then + If $Sum120201002612020200261202030026TextID = "" Then + Var $Sum120201002612020200261202030026TextID = "000013" + EndIf + EndIf EndIf @@ -13696,9 +13924,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301002212030200221203030022 @@ -13721,6 +13950,11 @@ If $Sum120301002212030200221203030022TextID != "" Then Var $Sum120301002212030200221203030022TextValue = "" EndIf + If $Sum120301002212030200221203030022TextValue = "" Then + If $Sum120301002212030200221203030022TextID = "" Then + Var $Sum120301002212030200221203030022TextID = "000013" + EndIf + EndIf EndIf @@ -14049,9 +14283,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100031201020001 @@ -14074,6 +14309,11 @@ If $Sum12010100031201020001TextID != "" Then Var $Sum12010100031201020001TextValue = "" EndIf + If $Sum12010100031201020001TextValue = "" Then + If $Sum12010100031201020001TextID = "" Then + Var $Sum12010100031201020001TextID = "000013" + EndIf + EndIf EndIf @@ -14402,9 +14642,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100031221020001 @@ -14427,6 +14668,11 @@ If $Sum12210100031221020001TextID != "" Then Var $Sum12210100031221020001TextValue = "" EndIf + If $Sum12210100031221020001TextValue = "" Then + If $Sum12210100031221020001TextID = "" Then + Var $Sum12210100031221020001TextID = "000013" + EndIf + EndIf EndIf @@ -14755,9 +15001,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100031221020001 @@ -14780,6 +15027,11 @@ If $Sum12210100031221020001TextID != "" Then Var $Sum12210100031221020001TextValue = "" EndIf + If $Sum12210100031221020001TextValue = "" Then + If $Sum12210100031221020001TextID = "" Then + Var $Sum12210100031221020001TextID = "000013" + EndIf + EndIf EndIf @@ -15108,9 +15360,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100811201020081 @@ -15133,6 +15386,11 @@ If $Sum12010100811201020081TextID != "" Then Var $Sum12010100811201020081TextValue = "" EndIf + If $Sum12010100811201020081TextValue = "" Then + If $Sum12010100811201020081TextID = "" Then + Var $Sum12010100811201020081TextID = "000013" + EndIf + EndIf EndIf @@ -15461,9 +15719,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12210100811221020081 @@ -15486,6 +15745,11 @@ If $Sum12210100811221020081TextID != "" Then Var $Sum12210100811221020081TextValue = "" EndIf + If $Sum12210100811221020081TextValue = "" Then + If $Sum12210100811221020081TextID = "" Then + Var $Sum12210100811221020081TextID = "000013" + EndIf + EndIf EndIf @@ -15814,9 +16078,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100141201020011 @@ -15839,6 +16104,11 @@ If $Sum12010100141201020011TextID != "" Then Var $Sum12010100141201020011TextValue = "" EndIf + If $Sum12010100141201020011TextValue = "" Then + If $Sum12010100141201020011TextID = "" Then + Var $Sum12010100141201020011TextID = "000013" + EndIf + EndIf EndIf @@ -16167,9 +16437,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100191201020019 @@ -16192,6 +16463,11 @@ If $Sum12010100191201020019TextID != "" Then Var $Sum12010100191201020019TextValue = "" EndIf + If $Sum12010100191201020019TextValue = "" Then + If $Sum12010100191201020019TextID = "" Then + Var $Sum12010100191201020019TextID = "000013" + EndIf + EndIf EndIf @@ -16520,9 +16796,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100211201020021 @@ -16545,6 +16822,11 @@ If $Sum12010100211201020021TextID != "" Then Var $Sum12010100211201020021TextValue = "" EndIf + If $Sum12010100211201020021TextValue = "" Then + If $Sum12010100211201020021TextID = "" Then + Var $Sum12010100211201020021TextID = "000013" + EndIf + EndIf EndIf @@ -16873,9 +17155,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100251201020025 @@ -16898,6 +17181,11 @@ If $Sum12010100251201020025TextID != "" Then Var $Sum12010100251201020025TextValue = "" EndIf + If $Sum12010100251201020025TextValue = "" Then + If $Sum12010100251201020025TextID = "" Then + Var $Sum12010100251201020025TextID = "000013" + EndIf + EndIf EndIf @@ -17226,9 +17514,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100231201020023 @@ -17251,6 +17540,11 @@ If $Sum12010100231201020023TextID != "" Then Var $Sum12010100231201020023TextValue = "" EndIf + If $Sum12010100231201020023TextValue = "" Then + If $Sum12010100231201020023TextID = "" Then + Var $Sum12010100231201020023TextID = "000013" + EndIf + EndIf EndIf @@ -17579,9 +17873,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100271201020027 @@ -17604,6 +17899,11 @@ If $Sum12010100271201020027TextID != "" Then Var $Sum12010100271201020027TextValue = "" EndIf + If $Sum12010100271201020027TextValue = "" Then + If $Sum12010100271201020027TextID = "" Then + Var $Sum12010100271201020027TextID = "000013" + EndIf + EndIf EndIf @@ -17932,9 +18232,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100321201020032 @@ -17957,6 +18258,11 @@ If $Sum12010100321201020032TextID != "" Then Var $Sum12010100321201020032TextValue = "" EndIf + If $Sum12010100321201020032TextValue = "" Then + If $Sum12010100321201020032TextID = "" Then + Var $Sum12010100321201020032TextID = "000013" + EndIf + EndIf EndIf @@ -18285,9 +18591,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100351201020035 @@ -18310,6 +18617,11 @@ If $Sum12010100351201020035TextID != "" Then Var $Sum12010100351201020035TextValue = "" EndIf + If $Sum12010100351201020035TextValue = "" Then + If $Sum12010100351201020035TextID = "" Then + Var $Sum12010100351201020035TextID = "000013" + EndIf + EndIf EndIf @@ -18638,9 +18950,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100381201020038 @@ -18663,6 +18976,11 @@ If $Sum12010100381201020038TextID != "" Then Var $Sum12010100381201020038TextValue = "" EndIf + If $Sum12010100381201020038TextValue = "" Then + If $Sum12010100381201020038TextID = "" Then + Var $Sum12010100381201020038TextID = "000013" + EndIf + EndIf EndIf @@ -18991,9 +19309,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100441201020044 @@ -19016,6 +19335,11 @@ If $Sum12010100441201020044TextID != "" Then Var $Sum12010100441201020044TextValue = "" EndIf + If $Sum12010100441201020044TextValue = "" Then + If $Sum12010100441201020044TextID = "" Then + Var $Sum12010100441201020044TextID = "000013" + EndIf + EndIf EndIf @@ -19344,9 +19668,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100471201020047 @@ -19369,6 +19694,11 @@ If $Sum12010100471201020047TextID != "" Then Var $Sum12010100471201020047TextValue = "" EndIf + If $Sum12010100471201020047TextValue = "" Then + If $Sum12010100471201020047TextID = "" Then + Var $Sum12010100471201020047TextID = "000013" + EndIf + EndIf EndIf @@ -19697,9 +20027,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100501201020050 @@ -19722,6 +20053,11 @@ If $Sum12010100501201020050TextID != "" Then Var $Sum12010100501201020050TextValue = "" EndIf + If $Sum12010100501201020050TextValue = "" Then + If $Sum12010100501201020050TextID = "" Then + Var $Sum12010100501201020050TextID = "000013" + EndIf + EndIf EndIf @@ -20050,9 +20386,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004512020200451202030046 @@ -20075,6 +20412,11 @@ If $Sum120201004512020200451202030046TextID != "" Then Var $Sum120201004512020200451202030046TextValue = "" EndIf + If $Sum120201004512020200451202030046TextValue = "" Then + If $Sum120201004512020200451202030046TextID = "" Then + Var $Sum120201004512020200451202030046TextID = "000013" + EndIf + EndIf EndIf @@ -20403,9 +20745,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004612020200461202030047 @@ -20428,6 +20771,11 @@ If $Sum120201004612020200461202030047TextID != "" Then Var $Sum120201004612020200461202030047TextValue = "" EndIf + If $Sum120201004612020200461202030047TextValue = "" Then + If $Sum120201004612020200461202030047TextID = "" Then + Var $Sum120201004612020200461202030047TextID = "000013" + EndIf + EndIf EndIf @@ -20756,9 +21104,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120301000112030200011203030001 @@ -20781,6 +21130,11 @@ If $Sum120301000112030200011203030001TextID != "" Then Var $Sum120301000112030200011203030001TextValue = "" EndIf + If $Sum120301000112030200011203030001TextValue = "" Then + If $Sum120301000112030200011203030001TextID = "" Then + Var $Sum120301000112030200011203030001TextID = "000013" + EndIf + EndIf EndIf @@ -21105,9 +21459,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12030200061203030006 @@ -21130,6 +21485,11 @@ If $Sum12030200061203030006TextID != "" Then Var $Sum12030200061203030006TextValue = "" EndIf + If $Sum12030200061203030006TextValue = "" Then + If $Sum12030200061203030006TextID = "" Then + Var $Sum12030200061203030006TextID = "000013" + EndIf + EndIf EndIf @@ -21454,9 +21814,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030011 @@ -21479,6 +21840,11 @@ If $Sum1203030011TextID != "" Then Var $Sum1203030011TextValue = "" EndIf + If $Sum1203030011TextValue = "" Then + If $Sum1203030011TextID = "" Then + Var $Sum1203030011TextID = "000013" + EndIf + EndIf EndIf @@ -21803,9 +22169,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200071205030007 @@ -21828,6 +22195,11 @@ If $Sum12050200071205030007TextID != "" Then Var $Sum12050200071205030007TextValue = "" EndIf + If $Sum12050200071205030007TextValue = "" Then + If $Sum12050200071205030007TextID = "" Then + Var $Sum12050200071205030007TextID = "000013" + EndIf + EndIf EndIf @@ -22152,9 +22524,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200461205030046 @@ -22177,6 +22550,11 @@ If $Sum12050200461205030046TextID != "" Then Var $Sum12050200461205030046TextValue = "" EndIf + If $Sum12050200461205030046TextValue = "" Then + If $Sum12050200461205030046TextID = "" Then + Var $Sum12050200461205030046TextID = "000013" + EndIf + EndIf EndIf @@ -22501,9 +22879,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200351205030035 @@ -22526,6 +22905,11 @@ If $Sum12050200351205030035TextID != "" Then Var $Sum12050200351205030035TextValue = "" EndIf + If $Sum12050200351205030035TextValue = "" Then + If $Sum12050200351205030035TextID = "" Then + Var $Sum12050200351205030035TextID = "000013" + EndIf + EndIf EndIf @@ -22850,9 +23234,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200251205030025 @@ -22875,6 +23260,11 @@ If $Sum12050200251205030025TextID != "" Then Var $Sum12050200251205030025TextValue = "" EndIf + If $Sum12050200251205030025TextValue = "" Then + If $Sum12050200251205030025TextID = "" Then + Var $Sum12050200251205030025TextID = "000013" + EndIf + EndIf EndIf @@ -23199,9 +23589,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020081 @@ -23224,6 +23615,11 @@ If $Sum1203020081TextID != "" Then Var $Sum1203020081TextValue = "" EndIf + If $Sum1203020081TextValue = "" Then + If $Sum1203020081TextID = "" Then + Var $Sum1203020081TextID = "000013" + EndIf + EndIf EndIf @@ -23548,9 +23944,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030088 @@ -23573,6 +23970,11 @@ If $Sum1203030088TextID != "" Then Var $Sum1203030088TextValue = "" EndIf + If $Sum1203030088TextValue = "" Then + If $Sum1203030088TextID = "" Then + Var $Sum1203030088TextID = "000013" + EndIf + EndIf EndIf @@ -23897,9 +24299,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203030089 @@ -23922,6 +24325,11 @@ If $Sum1203030089TextID != "" Then Var $Sum1203030089TextValue = "" EndIf + If $Sum1203030089TextValue = "" Then + If $Sum1203030089TextID = "" Then + Var $Sum1203030089TextID = "000013" + EndIf + EndIf EndIf @@ -24246,9 +24654,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020084 @@ -24271,6 +24680,11 @@ If $Sum1201020084TextID != "" Then Var $Sum1201020084TextValue = "" EndIf + If $Sum1201020084TextValue = "" Then + If $Sum1201020084TextID = "" Then + Var $Sum1201020084TextID = "000013" + EndIf + EndIf EndIf @@ -24595,9 +25009,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1221020084 @@ -24620,6 +25035,11 @@ If $Sum1221020084TextID != "" Then Var $Sum1221020084TextValue = "" EndIf + If $Sum1221020084TextValue = "" Then + If $Sum1221020084TextID = "" Then + Var $Sum1221020084TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_soft_serve.lxml b/inter/tha/xml/multi/page_catalog_group_soft_serve.lxml index 69ba78ae..554069c2 100644 --- a/inter/tha/xml/multi/page_catalog_group_soft_serve.lxml +++ b/inter/tha/xml/multi/page_catalog_group_soft_serve.lxml @@ -403,9 +403,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030001 @@ -428,6 +429,11 @@ If $Sum1241030001TextID != "" Then Var $Sum1241030001TextValue = "" EndIf + If $Sum1241030001TextValue = "" Then + If $Sum1241030001TextID = "" Then + Var $Sum1241030001TextID = "000013" + EndIf + EndIf EndIf @@ -752,9 +758,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030002 @@ -777,6 +784,11 @@ If $Sum1241030002TextID != "" Then Var $Sum1241030002TextValue = "" EndIf + If $Sum1241030002TextValue = "" Then + If $Sum1241030002TextID = "" Then + Var $Sum1241030002TextID = "000013" + EndIf + EndIf EndIf @@ -1101,9 +1113,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030003 @@ -1126,6 +1139,11 @@ If $Sum1241030003TextID != "" Then Var $Sum1241030003TextValue = "" EndIf + If $Sum1241030003TextValue = "" Then + If $Sum1241030003TextID = "" Then + Var $Sum1241030003TextID = "000013" + EndIf + EndIf EndIf @@ -1450,9 +1468,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030004 @@ -1475,6 +1494,11 @@ If $Sum1241030004TextID != "" Then Var $Sum1241030004TextValue = "" EndIf + If $Sum1241030004TextValue = "" Then + If $Sum1241030004TextID = "" Then + Var $Sum1241030004TextID = "000013" + EndIf + EndIf EndIf @@ -1799,9 +1823,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030005 @@ -1824,6 +1849,11 @@ If $Sum1241030005TextID != "" Then Var $Sum1241030005TextValue = "" EndIf + If $Sum1241030005TextValue = "" Then + If $Sum1241030005TextID = "" Then + Var $Sum1241030005TextID = "000013" + EndIf + EndIf EndIf @@ -2148,9 +2178,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030006 @@ -2173,6 +2204,11 @@ If $Sum1241030006TextID != "" Then Var $Sum1241030006TextValue = "" EndIf + If $Sum1241030006TextValue = "" Then + If $Sum1241030006TextID = "" Then + Var $Sum1241030006TextID = "000013" + EndIf + EndIf EndIf @@ -2497,9 +2533,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030007 @@ -2522,6 +2559,11 @@ If $Sum1241030007TextID != "" Then Var $Sum1241030007TextValue = "" EndIf + If $Sum1241030007TextValue = "" Then + If $Sum1241030007TextID = "" Then + Var $Sum1241030007TextID = "000013" + EndIf + EndIf EndIf @@ -2846,9 +2888,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030008 @@ -2871,6 +2914,11 @@ If $Sum1241030008TextID != "" Then Var $Sum1241030008TextValue = "" EndIf + If $Sum1241030008TextValue = "" Then + If $Sum1241030008TextID = "" Then + Var $Sum1241030008TextID = "000013" + EndIf + EndIf EndIf @@ -3195,9 +3243,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030009 @@ -3220,6 +3269,11 @@ If $Sum1241030009TextID != "" Then Var $Sum1241030009TextValue = "" EndIf + If $Sum1241030009TextValue = "" Then + If $Sum1241030009TextID = "" Then + Var $Sum1241030009TextID = "000013" + EndIf + EndIf EndIf @@ -3544,9 +3598,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030010 @@ -3569,6 +3624,11 @@ If $Sum1241030010TextID != "" Then Var $Sum1241030010TextValue = "" EndIf + If $Sum1241030010TextValue = "" Then + If $Sum1241030010TextID = "" Then + Var $Sum1241030010TextID = "000013" + EndIf + EndIf EndIf @@ -3893,9 +3953,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030011 @@ -3918,6 +3979,11 @@ If $Sum1241030011TextID != "" Then Var $Sum1241030011TextValue = "" EndIf + If $Sum1241030011TextValue = "" Then + If $Sum1241030011TextID = "" Then + Var $Sum1241030011TextID = "000013" + EndIf + EndIf EndIf @@ -4242,9 +4308,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030012 @@ -4267,6 +4334,11 @@ If $Sum1241030012TextID != "" Then Var $Sum1241030012TextValue = "" EndIf + If $Sum1241030012TextValue = "" Then + If $Sum1241030012TextID = "" Then + Var $Sum1241030012TextID = "000013" + EndIf + EndIf EndIf @@ -4591,9 +4663,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030013 @@ -4616,6 +4689,11 @@ If $Sum1241030013TextID != "" Then Var $Sum1241030013TextValue = "" EndIf + If $Sum1241030013TextValue = "" Then + If $Sum1241030013TextID = "" Then + Var $Sum1241030013TextID = "000013" + EndIf + EndIf EndIf @@ -4940,9 +5018,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030016 @@ -4965,6 +5044,11 @@ If $Sum1241030016TextID != "" Then Var $Sum1241030016TextValue = "" EndIf + If $Sum1241030016TextValue = "" Then + If $Sum1241030016TextID = "" Then + Var $Sum1241030016TextID = "000013" + EndIf + EndIf EndIf @@ -5289,9 +5373,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030018 @@ -5314,6 +5399,11 @@ If $Sum1241030018TextID != "" Then Var $Sum1241030018TextValue = "" EndIf + If $Sum1241030018TextValue = "" Then + If $Sum1241030018TextID = "" Then + Var $Sum1241030018TextID = "000013" + EndIf + EndIf EndIf @@ -5638,9 +5728,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030021 @@ -5663,6 +5754,11 @@ If $Sum1241030021TextID != "" Then Var $Sum1241030021TextValue = "" EndIf + If $Sum1241030021TextValue = "" Then + If $Sum1241030021TextID = "" Then + Var $Sum1241030021TextID = "000013" + EndIf + EndIf EndIf @@ -5987,9 +6083,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030022 @@ -6012,6 +6109,11 @@ If $Sum1241030022TextID != "" Then Var $Sum1241030022TextValue = "" EndIf + If $Sum1241030022TextValue = "" Then + If $Sum1241030022TextID = "" Then + Var $Sum1241030022TextID = "000013" + EndIf + EndIf EndIf @@ -6336,9 +6438,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030023 @@ -6361,6 +6464,11 @@ If $Sum1241030023TextID != "" Then Var $Sum1241030023TextValue = "" EndIf + If $Sum1241030023TextValue = "" Then + If $Sum1241030023TextID = "" Then + Var $Sum1241030023TextID = "000013" + EndIf + EndIf EndIf @@ -6685,9 +6793,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1241030029 @@ -6710,6 +6819,11 @@ If $Sum1241030029TextID != "" Then Var $Sum1241030029TextValue = "" EndIf + If $Sum1241030029TextValue = "" Then + If $Sum1241030029TextID = "" Then + Var $Sum1241030029TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_songkran.lxml b/inter/tha/xml/multi/page_catalog_group_songkran.lxml index b5becb55..5f907710 100644 --- a/inter/tha/xml/multi/page_catalog_group_songkran.lxml +++ b/inter/tha/xml/multi/page_catalog_group_songkran.lxml @@ -404,9 +404,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020053 @@ -429,6 +430,11 @@ If $Sum1201020053TextID != "" Then Var $Sum1201020053TextValue = "" EndIf + If $Sum1201020053TextValue = "" Then + If $Sum1201020053TextID = "" Then + Var $Sum1201020053TextID = "000013" + EndIf + EndIf EndIf @@ -753,9 +759,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1201020054 @@ -778,6 +785,11 @@ If $Sum1201020054TextID != "" Then Var $Sum1201020054TextValue = "" EndIf + If $Sum1201020054TextValue = "" Then + If $Sum1201020054TextID = "" Then + Var $Sum1201020054TextID = "000013" + EndIf + EndIf EndIf @@ -1102,9 +1114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020026 @@ -1127,6 +1140,11 @@ If $Sum1203020026TextID != "" Then Var $Sum1203020026TextValue = "" EndIf + If $Sum1203020026TextValue = "" Then + If $Sum1203020026TextID = "" Then + Var $Sum1203020026TextID = "000013" + EndIf + EndIf EndIf @@ -1451,9 +1469,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020043 @@ -1476,6 +1495,11 @@ If $Sum1202020043TextID != "" Then Var $Sum1202020043TextValue = "" EndIf + If $Sum1202020043TextValue = "" Then + If $Sum1202020043TextID = "" Then + Var $Sum1202020043TextID = "000013" + EndIf + EndIf EndIf @@ -1800,9 +1824,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020044 @@ -1825,6 +1850,11 @@ If $Sum1202020044TextID != "" Then Var $Sum1202020044TextValue = "" EndIf + If $Sum1202020044TextValue = "" Then + If $Sum1202020044TextID = "" Then + Var $Sum1202020044TextID = "000013" + EndIf + EndIf EndIf @@ -2149,9 +2179,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020055 @@ -2174,6 +2205,11 @@ If $Sum1205020055TextID != "" Then Var $Sum1205020055TextValue = "" EndIf + If $Sum1205020055TextValue = "" Then + If $Sum1205020055TextID = "" Then + Var $Sum1205020055TextID = "000013" + EndIf + EndIf EndIf @@ -2498,9 +2534,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020056 @@ -2523,6 +2560,11 @@ If $Sum1205020056TextID != "" Then Var $Sum1205020056TextValue = "" EndIf + If $Sum1205020056TextValue = "" Then + If $Sum1205020056TextID = "" Then + Var $Sum1205020056TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_tea.lxml b/inter/tha/xml/multi/page_catalog_group_tea.lxml index 58c88c0b..c619223d 100644 --- a/inter/tha/xml/multi/page_catalog_group_tea.lxml +++ b/inter/tha/xml/multi/page_catalog_group_tea.lxml @@ -575,9 +575,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201008312020200831202030083 @@ -600,6 +601,11 @@ If $Sum120201008312020200831202030083TextID != "" Then Var $Sum120201008312020200831202030083TextValue = "" EndIf + If $Sum120201008312020200831202030083TextValue = "" Then + If $Sum120201008312020200831202030083TextID = "" Then + Var $Sum120201008312020200831202030083TextID = "000013" + EndIf + EndIf EndIf @@ -928,9 +934,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201008412020200841202030084 @@ -953,6 +960,11 @@ If $Sum120201008412020200841202030084TextID != "" Then Var $Sum120201008412020200841202030084TextValue = "" EndIf + If $Sum120201008412020200841202030084TextValue = "" Then + If $Sum120201008412020200841202030084TextID = "" Then + Var $Sum120201008412020200841202030084TextID = "000013" + EndIf + EndIf EndIf @@ -1281,9 +1293,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201008512020200851202030085 @@ -1306,6 +1319,11 @@ If $Sum120201008512020200851202030085TextID != "" Then Var $Sum120201008512020200851202030085TextValue = "" EndIf + If $Sum120201008512020200851202030085TextValue = "" Then + If $Sum120201008512020200851202030085TextID = "" Then + Var $Sum120201008512020200851202030085TextID = "000013" + EndIf + EndIf EndIf @@ -1634,9 +1652,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000112020200011202030001 @@ -1659,6 +1678,11 @@ If $Sum120201000112020200011202030001TextID != "" Then Var $Sum120201000112020200011202030001TextValue = "" EndIf + If $Sum120201000112020200011202030001TextValue = "" Then + If $Sum120201000112020200011202030001TextID = "" Then + Var $Sum120201000112020200011202030001TextID = "000013" + EndIf + EndIf EndIf @@ -1987,9 +2011,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002012020200201202030020 @@ -2012,6 +2037,11 @@ If $Sum120201002012020200201202030020TextID != "" Then Var $Sum120201002012020200201202030020TextValue = "" EndIf + If $Sum120201002012020200201202030020TextValue = "" Then + If $Sum120201002012020200201202030020TextID = "" Then + Var $Sum120201002012020200201202030020TextID = "000013" + EndIf + EndIf EndIf @@ -2340,9 +2370,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004112020200411202030041 @@ -2365,6 +2396,11 @@ If $Sum120201004112020200411202030041TextID != "" Then Var $Sum120201004112020200411202030041TextValue = "" EndIf + If $Sum120201004112020200411202030041TextValue = "" Then + If $Sum120201004112020200411202030041TextID = "" Then + Var $Sum120201004112020200411202030041TextID = "000013" + EndIf + EndIf EndIf @@ -2693,9 +2729,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201001712050200271205030027 @@ -2718,6 +2755,11 @@ If $Sum120201001712050200271205030027TextID != "" Then Var $Sum120201001712050200271205030027TextValue = "" EndIf + If $Sum120201001712050200271205030027TextValue = "" Then + If $Sum120201001712050200271205030027TextID = "" Then + Var $Sum120201001712050200271205030027TextID = "000013" + EndIf + EndIf EndIf @@ -3046,9 +3088,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000712020200071202030007 @@ -3071,6 +3114,11 @@ If $Sum120201000712020200071202030007TextID != "" Then Var $Sum120201000712020200071202030007TextValue = "" EndIf + If $Sum120201000712020200071202030007TextValue = "" Then + If $Sum120201000712020200071202030007TextID = "" Then + Var $Sum120201000712020200071202030007TextID = "000013" + EndIf + EndIf EndIf @@ -3399,9 +3447,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202010021 @@ -3424,6 +3473,11 @@ If $Sum1202010021TextID != "" Then Var $Sum1202010021TextValue = "" EndIf + If $Sum1202010021TextValue = "" Then + If $Sum1202010021TextID = "" Then + Var $Sum1202010021TextID = "000013" + EndIf + EndIf EndIf @@ -3752,9 +3806,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004212020200421202030042 @@ -3777,6 +3832,11 @@ If $Sum120201004212020200421202030042TextID != "" Then Var $Sum120201004212020200421202030042TextValue = "" EndIf + If $Sum120201004212020200421202030042TextValue = "" Then + If $Sum120201004212020200421202030042TextID = "" Then + Var $Sum120201004212020200421202030042TextID = "000013" + EndIf + EndIf EndIf @@ -4105,9 +4165,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003912020200391202030039 @@ -4130,6 +4191,11 @@ If $Sum120201003912020200391202030039TextID != "" Then Var $Sum120201003912020200391202030039TextValue = "" EndIf + If $Sum120201003912020200391202030039TextValue = "" Then + If $Sum120201003912020200391202030039TextID = "" Then + Var $Sum120201003912020200391202030039TextID = "000013" + EndIf + EndIf EndIf @@ -4458,9 +4524,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004012020200401202030040 @@ -4483,6 +4550,11 @@ If $Sum120201004012020200401202030040TextID != "" Then Var $Sum120201004012020200401202030040TextValue = "" EndIf + If $Sum120201004012020200401202030040TextValue = "" Then + If $Sum120201004012020200401202030040TextID = "" Then + Var $Sum120201004012020200401202030040TextID = "000013" + EndIf + EndIf EndIf @@ -4811,9 +4883,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100471202020047 @@ -4836,6 +4909,11 @@ If $Sum12020100471202020047TextID != "" Then Var $Sum12020100471202020047TextValue = "" EndIf + If $Sum12020100471202020047TextValue = "" Then + If $Sum12020100471202020047TextID = "" Then + Var $Sum12020100471202020047TextID = "000013" + EndIf + EndIf EndIf @@ -5164,9 +5242,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002412020200241202030024 @@ -5189,6 +5268,11 @@ If $Sum120201002412020200241202030024TextID != "" Then Var $Sum120201002412020200241202030024TextValue = "" EndIf + If $Sum120201002412020200241202030024TextValue = "" Then + If $Sum120201002412020200241202030024TextID = "" Then + Var $Sum120201002412020200241202030024TextID = "000013" + EndIf + EndIf EndIf @@ -5517,9 +5601,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002512020200251202030025 @@ -5542,6 +5627,11 @@ If $Sum120201002512020200251202030025TextID != "" Then Var $Sum120201002512020200251202030025TextValue = "" EndIf + If $Sum120201002512020200251202030025TextValue = "" Then + If $Sum120201002512020200251202030025TextID = "" Then + Var $Sum120201002512020200251202030025TextID = "000013" + EndIf + EndIf EndIf @@ -5870,9 +5960,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000312020200031202030003 @@ -5895,6 +5986,11 @@ If $Sum120201000312020200031202030003TextID != "" Then Var $Sum120201000312020200031202030003TextValue = "" EndIf + If $Sum120201000312020200031202030003TextValue = "" Then + If $Sum120201000312020200031202030003TextID = "" Then + Var $Sum120201000312020200031202030003TextID = "000013" + EndIf + EndIf EndIf @@ -6223,9 +6319,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000412020200041202030004 @@ -6248,6 +6345,11 @@ If $Sum120201000412020200041202030004TextID != "" Then Var $Sum120201000412020200041202030004TextValue = "" EndIf + If $Sum120201000412020200041202030004TextValue = "" Then + If $Sum120201000412020200041202030004TextID = "" Then + Var $Sum120201000412020200041202030004TextID = "000013" + EndIf + EndIf EndIf @@ -6576,9 +6678,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002612020200261202030026 @@ -6601,6 +6704,11 @@ If $Sum120201002612020200261202030026TextID != "" Then Var $Sum120201002612020200261202030026TextValue = "" EndIf + If $Sum120201002612020200261202030026TextValue = "" Then + If $Sum120201002612020200261202030026TextID = "" Then + Var $Sum120201002612020200261202030026TextID = "000013" + EndIf + EndIf EndIf @@ -6929,9 +7037,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003712020200371202030037 @@ -6954,6 +7063,11 @@ If $Sum120201003712020200371202030037TextID != "" Then Var $Sum120201003712020200371202030037TextValue = "" EndIf + If $Sum120201003712020200371202030037TextValue = "" Then + If $Sum120201003712020200371202030037TextID = "" Then + Var $Sum120201003712020200371202030037TextID = "000013" + EndIf + EndIf EndIf @@ -7282,9 +7396,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002712020200271202030027 @@ -7307,6 +7422,11 @@ If $Sum120201002712020200271202030027TextID != "" Then Var $Sum120201002712020200271202030027TextValue = "" EndIf + If $Sum120201002712020200271202030027TextValue = "" Then + If $Sum120201002712020200271202030027TextID = "" Then + Var $Sum120201002712020200271202030027TextID = "000013" + EndIf + EndIf EndIf @@ -7635,9 +7755,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002812020200281202030028 @@ -7660,6 +7781,11 @@ If $Sum120201002812020200281202030028TextID != "" Then Var $Sum120201002812020200281202030028TextValue = "" EndIf + If $Sum120201002812020200281202030028TextValue = "" Then + If $Sum120201002812020200281202030028TextID = "" Then + Var $Sum120201002812020200281202030028TextID = "000013" + EndIf + EndIf EndIf @@ -7988,9 +8114,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201001112020200111202030011 @@ -8013,6 +8140,11 @@ If $Sum120201001112020200111202030011TextID != "" Then Var $Sum120201001112020200111202030011TextValue = "" EndIf + If $Sum120201001112020200111202030011TextValue = "" Then + If $Sum120201001112020200111202030011TextID = "" Then + Var $Sum120201001112020200111202030011TextID = "000013" + EndIf + EndIf EndIf @@ -8341,9 +8473,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201001212020200121202030012 @@ -8366,6 +8499,11 @@ If $Sum120201001212020200121202030012TextID != "" Then Var $Sum120201001212020200121202030012TextValue = "" EndIf + If $Sum120201001212020200121202030012TextValue = "" Then + If $Sum120201001212020200121202030012TextID = "" Then + Var $Sum120201001212020200121202030012TextID = "000013" + EndIf + EndIf EndIf @@ -8694,9 +8832,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004512020200451202030046 @@ -8719,6 +8858,11 @@ If $Sum120201004512020200451202030046TextID != "" Then Var $Sum120201004512020200451202030046TextValue = "" EndIf + If $Sum120201004512020200451202030046TextValue = "" Then + If $Sum120201004512020200451202030046TextID = "" Then + Var $Sum120201004512020200451202030046TextID = "000013" + EndIf + EndIf EndIf @@ -9047,9 +9191,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201004612020200461202030047 @@ -9072,6 +9217,11 @@ If $Sum120201004612020200461202030047TextID != "" Then Var $Sum120201004612020200461202030047TextValue = "" EndIf + If $Sum120201004612020200461202030047TextValue = "" Then + If $Sum120201004612020200461202030047TextID = "" Then + Var $Sum120201004612020200461202030047TextID = "000013" + EndIf + EndIf EndIf @@ -9400,9 +9550,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201005012020200501202030050 @@ -9425,6 +9576,11 @@ If $Sum120201005012020200501202030050TextID != "" Then Var $Sum120201005012020200501202030050TextValue = "" EndIf + If $Sum120201005012020200501202030050TextValue = "" Then + If $Sum120201005012020200501202030050TextID = "" Then + Var $Sum120201005012020200501202030050TextID = "000013" + EndIf + EndIf EndIf @@ -9753,9 +9909,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201005112020200511202030051 @@ -9778,6 +9935,11 @@ If $Sum120201005112020200511202030051TextID != "" Then Var $Sum120201005112020200511202030051TextValue = "" EndIf + If $Sum120201005112020200511202030051TextValue = "" Then + If $Sum120201005112020200511202030051TextID = "" Then + Var $Sum120201005112020200511202030051TextID = "000013" + EndIf + EndIf EndIf @@ -10102,9 +10264,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202020052 @@ -10127,6 +10290,11 @@ If $Sum1202020052TextID != "" Then Var $Sum1202020052TextValue = "" EndIf + If $Sum1202020052TextValue = "" Then + If $Sum1202020052TextID = "" Then + Var $Sum1202020052TextID = "000013" + EndIf + EndIf EndIf @@ -10451,9 +10619,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200601202030060 @@ -10476,6 +10645,11 @@ If $Sum12020200601202030060TextID != "" Then Var $Sum12020200601202030060TextValue = "" EndIf + If $Sum12020200601202030060TextValue = "" Then + If $Sum12020200601202030060TextID = "" Then + Var $Sum12020200601202030060TextID = "000013" + EndIf + EndIf EndIf @@ -10800,9 +10974,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200611202030061 @@ -10825,6 +11000,11 @@ If $Sum12020200611202030061TextID != "" Then Var $Sum12020200611202030061TextValue = "" EndIf + If $Sum12020200611202030061TextValue = "" Then + If $Sum12020200611202030061TextID = "" Then + Var $Sum12020200611202030061TextID = "000013" + EndIf + EndIf EndIf @@ -11149,9 +11329,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200621202030062 @@ -11174,6 +11355,11 @@ If $Sum12020200621202030062TextID != "" Then Var $Sum12020200621202030062TextValue = "" EndIf + If $Sum12020200621202030062TextValue = "" Then + If $Sum12020200621202030062TextID = "" Then + Var $Sum12020200621202030062TextID = "000013" + EndIf + EndIf EndIf @@ -11498,9 +11684,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200631202030063 @@ -11523,6 +11710,11 @@ If $Sum12020200631202030063TextID != "" Then Var $Sum12020200631202030063TextValue = "" EndIf + If $Sum12020200631202030063TextValue = "" Then + If $Sum12020200631202030063TextID = "" Then + Var $Sum12020200631202030063TextID = "000013" + EndIf + EndIf EndIf @@ -11847,9 +12039,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200641202030064 @@ -11872,6 +12065,11 @@ If $Sum12020200641202030064TextID != "" Then Var $Sum12020200641202030064TextValue = "" EndIf + If $Sum12020200641202030064TextValue = "" Then + If $Sum12020200641202030064TextID = "" Then + Var $Sum12020200641202030064TextID = "000013" + EndIf + EndIf EndIf @@ -12196,9 +12394,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200651202030065 @@ -12221,6 +12420,11 @@ If $Sum12020200651202030065TextID != "" Then Var $Sum12020200651202030065TextValue = "" EndIf + If $Sum12020200651202030065TextValue = "" Then + If $Sum12020200651202030065TextID = "" Then + Var $Sum12020200651202030065TextID = "000013" + EndIf + EndIf EndIf @@ -12549,9 +12753,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201006612020200661202030066 @@ -12574,6 +12779,11 @@ If $Sum120201006612020200661202030066TextID != "" Then Var $Sum120201006612020200661202030066TextValue = "" EndIf + If $Sum120201006612020200661202030066TextValue = "" Then + If $Sum120201006612020200661202030066TextID = "" Then + Var $Sum120201006612020200661202030066TextID = "000013" + EndIf + EndIf EndIf @@ -12902,9 +13112,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000612020200061202030006 @@ -12927,6 +13138,11 @@ If $Sum120201000612020200061202030006TextID != "" Then Var $Sum120201000612020200061202030006TextValue = "" EndIf + If $Sum120201000612020200061202030006TextValue = "" Then + If $Sum120201000612020200061202030006TextID = "" Then + Var $Sum120201000612020200061202030006TextID = "000013" + EndIf + EndIf EndIf @@ -13255,9 +13471,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000812020200081202030008 @@ -13280,6 +13497,11 @@ If $Sum120201000812020200081202030008TextID != "" Then Var $Sum120201000812020200081202030008TextValue = "" EndIf + If $Sum120201000812020200081202030008TextValue = "" Then + If $Sum120201000812020200081202030008TextID = "" Then + Var $Sum120201000812020200081202030008TextID = "000013" + EndIf + EndIf EndIf @@ -13608,9 +13830,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201001912020200191202030019 @@ -13633,6 +13856,11 @@ If $Sum120201001912020200191202030019TextID != "" Then Var $Sum120201001912020200191202030019TextValue = "" EndIf + If $Sum120201001912020200191202030019TextValue = "" Then + If $Sum120201001912020200191202030019TextID = "" Then + Var $Sum120201001912020200191202030019TextID = "000013" + EndIf + EndIf EndIf @@ -13961,9 +14189,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200091202010009 @@ -13986,6 +14215,11 @@ If $Sum12020200091202010009TextID != "" Then Var $Sum12020200091202010009TextValue = "" EndIf + If $Sum12020200091202010009TextValue = "" Then + If $Sum12020200091202010009TextID = "" Then + Var $Sum12020200091202010009TextID = "000013" + EndIf + EndIf EndIf @@ -14314,9 +14548,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201002212020200221202030022 @@ -14339,6 +14574,11 @@ If $Sum120201002212020200221202030022TextID != "" Then Var $Sum120201002212020200221202030022TextValue = "" EndIf + If $Sum120201002212020200221202030022TextValue = "" Then + If $Sum120201002212020200221202030022TextID = "" Then + Var $Sum120201002212020200221202030022TextID = "000013" + EndIf + EndIf EndIf @@ -14667,9 +14907,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201001612020200171202030017 @@ -14692,6 +14933,11 @@ If $Sum120201001612020200171202030017TextID != "" Then Var $Sum120201001612020200171202030017TextValue = "" EndIf + If $Sum120201001612020200171202030017TextValue = "" Then + If $Sum120201001612020200171202030017TextID = "" Then + Var $Sum120201001612020200171202030017TextID = "000013" + EndIf + EndIf EndIf @@ -15020,9 +15266,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100291202020029 @@ -15045,6 +15292,11 @@ If $Sum12020100291202020029TextID != "" Then Var $Sum12020100291202020029TextValue = "" EndIf + If $Sum12020100291202020029TextValue = "" Then + If $Sum12020100291202020029TextID = "" Then + Var $Sum12020100291202020029TextID = "000013" + EndIf + EndIf EndIf @@ -15373,9 +15625,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100301202020030 @@ -15398,6 +15651,11 @@ If $Sum12020100301202020030TextID != "" Then Var $Sum12020100301202020030TextValue = "" EndIf + If $Sum12020100301202020030TextValue = "" Then + If $Sum12020100301202020030TextID = "" Then + Var $Sum12020100301202020030TextID = "000013" + EndIf + EndIf EndIf @@ -15726,9 +15984,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100311202020031 @@ -15751,6 +16010,11 @@ If $Sum12020100311202020031TextID != "" Then Var $Sum12020100311202020031TextValue = "" EndIf + If $Sum12020100311202020031TextValue = "" Then + If $Sum12020100311202020031TextID = "" Then + Var $Sum12020100311202020031TextID = "000013" + EndIf + EndIf EndIf @@ -16079,9 +16343,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100321202020032 @@ -16104,6 +16369,11 @@ If $Sum12020100321202020032TextID != "" Then Var $Sum12020100321202020032TextValue = "" EndIf + If $Sum12020100321202020032TextValue = "" Then + If $Sum12020100321202020032TextID = "" Then + Var $Sum12020100321202020032TextID = "000013" + EndIf + EndIf EndIf @@ -16432,9 +16702,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020100381202020038 @@ -16457,6 +16728,11 @@ If $Sum12020100381202020038TextID != "" Then Var $Sum12020100381202020038TextValue = "" EndIf + If $Sum12020100381202020038TextValue = "" Then + If $Sum12020100381202020038TextID = "" Then + Var $Sum12020100381202020038TextID = "000013" + EndIf + EndIf EndIf @@ -16781,9 +17057,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030057 @@ -16806,6 +17083,11 @@ If $Sum1202030057TextID != "" Then Var $Sum1202030057TextValue = "" EndIf + If $Sum1202030057TextValue = "" Then + If $Sum1202030057TextID = "" Then + Var $Sum1202030057TextID = "000013" + EndIf + EndIf EndIf @@ -17130,9 +17412,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1202030058 @@ -17155,6 +17438,11 @@ If $Sum1202030058TextID != "" Then Var $Sum1202030058TextValue = "" EndIf + If $Sum1202030058TextValue = "" Then + If $Sum1202030058TextID = "" Then + Var $Sum1202030058TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_group_whey.lxml b/inter/tha/xml/multi/page_catalog_group_whey.lxml index dbd5ccf5..98b4f0f8 100644 --- a/inter/tha/xml/multi/page_catalog_group_whey.lxml +++ b/inter/tha/xml/multi/page_catalog_group_whey.lxml @@ -603,9 +603,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020001 @@ -628,6 +629,11 @@ If $Sum1204020001TextID != "" Then Var $Sum1204020001TextValue = "" EndIf + If $Sum1204020001TextValue = "" Then + If $Sum1204020001TextID = "" Then + Var $Sum1204020001TextID = "000013" + EndIf + EndIf EndIf @@ -952,9 +958,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020016 @@ -977,6 +984,11 @@ If $Sum1204020016TextID != "" Then Var $Sum1204020016TextValue = "" EndIf + If $Sum1204020016TextValue = "" Then + If $Sum1204020016TextID = "" Then + Var $Sum1204020016TextID = "000013" + EndIf + EndIf EndIf @@ -1301,9 +1313,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020002 @@ -1326,6 +1339,11 @@ If $Sum1204020002TextID != "" Then Var $Sum1204020002TextValue = "" EndIf + If $Sum1204020002TextValue = "" Then + If $Sum1204020002TextID = "" Then + Var $Sum1204020002TextID = "000013" + EndIf + EndIf EndIf @@ -1650,9 +1668,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020003 @@ -1675,6 +1694,11 @@ If $Sum1204020003TextID != "" Then Var $Sum1204020003TextValue = "" EndIf + If $Sum1204020003TextValue = "" Then + If $Sum1204020003TextID = "" Then + Var $Sum1204020003TextID = "000013" + EndIf + EndIf EndIf @@ -1999,9 +2023,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020013 @@ -2024,6 +2049,11 @@ If $Sum1204020013TextID != "" Then Var $Sum1204020013TextValue = "" EndIf + If $Sum1204020013TextValue = "" Then + If $Sum1204020013TextID = "" Then + Var $Sum1204020013TextID = "000013" + EndIf + EndIf EndIf @@ -2348,9 +2378,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020018 @@ -2373,6 +2404,11 @@ If $Sum1204020018TextID != "" Then Var $Sum1204020018TextValue = "" EndIf + If $Sum1204020018TextValue = "" Then + If $Sum1204020018TextID = "" Then + Var $Sum1204020018TextID = "000013" + EndIf + EndIf EndIf @@ -2697,9 +2733,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020004 @@ -2722,6 +2759,11 @@ If $Sum1204020004TextID != "" Then Var $Sum1204020004TextValue = "" EndIf + If $Sum1204020004TextValue = "" Then + If $Sum1204020004TextID = "" Then + Var $Sum1204020004TextID = "000013" + EndIf + EndIf EndIf @@ -3046,9 +3088,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020005 @@ -3071,6 +3114,11 @@ If $Sum1204020005TextID != "" Then Var $Sum1204020005TextValue = "" EndIf + If $Sum1204020005TextValue = "" Then + If $Sum1204020005TextID = "" Then + Var $Sum1204020005TextID = "000013" + EndIf + EndIf EndIf @@ -3395,9 +3443,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020015 @@ -3420,6 +3469,11 @@ If $Sum1204020015TextID != "" Then Var $Sum1204020015TextValue = "" EndIf + If $Sum1204020015TextValue = "" Then + If $Sum1204020015TextID = "" Then + Var $Sum1204020015TextID = "000013" + EndIf + EndIf EndIf @@ -3744,9 +3798,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020055 @@ -3769,6 +3824,11 @@ If $Sum1204020055TextID != "" Then Var $Sum1204020055TextValue = "" EndIf + If $Sum1204020055TextValue = "" Then + If $Sum1204020055TextID = "" Then + Var $Sum1204020055TextID = "000013" + EndIf + EndIf EndIf @@ -4093,9 +4153,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020006 @@ -4118,6 +4179,11 @@ If $Sum1204020006TextID != "" Then Var $Sum1204020006TextValue = "" EndIf + If $Sum1204020006TextValue = "" Then + If $Sum1204020006TextID = "" Then + Var $Sum1204020006TextID = "000013" + EndIf + EndIf EndIf @@ -4442,9 +4508,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020008 @@ -4467,6 +4534,11 @@ If $Sum1204020008TextID != "" Then Var $Sum1204020008TextValue = "" EndIf + If $Sum1204020008TextValue = "" Then + If $Sum1204020008TextID = "" Then + Var $Sum1204020008TextID = "000013" + EndIf + EndIf EndIf @@ -4791,9 +4863,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020017 @@ -4816,6 +4889,11 @@ If $Sum1204020017TextID != "" Then Var $Sum1204020017TextValue = "" EndIf + If $Sum1204020017TextValue = "" Then + If $Sum1204020017TextID = "" Then + Var $Sum1204020017TextID = "000013" + EndIf + EndIf EndIf @@ -5140,9 +5218,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020009 @@ -5165,6 +5244,11 @@ If $Sum1204020009TextID != "" Then Var $Sum1204020009TextValue = "" EndIf + If $Sum1204020009TextValue = "" Then + If $Sum1204020009TextID = "" Then + Var $Sum1204020009TextID = "000013" + EndIf + EndIf EndIf @@ -5489,9 +5573,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020010 @@ -5514,6 +5599,11 @@ If $Sum1204020010TextID != "" Then Var $Sum1204020010TextValue = "" EndIf + If $Sum1204020010TextValue = "" Then + If $Sum1204020010TextID = "" Then + Var $Sum1204020010TextID = "000013" + EndIf + EndIf EndIf @@ -5838,9 +5928,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020011 @@ -5863,6 +5954,11 @@ If $Sum1204020011TextID != "" Then Var $Sum1204020011TextValue = "" EndIf + If $Sum1204020011TextValue = "" Then + If $Sum1204020011TextID = "" Then + Var $Sum1204020011TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_catalog_momday.lxml b/inter/tha/xml/multi/page_catalog_momday.lxml index 64156d5d..bd284022 100644 --- a/inter/tha/xml/multi/page_catalog_momday.lxml +++ b/inter/tha/xml/multi/page_catalog_momday.lxml @@ -354,9 +354,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum129901004212990200441299030046 @@ -379,6 +380,11 @@ If $Sum129901004212990200441299030046TextID != "" Then Var $Sum129901004212990200441299030046TextValue = "" EndIf + If $Sum129901004212990200441299030046TextValue = "" Then + If $Sum129901004212990200441299030046TextID = "" Then + Var $Sum129901004212990200441299030046TextID = "000013" + EndIf + EndIf EndIf @@ -707,9 +713,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum129901004312990200451299030047 @@ -732,6 +739,11 @@ If $Sum129901004312990200451299030047TextID != "" Then Var $Sum129901004312990200451299030047TextValue = "" EndIf + If $Sum129901004312990200451299030047TextValue = "" Then + If $Sum129901004312990200451299030047TextID = "" Then + Var $Sum129901004312990200451299030047TextID = "000013" + EndIf + EndIf EndIf @@ -1056,9 +1068,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299030048 @@ -1081,6 +1094,11 @@ If $Sum1299030048TextID != "" Then Var $Sum1299030048TextValue = "" EndIf + If $Sum1299030048TextValue = "" Then + If $Sum1299030048TextID = "" Then + Var $Sum1299030048TextID = "000013" + EndIf + EndIf EndIf @@ -1409,9 +1427,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12990100491299020050 @@ -1434,6 +1453,11 @@ If $Sum12990100491299020050TextID != "" Then Var $Sum12990100491299020050TextValue = "" EndIf + If $Sum12990100491299020050TextValue = "" Then + If $Sum12990100491299020050TextID = "" Then + Var $Sum12990100491299020050TextID = "000013" + EndIf + EndIf EndIf @@ -1758,9 +1782,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050051 @@ -1783,6 +1808,11 @@ If $Sum1299050051TextID != "" Then Var $Sum1299050051TextValue = "" EndIf + If $Sum1299050051TextValue = "" Then + If $Sum1299050051TextID = "" Then + Var $Sum1299050051TextID = "000013" + EndIf + EndIf EndIf @@ -2107,9 +2137,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050052 @@ -2132,6 +2163,11 @@ If $Sum1299050052TextID != "" Then Var $Sum1299050052TextValue = "" EndIf + If $Sum1299050052TextValue = "" Then + If $Sum1299050052TextID = "" Then + Var $Sum1299050052TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/page_instance2.xml b/inter/tha/xml/multi/page_instance2.xml index b09288ce..198d3f95 100644 --- a/inter/tha/xml/multi/page_instance2.xml +++ b/inter/tha/xml/multi/page_instance2.xml @@ -11,7 +11,13 @@ OpenInst 0 "/mnt/sdcard/coffeevending/taobin_project/xml/page_main_blank.xml" - + Var ButtonLanguageCurrentXPosition = 1005 + Var ButtonLanguageCurrentYPosition = 458 - 38 + + Var ButtonLanguageListXPosition = 970 + Var ButtonLanguageListYPosition = 450 - 38 + + Var Timeout = 0 diff --git a/inter/tha/xml/multi/page_obsolete.lxml b/inter/tha/xml/multi/page_obsolete.lxml index 8bc39aed..77138421 100644 --- a/inter/tha/xml/multi/page_obsolete.lxml +++ b/inter/tha/xml/multi/page_obsolete.lxml @@ -408,9 +408,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1203020007 @@ -433,6 +434,11 @@ If $Sum1203020007TextID != "" Then Var $Sum1203020007TextValue = "" EndIf + If $Sum1203020007TextValue = "" Then + If $Sum1203020007TextID = "" Then + Var $Sum1203020007TextID = "000013" + EndIf + EndIf EndIf @@ -757,9 +763,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -782,6 +789,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -1110,9 +1122,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020012 @@ -1135,6 +1148,11 @@ If $Sum1204020012TextID != "" Then Var $Sum1204020012TextValue = "" EndIf + If $Sum1204020012TextValue = "" Then + If $Sum1204020012TextID = "" Then + Var $Sum1204020012TextID = "000013" + EndIf + EndIf EndIf @@ -1459,9 +1477,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -1484,6 +1503,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -1812,9 +1836,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020030 @@ -1837,6 +1862,11 @@ If $Sum1205020030TextID != "" Then Var $Sum1205020030TextValue = "" EndIf + If $Sum1205020030TextValue = "" Then + If $Sum1205020030TextID = "" Then + Var $Sum1205020030TextID = "000013" + EndIf + EndIf EndIf @@ -2161,9 +2191,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -2186,6 +2217,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -2514,9 +2550,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020031 @@ -2539,6 +2576,11 @@ If $Sum1205020031TextID != "" Then Var $Sum1205020031TextValue = "" EndIf + If $Sum1205020031TextValue = "" Then + If $Sum1205020031TextID = "" Then + Var $Sum1205020031TextID = "000013" + EndIf + EndIf EndIf @@ -2863,9 +2905,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -2888,6 +2931,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -3216,9 +3264,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020023 @@ -3241,6 +3290,11 @@ If $Sum1205020023TextID != "" Then Var $Sum1205020023TextValue = "" EndIf + If $Sum1205020023TextValue = "" Then + If $Sum1205020023TextID = "" Then + Var $Sum1205020023TextID = "000013" + EndIf + EndIf EndIf @@ -3565,9 +3619,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -3590,6 +3645,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -3918,9 +3978,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020013 @@ -3943,6 +4004,11 @@ If $Sum1205020013TextID != "" Then Var $Sum1205020013TextValue = "" EndIf + If $Sum1205020013TextValue = "" Then + If $Sum1205020013TextID = "" Then + Var $Sum1205020013TextID = "000013" + EndIf + EndIf EndIf @@ -4267,9 +4333,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -4292,6 +4359,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -4620,9 +4692,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1205020006 @@ -4645,6 +4718,11 @@ If $Sum1205020006TextID != "" Then Var $Sum1205020006TextValue = "" EndIf + If $Sum1205020006TextValue = "" Then + If $Sum1205020006TextID = "" Then + Var $Sum1205020006TextID = "000013" + EndIf + EndIf EndIf @@ -4969,9 +5047,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -4994,6 +5073,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -5322,9 +5406,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12020200101202010010 @@ -5347,6 +5432,11 @@ If $Sum12020200101202010010TextID != "" Then Var $Sum12020200101202010010TextValue = "" EndIf + If $Sum12020200101202010010TextValue = "" Then + If $Sum12020200101202010010TextID = "" Then + Var $Sum12020200101202010010TextID = "000013" + EndIf + EndIf EndIf @@ -5671,9 +5761,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -5696,6 +5787,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -6020,9 +6116,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200211205030021 @@ -6045,6 +6142,11 @@ If $Sum12050200211205030021TextID != "" Then Var $Sum12050200211205030021TextValue = "" EndIf + If $Sum12050200211205030021TextValue = "" Then + If $Sum12050200211205030021TextID = "" Then + Var $Sum12050200211205030021TextID = "000013" + EndIf + EndIf EndIf @@ -6369,9 +6471,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -6394,6 +6497,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -6718,9 +6826,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200191205030019 @@ -6743,6 +6852,11 @@ If $Sum12050200191205030019TextID != "" Then Var $Sum12050200191205030019TextValue = "" EndIf + If $Sum12050200191205030019TextValue = "" Then + If $Sum12050200191205030019TextID = "" Then + Var $Sum12050200191205030019TextID = "000013" + EndIf + EndIf EndIf @@ -7067,9 +7181,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -7092,6 +7207,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -7416,9 +7536,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200201205030020 @@ -7441,6 +7562,11 @@ If $Sum12050200201205030020TextID != "" Then Var $Sum12050200201205030020TextValue = "" EndIf + If $Sum12050200201205030020TextValue = "" Then + If $Sum12050200201205030020TextID = "" Then + Var $Sum12050200201205030020TextID = "000013" + EndIf + EndIf EndIf @@ -7765,9 +7891,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -7790,6 +7917,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -8118,9 +8250,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120101001012010200071201030007 @@ -8143,6 +8276,11 @@ If $Sum120101001012010200071201030007TextID != "" Then Var $Sum120101001012010200071201030007TextValue = "" EndIf + If $Sum120101001012010200071201030007TextValue = "" Then + If $Sum120101001012010200071201030007TextID = "" Then + Var $Sum120101001012010200071201030007TextID = "000013" + EndIf + EndIf EndIf @@ -8471,9 +8609,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum122101001012210200071221030007 @@ -8496,6 +8635,11 @@ If $Sum122101001012210200071221030007TextID != "" Then Var $Sum122101001012210200071221030007TextValue = "" EndIf + If $Sum122101001012210200071221030007TextValue = "" Then + If $Sum122101001012210200071221030007TextID = "" Then + Var $Sum122101001012210200071221030007TextID = "000013" + EndIf + EndIf EndIf @@ -8824,9 +8968,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12010100121201020009 @@ -8849,6 +8994,11 @@ If $Sum12010100121201020009TextID != "" Then Var $Sum12010100121201020009TextValue = "" EndIf + If $Sum12010100121201020009TextValue = "" Then + If $Sum12010100121201020009TextID = "" Then + Var $Sum12010100121201020009TextID = "000013" + EndIf + EndIf EndIf @@ -9173,9 +9323,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum12050200111205030011 @@ -9198,6 +9349,11 @@ If $Sum12050200111205030011TextID != "" Then Var $Sum12050200111205030011TextValue = "" EndIf + If $Sum12050200111205030011TextValue = "" Then + If $Sum12050200111205030011TextID = "" Then + Var $Sum12050200111205030011TextID = "000013" + EndIf + EndIf EndIf @@ -9522,9 +9678,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -9547,6 +9704,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -9875,9 +10037,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000212020200021202030002 @@ -9900,6 +10063,11 @@ If $Sum120201000212020200021202030002TextID != "" Then Var $Sum120201000212020200021202030002TextValue = "" EndIf + If $Sum120201000212020200021202030002TextValue = "" Then + If $Sum120201000212020200021202030002TextID = "" Then + Var $Sum120201000212020200021202030002TextID = "000013" + EndIf + EndIf EndIf @@ -10224,9 +10392,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -10249,6 +10418,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -10577,9 +10751,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201000112020200011202030001 @@ -10602,6 +10777,11 @@ If $Sum120201000112020200011202030001TextID != "" Then Var $Sum120201000112020200011202030001TextValue = "" EndIf + If $Sum120201000112020200011202030001TextValue = "" Then + If $Sum120201000112020200011202030001TextID = "" Then + Var $Sum120201000112020200011202030001TextID = "000013" + EndIf + EndIf EndIf @@ -10926,9 +11106,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -10951,6 +11132,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -11279,9 +11465,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum120201003612020200361202030036 @@ -11304,6 +11491,11 @@ If $Sum120201003612020200361202030036TextID != "" Then Var $Sum120201003612020200361202030036TextValue = "" EndIf + If $Sum120201003612020200361202030036TextValue = "" Then + If $Sum120201003612020200361202030036TextID = "" Then + Var $Sum120201003612020200361202030036TextID = "000013" + EndIf + EndIf EndIf @@ -11628,9 +11820,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -11653,6 +11846,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -11977,9 +12175,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020007 @@ -12002,6 +12201,11 @@ If $Sum1204020007TextID != "" Then Var $Sum1204020007TextValue = "" EndIf + If $Sum1204020007TextValue = "" Then + If $Sum1204020007TextID = "" Then + Var $Sum1204020007TextID = "000013" + EndIf + EndIf EndIf @@ -12326,9 +12530,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum @@ -12351,6 +12556,11 @@ If $SumTextID != "" Then Var $SumTextValue = "" EndIf + If $SumTextValue = "" Then + If $SumTextID = "" Then + Var $SumTextID = "000013" + EndIf + EndIf EndIf @@ -12675,9 +12885,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1204020019 @@ -12700,6 +12911,11 @@ If $Sum1204020019TextID != "" Then Var $Sum1204020019TextValue = "" EndIf + If $Sum1204020019TextValue = "" Then + If $Sum1204020019TextID = "" Then + Var $Sum1204020019TextID = "000013" + EndIf + EndIf EndIf @@ -13024,9 +13240,10 @@ 128 64 1 - 18 + 14 OpunMediumTTF 0x6F5F51 + "auto,value" 128 "disable-show" $Sum1299050063 @@ -13049,6 +13266,11 @@ If $Sum1299050063TextID != "" Then Var $Sum1299050063TextValue = "" EndIf + If $Sum1299050063TextValue = "" Then + If $Sum1299050063TextID = "" Then + Var $Sum1299050063TextID = "000013" + EndIf + EndIf EndIf diff --git a/inter/tha/xml/multi/tab_menu.lxml b/inter/tha/xml/multi/tab_menu.lxml index 06219cbf..747a189b 100644 --- a/inter/tha/xml/multi/tab_menu.lxml +++ b/inter/tha/xml/multi/tab_menu.lxml @@ -73,7 +73,7 @@ RootLayoutVisible 3 "hide" RootLayoutVisible 13 "hide" - + TRY "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/event/script_common_for_open_promotion_xml.ev" diff --git a/menu/new-layout.tsv b/menu/new-layout.tsv index 37055e1d..5d713dcd 100644 --- a/menu/new-layout.tsv +++ b/menu/new-layout.tsv @@ -41,16 +41,16 @@ Name=recommend,file=page_catalog_group_recommend.skt นมเมล่อน Melon Milk นม และ น้ำเชื่อมเมล่อน Milk & Melon 12-03-01-0022 12-03-02-0022 12-03-03-0022 bn_Melon_smoothie.png - - - posi1 - - - #REF! #REF! #REF! #REF! #REF! กาแฟดำ Black Coffee กาแฟ และน้ำ Dark shot Espresso, Water 12-01-01-0081 12-01-02-0081 - bn_hot_blackcoffee.png 12-21-01-0081 12-21-02-0081 - posi1 - - - - อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ กาแฟคั่วอ่อน (Natural Process) \Nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ กาแฟคั่วอ่อน (Natural Process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nPure Beauty Pure Beauty \nAmericano กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit 12-01-01-0032 12-01-02-0032 - bn_hot_americano_light_pure_beauty.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nGeisha Geisha \nAmericano กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin 12-01-01-0035 12-01-02-0035 - bn_hot_americano_light_geisha.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink​ Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink​ Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nMandarine Mandarine \nAmericano กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. 12-01-01-0047 12-01-02-0047 - bn_hot_americano_light_Mandarine.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nOpus One Opus One \nAmericano กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. 12-01-01-0050 12-01-02-0050 - bn_hot_americano_light_opus_one.png - - - posi2 - - - #REF! #REF! - #REF! #REF! @@ -79,46 +79,46 @@ Name=Coffee,file=page_catalog_group_coffee.skt ดับเบิลเอสเพรสโซ่ Double \nEspresso กาแฟ (60 ml) Espresso (60 ml) 12-11-01-9901 - - bn_hot_double_espresso.png 12-31-01-9901 - - posi1 - - - #REF! - - #REF! NN อเมริกาโน Americano กาแฟ และน้ำ Espresso, Water 12-01-01-0003 12-01-02-0001 - bn_hot_america_no.png 12-21-01-0003 12-21-02-0001 - posi1 - - - #REF! #REF! - #REF! #REF! กาแฟดำ Black Coffee กาแฟ และน้ำ Dark shot Espresso, Water 12-01-01-0081 12-01-02-0081 - bn_hot_blackcoffee.png 12-21-01-0081 12-21-02-0081 - posi2 - - - - เอสเพรสโซ่ช็อต \nGuji Queen Berry Espresso \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \Nstrawberry, Orange, Floral 12-01-01-0013 - - bn_hot_espresso_light.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nBlue Daddy Blue Daddy \nEspresso Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral 12-01-01-0020 - - bn_hot_espresso_light_bluedaddy.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nChopin Chopin \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0043 - - bn_hot_espresso_light_chopin.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nGuji Queen Berry Espresso \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \nstrawberry, Orange, Floral 12-01-01-0013 - - bn_hot_espresso_light.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nBlue Daddy Blue Daddy \nEspresso Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral 12-01-01-0020 - - bn_hot_espresso_light_bluedaddy.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nChopin Chopin \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0043 - - bn_hot_espresso_light_chopin.png - - - posi2 - - - #REF! - - #REF! NN เอสเพรสโซ่ช็อต \nMandarine Mandarine \nEspresso กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. 12-01-01-0046 - - bn_hot_espresso_light_Mandarine.png - - - posi2 - - - #REF! - - #REF! NN เอสเพรสโซ่ช็อต \nOpus One Opus One \nEspresso กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. 12-01-01-0049 - - bn_hot_espresso_light_opus_one.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nMozart Mozart \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0022 - - bn_hot_espresso_light_mozart.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nSnowwhite Snowwhite \nEspresso Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey 12-01-01-0024 - - bn_hot_espresso_light_snowwhite.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nWhisky Dude Whisky Dude \nEspresso Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla 12-01-01-0026 - - bn_hot_espresso_light_whiskydude.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nPeacher Peacher \nEspresso Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate 12-01-01-0028 - - bn_hot_espresso_light_peacher.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nMozart Mozart \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0022 - - bn_hot_espresso_light_mozart.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nSnowwhite Snowwhite \nEspresso Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey 12-01-01-0024 - - bn_hot_espresso_light_snowwhite.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nWhisky Dude Whisky Dude \nEspresso Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla 12-01-01-0026 - - bn_hot_espresso_light_whiskydude.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nPeacher Peacher \nEspresso Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate 12-01-01-0028 - - bn_hot_espresso_light_peacher.png - - - posi2 - - - #REF! - - #REF! NN เอสเพรสโซ่ช็อต \nPure Beauty Pure Beauty \nEspresso กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit 12-01-01-0033 - - bn_hot_espresso_light_pure_beauty.png - - - posi2 - - - #REF! - - #REF! NN เอสเพรสโซ่ช็อต \nGeisha Geisha Espresso กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin 12-01-01-0036 - - bn_hot_espresso_light_geisha.png - - - posi2 - - - #REF! - - #REF! NN - เอสเพรสโซ่ช็อต \nRosalyn Rosalyn Espresso กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink​ Rose & Berry 12-01-01-0037 - - bn_hot_espresso_light_rosalyn.png - - - posi2 - - - #REF! - - #REF! NN + เอสเพรสโซ่ช็อต \nRosalyn Rosalyn Espresso กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink​ Rose & Berry 12-01-01-0037 - - bn_hot_espresso_light_rosalyn.png - - - posi2 - - - #REF! - - #REF! NN โซดากาโน่ Sodacano กาแฟ และ โซดา Espresso & Soda - 12-01-02-0041 - bn_iced_americano_soda.png - 12-21-02-0041 - posi1 - - - - #REF! - #REF! #REF! - อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \Nstrawberry, Orange, Floral 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \nstrawberry, Orange, Floral 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nMandarine Mandarine \nAmericano กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. 12-01-01-0047 12-01-02-0047 - bn_hot_americano_light_Mandarine.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nOpus One Opus One \nAmericano กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. 12-01-01-0050 12-01-02-0050 - bn_hot_americano_light_opus_one.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nPure Beauty Pure Beauty \nAmericano กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit 12-01-01-0032 12-01-02-0032 - bn_hot_americano_light_pure_beauty.png - - - posi2 - - - #REF! #REF! - #REF! #REF! อเมริกาโน \nGeisha Geisha \nAmericano กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin 12-01-01-0035 12-01-02-0035 - bn_hot_americano_light_geisha.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink​ Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF! + อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink​ Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF! - Blue Daddy \nAlmost Dirty Blue Daddy \nAlmost Dirty Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral - 12-01-02-0020 - bn_dirty_light_bluedaddy.png - - - posi2 - - - - #REF! - #REF! #REF! - Mozart \nAlmost Dirty Mozart \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral - 12-01-02-0022 - bn_dirty_light_mozart.png - - - posi2 - - - - #REF! - #REF! #REF! - Chopin \nAlmost Dirty Chopin \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral - 12-01-02-0045 - bn_dirty_light_chopin.png - - - posi2 - - - - #REF! - #REF! #REF! + Blue Daddy \nAlmost Dirty Blue Daddy \nAlmost Dirty Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral - 12-01-02-0020 - bn_dirty_light_bluedaddy.png - - - posi2 - - - - #REF! - #REF! #REF! + Mozart \nAlmost Dirty Mozart \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral - 12-01-02-0022 - bn_dirty_light_mozart.png - - - posi2 - - - - #REF! - #REF! #REF! + Chopin \nAlmost Dirty Chopin \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral - 12-01-02-0045 - bn_dirty_light_chopin.png - - - posi2 - - - - #REF! - #REF! #REF! Mandarine \nAlmost Dirty Mandarine \nAlmost Dirty กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - 12-01-02-0048 - bn_dirty_light_Mandarine.png - - - posi2 - - - Opus One \nAlmost Dirty Opus One \nAlmost Dirty กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - 12-01-02-0051 - bn_dirty_light_opus_one.png - - - posi2 - - - - Whisky Dude \nAlmost Dirty Whisky Dude \nAlmost Dirty Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla - 12-01-02-0026 - bn_dirty_light_whiskydude.png - - - posi2 - - - - #REF! - #REF! #REF! - Snowwhite \nAlmost Dirty Snowwhite \nAlmost Dirty Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey - 12-01-02-0024 - bn_dirty_light__snowwhite.png - - - posi2 - - - - #REF! - #REF! #REF! - Queen Berry \nAlmost Dirty Queen Berry \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \Nstrawberry, Orange, Floral - 12-01-02-0018 - bn_dirty_light.png - - - posi2 - - - - #REF! - #REF! #REF! - Peacher \nAlmost Dirty Peacher \nAlmost Dirty Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate - 12-01-02-0028 - bn_dirty_light__peacher.png - - - posi2 - - - - #REF! - #REF! #REF! + Whisky Dude \nAlmost Dirty Whisky Dude \nAlmost Dirty Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla - 12-01-02-0026 - bn_dirty_light_whiskydude.png - - - posi2 - - - - #REF! - #REF! #REF! + Snowwhite \nAlmost Dirty Snowwhite \nAlmost Dirty Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey - 12-01-02-0024 - bn_dirty_light__snowwhite.png - - - posi2 - - - - #REF! - #REF! #REF! + Queen Berry \nAlmost Dirty Queen Berry \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \nstrawberry, Orange, Floral - 12-01-02-0018 - bn_dirty_light.png - - - posi2 - - - - #REF! - #REF! #REF! + Peacher \nAlmost Dirty Peacher \nAlmost Dirty Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate - 12-01-02-0028 - bn_dirty_light__peacher.png - - - posi2 - - - - #REF! - #REF! #REF! Pure Beauty \nAlmost Dirty Pure Beauty \nAlmost Dirty กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit - 12-01-02-0033 - bn_dirty_light_pure_beauty.png - - - posi2 - - - - #REF! - #REF! #REF! Geisha \nAlmost Dirty Geisha \nAlmost Dirty กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin - 12-01-02-0036 - bn_dirty_light_geisha.png - - - posi2 - - - - #REF! - #REF! #REF! - Rosalyn \nAlmost Dirty Rosalyn \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink​ Rose & Berry - 12-01-02-0037 - bn_dirty_light_rosalyn.png - - - posi2 - - - - NN FALSE + Rosalyn \nAlmost Dirty Rosalyn \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink​ Rose & Berry - 12-01-02-0037 - bn_dirty_light_rosalyn.png - - - posi2 - - - - NN FALSE เอสเย็นแบบไทยๆ Thai \nIced Espresso กาแฟ นม และ น้ำแข็ง Espresso, Milk, Sugar,Ice - 12-11-02-0001 12-11-03-0001 bn_iced_epsresso.png - 12-31-02-0001 12-31-03-0001 posi1 - - - - #REF! #REF! #REF! #REF! @@ -226,7 +226,7 @@ IGNORE โกโก้โอดิบภูเขาไฟ COCOA OVALTINE \nVOL มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk มะพร้าว นม และน้ำ Coconut, Milk,\nWater - 12-03-02-0058 12-03-03-0058 bn_iced_milk_coconut.png - - - posi1 - - - มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut \nChocolate Milk มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut.png - - - posi1 - - - -IGNORE มะพร้าวน้ำหอมโตเกียว\nบานาน่า COCONUT TOKYO\NBANANA MILK น้ำเชื่อมมะพร้าว น้ำเชื่อมโตเกียวบานาน่า นม และน้ำ Coconut , Tokyo Banana , Milk,\nWater - - 12-03-03-0060 - - - posi1 - - - +IGNORE มะพร้าวน้ำหอมโตเกียว\nบานาน่า COCONUT TOKYO\nBANANA MILK น้ำเชื่อมมะพร้าว น้ำเชื่อมโตเกียวบานาน่า นม และน้ำ Coconut , Tokyo Banana , Milk,\nWater - - 12-03-03-0060 - - - posi1 - - - Name=Tea,file=page_catalog_group_tea.skt @@ -299,7 +299,7 @@ Name=Tea,file=page_catalog_group_tea.skt -Name=Other,file=page_catalog_group_other.skt +Name=Other,file=page_catalog_group_other.skt,status=obsolete เต่าพลังโซดา\n(เพิ่มปริมาณ) Energy Drink\nSoda Extra เครื่องดื่มเต่าทรงพลัง โซดา\nและน้ำแข็ง (มีคาเฟอีน) Medicine Drink, Soda, Ice - 12-05-02-0143 12-05-03-0143 bn_iced_energy_drink_soda_Extra.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu เป๊ปซี่ (เพิ่มปริมาณ) Pepsi Extra เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0133 - bn_iced_pepsi_extra.png - - - posi1 2025/01/01T00:00:00 - - เต่าทรงพลัง\nสตอเบอร์รี่โซดา Energy Drink\nStrawberry Soda เครื่องดื่มเต่าทรงพลัง สตรอเบอรี่\nและโซดา (มีคาเฟอีน) Medicine Drink, Strawberry\n, Soda - 12-05-02-0136 12-05-03-0136 bn_iced_energy_drink_Strawberry_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu @@ -316,7 +316,7 @@ Name=Other,file=page_catalog_group_other.skt Pepsi & Ice เป๊ปซี่น้ำแข็ง Pepsi เป๊ปซี่ Pepsi & Ice - 12-05-02-0007 12-05-03-0007 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF! IGNORE Pepsi Max - 12-05-02-0062 12-05-03-0062 posi1 - - - - เป๊ปซี่โซดา Pepsi High Yeild เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF! + เป๊ปซี่โซดา Pepsi เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF! เซเว่นอัพ 7Up เซเว่นอัพ 7Up & Ice - 12-05-02-0095 - bn_iced_7up.png - - - posi2 - - - - #REF! - #REF! #REF! เซเว่นอัพชูกำลัง\nบ๊วยโซดา 7Up Tao Power\nPlum Soda เซเว่นอัพ เครื่องดื่มเต่าทรงพลัง บ๊วย และน้ำแข็ง 7Up , Medicine drink, Ume, Ice - 12-05-02-0096 - bn_iced_7up_Energy_PLUM.png - - - posi1 - - - - #REF! - #REF! #REF! @@ -326,9 +326,9 @@ IGNORE Banana Soda - - 12-05-02-0050 - - - - - posi1 - - - - #REF! - #REF! #R น้ำมะนาวโซดา Limenade \nSoda มะนาว โซดา Limenade, Sugar, Soda & Ice - 12-05-02-0010 12-05-03-0010 bn_iced_lemonade_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! น้ำลิ้นจี่โซดา Lychee Soda ลิ้นจี่ โซดา Lychee, Soda & Ice - 12-05-02-0033 12-05-03-0033 bn_iced_Lychee_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! ลิ้นจี่มะนาวโซดา Lychee \nLimenade Soda ลิ้นจี่ มะนาว \nโซดา Lychee,\nLimenade, Soda & Ice - 12-05-02-0022 12-05-03-0022 bn_Lychee_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! - เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee Limenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF! + เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee\nLimenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF! IGNORE กัญชาโซดา Cannabis Soda กัญชา โซดา \n(อายุมากกว่า 20+ เท่านั้น) Cannabis, Soda & Ice - 12-05-02-0028 12-05-03-0028 bn_iced_hemp_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! -IGNORE มะนาวกัญชาโซดา Limenade \Ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! +IGNORE มะนาวกัญชาโซดา Limenade \ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0012 - bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! - #REF! #REF! สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! น้ำแดงโซดา Salak Soda น้ำแดงกลิ่นสละ โซดา Salak, Soda & Ice - 12-05-02-0008 12-05-03-0008 bn_sala_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! @@ -405,10 +405,10 @@ Name=pepsi-7up,file=page_catalog_group_pepsi_7up.skt Pepsi & Ice เป๊ปซี่น้ำแข็ง Pepsi เป๊ปซี่ Pepsi & Ice - 12-05-02-0007 12-05-03-0007 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF! เป๊ปซี่ (เพิ่มปริมาณ) Pepsi Extra เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0133 - bn_iced_pepsi_extra.png - - - posi1 2025/01/01T00:00:00 - - IGNORE Pepsi Max - 12-05-02-0062 12-05-03-0062 posi1 - - - - เป๊ปซี่โซดา Pepsi High Yeild เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - - + เป๊ปซี่โซดา Pepsi เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - - เซเว่นอัพ 7Up เซเว่นอัพ 7Up & Ice - 12-05-02-0095 - bn_iced_7up.png - - - posi2 - - - เซเว่นอัพชูกำลัง\nบ๊วยโซดา 7Up Tao Power\nPlum Soda เซเว่นอัพ เครื่องดื่มเต่าทรงพลัง บ๊วย และน้ำแข็ง 7Up , Medicine drink, Ume, Ice - 12-05-02-0096 - bn_iced_7up_Energy_PLUM.png - - - posi1 - - - - #REF! - #REF! #REF! - เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee Limenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF! + เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee\nLimenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF! เซเว่นอัพสละ\nมะนาวโซดา 7Up Salak Lime น้ำแดงกลิ่นสละ มะนาว โซดา 7UP 7Up , Medicine drink, Ice - 12-05-02-0100 - bn_iced_7up_sala_LIME.png - - - posi1 - - - - #REF! - #REF! #REF! เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0046 12-05-03-0046 bn_iced_pepsi_plum.png - - - posi1 - - - - #REF! #REF! #REF! #REF! เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0104 12-05-03-0104 bn_iced_pepsi_plum.png - - - posi1 - - - @@ -446,7 +446,7 @@ Name=Other,file=page_catalog_group_other_other.skt เป๊ปซี่ (เพิ่มปริมาณ) Pepsi Extra เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0133 - bn_iced_pepsi_extra.png - - - posi1 2025/01/01T00:00:00 - - สตรอเบอร์รี่มะนาว\nโซดา Strawberry\nLimenade Soda สตรอเบอร์รี่ มะนาว\nน้ำตาล และโซดา Strawberry, Lime,\nSugar, Soda - 12-05-02-0023 12-05-03-0023 bn_strawberry_lime_soda.png - - - posi1 - - - สตรอเบอร์รี่โซดา Strawberry Soda สตรอเบอร์รี่ น้ำตาล\nและโซดา Strawberry, Sugar,\nSoda - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - น้ำสตรอเบอร์รี่ Strawberry สตรอเบอร์รี่ และน้ำตาล STRAWBERRY, SUGAR 12-05-01-0040 12-05-02-0040 12-05-03-0040 bn_iced_strawberry.png - - - posi1 - - - + น้ำสตรอเบอร์รี่ Strawberry สตรอเบอร์รี่ และน้ำตาล Strawberry, Sugar 12-05-01-0040 12-05-02-0040 12-05-03-0040 bn_iced_strawberry.png - - - posi1 - - - เต่าทรงพลัง\nสตอเบอร์รี่โซดา Energy Drink\nStrawberry Soda เครื่องดื่มเต่าทรงพลัง สตรอเบอรี่\nและโซดา (มีคาเฟอีน) Medicine Drink, Strawberry\n, Soda - 12-05-02-0136 12-05-03-0136 bn_iced_energy_drink_Strawberry_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu เต่าทรงพลังบ๊วย\nโซดา Energy Drink\nUme Soda เครื่องดื่มเต่าทรงพลัง บ๊วย\nและโซดา (มีคาเฟอีน) Medicine Drink, Ume ,\nSoda - 12-05-02-0137 12-05-03-0137 bn_iced_energy_drink_plum_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu เต่าทรงพลังลิ้นจี่\nโซดา Energy Drink\nLychee Soda เครื่องดื่มเต่าทรงพลัง ลิ้นจี่\nและโซดา (มีคาเฟอีน) Medicine Drink, Lychee\n, Soda - 12-05-02-0138 12-05-03-0138 bn_iced_energy_drink_Lychee_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu @@ -469,7 +469,7 @@ IGNORE Banana Soda - - 12-05-02-0050 - - - - - posi1 - - - - #REF! - #REF! #R น้ำลิ้นจี่โซดา Lychee Soda ลิ้นจี่ โซดา Lychee, Soda & Ice - 12-05-02-0033 12-05-03-0033 bn_iced_Lychee_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! ลิ้นจี่มะนาวโซดา Lychee \nLimenade Soda ลิ้นจี่ มะนาว \nโซดา Lychee,\nLimenade, Soda & Ice - 12-05-02-0022 12-05-03-0022 bn_Lychee_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! IGNORE กัญชาโซดา Cannabis Soda กัญชา โซดา \n(อายุมากกว่า 20+ เท่านั้น) Cannabis, Soda & Ice - 12-05-02-0028 12-05-03-0028 bn_iced_hemp_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! -IGNORE มะนาวกัญชาโซดา Limenade \Ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! +IGNORE มะนาวกัญชาโซดา Limenade \ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! IGNORE สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0012 - bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! - #REF! #REF! IGNORE สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! น้ำแดงโซดา Salak Soda น้ำแดงกลิ่นสละ โซดา Salak, Soda & Ice - 12-05-02-0008 12-05-03-0008 bn_sala_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! @@ -572,9 +572,9 @@ IGNORE Tao Tim Hojicha ไอศครีมนม และโฮจิฉะ Name=AppFast,file=page_catalog_group_appfast.skt แอพ ฟาสท์ \nวานิลลา (Original) App Fast Original โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1018 - bn_protein_original_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! แอพ ฟาสท์ กาแฟ App Fast Espresso โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1019 - bn_protein_espresso_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! - แอพ ฟาสท์ ช็อกโก App Fast \NChocolate โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1020 - bn_protein_Chocolate_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! - แอพ ฟาสท์ ชาไทย App Fast \NThai Tea โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1021 - bn_protein_Thaitea_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! - แอพ ฟาสท์ ชาเขียว App Fast \NMatcha โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1022 - bn_protein_Matcha_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! + แอพ ฟาสท์ ช็อกโก App Fast \nChocolate โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1020 - bn_protein_Chocolate_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! + แอพ ฟาสท์ ชาไทย App Fast \nThai Tea โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1021 - bn_protein_Thaitea_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! + แอพ ฟาสท์ ชาเขียว App Fast \nMatcha โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1022 - bn_protein_Matcha_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF! Name=KidMenu,file=page_catalog_group_forkid.skt สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry , Soda & Ice - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF! @@ -602,18 +602,18 @@ Name=KidMenu,file=page_catalog_group_forkid.skt Name=Health,file=page_catalog_group_health.skt อเมริกาโน Americano กาแฟ และน้ำร้อน\n(อเมริกาโน) Espresso, Water 12-01-01-1003 12-01-02-1001 - bn_hot_america_no_Healthy.png 12-21-01-1003 12-21-02-1001 - posi1 - - - #REF! #REF! - #REF! #REF! - ลาเต้ Cafe' Latte กาแฟ นม และ ฟองนม Espresso, Milk,\NFoamed Milk 12-01-01-1004 12-01-02-1002 - bn_hot_latte_Healthy.png 12-21-01-1004 12-21-02-1002 - posi1 - - - #REF! #REF! - #REF! #REF! - มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\NMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF! - คาปูชิโน่ Cappuccino กาแฟ นม และ ฟองนม Espresso, Milk,\NFoamed Milk 12-01-01-1099 12-01-02-1099 - bn_hot_Cappu_Healthy.png 12-21-01-1099 12-21-02-1099 - posi1 - - - #REF! #REF! - #REF! #REF! + ลาเต้ Cafe' Latte กาแฟ นม และ ฟองนม Espresso, Milk,\nFoamed Milk 12-01-01-1004 12-01-02-1002 - bn_hot_latte_Healthy.png 12-21-01-1004 12-21-02-1002 - posi1 - - - #REF! #REF! - #REF! #REF! + มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\nMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF! + คาปูชิโน่ Cappuccino กาแฟ นม และ ฟองนม Espresso, Milk,\nFoamed Milk 12-01-01-1099 12-01-02-1099 - bn_hot_Cappu_Healthy.png 12-21-01-1099 12-21-02-1099 - posi1 - - - #REF! #REF! - #REF! #REF! ชานมไทย Thai Milk Tea ชาไทย และ นมอุ่น Thai Tea, Sugar, Milk 12-02-01-1024 12-02-02-1024 - bn_hot_thai_milk_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! - - - posi1 - - - - ชานมไต้หวัน Taiwanese \nMilk Tea ชาไต้หวัน และ นมอุ่น Taiwanese Tea, Sugar, \NAnd Milk 12-02-01-1025 12-02-02-1025 - bn_hot_taiwan_milk_tea_Jason_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! + ชานมไต้หวัน Taiwanese \nMilk Tea ชาไต้หวัน และ นมอุ่น Taiwanese Tea, Sugar, \nAnd Milk 12-02-01-1025 12-02-02-1025 - bn_hot_taiwan_milk_tea_Jason_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! มัทฉะลาเต้ Matcha Latte ชาเขียวมัทฉะ และ นมอุ่น Matcha And Warm Milk 12-02-01-1026 12-02-02-1026 - bn_hot_matcha_latte_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! ชาเขียวญี่ปุ่น Matcha ชาเชียว และน้ำ Matcha And Hot Water 12-02-01-1027 12-02-02-1027 - bn_hot_matcha_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! ชาดำ Thai Tea ชาไทย และน้ำ Thai Tea And Water 12-02-01-1029 12-02-02-1029 - bn_hot_blacktea.png - - - posi1 - - - #REF! #REF! - #REF! #REF! ชาดำมะนาว Thai Tea \nLimenade ชาไทย มะนาว และน้ำ Thai Tea, Limenade And Water 12-02-01-1030 12-02-02-1030 - bn_hot_limeblack tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! ชาดำไต้หวัน Taiwanese Tea ชาอู่หลงไต้หวัน น้ำ Taiwan Tea, Water, And Ice 12-02-01-1031 12-02-02-1031 - bn_hot_oolong_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! - ชาดำไต้หวัน\nมะนาว Taiwanese \nLBlack Tea ชาอู่หลงไต้หวัน น้ำ มะนาว Taiwan Tea, Limenade, \NWater, And Ice 12-02-01-1032 12-02-02-1032 - bn_hot_lime_Oolong_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! + ชาดำไต้หวัน\nมะนาว Taiwanese \nLBlack Tea ชาอู่หลงไต้หวัน น้ำ มะนาว Taiwan Tea, Limenade, \nWater, And Ice 12-02-01-1032 12-02-02-1032 - bn_hot_lime_Oolong_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! โฮจิฉะลาเต้ Hojicha Latte ชาเขียวคั่ว และ นมอุ่น Hojicha And Milk 12-02-01-1037 12-02-02-1037 - bn_hot_hojicha_milk_tea_sing_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-1002 12-03-02-1002 - bn_iced_cocoa_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! นม Milk นม Milk 12-03-01-1005 12-03-02-1005 - bn_iced_milk_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF! @@ -676,7 +676,7 @@ Name=Momday,file=page_catalog_momday.skt นี่สิตัวแม่ Jasmine Tea ชามะลิ น้ำ Jasmine Tea ,Water 12-99-01-0042 12-99-02-0044 12-99-03-0046 bn_jasmine_tea_motherday.png - - - posi1 - - - รักแม่ 3000 Jasmine Milk Tea ชามะลิ และนม Jasmine Tea and Milk 12-99-01-0043 12-99-02-0045 12-99-03-0047 bn_jasmine_milk_tea_motherday.png - - - posi1 - - - - มัมมี่ของต้าวก้อน Jasmine Milk Tea\NOREO Smoothie ชามะลิ นม และโอรีโอ Jasmine Tea Milk and Oreo - - 12-99-03-0048 bn_jasmine_oreo_motherday.png - - - posi1 - - - + มัมมี่ของต้าวก้อน Jasmine Milk Tea\nOREO Smoothie ชามะลิ นม และโอรีโอ Jasmine Tea Milk and Oreo - - 12-99-03-0048 bn_jasmine_oreo_motherday.png - - - posi1 - - - จี๊ดจ๊าดได้แม่ Jasmine Lime ชามะลิ ผงมะนาว และน้ำ Jasmine Tea Limenade and Ice 12-99-01-0049 12-99-02-0050 - bn_jasmine_tea_lime_motherday.png - - - posi1 - - - ซ่าแบบตัวมัม Jasmine Tea Soda ชามะลิ และโซดา Jasmine Tea and Soda - 12-99-05-0051 - bn_jasmine_tea_soda_motherday.png - - - posi1 - - - เป๊ปนะแม่ Pepsi Jasmine Tea เป๊ปซี่ ชามะลิ ผงมะนาว และโซดา Pepsi, Jasmine Tea, Limenade and Soda - 12-99-05-0052 - bn_pepsi_jasmine_tea_motherday.png - - - posi1 - - - @@ -734,17 +734,17 @@ Name=Rerun,file=page_catalog_group_pro_rerun.skt เมโบซ่า Meboza เมล่อน บ๊วย โซดา และน้ำแข็ง Melon, Ume , Soda And Ice - 12-99-02-0015 - bn_Melon_PLUM_Soda_rerun.png - - - posi1 - - - ห้องเชือด\nหมายเลข 13 Room no.13 เป๊ปซี่ ลิ้นจี่ มะนาว และโซดา Pepsi, Lychee , Lime And Soda - 12-99-05-0059 - bn_room_no_13_rerun.png - - - posi1 - - - พยาบาทชาติที่แล้ว The Haunting of\nthe Past เป๊ปซี่ ชูกำลัง มะนาว และโซดา Pepsi Energy, Lime And Soda - 12-99-05-0057 - bn_haunting_of_the_past_rerun.png - - - posi1 - - - - รวยจนช็อก!\nน็อคแล้วไหม Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\Nsugar, Cocoa - - 12-03-03-0035 bn_Mint_Wealthy_Cocoa_rerun.png - - - posi1 - - - + รวยจนช็อก!\nน็อคแล้วไหม Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nsugar, Cocoa - - 12-03-03-0035 bn_Mint_Wealthy_Cocoa_rerun.png - - - posi1 - - - รวยไม่รู้ล้ม\nเอาผมลงไหมล่ะ Mint Milk มินต์ และนม Mint And Milk - 12-03-02-0036 - bn_Mint_Wealthy_Milk_rerun.png - - - posi1 - - - ดิน 7 ป่าช้า 7 Haunted Woods เป๊ปซี่ นม และโอรีโอ Pepsi, Milk, Oreo And Ice - - 12-99-03-0066 bn_haunted_woods_rerun.png - - - posi1 - - - Name=Peach,file=page_catalog_group_pro_peach.skt - พีชเทลมีเลิฟ Peach Tell Me Love กาแฟ น้ำ และ พีช Espresso, Peach ,\Nsugar, Water 12-01-01-0059 12-01-02-0059 - bn_hot_americano_peach.png 12-21-01-0059 12-21-02-0059 - posi1 - - - - พีชบีมายด์ลาสท์เลิฟ Peach Be\nMy Last Love กาแฟ น้ำ นม และ พีช Espresso, Peach ,\Nsugar, Milk 12-01-01-0060 12-01-02-0060 12-01-03-0060 bn_hot_peach_latte.png 12-21-01-0060 12-21-02-0060 12-21-03-0060 posi1 - - - - พีชสเตย์บายมายไซด์ Peach, Stay By\nMy Side พีช ชาไทย และน้ำ Peach , Thai Tea,\Nwater 12-02-01-0051 12-02-02-0051 12-02-03-0051 bn_hot_peach_tea.png - - - posi1 - - - - พีชโกรโอลด์วิทมี Peach Grow Old With Me พีช ชามะลิ และน้ำ Peach , Jasmine Tea,\Nwater - 12-02-02-0052 - bn_hot_peach_jasmine_tea.png - - - posi1 - - - - แคนยูพีชเลิฟมีทู Can you Peach\nLove Me Too พีช นม และน้ำ Peach , Milk,\Nwater 12-03-01-0038 12-03-02-0038 12-03-03-0038 bn_peach_Milk.png - - - posi1 - - - - พีช โชว์เวอร์มี\nวิทยัวเลิฟ Peach, Shower Me\nWith Your Love. พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\Nwater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - - + พีชเทลมีเลิฟ Peach Tell Me Love กาแฟ น้ำ และ พีช Espresso, Peach ,\nsugar, Water 12-01-01-0059 12-01-02-0059 - bn_hot_americano_peach.png 12-21-01-0059 12-21-02-0059 - posi1 - - - + พีชบีมายด์ลาสท์เลิฟ Peach Be\nMy Last Love กาแฟ น้ำ นม และ พีช Espresso, Peach ,\nsugar, Milk 12-01-01-0060 12-01-02-0060 12-01-03-0060 bn_hot_peach_latte.png 12-21-01-0060 12-21-02-0060 12-21-03-0060 posi1 - - - + พีชสเตย์บายมายไซด์ Peach, Stay By\nMy Side พีช ชาไทย และน้ำ Peach , Thai Tea,\nwater 12-02-01-0051 12-02-02-0051 12-02-03-0051 bn_hot_peach_tea.png - - - posi1 - - - + พีชโกรโอลด์วิทมี Peach Grow Old With Me พีช ชามะลิ และน้ำ Peach , Jasmine Tea,\nwater - 12-02-02-0052 - bn_hot_peach_jasmine_tea.png - - - posi1 - - - + แคนยูพีชเลิฟมีทู Can you Peach\nLove Me Too พีช นม และน้ำ Peach , Milk,\nwater 12-03-01-0038 12-03-02-0038 12-03-03-0038 bn_peach_Milk.png - - - posi1 - - - + พีช โชว์เวอร์มี\nวิทยัวเลิฟ Peach, Shower Me\nWith Your Love. พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\nwater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - - ฟอลอินเลิฟวิทมี\n(พีช~) Fall In Love With Me\nPeach พีช นม น้ำตาล Oreo Peach , Milk, Oreo & Ice - - 12-03-03-0040 bn_peach_Oreo_smoothie.png - - - posi1 - - - พีชทีชมีฮาวทูเลิฟ Peach Teach Me\nHow To Love พีช น้ำ และน้ำแข็ง Peach ,Water And Ice - 12-05-02-0068 - bn_iced_peach.png - - - posi1 - - - พีชฟีลมายเอ็มทีฮาร์ต Peach, Fill My\nEmpty Heart พีช โซดา และน้ำแข็ง Peach ,Soda And Ice - 12-05-02-0069 - bn_iced_peach_soda.png - - - posi1 - - - @@ -753,11 +753,11 @@ Name=Peach,file=page_catalog_group_pro_peach.skt ยูอาเดอะมิสซิงพีช You're The Missing\nPeach พีช สตรอเบอร์รี่ และโซดา Peach , Strawberry , Soda & Ice - 12-05-02-0073 - bn_peach_Strawberry_Soda.png - - - posi1 - - - Name=BadValentine,file=page_catalog_group_pro_bad_valentine.skt - เป็นเด็กดื้อโดนตีเป็น\nเด็กดีโดนทิ้งตลอด Bad kids smacked\ngood ones ditched กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\Ncocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_iced_Mocha_Tokyobanana_smoothie.png - 12-21-02-0061 12-21-03-0061 posi1 - - - - ตัดบทบอกฝันดี\n= เขาไม่อยากคุย Ghosted after night\nconvo's dead กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\Nmatcha, Milk - 12-01-02-0062 - bn_iced_matcha_Latte_TokyoBanana.png - 12-21-02-0062 - posi1 - - - - ที่ทำดีด้วยเขาไม่ได้มีใจ\nแต่เขามีเมตตา Kindness fix,\nzero romance drama. กล้วย นม และโกโก้ และน้ำ Banana ,\Nmilk, Cocoa - 12-03-02-0024 12-03-03-0024 bn_Choco_banana_smoothie.png - - - posi1 - - - - ตกอยู่ในสถานะ\nสแตนด์บาย Love on mute,\nstuck in suspense. กล้วย สตรอเบอร์รี่ และนม Banana , Strawberry ,\Nmilk - - 12-03-03-0045 bn_iced_strawberry_Tokyobanana_smoothie.png - - - posi1 - - - - บอกว่าคุยได้\nพอทักไปก็หาย Promised a chat, but\npoof,gone after HEY. กล้วย นม น้ำตาล Oreo Banana , Milk,\Nsugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_bad_valentine.png - - - posi1 - - - + เป็นเด็กดื้อโดนตีเป็น\nเด็กดีโดนทิ้งตลอด Bad kids smacked\ngood ones ditched กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\ncocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_iced_Mocha_Tokyobanana_smoothie.png - 12-21-02-0061 12-21-03-0061 posi1 - - - + ตัดบทบอกฝันดี\n= เขาไม่อยากคุย Ghosted after night\nconvo's dead กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\nmatcha, Milk - 12-01-02-0062 - bn_iced_matcha_Latte_TokyoBanana.png - 12-21-02-0062 - posi1 - - - + ที่ทำดีด้วยเขาไม่ได้มีใจ\nแต่เขามีเมตตา Kindness fix,\nzero romance drama. กล้วย นม และโกโก้ และน้ำ Banana ,\nmilk, Cocoa - 12-03-02-0024 12-03-03-0024 bn_Choco_banana_smoothie.png - - - posi1 - - - + ตกอยู่ในสถานะ\nสแตนด์บาย Love on mute,\nstuck in suspense. กล้วย สตรอเบอร์รี่ และนม Banana , Strawberry ,\nmilk - - 12-03-03-0045 bn_iced_strawberry_Tokyobanana_smoothie.png - - - posi1 - - - + บอกว่าคุยได้\nพอทักไปก็หาย Promised a chat, but\npoof,gone after HEY. กล้วย นม น้ำตาล Oreo Banana , Milk,\nsugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_bad_valentine.png - - - posi1 - - - เขาจะกลับมาก็ต่อเมื่อ\nไม่เหลือใคร Pops up when the\nrest bail on you. กล้วย ขิง และน้ำแข็ง Banana , Ginger And Ice - 12-02-02-0053 - bn_iced_Ginger_TokyoBanana.png - - - posi1 - - - รักหมดใจ\nเจ็บหมดตัวมีอยู่จริง Love deep, broke\nhard–the real deal. กล้วย ชาไทย นม และน้ำแข็ง Banana , Thai Tea, Milk And Ice - 12-02-02-0054 - bn_iced_ThaiTea_TokyoBanana.png - - - posi1 - - - คนลืมก่อนชนะ\nโอเคเราแพ้ Forget love, take\nthe L กล้วย นม และน้ำแข็ง Banana , Milk And Ice - 12-03-02-0023 12-03-03-0023 bn_iced_milk_TokyoBanana.png - - - posi1 - - - @@ -786,12 +786,12 @@ Name=Lip_It,file=page_catalog_group_pro_lipit.skt แก้วนี้ของพี่นัท Rose Honey Pudding คาราเมล สตรอเบอร์รี่ นมและน้ำแข็ง Strawberry, Caramel , Milk And Ice - - 12-03-03-0047 bn_Caramel_Straw_Milk_Rose_honey_puddingl.png - - - posi1 - - - นิสาอินเต่าบิน Botanic Citrus ยูซุ ชามะลิ เป๊ปซี่ และโซดา Pepsi, Jasmine Tea, Yuzu , Soda And Ice - 12-99-05-0063 - bn_PEPSI_Jasmine_Yuzu_Botanic_citrus.png - - - posi1 - - - สะบัดหลอด Choco Fondant กล้วย โกโก้ นมและน้ำแข็ง Cocoa, Banana , Milk And Ice - 12-03-02-0040 - bn_Cocoa_Straw_Milk_Banana_Choco_Fondant.png - - - posi1 - - - - โชว์แก้วอร่อย Berry Jam สตรอเบอร์รี่ ยูซุ น้ำและน้ำแข็ง Strawberry , Yuzu , \NWater - - 12-05-03-0063 bn_Straw_Yuzu_Berry_Yuzu.png - - - posi1 - - - - ไหนดื่มสิ Raspberry ลิ้นจี่ สละ น้ำและน้ำแข็ง Lychee , Salak , \NWater - 12-05-02-0080 - bn_Lychee_SALAK_Rasberry.png - - - posi1 - - - - เรื่องราวแก้วนี้ Lychee Rose ลิ้นจี่ ชามะลิ น้ำและน้ำแข็ง Lychee , Jasmine Tea \NWater - - 12-02-03-0053 bn_Lychee_Jasmine tea_Lychee_Rose.png - - - posi1 - - - + โชว์แก้วอร่อย Berry Jam สตรอเบอร์รี่ ยูซุ น้ำและน้ำแข็ง Strawberry , Yuzu , \nWater - - 12-05-03-0063 bn_Straw_Yuzu_Berry_Yuzu.png - - - posi1 - - - + ไหนดื่มสิ Raspberry ลิ้นจี่ สละ น้ำและน้ำแข็ง Lychee , Salak , \nWater - 12-05-02-0080 - bn_Lychee_SALAK_Rasberry.png - - - posi1 - - - + เรื่องราวแก้วนี้ Lychee Rose ลิ้นจี่ ชามะลิ น้ำและน้ำแข็ง Lychee , Jasmine Tea \nWater - - 12-02-03-0053 bn_Lychee_Jasmine tea_Lychee_Rose.png - - - posi1 - - - เคาะค่ะ Sum Balm spf 15 pa++ คาราเมล มัทฉะ นมและน้ำแข็ง Caramel , Matcha Milk And Ice - 12-03-02-0041 - bn_Caramel_Mint_Milk_Sum_Balm_SPF_15.png - - - posi1 - - - - ถ้าพี่นัทเป๊ะ เต่าก็เป๊ะ Peach Tea สตรอเบอร์รี่ ลิ้นจี่ ชาไทย และน้ำแข็ง Strawberry, Lychee ,\NThai Tea Water - 12-02-02-0056 - bn_Straw_Lychee_Thai Tea_Peach_tea.png - - - posi1 - - - - เต่าบินเมคโอเวอร์\nมั๊วะ! Peach สตรอเบอร์รี่ ลิ้นจี่ น้ำและน้ำแข็ง Strawberry, Lychee , \NWater - - 12-05-03-0064 bn_Lychee_Staw_Peach_Syrup.png - - - posi1 - - - + ถ้าพี่นัทเป๊ะ เต่าก็เป๊ะ Peach Tea สตรอเบอร์รี่ ลิ้นจี่ ชาไทย และน้ำแข็ง Strawberry, Lychee ,\nThai Tea Water - 12-02-02-0056 - bn_Straw_Lychee_Thai Tea_Peach_tea.png - - - posi1 - - - + เต่าบินเมคโอเวอร์\nมั๊วะ! Peach สตรอเบอร์รี่ ลิ้นจี่ น้ำและน้ำแข็ง Strawberry, Lychee , \nWater - - 12-05-03-0064 bn_Lychee_Staw_Peach_Syrup.png - - - posi1 - - - Name=Monday_Banana,file=page_catalog_group_pro_monday_banana.skt ลาที่ดีคือลาออก A Positive Leave\nIs Relieve โกโก้ โตเกียวบานาน่า นมและน้ำตาล Tokyo Banana , Milk, Sugar - 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk_monday_banana.png - - - posi1 - - - @@ -809,18 +809,18 @@ Name=Tea Time Festival,file=page_catalog_group_pro_tea_time.skt ชาดำเป๊ปซี่บ๊วยโซดา Pepsi Plum Thai Tea เป๊ปซี่ บ๊วย ชาไทย และโซดา Pepsi, Plum, Thai Tea And Soda - 12-99-05-0062 - bn_PEPSI_PLUM_ThaiTea_tea_time.png - - - posi1 - - - ชาไทยโตเกียวบานาน่า Tokyo Banana Thai Milk Tea กล้วย ชาไทย นม และน้ำแข็ง Banana , Thai Tea, Milk And Ice - 12-02-02-0054 - bn_iced_ThaimilkTea_TokyoBanana_tea_time.png - - - posi1 - - - ชาดำเป๊ปซี่ Pepsi เป๊ปซี่ชาดำครับจารย์ ชาไทย เป๊ปซี่ Thai Tea, Pepsi - 12-99-02-0002 - bn_PEPSI_Black_tea_tea_time.png - - - posi1 - - - - ชาไทยโอริโอ้ปั่น Thai Milk Tea Oreo Smoothie ชาไทย นม น้ำตาล \n Oreo Thai Tea, Milk,\Nsugar, Oreo - - 12-02-03-0045 bn_THAI_MILK_TEA_OREO_SMOOTHIE_tea_time.png - - - posi1 - - - + ชาไทยโอริโอ้ปั่น Thai Milk Tea Oreo Smoothie ชาไทย นม น้ำตาล \n Oreo Thai Tea, Milk,\nsugar, Oreo - - 12-02-03-0045 bn_THAI_MILK_TEA_OREO_SMOOTHIE_tea_time.png - - - posi1 - - - มัทฉะลาเต้ Matcha Latte ชาเชียว นม Matcha And Warm Milk 12-02-01-0026 12-02-02-0026 12-02-03-0026 bn_hot_matcha_milk_tea_tea_time.png - - - posi1 - - - มัทฉะลาเต้ Matcha Latte (H) ชาเชียว นม Matcha And Warm Milk 12-02-01-1026 12-02-02-1026 - bn_iced_Matcha_latte_tea_time.png - - - posi1 - - - ชาเขียวญี่ปุ่น Matcha ชาเชียว และน้ำ Matcha And Hot Water 12-02-01-0027 12-02-02-0027 12-02-03-0027 bn_hot_matcha_tea_tea_time.png - - - posi1 - - - ชาเขียวญี่ปุ่น Matcha (H) ชาเชียว และน้ำ Matcha And Hot Water 12-02-01-1027 12-02-02-1027 - bn_hot_matcha_tea_tea_time_health.png - - - posi1 - - - ชาเขียวญี่ปุ่นมะนาว Matcha Limenade ชาเชียว มะนาว Matcha, Limenade, And Hot Water 12-02-01-0028 12-02-02-0028 12-02-03-0028 bn_ICED_MATCHA_LEMONADE_tea_time.png - - - posi1 - - - กาแฟมัทฉะลาเต้ Matcha Cafe' Latte กาแฟ นม ชาเขียวมัทฉะ \nและ นม Espresso, Matcha, Milk 12-01-01-0031 12-01-02-0031 12-01-03-0031 BN_ICED_MATCHA_CAFE_LATTE_tea_time_health.png 12-21-01-0031 12-21-02-0031 12-21-03-0031 posi1 - - - - มัทฉะลาเต้โตเกียวบานาน่า Tokyo Banana Matcha Cafe Latte กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\NMatcha, Milk - 12-01-02-0062 - bn_ICED_TOKYO_BANANA_MATCHA_CAFE_LATTE_tea_time.png - 12-21-02-0062 - posi1 - - - + มัทฉะลาเต้โตเกียวบานาน่า Tokyo Banana Matcha Cafe Latte กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\nMatcha, Milk - 12-01-02-0062 - bn_ICED_TOKYO_BANANA_MATCHA_CAFE_LATTE_tea_time.png - 12-21-02-0062 - posi1 - - - มัทฉะโตเกียวบานาน่า Tokyo Banana Matcha กล้วย ผงมัชชะ และน้ำแข็ง Banana , Matcha And Ice - 12-02-02-0055 - bn_ICED_TOKYO_BANANA_MATCHA_tea_time.png - - - posi1 - - - โฮจิฉะลาเต้ Hojicha Latte ชาเขียวคั่ว และ นมอุ่น Hojicha And Milk 12-02-01-0037 12-02-02-0037 12-02-03-0037 bn_hot_HOJICHA_LATTE_tea_time.png - - - posi1 - - - โฮจิฉะลาเต้ Hojicha Latte (H) ชาเขียวคั่ว และ นมอุ่น Hojicha And Milk 12-02-01-1037 12-02-02-1037 - bn_hot_HOJICHA_LATTE_tea_time_health.png - - - posi1 - - - - โฮจิฉะลาเต้โอริโอ้ปั่น Hojicha Oreo Smoothie โฮจิฉะ นม น้ำตาล \n Oreo Hojicha, Milk,\NSugar, Oreo - - 12-02-03-0043 bn_HOJICHA_smoothie_tea_time.png - - - posi1 - - - + โฮจิฉะลาเต้โอริโอ้ปั่น Hojicha Oreo Smoothie โฮจิฉะ นม น้ำตาล \n Oreo Hojicha, Milk,\nSugar, Oreo - - 12-02-03-0043 bn_HOJICHA_smoothie_tea_time.png - - - posi1 - - - เป๊ปซี่มะลิมะนาว Pepsi Jasmine Tea เป๊ปซี่ ชามะลิ ผงมะนาว และโซดา Pepsi, Jasmine Tea, Limenade And Soda - 12-99-05-0052 - bn_PEPSI_Jasmine_tea_tea_time.png - - - posi1 - - - ชามะลิ Jasmine Tea ชามะลิ น้ำ Jasmine Tea ,Water 12-99-01-0042 12-99-02-0044 12-99-03-0046 bn_HOT_JASMINE_TEA_tea_time.png - - - posi1 - - - ชามะลินม Jasmine Milk Tea ชามะลิ และนม Jasmine Tea And Milk 12-99-01-0043 12-99-02-0045 12-99-03-0047 bn_jasmine_milk_tea_tea_time.png - - - posi1 - - - @@ -837,7 +837,7 @@ Name=Free fire,file=page_catalog_group_pro_freefile.skt Name=Wednesday Melon,file=page_catalog_group_pro_wednesday_melon.skt นมเมล่อน Melon Milk นม และ เมล่อน Milk & Melon 12-03-01-0022 12-03-02-0022 12-03-03-0022 bn_iced_melon_milk.png - - - posi1 - - - #REF! #REF! #REF! #REF! #REF! กาแฟเมล่อนลาเต้ Melon\nCafe Latte กาแฟ เมล่อน น้ำตาล \nและ นม Espresso, Melon, Milk, Sugar 12-01-01-0039 12-01-02-0039 - bn_hot_melon_latte.png 12-21-01-0039 12-21-02-0039 - posi1 - - - #REF! #REF! - #REF! #REF! - เมล่อนปั่น\nโอรีโอภูเขาไฟ Melon Milk Oreo Volcano เมล่อน นม น้ำตาล \n Oreo Melon , Milk,\NSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie.png - - - posi1 - - - - - #REF! NN + เมล่อนปั่น\nโอรีโอภูเขาไฟ Melon Milk Oreo Volcano เมล่อน นม น้ำตาล \n Oreo Melon , Milk,\nSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie.png - - - posi1 - - - - - #REF! NN เมล่อนโซดา Melon Soda เมล่อน โซดา \nและน้ำแข็ง Melon , Soda, Ice - 12-05-02-0044 - bn_iced_melon_soda.png - - - posi1 - - - - #REF! - #REF! #REF! เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0047 12-05-03-0047 bn_iced_pepsi_Melon.png - - - posi1 - - - - #REF! #REF! #REF! #REF! เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0105 12-05-03-0105 bn_iced_pepsi_Melon.png - - - posi1 - - - @@ -850,49 +850,49 @@ Name=Wednesday Melon,file=page_catalog_group_pro_wednesday_melon.skt กาเลคซอน Galayzon เมล่อน น้ำเชื่อมกล้วย นม และน้ำแข็ง Melon , Banana ,Milk 12-99-03-0016 Name=coconut,file=page_catalog_group_pro_nam_hom_coconut.skt - มะพร้าวหาดใหญ่\n(มาก) Hat Yai Beach\nCoconut กาแฟดำมะพร้าวน้ำหอม Espresso, Coconut ,\NSugar, Water - 12-01-02-0068 - bn_hot_americano_Coconut_pro.png - 12-21-02-0068 - posi1 - - - + มะพร้าวหาดใหญ่\n(มาก) Hat Yai Beach\nCoconut กาแฟดำมะพร้าวน้ำหอม Espresso, Coconut ,\nSugar, Water - 12-01-02-0068 - bn_hot_americano_Coconut_pro.png - 12-21-02-0068 - posi1 - - - มะพร้าวหาด\nบางแสน(ห้า) Bangsaen Beach\nCoconut มะพร้าวน้ำหอมปั่น Coconut And Water - - 12-05-03-0092 bn_smoothie_coconut_pro.png - - - posi1 - - - - มะพร้าวหาด\nจอมเทียน(พรรษา) Jomtien Beach\nCoconut มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut , Milk,\NWater - 12-03-02-0058 12-03-03-0058 bn_iced_milk_coconut_pro.png - - - posi1 - - - - มะพร้าวหาด\nนางรำ(สวย) Nang Ram Beach\nCoconut มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut , Cocoa, Milk,\NWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_pro.png - - - posi1 - - - - มะพร้าวหาด\nทรายแก้ว(มังกร) Glass Sand Beach\nCoconut มะพร้าวน้ำหอมมัทฉะลาเต้ Coconut , Matcha Milk \NWater - 12-02-02-0060 12-02-03-0060 bn_match_milk_coconut_pro.png - - - posi1 - - - + มะพร้าวหาด\nจอมเทียน(พรรษา) Jomtien Beach\nCoconut มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut , Milk,\nWater - 12-03-02-0058 12-03-03-0058 bn_iced_milk_coconut_pro.png - - - posi1 - - - + มะพร้าวหาด\nนางรำ(สวย) Nang Ram Beach\nCoconut มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_pro.png - - - posi1 - - - + มะพร้าวหาด\nทรายแก้ว(มังกร) Glass Sand Beach\nCoconut มะพร้าวน้ำหอมมัทฉะลาเต้ Coconut , Matcha Milk \nWater - 12-02-02-0060 12-02-03-0060 bn_match_milk_coconut_pro.png - - - posi1 - - - มะพร้าวหาด\nแม่พิมพ์(ดีด) Mae Pim Beach\nCoconut ชาเขียวญี่ปุ่นมะพร้าวน้ำหอม Coconut , Matcha And Water - 12-02-02-0061 12-02-03-0061 bn_iced_matcha_tea_coconut_pro.png - - - posi1 - - - - มะพร้าวหาด\nแสงจันทร์(ลงทัณฑ์) Moonlight Beach\nCoconut มะพร้าวชาไทย\nนมนิวซีแลนด์ Coconut , Thai Tea, Milk \NWater - 12-02-02-0062 12-02-03-0062 bn_hot_thai_milk_tea_coconut_pro.png - - - posi1 - - - + มะพร้าวหาด\nแสงจันทร์(ลงทัณฑ์) Moonlight Beach\nCoconut มะพร้าวชาไทย\nนมนิวซีแลนด์ Coconut , Thai Tea, Milk \nWater - 12-02-02-0062 12-02-03-0062 bn_hot_thai_milk_tea_coconut_pro.png - - - posi1 - - - มะพร้าวหาด\nพัทยา(พารา) Pattaya Beach\nCoconut ชาดำเย็นมะพร้าวน้ำหอม Coconut , Thai Tea And Water - 12-02-02-0063 12-02-03-0063 bn_black_tea_coconut_pro.png - - - posi1 - - - - มะพร้าวหาด\nสวนสน(ใจไหม) Suan Son Beach\nCoconut มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \NWater - 12-02-02-0064 12-02-03-0064 bn_jasmine_milk_coconut_pro.png - - - posi1 - - - + มะพร้าวหาด\nสวนสน(ใจไหม) Suan Son Beach\nCoconut มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \nWater - 12-02-02-0064 12-02-03-0064 bn_jasmine_milk_coconut_pro.png - - - posi1 - - - มะพร้าวหาด\nแหลมสิง(หไกรภพ) Laem Sing Beach\nCoconut ชามะลิมะพร้าวน้ำหอม Coconut , Jasmine Tea And Water - 12-02-02-0065 12-02-03-0065 bn_jasmine_coconut_pro.png - - - posi1 - - - มะพร้าวหาด\nเติมรัก(ฉันทำไม) Toem Rak Beach\nCoconut มะพร้าวน้ำหอมโซดา Coconut And Soda - 12-05-02-0090 - bn_iced_Coconut_soda_pro.png - - - posi1 - - - มะพร้าวหาด\nยาว(ไปยาวไป) Long Beach Coconut มะพร้าวน้ำหอมเป๊ปซี่ Coconut , Pepsi And Soda - 12-05-02-0091 12-05-03-0091 bn_iced_pepsi_coconut_pro.png - - - posi1 - - - มะพร้าวหาด\nยาว(ไปยาวไป) Long Beach Coconut มะพร้าวน้ำหอมเป๊ปซี่ Coconut , Pepsi And Soda 12-05-02-0114 12-05-03-0114 bn_iced_pepsi_coconut_pro.png - - - posi1 - - - มะพร้าวหาด(ใกล้ฉัน) Hat Beach Coconut มะพร้าวน้ำหอมลิ้นจี่โซดา Coconut , Lychee And Soda - 12-05-02-0093 - bn_iced_Lychee_Coconut_pro.png - - - posi1 - - - หาดนี้มีกล้วยช็อก Banana Choc Beach นมช็อกโกโตเกียว\nบานาน่า Tokyo Banana , Milk, Sugar - 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk_pro.png - - - posi1 - - - - ภูเขาโอรีโอระเบิดหา\nกล้วยมอด Oreo Bomb\nBanana-Beach นมกล้วยปั่น\nโอรีโอภูเขาไฟ Banana , Milk,\NSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_pro.png - - - posi1 - - - - โจรบุกหาดใหญ่(มาก) Pirates in Hat Yai beach กาแฟมินต์ลาเต้ Espresso, Mint ,\NSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_pro.png - 12-21-02-0057 - posi1 - - - - โจรบุกหาดบางแสน\n(ห้า) Pirates in Bangsaen Beach มินต์กาโน่ Espresso, Mint ,\NSugar, Water - 12-01-02-0058 - bn_Mint_Americano_pro.png - 12-21-02-0058 - posi1 - - - + ภูเขาโอรีโอระเบิดหา\nกล้วยมอด Oreo Bomb\nBanana-Beach นมกล้วยปั่น\nโอรีโอภูเขาไฟ Banana , Milk,\nSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_pro.png - - - posi1 - - - + โจรบุกหาดใหญ่(มาก) Pirates in Hat Yai beach กาแฟมินต์ลาเต้ Espresso, Mint ,\nSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_pro.png - 12-21-02-0057 - posi1 - - - + โจรบุกหาดบางแสน\n(ห้า) Pirates in Bangsaen Beach มินต์กาโน่ Espresso, Mint ,\nSugar, Water - 12-01-02-0058 - bn_Mint_Americano_pro.png - 12-21-02-0058 - posi1 - - - โจรบุกหาดทรายแก้ว\n(มังกร) Pirates in Glass Sand Beach มัทฉะลาเต้มินต์ Matcha, Mint &Milk - - 12-02-03-0050 bn_Matcha_latte_mint_smoothie_pro.png - - - posi1 - - - โจรบุกหาดแม่พิมพ์(ดีด) Pirates in Mae Pim Beach มิมต์มอคค่า Espresso, Mint , Milk - 12-01-02-0064 - bn_Iced_Mint_Mocha_pro.png - 12-21-02-0064 - posi1 - - - - โจรบุกหาดนางรำ\n(สวย) Pirates in Nang Ram Beach โกโก้มินต์ Mint , Milk,\NSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_pro.png - - - posi1 - - - - โจรบุกหาดแม่พิมพ์\n(ดีด) Pirates in Toem Rak Beach มินต์โอรีโอภูเขาไฟ Mint , Milk,\NSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_pro.png - - - posi1 - - - - โจรบุกหาด(ใกล้ฉัน) Pirates in Hat Beach นมสตรอเบอร์รี่มินต์ Mint , Milk,\NStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_pro.png - - - posi1 - - - + โจรบุกหาดนางรำ\n(สวย) Pirates in Nang Ram Beach โกโก้มินต์ Mint , Milk,\nSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_pro.png - - - posi1 - - - + โจรบุกหาดแม่พิมพ์\n(ดีด) Pirates in Toem Rak Beach มินต์โอรีโอภูเขาไฟ Mint , Milk,\nSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_pro.png - - - posi1 - - - + โจรบุกหาด(ใกล้ฉัน) Pirates in Hat Beach นมสตรอเบอร์รี่มินต์ Mint , Milk,\nStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_pro.png - - - posi1 - - - โจรบุกหาดพัทยา\n(พารา) Pirates in Pattaya Beach สตรอเบอร์รี่\nมินต์โซดา Mint , Strawberry , Lime, Soda & Ice - 12-05-02-0063 - bn_Mint_Strawberry_Soda_pro.png - - - posi1 - - - โจรบุกหาดสวนสน\n(ใจไหม) Pirates in Suan Son Beach ยูซุมินต์โซดา Mint , Yuzu Soda & Ice - 12-05-02-0064 - BN_Yuzu_Mint_Soda_pro.png - - - posi1 - - - โจรบุกหาดยาว\n(ไปยาวไป) Pirates in Long Beach เป๊ปซี่มินต์ Pepsi, Mint And Soda - 12-05-02-0067 - bn_Mint_pepsi_pro.png - - - posi1 - - - Name=cocoa7.7,file=page_catalog_group_pro_cocoa_77.skt มอคค่า Mocha กาแฟ นม โกโก้ และ น้ำตาล Espresso, Cocoa, Milk, Sugar 12-01-01-0006 12-01-02-0003 12-01-03-0003 bn_hot_Mocha_cocoa77 12-21-01-0006 12-21-02-0003 12-21-03-0003 posi1 - - - #REF! #REF! #REF! #REF! #REF! - มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\NMilk, Sugar 12-01-01-1006 12-01-02-1003 - cocoa_mocha_Healthy_cocoa77 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF! - มอคค่าโตเกียวบานาน่า Tokyo banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\NCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha_cocoa77 - 12-21-02-0061 12-21-03-0061 posi1 - - - + มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\nMilk, Sugar 12-01-01-1006 12-01-02-1003 - cocoa_mocha_Healthy_cocoa77 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF! + มอคค่าโตเกียวบานาน่า Tokyo banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\nCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha_cocoa77 - 12-21-02-0061 12-21-03-0061 posi1 - - - โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-0002 12-03-02-0002 12-03-03-0002 bn_iced_cocoa_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF! โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-1002 12-03-02-1002 - bn_iced_cocoa_Healthy_cocoa77 - - - posi1 - - - #REF! #REF! - #REF! #REF! - คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\NCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF! + คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\nCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF! นมช็อกโกโตเกียว\nบานาน่า Choco Tokyo\nBanana Milk โกโก้ บานาน่า นมและน้ำตาล Tokyo Banana , Milk, Sugar 12-03-01-0024 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk_cocoa77 - - - posi1 - - - โกโก้ยูซุ Cocoa Yuzu โกโก้ และยูซุ Cocoa And Yuzu 12-03-01-0025 12-03-02-0025 12-03-03-0025 bn_ChocoYuzu_milk_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF! - โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\NSugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa_cocoa77 - - - posi1 - - - + โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nSugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa_cocoa77 - - - posi1 - - - ช็อกโกโตเกียวบานาน่า Cocoa Banana Milk กล้วย โกโก้ นมและน้ำแข็ง Cocoa, Banana , Milk And Ice - 12-03-02-0040 - bn_ChocoBanana_milk_cocoa77 - - - posi1 - - - - มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut \NChocolate Milk มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\NWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_cocoa77 - - - posi1 - - - + มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut \nChocolate Milk มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_cocoa77 - - - posi1 - - - โกโก้สตอเบอร์รี่ปั่น Strawberry Cocoa \nSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Milk, Cocoa, Strawberry - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_cocoa77 - - - posi1 - - - - - #REF! NN #REF! - โกโก้ปั่น\nโอรีโอภูเขาไฟ Choco Oreo Volcano โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\NSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_cocoa77 - - - posi1 - - - - - #REF! NN - ช็อคโก้สตรอว์เบอร์รี่\nโตเกียวบานาน่าปั่น Strawberry Choco Tokyo Banana Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\NMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_cocoa77 - - - posi2 - - - - โกโก้\nบิสคอฟ Cocoa Milk \nBiscoff Volcano โกโก้ นม น้ำตาล \n บิสคอฟ Cocoa, Milk,\NSugar, Biscoff - - 12-03-03-0061 bn_cocoa_MILK_BISCOFF_cocoa77 - - - posi1 - - - + โกโก้ปั่น\nโอรีโอภูเขาไฟ Choco Oreo Volcano โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\nSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_cocoa77 - - - posi1 - - - - - #REF! NN + ช็อคโก้สตรอว์เบอร์รี่\nโตเกียวบานาน่าปั่น Strawberry Choco Tokyo Banana Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\nMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_cocoa77 - - - posi2 - - - + โกโก้\nบิสคอฟ Cocoa Milk \nBiscoff Volcano โกโก้ นม น้ำตาล \n บิสคอฟ Cocoa, Milk,\nSugar, Biscoff - - 12-03-03-0061 bn_cocoa_MILK_BISCOFF_cocoa77 - - - posi1 - - - เมล่อนบานาน่านมปั่น Melon Banana\nMilk Smoothie โกโก้ นม เมล่อน Cocoa, Milk, Melon - - 12-99-03-0017 bn_iced_melon_cocoa_smoothie_cocoa77 - - - posi1 - - - เป๊ปซี่โกโก้โอรีโอภูเขาไฟ Pepsi Cocoa Oreo \nVolcano เป๊ปซี่ โกโก้ นม และโอรีโอ Pepsi, Cocoa, Milk, Oreo And Ice - - 12-99-03-0067 bn_ChocoOreo_PEPSI_smoothie_cocoa77 - - - posi1 - - - เป๊ปซี่โกโก้โอรีโอภูเขาไฟ Pepsi Cocoa Oreo \nVolcano เป๊ปซี่ โกโก้ นม และโอรีโอ Pepsi, Cocoa, Milk, Oreo And Ice - - 12-99-03-0068 bn_ChocoOreo_PEPSI_smoothie_cocoa77 - - - posi1 - - - @@ -931,8 +931,8 @@ Name=7up,file=page_catalog_group_pro_7up_lucky_draw_x2.skt เป๊ปซี่นม Pepsi Milk เป๊ปซี่ นม Pepsi, Milk - 12-99-05-0067 - bn_Pepsi_Milk_lucky_draw_x2.png - - - posi1 - - - เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0046 - bn_Pepsi_Plum_lucky_draw_x2.png - - - posi1 - - - - #REF! - #REF! #REF! เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0104 - bn_Pepsi_Plum_lucky_draw_x2.png - - - posi1 - - - - เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\NAnd Soda - 12-99-05-0058 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - - - เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\NAnd Soda - 12-99-05-0068 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - - + เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\nAnd Soda - 12-99-05-0058 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - - + เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\nAnd Soda - 12-99-05-0068 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - - เป๊ปซี่มัทฉะ Pepsi Matcha เป๊ปซี่ มัทฉะ และโซดา Pepsi, Matcha And Soda - 12-99-05-0060 - bn_Pepsi_Matcha_lucky_draw_x2.png - - - posi1 - - - เป๊ปซี่มัทฉะ Pepsi Matcha เป๊ปซี่ มัทฉะ และโซดา Pepsi, Matcha And Soda - 12-99-05-0069 - bn_Pepsi_Matcha_lucky_draw_x2.png - - - posi1 - - - เป๊ปซี่ Pepsi เป๊ปซี่ Pepsi, Ice - 12-05-02-0007 - bn_Pepsi_lucky_draw_x2.png - - - posi1 - - - - #REF! - #REF! #REF! @@ -949,7 +949,7 @@ Name=7up,file=page_catalog_group_pro_7up_lucky_draw_x2.skt เป๊ปซี่มินต์ Pepsi Mint เป๊ปซี่ มินต์ ผงมะนาว และโซดา Pepsi, Mint Lime & Ice - 12-05-02-0108 - bn_Pepsi_Mint_lucky_draw_x2.png - - - posi1 - - - เป๊ปซี่ปั่น Pepsi Smoothie เป๊ปซี่ Pepsi, Ice - - 12-05-03-0007 bn_Pepsi_Smoothie_lucky_draw_x2.png - - - posi1 - - - - - #REF! NN #REF! เป๊ปซี่ปั่น Pepsi Smoothie เป๊ปซี่ Pepsi, Ice - - 12-05-03-0094 bn_Pepsi_Smoothie_lucky_draw_x2.png - - - posi1 - - - - - #REF! NN #REF! - เป๊ปซี่ชูกำลัง Pepsi Energy เป๊ปซี่ ชูกำลัง มะนาว และโซดา Pepsi Energy , Lime\NAnd Soda - 12-99-05-0057 - bn_Pepsi_Energy_lucky_draw_x2.png - - - posi1 - - - + เป๊ปซี่ชูกำลัง Pepsi Energy เป๊ปซี่ ชูกำลัง มะนาว และโซดา Pepsi Energy , Lime\nAnd Soda - 12-99-05-0057 - bn_Pepsi_Energy_lucky_draw_x2.png - - - posi1 - - - เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0047 12-05-03-0047 bn_Pepsi_Melon_lucky_draw_x2.png - - - posi1 - - - - #REF! #REF! #REF! #REF! เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0105 12-05-03-0105 bn_Pepsi_Melon_lucky_draw_x2.png - - - posi1 - - - - #REF! #REF! #REF! #REF! เป๊ปซี่ยูซุ Pepsi Yuzu เป๊ปซี่ ยูซุ โซดา Pepsi, Yuzu & Ice - 12-05-02-0053 - bn_Pepsi_Yuzu_lucky_draw_x2.png - - - posi1 - - - @@ -966,44 +966,44 @@ Name=โก้ได้แม่,file=page_catalog_group_pro_mom_cocoa.skt โกโก้ตัววีนบุตร Cocoa Soda โกโก้ และโซดา Cocoa , Soda , Ice - 12-03-02-0071 - CocoaNoMilk_mom_cocoa_soda.png - - - posi1 - - - โกโก้ตัวสปอยล์บุตร Cocoa 7up soda โกโก้ 7up และโซดา Cocoa , 7Up, Soda , Ice - 12-03-02-0074 - CocoaNoMilk_mom_cocoa_7up.png - - - posi1 - - - มอคค่า Mocha กาแฟ นม โกโก้ และ น้ำตาล Espresso, Cocoa, Milk, Sugar 12-01-01-0006 12-01-02-0003 12-01-03-0003 bn_hot_mocha.png - - - posi1 - - - - มอคค่า (ทางเลือกสุขภาพ) Mocha (Healthy Option) กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\NMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png - - - posi1 - - - + มอคค่า (ทางเลือกสุขภาพ) Mocha (Healthy Option) กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\nMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png - - - posi1 - - - IGNORE มินต์มอคค่า Mint Mocha มิมต์มอคค่า Espresso, Mint , Milk - 12-01-02-0064 - bn_Iced_Mint_Mocha_passion.png - - - posi1 - - - - มอคค่ามัทฉะโตเกียวบานาน่า Tokyo Banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\NCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha.png - - - posi1 - - - + มอคค่ามัทฉะโตเกียวบานาน่า Tokyo Banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\nCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha.png - - - posi1 - - - โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-0002 12-03-02-0002 12-03-03-0002 bn_iced_cocoa.png - - - posi1 - - - โกโก้ (ทางเลือกสุขภาพ) Cocoa (Healthy Option) โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar - 12-03-02-1002 - bn_iced_cocoa_Healthy.png - - - posi1 - - - - คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\NCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa.png - - - posi1 - - - + คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\nCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa.png - - - posi1 - - - ช็อกโกโตเกียวบานาน่า Chocobanana โกโก้ โตเกียวบานาน่า นมและน้ำตาล Tokyo Banana , Milk, Sugar 12-03-01-0024 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk.png - - - posi1 - - - โกโก้ยูซุ Cocoa Yuzu โกโก้ และยูซุ Cocoa And Yuzu 12-03-01-0025 12-03-02-0025 12-03-03-0025 bn_ChocoYuzu_milk.png - - - posi1 - - - - โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\Nsugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa.png - - - posi1 - - - - โกโก้พีช Peach Cocao Milk พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\NWater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - - - โกโก้มะพร้าวน้ำหอม Coconut Cocoa มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\NWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut.png - - - posi1 - - - + โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nsugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa.png - - - posi1 - - - + โกโก้พีช Peach Cocao Milk พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\nWater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - - + โกโก้มะพร้าวน้ำหอม Coconut Cocoa มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut.png - - - posi1 - - - โกโก้สตรอว์เบอร์รี่ปั่น Cocoa Strawberry Smoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Milk, Cocoa, Strawberry - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie.png - - - posi1 - - - - โกโก้โอรีโอปั่น Choco Oreo Smoothie โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\NSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie.png - - - posi1 - - - - ช็อกโกโตเกีียวบานาน่าสตรอว์เบอร์รี่ Tokyo Banana Cocoa Straw Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\NMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_mom_cocoa.png - - - posi1 - - - + โกโก้โอรีโอปั่น Choco Oreo Smoothie โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\nSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie.png - - - posi1 - - - + ช็อกโกโตเกีียวบานาน่าสตรอว์เบอร์รี่ Tokyo Banana Cocoa Straw Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\nMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_mom_cocoa.png - - - posi1 - - - Name=BeautyRobinson,file=page_catalog_group_pro_robinson_beauty.skt - เรฟลอนสตรอว์ชี่\nโซดา Revlon\NStraw Chee Soda Smoothie สตรอเบอร์รี่ ลิ้นจี่ และโซดา Strawberry , Lychee &Soda - - 12-05-03-0064 bn_iced_Lychee_straw_soda_robinson_beauty.png - - - posi1 - - - - อาร์ตี้เป๊ปลิ้นจี่โซดา Iced Arty Pep\NLychee Soda ลิ้นจี่ เป๊ปซี่ ผงมะนาว และโซดา Lychee , Pepsi , Lime &Soda - 12-99-05-0073 - bn_iced_pepsi_Lychee_Lime_robinson_beauty.png - - - posi1 - - - - ซีเวนน่าสตรอว์\nชี่ชาไทย Iced Sivanna\Nstraw Chee Tea สตรอเบอร์รี่ ลิ้นจี่ และชาไทย Strawberry , Lychee , Thai Tea - 12-02-02-0056 - bn_Straw_Lychee_Thaitea_robinson_beauty.png - - - posi1 - - - - เอสเต้ดับเบิ้ลลิ้นจี่\nสตอว์กาโน่ Iced Estee Lychee\NStraw Cano สตรอเบอร์รี่ ลิ้นจี่ และกาแฟ Strawberry , Lychee , Espresso - 12-01-02-0073 - bn_Straw_Lychee_Americano_robinson_beauty.png - 12-21-02-0073 - posi1 - - - - คลาแรงส์พลัม\nคารามิลล์ Clarins\NPlum Cara Milk Smoothie บ๊วย คาราเมล นมและน้ำแข็ง Ume , Caramel , Milk ,Ice - - 12-03-03-0046 bn_Caramel_Plum_Milk_caramel_robinson_beauty.png - - - posi1 - - - - คลาวิน ไคลน์ โกโก้ชี่ Iced Calvin\NKlein Cocoa Chee ลิ้นจี่ โกโก้ และนม Lychee , Cocoa , Milk - 12-03-02-0073 - bn_iced_Cocoa_Lychee_Milk_robinson_beauty.png - - - posi1 - - - - โรสตรอว์มัทฉะ Iced Ro Straw\NMatcha สตรอเบอร์รี่ ชาเขียว และนม Strawberry , Matcha, Milk - 12-02-02-0067 - bn_Straw_Matcha_milk_robinson_beauty.png - - - posi1 - - - - บินสตรอว์คาเฟ่ลาเต้ Iced Bin Straw\NCafe Latte สตรอเบอร์รี่ กาแฟและนม Strawberry , Espresso, Milk - 12-01-02-0074 - bn_hot_LATTE_Straw_robinson_beauty.png - 12-21-02-0074 - posi1 - - - - สันจัสชี่ Son Jas\NChee Tea Smoothie ลิ้นจี่ ชามะลิ และน้ำ Lychee , Jasmine Tea, Water - - 12-02-03-0053 bn_HOT_JASMINE_Lychee_robinson_beauty.png - - - posi1 - - - + เรฟลอนสตรอว์ชี่\nโซดา Revlon\nStraw Chee Soda Smoothie สตรอเบอร์รี่ ลิ้นจี่ และโซดา Strawberry , Lychee &Soda - - 12-05-03-0064 bn_iced_Lychee_straw_soda_robinson_beauty.png - - - posi1 - - - + อาร์ตี้เป๊ปลิ้นจี่โซดา Iced Arty Pep\nLychee Soda ลิ้นจี่ เป๊ปซี่ ผงมะนาว และโซดา Lychee , Pepsi , Lime &Soda - 12-99-05-0073 - bn_iced_pepsi_Lychee_Lime_robinson_beauty.png - - - posi1 - - - + ซีเวนน่าสตรอว์\nชี่ชาไทย Iced Sivanna\nstraw Chee Tea สตรอเบอร์รี่ ลิ้นจี่ และชาไทย Strawberry , Lychee , Thai Tea - 12-02-02-0056 - bn_Straw_Lychee_Thaitea_robinson_beauty.png - - - posi1 - - - + เอสเต้ดับเบิ้ลลิ้นจี่\nสตอว์กาโน่ Iced Estee Lychee\nStraw Cano สตรอเบอร์รี่ ลิ้นจี่ และกาแฟ Strawberry , Lychee , Espresso - 12-01-02-0073 - bn_Straw_Lychee_Americano_robinson_beauty.png - 12-21-02-0073 - posi1 - - - + คลาแรงส์พลัม\nคารามิลล์ Clarins\nPlum Cara Milk Smoothie บ๊วย คาราเมล นมและน้ำแข็ง Ume , Caramel , Milk ,Ice - - 12-03-03-0046 bn_Caramel_Plum_Milk_caramel_robinson_beauty.png - - - posi1 - - - + คลาวิน ไคลน์ โกโก้ชี่ Iced Calvin\nKlein Cocoa Chee ลิ้นจี่ โกโก้ และนม Lychee , Cocoa , Milk - 12-03-02-0073 - bn_iced_Cocoa_Lychee_Milk_robinson_beauty.png - - - posi1 - - - + โรสตรอว์มัทฉะ Iced Ro Straw\nMatcha สตรอเบอร์รี่ ชาเขียว และนม Strawberry , Matcha, Milk - 12-02-02-0067 - bn_Straw_Matcha_milk_robinson_beauty.png - - - posi1 - - - + บินสตรอว์คาเฟ่ลาเต้ Iced Bin Straw\nCafe Latte สตรอเบอร์รี่ กาแฟและนม Strawberry , Espresso, Milk - 12-01-02-0074 - bn_hot_LATTE_Straw_robinson_beauty.png - 12-21-02-0074 - posi1 - - - + สันจัสชี่ Son Jas\nChee Tea Smoothie ลิ้นจี่ ชามะลิ และน้ำ Lychee , Jasmine Tea, Water - - 12-02-03-0053 bn_HOT_JASMINE_Lychee_robinson_beauty.png - - - posi1 - - - โรบินสันอัพชี่ Robinson Up Chee Smoothie 7up ลิ้นจี่ ผงมะนาว และโซดา 7Up, Lychee , Lime &Soda - - 12-05-03-0115 bn_iced_7UP_Lychee_SODA_robinson_beauty.png - - - posi1 - - - Name=banana_and_mint_lucky_draw_x3,file=page_catalog_group_pro_banana_mint_lucky_draw_x3.skt - กาแฟมินต์ลาเต้ Mint Cafe Latte กาแฟ น้ำ นม และ มินต์ Espresso, Mint ,\NSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_passion.png - 12-21-02-0057 - posi1 - - - - มินต์กาโน่ Mintcano กาแฟ น้ำ และ มินต์ Espresso, Mint ,\NSugar, Water - 12-01-02-0058 - bn_Mint_Americano_passion.png - 12-21-02-0058 - posi1 - - - - มัทฉะลาเต้มินต์ Matcha Latte\NMint มัทฉะ มินต์ และนมอุ่น Matcha, Mint &Milk - - 12-02-03-0050 bn_Matcha_latte_mint_smoothie_passion.png - - - posi1 - - - + กาแฟมินต์ลาเต้ Mint Cafe Latte กาแฟ น้ำ นม และ มินต์ Espresso, Mint ,\nSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_passion.png - 12-21-02-0057 - posi1 - - - + มินต์กาโน่ Mintcano กาแฟ น้ำ และ มินต์ Espresso, Mint ,\nSugar, Water - 12-01-02-0058 - bn_Mint_Americano_passion.png - 12-21-02-0058 - posi1 - - - + มัทฉะลาเต้มินต์ Matcha Latte\nMint มัทฉะ มินต์ และนมอุ่น Matcha, Mint &Milk - - 12-02-03-0050 bn_Matcha_latte_mint_smoothie_passion.png - - - posi1 - - - มิมต์มอคค่า Mint Mocha มิมต์มอคค่า Espresso, Mint , Milk - 12-01-02-0064 - bn_Iced_Mint_Mocha_passion.png - 12-21-02-0064 - posi1 - - - - โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\NSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_passion.png - - - posi1 - - - + โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_passion.png - - - posi1 - - - นมมินต์ Mint Milk มินต์ และนม Mint And Milk 12-03-01-0036 12-03-02-0036 12-03-03-0036 bn_Mint_Milk.png - - - posi1 - - - - นมสตรอเบอร์รี่มินต์ Strawberry\NMint Milk มินต์ สตรอเบอร์รี่ นมและน้ำตาล Mint , Milk,\NStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_passion.png - - - posi1 - - - - มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \n Oreo Mint , Milk,\NSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_passion.png - - - posi1 - - - + นมสตรอเบอร์รี่มินต์ Strawberry\nMint Milk มินต์ สตรอเบอร์รี่ นมและน้ำตาล Mint , Milk,\nStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_passion.png - - - posi1 - - - + มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \n Oreo Mint , Milk,\nSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_passion.png - - - posi1 - - - มินต์มะนาวโซดา Mint Lime Soda มินต์ มะนาว และโซดา Mint , Lime, Soda & Ice - 12-05-02-0060 - bn_iced_mint_lime_soda.png - - - posi1 - - - - สตรอเบอร์รี่\nมินต์โซดา Strawberry\NMint Soda มินต์ สตรอเบอร์รี่ มะนาว และโซดา Mint , Strawberry , Lime, Soda & Ice - 12-05-02-0063 - bn_Mint_Strawberry_Soda_passion.png - - - posi1 - - - + สตรอเบอร์รี่\nมินต์โซดา Strawberry\nMint Soda มินต์ สตรอเบอร์รี่ มะนาว และโซดา Mint , Strawberry , Lime, Soda & Ice - 12-05-02-0063 - bn_Mint_Strawberry_Soda_passion.png - - - posi1 - - - ยูซุมินต์โซดา Yuzu Mint Soda มินต์ ยูซุ และโซดา Mint , Yuzu Soda & Ice - 12-05-02-0064 - BN_Yuzu_Mint_Soda_passion.png - - - posi1 - - - บ๊วยมะนาวมินต์โซดา Plum Limenade Mint Soda มินต์ บ๊วย มะนาว และโซดา Mint , Ume , Lime, Soda & Ice - 12-05-02-0065 - bn_Mint_Plum_limenade_Soda.png - - - posi1 - - - มินต์ลิ้นจี่มะนาวโซดา Mint Lychee Lemon Soda มินต์ ลิ้นจี่ มะนาว และโซดา Mint ,Lychee , Lime, Soda & Ice - 12-05-02-0066 - bn_Mint_Lychee_lime_soda.png - - - posi1 - - - @@ -1020,43 +1020,43 @@ Name=banana_and_mint_lucky_draw_x3,file=page_catalog_group_pro_banana_mint_lucky เต่าทรงพลังโตเกียวบานาน่าโซดาเย็น Tokyo Banana Power Drink Soda กล้วย เต่าทรงพลัง (มีคาเฟอีน) Banana , Medicine Drink, Soda And Ice - 12-05-02-0078 - - - - posi1 - - - Name=jemila,file=page_catalog_group_pro_jemila.skt - หงส์ ดราก้อนมิลค์ Hong'S Dragon\NMilk เจมิลา นม และน้ำแข็ง Jemila, Milk And Ice - 12-03-02-0075 12-03-03-0075 bn_iced_milk_jemila_pro.png - - - posi1 - - - - มุนินทร์ดริ๊งก์ Munin'S Favorite\NDrink เจมิลา น้ำ และน้ำแข็ง Jemila, Water And Ice - 12-05-02-0124 12-05-03-0124 bn_water_roomtemp_jemila_pro.png - - - posi1 - - - + หงส์ ดราก้อนมิลค์ Hong'S Dragon\nMilk เจมิลา นม และน้ำแข็ง Jemila, Milk And Ice - 12-03-02-0075 12-03-03-0075 bn_iced_milk_jemila_pro.png - - - posi1 - - - + มุนินทร์ดริ๊งก์ Munin'S Favorite\nDrink เจมิลา น้ำ และน้ำแข็ง Jemila, Water And Ice - 12-05-02-0124 12-05-03-0124 bn_water_roomtemp_jemila_pro.png - - - posi1 - - - มุตตาดื่ม Muta Drink เจมิลา ชาไทย และน้ำแข็ง Jemila, Thai Tea And Ice - 12-02-02-0068 12-02-03-0068 bn_hot_thai_tea_jemila_pro.png - - - posi1 - - - - ใจเริงซ่าพอตัว Jai Rerng Quite\NFizzy เจมิลา โซดา และน้ำแข็ง Jemila, Soda And Ice - 12-05-02-0125 - bn_soda_jemila_pro.png - - - posi1 - - - - ประกายดาวขอเข้ม ๆ Praglaidao Want\NIt Strong เจมิลา กาแฟ และน้ำแข็ง Jemila, Espresso And Ice - 12-01-02-0075 - bn_hot_america_no_jemila_pro.png - 12-21-02-0075 - posi1 - - - - เกล้ามาศมหัศจรรย์ Gaomart 'S\NMiracles เจมิลา โกโก้ และน้ำแข็ง Jemila, Cocoa And Ice - 12-03-02-0076 12-03-03-0076 bn_iced_cocoa_jemila_pro.png - - - posi1 - - - + ใจเริงซ่าพอตัว Jai Rerng Quite\nFizzy เจมิลา โซดา และน้ำแข็ง Jemila, Soda And Ice - 12-05-02-0125 - bn_soda_jemila_pro.png - - - posi1 - - - + ประกายดาวขอเข้ม ๆ Praglaidao Want\nIt Strong เจมิลา กาแฟ และน้ำแข็ง Jemila, Espresso And Ice - 12-01-02-0075 - bn_hot_america_no_jemila_pro.png - 12-21-02-0075 - posi1 - - - + เกล้ามาศมหัศจรรย์ Gaomart 'S\nMiracles เจมิลา โกโก้ และน้ำแข็ง Jemila, Cocoa And Ice - 12-03-02-0076 12-03-03-0076 bn_iced_cocoa_jemila_pro.png - - - posi1 - - - ภัทรลดาจิงเจอ Patrada'S Ginger เจมิลา ขิง และน้ำแข็ง Jemila, Ginger And Ice - 12-02-02-0069 12-02-03-0069 bn_hot_Ginger_tea_jemila_pro.png - - - posi1 - - - - ราวีน่าเซเว่นอัพ Raveena'S 7Up\NSoda เจมิลา 7up และน้ำแข็ง Jemila, 7 Up And Ice - 12-05-02-0126 12-05-03-0126 bn_iced_7up_jemila_pro.png - - - posi1 - - - + ราวีน่าเซเว่นอัพ Raveena'S 7Up\nSoda เจมิลา 7up และน้ำแข็ง Jemila, 7 Up And Ice - 12-05-02-0126 12-05-03-0126 bn_iced_7up_jemila_pro.png - - - posi1 - - - ขวัญอุมามะนาว Kwanuma'S Lime เจมิลา มะนาว และน้ำแข็ง Jemila, Lime And Ice - 12-05-02-0127 12-05-03-0127 bn_iced_lemonade_jemila_pro.png - - - posi1 - - - - รวินทร์วรกานต์มะลิ Ravinworagarn'S\NJasmine เจมิลา ชามะลิ และน้ำแข็ง Jemila, Jasmine Tea And Ice - 12-02-02-0070 12-02-03-0070 bn_jasmine_tea_jemila_pro.png - - - posi1 - - - + รวินทร์วรกานต์มะลิ Ravinworagarn'S\nJasmine เจมิลา ชามะลิ และน้ำแข็ง Jemila, Jasmine Tea And Ice - 12-02-02-0070 12-02-03-0070 bn_jasmine_tea_jemila_pro.png - - - posi1 - - - Name=halloween,file=page_catalog_group_pro_halloween.skt - โหด โฉด สยอง Brutal, Wicked, \NHorrifying มัทฉะ 7up มะนาว และโซดา Matcha, 7Up, Lime And Soda - 12-02-02-0080 - bn_7UP_Matcha_Lime_Soda_halloween.png - - - posi1 - - - - ปอบเมืองลับแล Liver Of The Lost สตรอเบอร์รี่ เต่าทรงพลัง 7up\nและมะนาว Strawberry , Energy\NDrink , 7Up And Lime - - 12-05-03-0128 bn_7UP_strawberry_Energy_lime_halloween.png - - - posi1 - - - - หมู่บ้านเลี้ยงผี The Village That\NFeeds Ghosts สตรอเบอร์รี่ นม 7up\nและมะนาว Strawberry , Milk, 7Up\Nand Lime - - 12-03-03-0084 bn_7UP_Strawberry_Milk_lime_halloween.png - - - posi1 - - - + โหด โฉด สยอง Brutal, Wicked, \nHorrifying มัทฉะ 7up มะนาว และโซดา Matcha, 7Up, Lime And Soda - 12-02-02-0080 - bn_7UP_Matcha_Lime_Soda_halloween.png - - - posi1 - - - + ปอบเมืองลับแล Liver Of The Lost สตรอเบอร์รี่ เต่าทรงพลัง 7up\nและมะนาว Strawberry , Energy\nDrink , 7Up And Lime - - 12-05-03-0128 bn_7UP_strawberry_Energy_lime_halloween.png - - - posi1 - - - + หมู่บ้านเลี้ยงผี The Village That\nFeeds Ghosts สตรอเบอร์รี่ นม 7up\nและมะนาว Strawberry , Milk, 7Up\nand Lime - - 12-03-03-0084 bn_7UP_Strawberry_Milk_lime_halloween.png - - - posi1 - - - วิวาห์อาถรรพ์ Cursed Cuisine ลิ้นจี่ นม 7up และมะนาว Lychee , Milk, 7Up And Lime - - 12-03-03-0085 bn_7UP_Lychee_Milk_lime_halloween.png - - - posi1 - - - - เสน่ห์-บาตรแตก Broken Bowl Charm ชาไทย สตรอเบอร์รี่ และ7up Thai Tea, Strawberry \NAnd 7Up - 12-02-02-0081 - bn_7UP_ThaiTea_Strawberry_Soda_halloween.png - - - posi1 - - - - เมตามหาโสมม Foul Metta ชามะลิ สละ 7up และโซดา Jasmine Tea, Ume , 7Up \NAnd Soda - 12-02-02-0082 - bn_7UP_Jasmin_Plum_Soda_halloween.png - - - posi1 - - - + เสน่ห์-บาตรแตก Broken Bowl Charm ชาไทย สตรอเบอร์รี่ และ7up Thai Tea, Strawberry \nAnd 7Up - 12-02-02-0081 - bn_7UP_ThaiTea_Strawberry_Soda_halloween.png - - - posi1 - - - + เมตามหาโสมม Foul Metta ชามะลิ สละ 7up และโซดา Jasmine Tea, Ume , 7Up \nAnd Soda - 12-02-02-0082 - bn_7UP_Jasmin_Plum_Soda_halloween.png - - - posi1 - - - Ghost House\nกินอยู่กับผี Ghostly Grub ขิง สตรอเบอร์รี่ และ7up Ginger, Strawberry And 7Up 12-02-01-0079 - - bn_hot_Ginger_tea_7UP_Strawberry_halloween.png - - - posi1 - - - - ผงกระดูกสัมภเวสี Bone-Chilling\NBites คาราเมล นม 7up และโอวัลติน Caramel , Milk, 7Up\NAnd Ovaltine - - 12-03-03-0081 Caramel_milk_7up_smoothie_top_ovaltine_halloween.png - - - posi1 - - - + ผงกระดูกสัมภเวสี Bone-Chilling\nBites คาราเมล นม 7up และโอวัลติน Caramel , Milk, 7Up\nAnd Ovaltine - - 12-03-03-0081 Caramel_milk_7up_smoothie_top_ovaltine_halloween.png - - - posi1 - - - Cast แสดงเพื่อนผี Phantom Actress กาแฟ 7up มะนาว และโซดา Coffee, 7Up, Lime And Soda - 12-01-02-0082 - bn_7up_americano_lime_soda_halloween.png - 12-21-02-0082 - posi1 - - - ไสยเวทย์สังหาร Spooky Spells Pepsi ชาไทย นม และนำ้แข็ง Pepsi, Thai Tea , Milk And Ice - 12-03-02-0080 - bn_Pepsi_thai_milk_tea_halloween.png - - - posi1 - - - - Mortuary\nห้องเก็บเธอ Mortuary: Storing\NHer Pepsi คาราเมล นม และน้ำแข็ง Pepsi, Caramel, Milk And Ice - - 12-03-03-0080 bn_Pepsi_caramel_milk_smoothie_halloween.png - - - posi1 - - - + Mortuary\nห้องเก็บเธอ Mortuary: Storing\nHer Pepsi คาราเมล นม และน้ำแข็ง Pepsi, Caramel, Milk And Ice - - 12-03-03-0080 bn_Pepsi_caramel_milk_smoothie_halloween.png - - - posi1 - - - โค้งต้องคำสาป Cursed Curve Pepsi มะนาว ขิง และชามะลิ Pepsi, Lime, Ginger, Jasmine Tea 12-02-01-0078 - - bn_Hot_Pepsi_lime_ginger_jasmine_tea_halloween.png - - - posi1 - - - - เสกซากผี Summoning The\NCorpse สตรอเบอร์รี่ กาแฟ 7up\nและโซดา Strawberry , Coffee, 7Up\NAnd Soda - 12-01-02-0083 - bn_7up_Coffee_Strawberry_soda_halloween.png - 12-21-02-0083 - posi1 - - - + เสกซากผี Summoning The\nCorpse สตรอเบอร์รี่ กาแฟ 7up\nและโซดา Strawberry , Coffee, 7Up\nAnd Soda - 12-01-02-0083 - bn_7up_Coffee_Strawberry_soda_halloween.png - 12-21-02-0083 - posi1 - - - คนทรงผี Spirit Medium คาราเมล นม 7up และโซดา Caramel , Milk, 7Up And Ice - - 12-03-03-0082 Caramel_milk_7up_smoothie_halloween.png - - - posi1 - - - - เลี้ยงลูกผี Raising A Ghost\NChild สตรอเบอร์รี่ นม 7up มะนาว\nและโอวัลติน Strawberry , Milk, 7Up, Lime\NAnd Ovaltine - - 12-03-03-0083 Strawberry_milk_7Up_lime__top_ovaltine_halloween.png - - - posi1 - - - + เลี้ยงลูกผี Raising A Ghost\nChild สตรอเบอร์รี่ นม 7up มะนาว\nและโอวัลติน Strawberry , Milk, 7Up, Lime\nAnd Ovaltine - - 12-03-03-0083 Strawberry_milk_7Up_lime__top_ovaltine_halloween.png - - - posi1 - - - Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount.skt - พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount.png - - 12-21-03-0078 posi1 - - - - พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Green Tea\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - - - พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - - - มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\NSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_weekday_discount.png - - - posi1 - - - - นมสตอเบอร์รี่ปั่น Strawberry Milk\NSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount.png - - - posi1 - - - - มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\NSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-03-03-0059 bn_smoothie_coconut_cocoa_weekday_discount.png - - - posi1 - - - - มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\NCoconut มะพร้าว ชาไทย นมนิวซีแลนด์ Coconut , Thai Tea, Milk - - 12-02-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount.png - - - posi1 - - - - คาราเมลโกโก้ปั่น Caramel Cocoa\NSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-03-03-0004 bn_smoothie_cocoa_caramel_weekday_discount.png - - - posi1 - - - + พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount.png - - 12-21-03-0078 posi1 - - - + พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Green Tea\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - - + พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - - + มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\nSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_weekday_discount.png - - - posi1 - - - + นมสตอเบอร์รี่ปั่น Strawberry Milk\nSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount.png - - - posi1 - - - + มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\nSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-03-03-0059 bn_smoothie_coconut_cocoa_weekday_discount.png - - - posi1 - - - + มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\nCoconut มะพร้าว ชาไทย นมนิวซีแลนด์ Coconut , Thai Tea, Milk - - 12-02-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount.png - - - posi1 - - - + คาราเมลโกโก้ปั่น Caramel Cocoa\nSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-03-03-0004 bn_smoothie_cocoa_caramel_weekday_discount.png - - - posi1 - - - โกโก้สตอเบอร์รี่ปั่น Cocoa Straw Smoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_weekday_discount.png - - - posi1 - - - ซูเปอร์โอริภูเขาไฟ Super Vocano นม น้ำตาล โอรีโอ Milk, Sugar, Oreo - - 12-03-03-0032 bn_super_oreo_volcano_weekday_discount.png - - - posi1 - - - ซูเปอร์โกโก้เข้ม คูณ 3 Iced Super Cocoa X3 โกโก้ 3x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-03-03-0067 bn_smoothie_super_cocoa_x3_weekday_discount.png - - - posi1 - - - @@ -1065,15 +1065,15 @@ Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount.skt เจมิลามะนาว Jemila Lime เจมิลา มะนาว และน้ำ Jemila, Lime And Ice - - 12-05-03-0127 bn_iced_Jemila_smoothie_weekday_discount.png - - - posi1 - - - Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount_event_on.skt - พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-99-03-0074 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount_event_on.png - - 12-99-03-0075 posi1 - - - - พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-99-03-0076 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - - - พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-99-03-0077 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - - - มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\NSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-99-03-0058 bn_smoothie_coconut_weekday_discount_event_on.png - - - posi1 - - - - นมสตอเบอร์รี่ปั่น Strawberry Milk\NSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-99-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount_event_on.png - - - posi1 - - - - มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\NSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-99-03-0059 bn_smoothie_coconut_cocoa_weekday_discount_event_on.png - - - posi1 - - - - มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\NCoconut มะพร้าว ชาไทย นม Coconut , Thai Tea, Milk - - 12-99-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount_event_on.png - - - posi1 - - - - คาราเมลโกโก้ปั่น Caramel Cocoa\NSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-99-03-0004 bn_smoothie_cocoa_caramel_weekday_discount_event_on.png - - - posi1 - - - - โกโก้สตอเบอร์รี่ปั่น Cocoa Straw\NSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-99-03-0010 bn_iced_strawberrycocoa_smoothie_weekday_discount_event_on.png - - - posi1 - - - + พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-99-03-0074 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount_event_on.png - - 12-99-03-0075 posi1 - - - + พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-99-03-0076 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - - + พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-99-03-0077 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - - + มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\nSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-99-03-0058 bn_smoothie_coconut_weekday_discount_event_on.png - - - posi1 - - - + นมสตอเบอร์รี่ปั่น Strawberry Milk\nSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-99-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount_event_on.png - - - posi1 - - - + มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\nSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-99-03-0059 bn_smoothie_coconut_cocoa_weekday_discount_event_on.png - - - posi1 - - - + มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\nCoconut มะพร้าว ชาไทย นม Coconut , Thai Tea, Milk - - 12-99-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount_event_on.png - - - posi1 - - - + คาราเมลโกโก้ปั่น Caramel Cocoa\nSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-99-03-0004 bn_smoothie_cocoa_caramel_weekday_discount_event_on.png - - - posi1 - - - + โกโก้สตอเบอร์รี่ปั่น Cocoa Straw\nSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-99-03-0010 bn_iced_strawberrycocoa_smoothie_weekday_discount_event_on.png - - - posi1 - - - ซูเปอร์โอริภูเขาไฟ Super Vocano นม น้ำตาล โอรีโอ Milk, Sugar, Oreo - - 12-99-03-0032 bn_super_oreo_volcano_weekday_discount_event_on.png - - - posi1 - - - ซูเปอร์โกโก้เข้ม คูณ 3 Iced Super Cocoa X3 โกโก้ 3x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-99-03-0067 bn_smoothie_super_cocoa_x3_weekday_discount_event_on.png - - - posi1 - - - ซูเปอร์โกโก้เข้ม คูณ 2 Ice Super Cocoa X2 โกโก้ 2x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-99-03-0065 bn_smoothie_super_cocoa_x2_weekday_discount_event_on.png - - - posi1 - - - @@ -1081,56 +1081,56 @@ Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount_event_on.skt เจมิลามะนาว Jemila Lime เจมิลา มะนาว และน้ำ Jemila, Lime And Ice - - 12-99-03-0127 bn_iced_Jemila_smoothie_weekday_discount_event_on.png - - - posi1 - - - Name=Oreo11.11,file=page_catalog_group_pro_oreo_11.skt - ลาเต้ปั่นโอรีโอภูเขาไฟ Iced Cafe Latte Oreo\NSmoothie กาแฟ นม น้ำตาล และโอรีโอ Coffee, Milk, \NSugar, Oreo - - 12-01-03-0043 bn_Cafe_Latte_Oreo_smoothie_oreo_11 - - - posi1 - - - - ชานมไทยโอรีโอ\nภูเขาไฟ Thai Milk Tea Oreo\NSmoothie ชาไทย นม น้ำตาล และโอรีโอ Thai Tea, Milk,\NSugar, Oreo - - 12-02-03-0044 bn_ThaiTeaOreo_smoothie_oreo_11 - - - posi1 - - - - โอรีโอปั่นภูเขาไฟ Oreo Smoothie\NVolcano นม น้ำตาล โอรีโอ \n Milk, Sugar, Oreo, Ice - - 12-03-03-0009 bn_smoothie_oreo_oreo_11 - - - posi1 - - - - นมชมพูปั่นโอรีโอ\nภูเขาไฟ Pink Oreo\NVolcano น้ำแดงกลิ่นสละ นม น้ำตาล \nโอรีโอ Salak , Milk,\NSugar Oreo - - 12-03-03-0026 bn_PinkOreo_smoothie_oreo_11 - - - posi1 - - - - สตอเบอร์รี่ปั่นโอรีโอ\nภูเขาไฟ Strawberry Milk Oreo\NSmoothie สตอเบอร์รี่ นม น้ำตาล \nโอรีโอ Strawberry , Milk,\NSugar, Oreo - - 12-03-03-0027 bn_StrawberrOreo_smoothie_oreo_11 - - - posi1 - - - - โกโก้ปั่นโอรีโอ\nภูเขาไฟ Choco Oreo\NSmoothie โกโก้ นม น้ำตาล \nโอรีโอ Cocoa, Milk,\NSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_oreo_11 - - - posi1 - - - - นมคาราเมลปั่นโอรีโอ\nภูเขาไฟ Caramel Milk Oreo\NSmoothie คาราเมล นม น้ำตาล \nโอรีโอ Caramel , Milk,\NSugar, Oreo - - 12-03-03-0031 bn_CaramelOreo_smoothie_oreo_11 - - - posi1 - - - + ลาเต้ปั่นโอรีโอภูเขาไฟ Iced Cafe Latte Oreo\nSmoothie กาแฟ นม น้ำตาล และโอรีโอ Coffee, Milk, \nSugar, Oreo - - 12-01-03-0043 bn_Cafe_Latte_Oreo_smoothie_oreo_11 - - - posi1 - - - + ชานมไทยโอรีโอ\nภูเขาไฟ Thai Milk Tea Oreo\nSmoothie ชาไทย นม น้ำตาล และโอรีโอ Thai Tea, Milk,\nSugar, Oreo - - 12-02-03-0044 bn_ThaiTeaOreo_smoothie_oreo_11 - - - posi1 - - - + โอรีโอปั่นภูเขาไฟ Oreo Smoothie\nVolcano นม น้ำตาล โอรีโอ \n Milk, Sugar, Oreo, Ice - - 12-03-03-0009 bn_smoothie_oreo_oreo_11 - - - posi1 - - - + นมชมพูปั่นโอรีโอ\nภูเขาไฟ Pink Oreo\nVolcano น้ำแดงกลิ่นสละ นม น้ำตาล \nโอรีโอ Salak , Milk,\nSugar Oreo - - 12-03-03-0026 bn_PinkOreo_smoothie_oreo_11 - - - posi1 - - - + สตอเบอร์รี่ปั่นโอรีโอ\nภูเขาไฟ Strawberry Milk Oreo\nSmoothie สตอเบอร์รี่ นม น้ำตาล \nโอรีโอ Strawberry , Milk,\nSugar, Oreo - - 12-03-03-0027 bn_StrawberrOreo_smoothie_oreo_11 - - - posi1 - - - + โกโก้ปั่นโอรีโอ\nภูเขาไฟ Choco Oreo\nSmoothie โกโก้ นม น้ำตาล \nโอรีโอ Cocoa, Milk,\nSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_oreo_11 - - - posi1 - - - + นมคาราเมลปั่นโอรีโอ\nภูเขาไฟ Caramel Milk Oreo\nSmoothie คาราเมล นม น้ำตาล \nโอรีโอ Caramel , Milk,\nSugar, Oreo - - 12-03-03-0031 bn_CaramelOreo_smoothie_oreo_11 - - - posi1 - - - ซูเปอร์โอรีโอปั่น\nภูเขาไฟ Super Oocano นม น้ำตาล โอรีโอ Milk, Sugar, Oreo, Ice - - 12-03-03-0032 bn_super_oreo_volcano_oreo_11 - - - posi1 - - - - ชานมมะลิปั่นโอรีโอ\nภูเขาไฟ Jasmine Milk Tea \Noreo Smoothie ชามะลิ นม น้ำตาล \nโอรีโอ Jasmine Tea, Milk,\NSugar, Oreo - - 12-02-03-0048 bn_jasmine_Oreo_smoothie_oreo_11 - - - posi1 - - - - ชานมโฮจิฉะโอรีโอ\nภูเขาไฟ Hojicha Oreo\NSmoothie โฮจิฉะ นม น้ำตาล \nโอรีโอ Hojicha, Milk,\NSugar, Oreo - - 12-02-03-0043 bn_HojichaOreo_smoothie_oreo_11 - - - posi1 - - - - เมล่อนปั่นโอรีโอ\nภูเขาไฟ Melon Milk Oreo\NSmoothie เมล่อน นม น้ำตาล \nโอรีโอ Melon , Milk,\NSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie_oreo_11 - - - posi1 - - - - นมกล้วยปั่นภูเขาไฟ Banana Milk Oreo\NSmoothie กล้วย นม น้ำตาล \nโอรีโอ Banana , Milk,\NSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_oreo_11 - - - posi1 - - - - มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \nโอรีโอ Mint , Milk,\NSugar, Oreo - - 12-03-03-0034 bn_Mint_Oreo_smoothie_oreo_11 - - - posi1 - - - - ชานมขิงโอรีโอปั่น Ginger Milk Tea\Noreo Smoothie ขิง นม น้ำตาล \nโอรีโอ Ginger, Milk,\NSugar, Oreo - - 12-02-03-0056 bn_Ginger_milk_Oreo_smoothie_oreo_11 - - - posi1 - - - - นมมะพร้าวปั่นโอรีโอ\nภูเขาไฟ Coconut Milk Oreo\NSmoothie มะพร้าว นม น้ำตาล \nโอรีโอ Coconut, Milk,\NSugar, Oreo - - 12-03-03-0086 bn_Coconut_Oreo_smoothie_oreo_11 - - - posi1 - - - - นมยูสุปั่นโอรีโอภูเขาไฟ Yuzu Milk Oreo\NSmoothie ยูซุ นม น้ำตาล \nโอรีโอ Yuzu , Milk,\NSugar, Oreo - - 12-03-03-0087 bn_YUZU_Oreo_smoothie_oreo_11 - - - posi1 - - - - พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Cafe_Latte_Oreo_smoothie_oreo_11 - - 12-21-03-0078 posi1 - - - - พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_Matcha_Oreo_smoothie_oreo_11 - - - posi1 - - - - พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_oreo_11 - - - posi1 - - - + ชานมมะลิปั่นโอรีโอ\nภูเขาไฟ Jasmine Milk Tea \noreo Smoothie ชามะลิ นม น้ำตาล \nโอรีโอ Jasmine Tea, Milk,\nSugar, Oreo - - 12-02-03-0048 bn_jasmine_Oreo_smoothie_oreo_11 - - - posi1 - - - + ชานมโฮจิฉะโอรีโอ\nภูเขาไฟ Hojicha Oreo\nSmoothie โฮจิฉะ นม น้ำตาล \nโอรีโอ Hojicha, Milk,\nSugar, Oreo - - 12-02-03-0043 bn_HojichaOreo_smoothie_oreo_11 - - - posi1 - - - + เมล่อนปั่นโอรีโอ\nภูเขาไฟ Melon Milk Oreo\nSmoothie เมล่อน นม น้ำตาล \nโอรีโอ Melon , Milk,\nSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie_oreo_11 - - - posi1 - - - + นมกล้วยปั่นภูเขาไฟ Banana Milk Oreo\nSmoothie กล้วย นม น้ำตาล \nโอรีโอ Banana , Milk,\nSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_oreo_11 - - - posi1 - - - + มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \nโอรีโอ Mint , Milk,\nSugar, Oreo - - 12-03-03-0034 bn_Mint_Oreo_smoothie_oreo_11 - - - posi1 - - - + ชานมขิงโอรีโอปั่น Ginger Milk Tea\noreo Smoothie ขิง นม น้ำตาล \nโอรีโอ Ginger, Milk,\nSugar, Oreo - - 12-02-03-0056 bn_Ginger_milk_Oreo_smoothie_oreo_11 - - - posi1 - - - + นมมะพร้าวปั่นโอรีโอ\nภูเขาไฟ Coconut Milk Oreo\nSmoothie มะพร้าว นม น้ำตาล \nโอรีโอ Coconut, Milk,\nSugar, Oreo - - 12-03-03-0086 bn_Coconut_Oreo_smoothie_oreo_11 - - - posi1 - - - + นมยูสุปั่นโอรีโอภูเขาไฟ Yuzu Milk Oreo\nSmoothie ยูซุ นม น้ำตาล \nโอรีโอ Yuzu , Milk,\nSugar, Oreo - - 12-03-03-0087 bn_YUZU_Oreo_smoothie_oreo_11 - - - posi1 - - - + พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Cafe_Latte_Oreo_smoothie_oreo_11 - - 12-21-03-0078 posi1 - - - + พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_Matcha_Oreo_smoothie_oreo_11 - - - posi1 - - - + พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_oreo_11 - - - posi1 - - - Name=HappyTrios,file=page_catalog_group_pro_happy_trios.skt - พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_super_oreo_volcano_Caramel_happy_trios.png - - 12-21-03-0078 posi1 - - - - พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_super_oreo_volcano_Matcha_happy_trios.png - - - posi1 - - - - พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_super_oreo_volcano_ThaiTea_happy_trios.png - - - posi1 - - - + พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_super_oreo_volcano_Caramel_happy_trios.png - - 12-21-03-0078 posi1 - - - + พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_super_oreo_volcano_Matcha_happy_trios.png - - - posi1 - - - + พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_super_oreo_volcano_ThaiTea_happy_trios.png - - - posi1 - - - Name=12_day_12_menu,file=page_catalog_group_pro_12_day_12_menu.skt ซูเปอร์โกโก้เข้ม คูณ 3 Iced Super Cocoa X3 โกโก้ 3x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-03-03-0067 bn_Super_cocoa_X3_12_day_12_menu.png - - - posi1 - - - - พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Premium_Thai_tea_caramel_12_day_12_menu.png - - - posi1 - - - - มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\NSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_12_day_12_menu.png - - - posi1 - - - + พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Premium_Thai_tea_caramel_12_day_12_menu.png - - - posi1 - - - + มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\nSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_12_day_12_menu.png - - - posi1 - - - นมชมพูปั่น Pink Milk Smoothie น้ำแดงกลิ่นสละ นม \nน้ำตาล Salak , Milk, Sugar - - 12-03-03-0006 bn_iced_นมชมพู_smoothie_12_day_12_menu.png - - - posi1 - - - อเมริกาโน Americano กาแฟ และน้ำ Espresso, Water - 12-01-02-0001 - bn_iced_americano_12_day_12_menu.png - 12-21-02-0001 - posi1 - - - - นมสตอเบอร์รี่ปั่น Strawberry Milk \NSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_12_day_12_menu.png - - - posi1 - - - - โกโก้สตอเบอร์รี่ปั่น Strawcocoa \NSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_12_day_12_menu.png - - - posi1 - - - - เอสเย็นแบบไทยๆ Thai \NIced Espresso กาแฟ นม และ น้ำแข็ง Espresso, Milk, Sugar,Ice - 12-11-02-0001 - bn_iced_ESPRESSO_12_day_12_menu.png - 12-31-02-0001 - posi1 - - - - มะพร้าว\nชามะลินมนิวซีแลนด์ Coconut \NJasmine Milk Tea มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \nWater - - 12-02-03-0064 bn_iced_jasmin_milk_tea_Coconut_smoothie_12_day_12_menu.png - - - posi1 - - - + นมสตอเบอร์รี่ปั่น Strawberry Milk \nSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_12_day_12_menu.png - - - posi1 - - - + โกโก้สตอเบอร์รี่ปั่น Strawcocoa \nSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_12_day_12_menu.png - - - posi1 - - - + เอสเย็นแบบไทยๆ Thai \nIced Espresso กาแฟ นม และ น้ำแข็ง Espresso, Milk, Sugar,Ice - 12-11-02-0001 - bn_iced_ESPRESSO_12_day_12_menu.png - 12-31-02-0001 - posi1 - - - + มะพร้าว\nชามะลินมนิวซีแลนด์ Coconut \nJasmine Milk Tea มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \nWater - - 12-02-03-0064 bn_iced_jasmin_milk_tea_Coconut_smoothie_12_day_12_menu.png - - - posi1 - - - ชานมไทย Thai Milk Tea ชาไทย น้ำตาล และ นมอุ่น Thai tea, Sugar, Warm milk - - 12-02-03-0039 bn_Thai_milk_tea_smoothie_12_day_12_menu.png - - - posi1 - - - - ชาขิงมะนาว Lime \NGinger Tea ขิง มะนาว และน้ำ Ginger, Lime & Water - 12-02-02-0042 - bn_iced_Gingerlime_12_day_12_menu.png - - - posi1 - - - - บ๊วยมะนาวโซดา Plum \NLimenade Soda บ๊วย มะนาว โซดา Ume , Limenade, \nSoda & Ice - 12-05-02-0025 - bn_iced_ume_lime_soda_12_day_12_menu.png - - - posi1 - - - + ชาขิงมะนาว Lime \nGinger Tea ขิง มะนาว และน้ำ Ginger, Lime & Water - 12-02-02-0042 - bn_iced_Gingerlime_12_day_12_menu.png - - - posi1 - - - + บ๊วยมะนาวโซดา Plum \nLimenade Soda บ๊วย มะนาว โซดา Ume , Limenade, \nSoda & Ice - 12-05-02-0025 - bn_iced_ume_lime_soda_12_day_12_menu.png - - - posi1 - - - Name=Thick_Tea_By_Brewer,file=page_catalog_group_pro_thick_tea_by_brewer.skt - ชาผสานปักษ์ใต้ Southern Fusion\NTea มัทฉะ ชาไทย นม และคาราเมล Matcha , Thai Tea, Milk Caramel 12-02-01-0083 12-02-02-0083 12-02-03-0083 bn_southern_fusion_tea.png - - - posi1 - - - - มัทฉะโบราณ Traditional\NMatcha ชามะลิ มัทฉะ นม และคาราเมล Jasmine Tea, Matcha, Milk, Caramel 12-02-01-0084 12-02-02-0084 12-02-03-0084 bn_traditional_green_tea.png - - - posi1 - - - + ชาผสานปักษ์ใต้ Southern Fusion\nTea มัทฉะ ชาไทย นม และคาราเมล Matcha , Thai Tea, Milk Caramel 12-02-01-0083 12-02-02-0083 12-02-03-0083 bn_southern_fusion_tea.png - - - posi1 - - - + มัทฉะโบราณ Traditional\nMatcha ชามะลิ มัทฉะ นม และคาราเมล Jasmine Tea, Matcha, Milk, Caramel 12-02-01-0084 12-02-02-0084 12-02-03-0084 bn_traditional_green_tea.png - - - posi1 - - - ชานมชาววัง Royal Milk Tea ชาไทย ชามะลิ นม และคาราเมล Thai Tea, Jasmine Tea, Milk, Caramel 12-02-01-0085 12-02-02-0085 12-02-03-0085 bn_royal_milk_tea.png - - - posi1 - - - Name=Winter Wonder ซานต้าจินเจอร์ Iced Santa Ginger ขิง นม คาราเมล และน้ำ Ginger , Milk, Caramel And Water - 12-03-02-0081 - - ช็อกโกสโนว์เฟลก Choco Snowflake Smoothie โกโก้ นม คาราเมล และโอรีโอ้ Cocoa, Milk, Caramel , \NOreo And Ice - - 12-03-03-0088 - เรนเดียร์เปปเปอร์มินต์ Reindeer Peppermint Smoothie มินต์ นม สตรอเบอร์รี่ Mint , Milk, Strawberry \NAnd Ice - - 12-03-03-0089 - คริสมาสต์ คาเฟ ลาเต้ Iced Christmas Cafe Latte กาแฟ นม มะนาว คาราเมล และน้ำ Coffee, Milk, Lime, Caramel \NAnd Water - 12-01-02-0084 - 12-21-02-0084 + ช็อกโกสโนว์เฟลก Choco Snowflake Smoothie โกโก้ นม คาราเมล และโอรีโอ้ Cocoa, Milk, Caramel , \nOreo And Ice - - 12-03-03-0088 + เรนเดียร์เปปเปอร์มินต์ Reindeer Peppermint Smoothie มินต์ นม สตรอเบอร์รี่ Mint , Milk, Strawberry \nAnd Ice - - 12-03-03-0089 + คริสมาสต์ คาเฟ ลาเต้ Iced Christmas Cafe Latte กาแฟ นม มะนาว คาราเมล และน้ำ Coffee, Milk, Lime, Caramel \nAnd Water - 12-01-02-0084 - 12-21-02-0084 - Name=BISCOFF @@ -1145,24 +1145,24 @@ IGNORE เซเว่นอัพคุกกี้บัตเตอร์ป Name=OVALTINE,file=page_catalog_group_pro_ovaltine_school.skt - โอวัลติน Ovaltine โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\Nand Sugar 12-03-01-0019 12-03-02-0019 12-03-03-0019 bn_iced_ovaltine.png - - - posi1 - - - - โอวัลตินรถโรงเรียน\nภูเขาไฟ Mini Bus Ovaltine\NVolcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\Nand Sugar - - 12-03-03-0094 bn_iced_Ovaltine_cocoa_smoothie.png - - - posi1 - - - - โอวัลตินรถโรงเรียน\nซุปเปอร์ภูเขาไฟ Mini Bus Ovaltine\NSuper Volcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\Nand Sugar - - 12-03-03-0095 bn_bn_iced_Super_Ovaltine_cocoa_smoothie.png - - - posi1 - - - + โอวัลติน Ovaltine โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\nand Sugar 12-03-01-0019 12-03-02-0019 12-03-03-0019 bn_iced_ovaltine.png - - - posi1 - - - + โอวัลตินรถโรงเรียน\nภูเขาไฟ Mini Bus Ovaltine\nVolcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\nand Sugar - - 12-03-03-0094 bn_iced_Ovaltine_cocoa_smoothie.png - - - posi1 - - - + โอวัลตินรถโรงเรียน\nซุปเปอร์ภูเขาไฟ Mini Bus Ovaltine\nSuper Volcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\nand Sugar - - 12-03-03-0095 bn_bn_iced_Super_Ovaltine_cocoa_smoothie.png - - - posi1 - - - - - - posi1 - - - Name=Strawberry,file=page_catalog_group_pro_strawberry_series.skt - สตรอเบอร์รี่มะนาว\nโซดา Strawberry\NLimenade Soda สตรอเบอร์รี่ มะนาว\nน้ำตาล และโซดา Strawberry , Lime,\NSugar, Soda - 12-05-02-0023 12-05-03-0023 bn_strawberry_lime_soda.png - - - posi1 - - - - ชาสตรอเบอร์รี่ Strawberry Tea สตรอเบอร์รี่ ชามะลิ\nและน้ำตาล Strawberry ,\NJasmine Tea, Sugar 12-02-01-0022 12-02-02-0022 12-02-03-0022 bn_hot_strawberry_tea.png - - - posi1 - - - - สตรอเบอร์รี่โซดา Strawberry Soda สตรอเบอร์รี่ น้ำตาล\nและโซดา Strawberry , Sugar,\NSoda - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - + สตรอเบอร์รี่มะนาว\nโซดา Strawberry\nLimenade Soda สตรอเบอร์รี่ มะนาว\nน้ำตาล และโซดา Strawberry , Lime,\nSugar, Soda - 12-05-02-0023 12-05-03-0023 bn_strawberry_lime_soda.png - - - posi1 - - - + ชาสตรอเบอร์รี่ Strawberry Tea สตรอเบอร์รี่ ชามะลิ\nและน้ำตาล Strawberry ,\nJasmine Tea, Sugar 12-02-01-0022 12-02-02-0022 12-02-03-0022 bn_hot_strawberry_tea.png - - - posi1 - - - + สตรอเบอร์รี่โซดา Strawberry Soda สตรอเบอร์รี่ น้ำตาล\nและโซดา Strawberry , Sugar,\nSoda - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - น้ำสตรอเบอร์รี่ Strawberry สตรอเบอร์รี่ และน้ำตาล Strawberry , Sugar 12-05-01-0040 12-05-02-0040 12-05-03-0040 bn_iced_strawberry.png - - - posi1 - - - - โกโก้สตรอเบอร์รี่ Cocoa Strawberry สตรอเบอร์รี่ นม โกโก้\nและน้ำตาล Strawberry , Millk,\NCocoa, Sugar 12-03-01-0010 12-03-02-0010 12-03-03-0010 bn_iced_Strawberry_cocoa.png - - - posi1 - - - - กาแฟสตรอเบอร์รี่ Strawberry\NCafe Latte สตรอเบอร์รี่ นม กาแฟ\nและน้ำตาล Strawberry , Millk,\NCoffee, Sugar 12-01-01-0074 12-01-02-0074 12-01-03-0074 bn_hot_Strawberry_caramel_latte.png 12-21-01-0074 12-21-02-0074 12-21-03-0074 posi1 - - - - สตรอเบอร์รี่โอริโอ้ปั่น Strawberry Milk\NOreo Smoothie สตรอเบอร์รี่ นม โอริโอ้\nและน้ำตาล Strawberry , Millk,\NCoffee, Sugar - - 12-03-03-0027 bn_Strawberr_milk_Oreo_smoothie.png - - - posi1 - - - + โกโก้สตรอเบอร์รี่ Cocoa Strawberry สตรอเบอร์รี่ นม โกโก้\nและน้ำตาล Strawberry , Millk,\nCocoa, Sugar 12-03-01-0010 12-03-02-0010 12-03-03-0010 bn_iced_Strawberry_cocoa.png - - - posi1 - - - + กาแฟสตรอเบอร์รี่ Strawberry\nCafe Latte สตรอเบอร์รี่ นม กาแฟ\nและน้ำตาล Strawberry , Millk,\nCoffee, Sugar 12-01-01-0074 12-01-02-0074 12-01-03-0074 bn_hot_Strawberry_caramel_latte.png 12-21-01-0074 12-21-02-0074 12-21-03-0074 posi1 - - - + สตรอเบอร์รี่โอริโอ้ปั่น Strawberry Milk\nOreo Smoothie สตรอเบอร์รี่ นม โอริโอ้\nและน้ำตาล Strawberry , Millk,\nCoffee, Sugar - - 12-03-03-0027 bn_Strawberr_milk_Oreo_smoothie.png - - - posi1 - - - Name=Red string of fate เพราะเชื่อในรักแท้,file=page_catalog_group_pro_red_string_of_fate.skt - เพียงพบสบตารัก Chemistry Love สตรอเบอร์รี่ นม โกโก้\nมะนาว และโอวัลติน Strawberry, Milk, Cocoa,\NLime, Ovaltine - - 12-03-03-0100 bn_iced_Ovaltine_lime_milk_Strawberry_Cocoa_smoothie.png - - - posi1 - - - + เพียงพบสบตารัก Chemistry Love สตรอเบอร์รี่ นม โกโก้\nมะนาว และโอวัลติน Strawberry, Milk, Cocoa,\nLime, Ovaltine - - 12-03-03-0100 bn_iced_Ovaltine_lime_milk_Strawberry_Cocoa_smoothie.png - - - posi1 - - - วิวาห์หวาน Sweet Romance โอวัลติน นม และมะนาว Ovaltine, Milk, Lime - - 12-03-03-0101 bn_iced_Ovaltine_lime_milk_smoothie.png - - - posi1 - - - - ดั่งรักนิรันด์ Endless Love สตรอเบอร์รี่ ขิง มะนาว\nและโอวัลติน Strawberry, Ginger, Lime,\NOvaltine - - 12-03-03-0102 bn_iced_Ovaltine_lime_ginger_Strawberry_smoothie.png - - - posi1 - - - + ดั่งรักนิรันดร์ Endless Love สตรอเบอร์รี่ ขิง มะนาว\nและโอวัลติน Strawberry, Ginger, Lime,\nOvaltine - - 12-03-03-0102 bn_iced_Ovaltine_lime_ginger_Strawberry_smoothie.png - - - posi1 - - - @@ -1194,16 +1194,16 @@ Name=bubble tea,file=page_catalog_group_pro_buble_tea.skt Name=CockTail,file=page_catalog_group_cocktail.skt - STX On The Beach STX On The Beach Pineapple juice, Limeade, \nSoda, Ice, Malibu Pineapple Juice, Limeade, \NSoda, Ice, Malibu - 11-99-05-0001 - bn_Alcohol_ILYSB.png - - - posi1 - - - - #REF! - #REF! #REF! + STX On The Beach STX On The Beach Pineapple juice, Limeade, \nSoda, Ice, Malibu Pineapple Juice, Limeade, \nSoda, Ice, Malibu - 11-99-05-0001 - bn_Alcohol_ILYSB.png - - - posi1 - - - - #REF! - #REF! #REF! Noxious Nitrous Noxious Nitrous Mint , Limeade, Ice, Rum Mint , Limeade, Ice, Rum - 11-99-05-0002 - bn_Alcohol_Gale_Jail.png - - - posi1 - - - - #REF! - #REF! #REF! - Sea Level RISE Sea Level RISE Strawberry , Limeade, \nSoda, Malibu Strawberry , Limeade, \NSoda, Malibu - 11-99-05-0003 - bn_Alcohol_Third_Behind_Bars.png - - - posi1 - - - - #REF! - #REF! #REF! - Methane Bubbles Methane Bubbles Lychee, Limeade, Soda, \nMount Gay Rum Lychee, Limeade, Soda, \NMount Gay Rum - 11-99-05-0004 - bn_Alcohol_Pinky_Promise.png - - - posi1 - - - - #REF! - #REF! #REF! - My Carbon\nFootprint My Carbon\nFootprint Pineapple juice, Limeade, \nSoda, Ice, Mount Gay Rum Pineapple Juice, Limeade, \NSoda, Ice, Mount Gay Rum - 11-99-05-0005 - bn_Alcohol_Love_Potion.png - - - posi1 - - - - #REF! - #REF! #REF! + Sea Level RISE Sea Level RISE Strawberry , Limeade, \nSoda, Malibu Strawberry , Limeade, \nSoda, Malibu - 11-99-05-0003 - bn_Alcohol_Third_Behind_Bars.png - - - posi1 - - - - #REF! - #REF! #REF! + Methane Bubbles Methane Bubbles Lychee, Limeade, Soda, \nMount Gay Rum Lychee, Limeade, Soda, \nMount Gay Rum - 11-99-05-0004 - bn_Alcohol_Pinky_Promise.png - - - posi1 - - - - #REF! - #REF! #REF! + My Carbon\nFootprint My Carbon\nFootprint Pineapple juice, Limeade, \nSoda, Ice, Mount Gay Rum Pineapple Juice, Limeade, \nSoda, Ice, Mount Gay Rum - 11-99-05-0005 - bn_Alcohol_Love_Potion.png - - - posi1 - - - - #REF! - #REF! #REF! Fossil Fuel Fossil Fuel Coffee, Milk Ice, Rum Coffee, Milk Ice, Rum - 11-99-05-0006 - bn_Alcohol_Bedroom_Story.png - - - posi1 - - - - #REF! - #REF! #REF! Stinky Sulphur Stinky Sulphur Melon, Rum Melon, Rum - 11-99-05-0007 - bn_Alcohol_Oriental_Kink.png - - - posi1 - - - - #REF! - #REF! #REF! - Biofuel Biofuel Strawberry , Pineaple \njuice Ice, Malibu Strawberry , Pineaple \NJuice Ice, Malibu - 11-99-05-0008 - bn_Alcohol_Long_Night.png - - - posi1 - - - - #REF! - #REF! #REF! - Coal Story Bro Coal Story Bro Black sugar , Milk, Ice, \nMount Gay Rum Black Sugar , Milk, Ice, \NMount Gay Rum - 11-99-05-0009 - bn_Alcohol_Good_Night_Kiss.png - - - posi1 - - - - #REF! - #REF! #REF! - Bangkok\nUnderwater Bangkok\nUnderwater Lychee juice, Pineaple juice, \nIce, Mount Gay Rum Lychee Juice, Pineaple Juice, \NIce, Mount Gay Rum - 11-99-05-0010 - bn_Alcohol_Forever_Love.png - - - posi1 - - - - #REF! - #REF! #REF! + Biofuel Biofuel Strawberry , Pineaple \njuice Ice, Malibu Strawberry , Pineaple \nJuice Ice, Malibu - 11-99-05-0008 - bn_Alcohol_Long_Night.png - - - posi1 - - - - #REF! - #REF! #REF! + Coal Story Bro Coal Story Bro Black sugar , Milk, Ice, \nMount Gay Rum Black Sugar , Milk, Ice, \nMount Gay Rum - 11-99-05-0009 - bn_Alcohol_Good_Night_Kiss.png - - - posi1 - - - - #REF! - #REF! #REF! + Bangkok\nUnderwater Bangkok\nUnderwater Lychee juice, Pineaple juice, \nIce, Mount Gay Rum Lychee Juice, Pineaple Juice, \nIce, Mount Gay Rum - 11-99-05-0010 - bn_Alcohol_Forever_Love.png - - - posi1 - - - - #REF! - #REF! #REF! Druzhba Pipe Druzhba Pipe Blue lable, soda Blue Lable, Soda - 11-99-05-0012 - bn_iced_soda_blue.png - - - posi1 - - - - #REF! - #REF! #REF! 2050 2050 Blue lable, water Blue Lable, Water - 11-99-05-0013 - bn_iced_blue.png - - - posi1 - - - - #REF! - #REF! #REF! @@ -1212,35 +1212,38 @@ Name=CockTail,file=page_catalog_group_cocktail.skt Tailpipe Emissions Tailpipe Emissions Black lable, soda Black Lable, Soda - 11-99-05-0015 - bn_iced_soda_black.png - - - posi1 - - - - #REF! - #REF! #REF! Greenwash Greenwash Black lable, water Black Lable, Water - 11-99-05-0014 - bn_iced_black.png - - - posi1 - - - - #REF! - #REF! #REF! - Peach Smash Peach Smash Peach , Limenade ,\nSoda, Ice, Gin Peach , Limenade ,\NSoda, Ice, Gin - 11-99-05-0019 - bn_Peach_Smash.png - - - posi1 - - - - #REF! #REF! #REF! #REF! - Melon Fizz Melon Fizz Melon , Limenade ,\nSoda, Ice, Gin Melon , Limenade ,\NSoda, Ice, Gin - 11-99-05-0020 - bn_Melon_Fizz.png - - - posi1 - - - - #REF! #REF! #REF! #REF! - Yuzu Collins Yuzu Collins Yuzu , Limenade ,\nSoda, Ice, Gin Yuzu , Limenade ,\NSoda, Ice, Gin - 11-99-05-0021 - bn_Yuzu_Collins.png - - - posi1 - - - + Peach Smash Peach Smash Peach , Limenade ,\nSoda, Ice, Gin Peach , Limenade ,\nSoda, Ice, Gin - 11-99-05-0019 - bn_Peach_Smash.png - - - posi1 - - - - #REF! #REF! #REF! #REF! + Melon Fizz Melon Fizz Melon , Limenade ,\nSoda, Ice, Gin Melon , Limenade ,\nSoda, Ice, Gin - 11-99-05-0020 - bn_Melon_Fizz.png - - - posi1 - - - - #REF! #REF! #REF! #REF! + Yuzu Collins Yuzu Collins Yuzu , Limenade ,\nSoda, Ice, Gin Yuzu , Limenade ,\nSoda, Ice, Gin - 11-99-05-0021 - bn_Yuzu_Collins.png - - - posi1 - - - Gin Collins Gin Collins Gin, Limenade, Sugar, Soda and Ice Gin, Limenade, Sugar, Soda And Ice - 11-99-05-0022 - bn_Gin_Collins.png - - - posi1 - - - - The Floral The Floral Peach , Jasmine Tea ,\nWater, Ice, Gin Peach , Jasmine Tea ,\NWater, Ice, Gin - 11-99-05-0023 - bn_The_Floral.png - - - posi1 - - - - Combination Combination Melon , Limenade ,\nSoda, Ice, Vodka Melon , Limenade ,\NSoda, Ice, Vodka - 11-99-05-0024 - bn_Combination.png - - - posi1 - - - - Ume Ume Ume Ume Yuzu , Plum , Limenade ,\nSoda, Ice, Vodka Yuzu , Plum , Limenade ,\NSoda, Ice, Vodka - 11-99-05-0025 - bn_Ume_Ume.png - - - posi1 - - - - Like Sex\non The Beach Like Sex\non The Beach Peach , Limenade ,\nPineapple juice ,Soda, Ice, Vodka Peach , Limenade ,\NPineapple Juice ,Soda, Ice, Vodka - 11-99-05-0026 - bn_Like_Sex_on_The_Beach.png - - - posi1 - - - - Plum Highball Plum Highball Yuzu , Limenade ,\nSoda, Ice, Gold label Yuzu , Limenade ,\NSoda, Ice, Gold Label - 11-99-05-0027 - bn_Plum_Highball.png - - - posi1 - - - + The Floral The Floral Peach , Jasmine Tea ,\nWater, Ice, Gin Peach , Jasmine Tea ,\nWater, Ice, Gin - 11-99-05-0023 - bn_The_Floral.png - - - posi1 - - - + Combination Combination Melon , Limenade ,\nSoda, Ice, Vodka Melon , Limenade ,\nSoda, Ice, Vodka - 11-99-05-0024 - bn_Combination.png - - - posi1 - - - + Ume Ume Ume Ume Yuzu , Plum , Limenade ,\nSoda, Ice, Vodka Yuzu , Plum , Limenade ,\nSoda, Ice, Vodka - 11-99-05-0025 - bn_Ume_Ume.png - - - posi1 - - - + Like Sex\non The Beach Like Sex\non The Beach Peach , Limenade ,\nPineapple juice ,Soda, Ice, Vodka Peach , Limenade ,\nPineapple Juice ,Soda, Ice, Vodka - 11-99-05-0026 - bn_Like_Sex_on_The_Beach.png - - - posi1 - - - + Plum Highball Plum Highball Yuzu , Limenade ,\nSoda, Ice, Gold label Yuzu , Limenade ,\nSoda, Ice, Gold Label - 11-99-05-0027 - bn_Plum_Highball.png - - - posi1 - - - Draft Beer Draft Beer Beer Beer - 11-99-05-0028 - bn_Draft_beer.png - - - posi1 - - - Iced Beer Iced Beer Beer, Ice Beer, Ice - 11-99-05-0029 - bn_Draft_beer_with_ice.png - - - posi1 - - - Summer Chill Summer Chill Gin, Pineapple, Ginger, Ice Gin, Pineapple, Ginger, Ice - 11-99-05-0030 - bn_Summer_Chill.png - - - posi1 - - - - Neon Spark Neon Spark Vodka, Melon , Lime,\nSoda , Ice Vodka, Melon , Lime,\NSoda , Ice - 11-99-05-0031 - bn_Neon_Spark.png - - - posi1 - - - + Neon Spark Neon Spark Vodka, Melon , Lime,\nSoda , Ice Vodka, Melon , Lime,\nSoda , Ice - 11-99-05-0031 - bn_Neon_Spark.png - - - posi1 - - - Yuzu Martini Yuzu Martini Gin, Vodka, Yuzu , Ice Gin, Vodka, Yuzu , Ice - 11-99-05-0032 - bn_Yuzu_Martini.png - - - posi1 - - - - Strawberry Martini Strawberry Martini Gin, Vodka, Strawberry \n, Ice Gin, Vodka, Strawberry \N, Ice - 11-99-05-0033 - bn_Strawberry_Martini.png - - - posi1 - - - - Russian Mojito Russian Mojito Vodka, Mint , Sugar,\nLime, Ice Vodka, Mint , Sugar,\NLime, Ice - 11-99-05-0034 - bn_Russian_Mojito.png - - - posi1 - - - + Strawberry Martini Strawberry Martini Gin, Vodka, Strawberry \n, Ice Gin, Vodka, Strawberry \n, Ice - 11-99-05-0033 - bn_Strawberry_Martini.png - - - posi1 - - - + Russian Mojito Russian Mojito Vodka, Mint , Sugar,\nLime, Ice Vodka, Mint , Sugar,\nLime, Ice - 11-99-05-0034 - bn_Russian_Mojito.png - - - posi1 - - - Yuzu Highball Yuzu Highball Black, Yuzu , Ice Black, Yuzu , Ice - 11-99-05-0035 - bn_Yuzu_Highball.png - - - posi1 - - - - Beachy Mint Beachy Mint Gin, Pineapple, Mint ,\nSoda, Ice Gin, Pineapple, Mint ,\NSoda, Ice - 11-99-05-0036 - bn_Beachy_Mint.png - - - posi1 - - - - Black Menthe Black Menthe Black, Mint , Lime,\nSoda, Ice Black, Mint , Lime,\NSoda, Ice - 11-99-05-0037 - bn_Black_Menthe.png - - - posi1 - - - - Wakeup Call Wakeup Call Vodka, Energy ,\nStrawberry , Soda Vodka, Energy ,\NStrawberry , Soda - 11-99-05-0038 - bn_Wakeup_Call.png - - - posi1 - - - + Beachy Mint Beachy Mint Gin, Pineapple, Mint ,\nSoda, Ice Gin, Pineapple, Mint ,\nSoda, Ice - 11-99-05-0036 - bn_Beachy_Mint.png - - - posi1 - - - + Black Menthe Black Menthe Black, Mint , Lime,\nSoda, Ice Black, Mint , Lime,\nSoda, Ice - 11-99-05-0037 - bn_Black_Menthe.png - - - posi1 - - - + Wakeup Call Wakeup Call Vodka, Energy ,\nStrawberry , Soda Vodka, Energy ,\nStrawberry , Soda - 11-99-05-0038 - bn_Wakeup_Call.png - - - posi1 - - - Almost Umeshu Almost Umeshu Black, Plum , Lime, Ice Black, Plum , Lime, Ice - 11-99-05-0039 - bn_Almost_Umeshu.png - - - posi1 - - - Café Avec Liqueur Café Avec Liqueur Vodka, Coffee, Milk, Sugar, Ice Vodka, Coffee, Milk, Sugar, Ice - 11-99-05-0040 - bn_Cafe_Avec_Liqueur.png - - - posi1 - - - Espresso Martini Espresso Martini Gin, Coffee, Sugar, Ice Gin, Coffee, Sugar, Ice - 11-99-05-0041 - bn_Espresso_Martini.png - - - posi1 - - - - - - - - + Mint Julep Mint Julep Glenfiddich, Balvenie, Macallan Lumina, Mint, Sugar, Soda Glenfiddich, Balvenie, Macallan Lumina, Mint, Sugar, Soda + Highland Straw Fling Highland Straw Fling Glenfiddich, Balvenie, Macallan Lumina, Strawberry, Lime, Sugar, Water Glenfiddich, Balvenie, Macallan Lumina, Strawberry, Lime, Sugar, Water + Scotch Pineapple Sour Scotch Pineapple Sour Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Sugar, Water Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Sugar, Water + Turtle Hole Turtle Hole Glenfiddich, Balvenie, Macallan Lumina, Gin, Melon, Lime, Sugar, Water Glenfiddich, Balvenie, Macallan Lumina, Gin, Melon, Lime, Sugar, Water + Azalea Azalea Glenfiddich, Balvenie, Macallan Lumina, Gin, Pineapple, Lime, Strawberry, Water Glenfiddich, Balvenie, Macallan Lumina, Gin, Pineapple, Lime, Strawberry, Water + Turtle of BKK Turtle of BKK Glenfiddich, Balvenie, Macallan Lumina,Coffee, Sugar, Watrer Glenfiddich, Balvenie, Macallan Lumina,Coffee, Sugar, Watrer + TAO Island Beach TAO Island Beach Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Plum, Water Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Plum, Water + Yuzu Fizzy Yuzu Fizzy Gin,Yuzu, Lime, Soda Gin,Yuzu, Lime, Soda Name=Obsolete,file=page_obsolete.skt นมมะม่วง Mango Milk นม มะม่วง Milk, Mango , & 12-03-02-0007 - - bn_Mango_milk.png - - - #REF! - - #REF! NN nUll nUll nUll Null 12-04-02-0012 - - - - - - #REF! - - #REF! NN @@ -1248,18 +1251,18 @@ Name=Obsolete,file=page_obsolete.skt มะม่วงโซดา Mango Soda มะม่วง โซดา Mango , Soda, Ice 12-05-02-0031 - - bn_ _Mango_soda.png - - - #REF! - - #REF! NN strawlimenade soda nUll nUll Null 12-05-02-0023 - - - - - - #REF! - - #REF! NN บลูเบอร์รี่โซดา Blueberry Soda บลูเบอร์รี่ โซดา Blueberry , Soda, Ice 12-05-02-0013 - - bn_ _blueberry_soda.png - - - #REF! - - #REF! NN - น้ำบลูเบอร์รี่ Blueberry บลูเบอร์รี่ น้ำ Blueberry ,\NWater, Ice 12-05-02-0006 - - bn_ _blueberry.png - - - #REF! - - #REF! NN - ชาบลูเบอร์รี่ Blueberry Tea ชาไทย บลูเบอร์รี่ \n Thai Tea, Blueberry ,\NWater, Ice 12-02-02-0010 12-02-01-0010 - bn_blueberry_tea.png - - - #REF! #REF! - #REF! #REF! + น้ำบลูเบอร์รี่ Blueberry บลูเบอร์รี่ น้ำ Blueberry ,\nWater, Ice 12-05-02-0006 - - bn_ _blueberry.png - - - #REF! - - #REF! NN + ชาบลูเบอร์รี่ Blueberry Tea ชาไทย บลูเบอร์รี่ \n Thai Tea, Blueberry ,\nWater, Ice 12-02-02-0010 12-02-01-0010 - bn_blueberry_tea.png - - - #REF! #REF! - #REF! #REF! เซเว่นอัพ 7Up เซเว่นอัพ 7Up & Ice - 12-05-02-0021 12-05-03-0021 - - - - #REF! #REF! #REF! #REF! โค้ก Coke โค้ก Coke & Ice - 12-05-02-0019 12-05-03-0019 bn_iced_Cokecola.png - - - - #REF! #REF! #REF! #REF! สไปรท์ Sprite สไปรท์ Sprite & Ice - 12-05-02-0020 12-05-03-0020 bn_iced_sprite.png - - - - #REF! #REF! #REF! #REF! กาแฟชาไทย Thai Tea Cafe Latte กาแฟ ชาไทย นม น้ำตาล \nและ นม Espresso, Thai Tea, Milk, Sugar 12-01-01-0010 12-01-02-0007 12-01-03-0007 bn_hot_coffee_thai_milk_tea.png 12-21-01-0010 12-21-02-0007 12-21-03-0007 - - - #REF! #REF! #REF! #REF! #REF! - - - - อเมริกาโนลิ้นจี่ Lychee Americano กาแฟ น้ำ และ ลิ้นจี่ Espresso, Lychee,\NSugar, Water 12-01-01-0012 12-01-02-0009 - bn_hot_lychee_espresso.png - - - - - - #REF! #REF! - #REF! #REF! + อเมริกาโนลิ้นจี่ Lychee Americano กาแฟ น้ำ และ ลิ้นจี่ Espresso, Lychee,\nSugar, Water 12-01-01-0012 12-01-02-0009 - bn_hot_lychee_espresso.png - - - - - - #REF! #REF! - #REF! #REF! น้ำลิ้นจี่โซดา Lychee Soda ลิ้นจี่ โซดา Lychee , Soda & Ice - 12-05-02-0011 12-05-03-0011 bn_iced_Lychee_soda.png - - - - #REF! #REF! #REF! #REF! ชาไทยนม Thai Milk Tea ชาไทย นม Thai Tea, Milk, Sugar 12-02-01-0002 12-02-02-0002 12-02-03-0002 bn_hot_thai_milk_tea.png - - - #REF! #REF! #REF! #REF! #REF! เก็กฮวย Chrysanths Tea น้ำเก๊กฮวย น้ำตาล Chrysanthemum & Water 12-02-01-0001 12-02-02-0001 12-02-03-0001 bn_hot_chrysanthemum_tea.png - - - #REF! #REF! #REF! #REF! #REF! โฮจิฉะ Hojicha ชาเขียวคั่ว Hojicha 12-02-01-0036 12-02-02-0036 12-02-03-0036 bn_hot_hojicha_tea_sing.png - - - #REF! #REF! #REF! #REF! #REF! - บลูเบอร์รี่โปรตีน Blueberry Shake เวย์โปรตีน นม \nบลูเบอร์รี่ Whey Protein,\NBlueberry & Milk - 12-04-02-0007 - bn_protein_Blueberry.png - - - - #REF! - #REF! #REF! - โตเกียวบานาน่าโปรตีน Banana Shake เวย์โปรตีน นม \nโตเกียวบานาน่า Whey Protein, Milk,\NTokyo Banana - 12-04-02-0019 - bn_protein_Banana.png - - - - - - - #REF! - #REF! #REF! + บลูเบอร์รี่โปรตีน Blueberry Shake เวย์โปรตีน นม \nบลูเบอร์รี่ Whey Protein,\nBlueberry & Milk - 12-04-02-0007 - bn_protein_Blueberry.png - - - - #REF! - #REF! #REF! + โตเกียวบานาน่าโปรตีน Banana Shake เวย์โปรตีน นม \nโตเกียวบานาน่า Whey Protein, Milk,\nTokyo Banana - 12-04-02-0019 - bn_protein_Banana.png - - - - - - - #REF! - #REF! #REF! คำเตือนของซาตาน Jasmine Jinx เป๊ปซี่ ชามะลิ นยูซุ ผงมะนาว และโซดา Pepsi Jasmine Yuzu And Soda - 12-99-05-0063 - bn_jasmin_jinx.png - - - - - - diff --git a/video/brewing_adv14.mp4 b/video/brewing_adv14.mp4 new file mode 100755 index 00000000..369c43ac Binary files /dev/null and b/video/brewing_adv14.mp4 differ diff --git a/video/brewing_adv14_long.mp4 b/video/brewing_adv14_long.mp4 new file mode 100644 index 00000000..55e5e4b2 Binary files /dev/null and b/video/brewing_adv14_long.mp4 differ diff --git a/video/brewing_adv15.mp4 b/video/brewing_adv15.mp4 new file mode 100755 index 00000000..36f12bc5 Binary files /dev/null and b/video/brewing_adv15.mp4 differ diff --git a/video/brewing_adv15_long.mp4 b/video/brewing_adv15_long.mp4 new file mode 100644 index 00000000..2e0d2c65 Binary files /dev/null and b/video/brewing_adv15_long.mp4 differ diff --git a/video/script1.ev b/video/script1.ev index 7170607f..1671aefd 100644 --- a/video/script1.ev +++ b/video/script1.ev @@ -2,69 +2,32 @@ Var MainfileSize = 0 DEBUGVAR BoxID Var EventMatch = 0 -Var EventMatch = 1 - -DEBUGVAR EventMatch - -If EventMatch = 1 Then - Var WebAppShow = "Invisible" - - GetFileSizeK "taobin_project/video/main_page_event.mp4" MainfileSize - DEBUGVAR MainfileSize - If MainfileSize = 10634530 Then - - Var CurrentMainVideoTemp = 1 - Var CountDownShowButton = 0 - ;Var MainPageEventWithTimeout = 25 - Var ShowButtonClickFull = "Invisible" - - Var img_rest_main_page = "ROOT/taobin_project/image/main_page/bn_main_page_start.png" - Var MemberButtonFileNameRest = "ROOT/taobin_project/image/main_page/bn_main_page_member.png" - Var img_reset_topup = "ROOT/taobin_project/image/main_page/bn_main_page_topup.png" - - Var VideoMainPage = "ROOT/taobin_project/video/main_page_event.mp4" - - If CocktailShow = "true" Then - - Else - Var EventTurnOn = 1 - EndIf - EndIf -EndIf -If SystemDateMonthInt = 11 Then +If SystemDateMonthInt = 2 Then + Var OvaltineSchoolPro = 1 - Var EDC_ThailandOn = 1 - - If SystemDateDayInt > 20 Then - Var PremiumTriosEnable = 1 - Var GiftNewYearEnable = 1 + If SystemDateDayInt >= 10 Then + If SystemDateDayInt <= 23 Then + Var RedStringOfFatePro = 1 + EndIf EndIf EndIf -If SystemDateMonthInt = 12 Then +DEBUGVAR HaveIngredientOvaltine +If HaveIngredientOvaltine = "true" Then - Var EDC_ThailandOn = 1 - Var GiftNewYearEnable = 1 +Else + Var OvaltineSchoolPro = 0 + Var RedStringOfFatePro = 0 + EndIf -If SystemDateMonthInt = 1 Then - If SystemDateDayInt < 20 Then - Var EDC_ThailandOn = 1 - EndIf - If SystemDateDayInt < 16 Then - Var GiftNewYearEnable = 1 - EndIf - -EndIf - - - - +DEBUGVAR OvaltineSchoolPro +DEBUGVAR RedStringOfFatePro Var MainAdvertiseRunSlot = 0 @@ -73,21 +36,6 @@ If MainAdvertiseShowSlot = "" Then EndIf -If brewing_adv11_long_size = "" Then - GetFileSizeK "taobin_project/video/brewing_adv11_long.mp4" brewing_adv11_long_size -EndIf -DEBUGVAR brewing_adv11_long_size -If brewing_adv11_long_size = 8233782 Then - If WinterWonderPro = 1 Then - - Var MainAdvertiseFileName[MainAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv11_long.mp4" - Var MainAdvertiseVideoEnd[MainAdvertiseRunSlot] = 0 - Var EventTurnOn = 1 - Var MainAdvertiseRunSlot = MainAdvertiseRunSlot + 1 - EndIf -EndIf - - If brewing_adv13_long_size = "" Then GetFileSizeK "taobin_project/video/brewing_adv13_long.mp4" brewing_adv13_long_size @@ -104,6 +52,41 @@ If brewing_adv13_long_size = 3789806 Then EndIf + +If brewing_adv14_long_size = "" Then + GetFileSizeK "taobin_project/video/brewing_adv14_long.mp4" brewing_adv14_long_size +EndIf +DEBUGVAR brewing_adv14_long_size +If brewing_adv14_long_size = 5353047 Then + If OvaltineSchoolPro = 1 Then + + Var MainAdvertiseFileName[MainAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv14_long.mp4" + Var MainAdvertiseVideoEnd[MainAdvertiseRunSlot] = 0 + Var EventTurnOn = 1 + Var MainAdvertiseRunSlot = MainAdvertiseRunSlot + 1 + EndIf +EndIf + + + + +If brewing_adv15_long_size = "" Then + GetFileSizeK "taobin_project/video/brewing_adv15_long.mp4" brewing_adv15_long_size +EndIf +DEBUGVAR brewing_adv15_long_size +If brewing_adv15_long_size = 5579052 Then + If RedStringOfFatePro = 1 Then + + Var MainAdvertiseFileName[MainAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv15_long.mp4" + Var MainAdvertiseVideoEnd[MainAdvertiseRunSlot] = 0 + Var EventTurnOn = 1 + Var MainAdvertiseRunSlot = MainAdvertiseRunSlot + 1 + EndIf +EndIf + + + + If brewing_adv21_long_size = "" Then GetFileSizeK "taobin_project/video/brewing_adv21_long.mp4" brewing_adv21_long_size EndIf @@ -123,9 +106,6 @@ EndIf - - - If brewing_adv16_size = "" Then GetFileSizeK "taobin_project/video/brewing_adv16.mp4" brewing_adv16_size EndIf diff --git a/video/script3_first_brewing.ev b/video/script3_first_brewing.ev index 8c32690d..3cacdeda 100644 --- a/video/script3_first_brewing.ev +++ b/video/script3_first_brewing.ev @@ -87,7 +87,7 @@ If brewing_adv11_size = 18065754 Then Var BrewingAdvertiseDurationTime[BrewingAdvertiseRunSlot] = 15 Var BrewingAdvertiseShowTextNextToOrder[ BrewingAdvertiseRunSlot] = 0 - Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1 + ;Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1 EndIf EndIf @@ -142,19 +142,21 @@ If brewing_adv14_size = "" Then EndIf DEBUGVAR brewing_adv14_size -If brewing_adv14_size = 10634530 Then - Var BrewingAdvertiseEnable[ BrewingAdvertiseRunSlot] = 1 - Var BrewingAdvertiseVideo[ BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv14.mp4"; - If show_eng = "true" Then - Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14_en.png" - Else - Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14.png" - EndIf +If brewing_adv14_size = 9260622 Then + If OvaltineSchoolPro = 1 Then + Var BrewingAdvertiseEnable[ BrewingAdvertiseRunSlot] = 1 + Var BrewingAdvertiseVideo[ BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv14.mp4"; + If show_eng = "true" Then + Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14_en.png" + Else + Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14.png" + EndIf - Var BrewingAdvertiseDurationTime[BrewingAdvertiseRunSlot] = 28 - Var BrewingAdvertiseShowTextNextToOrder[ BrewingAdvertiseRunSlot] = 0 - - Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1 + Var BrewingAdvertiseDurationTime[BrewingAdvertiseRunSlot] = 15 + Var BrewingAdvertiseShowTextNextToOrder[ BrewingAdvertiseRunSlot] = 0 + + Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1 + EndIf EndIf @@ -164,8 +166,8 @@ EndIf DEBUGVAR brewing_adv15_size -If brewing_adv15_size = 8455461 Then - If JemilaPro = 1 Then +If brewing_adv15_size = 9493162 Then + If RedStringOfFatePro = 1 Then Var BrewingAdvertiseEnable[ BrewingAdvertiseRunSlot] = 1 Var BrewingAdvertiseVideo[ BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv15.mp4"; If show_eng = "true" Then diff --git a/video/sync_1.file b/video/sync_1.file index 2b28a3e9..09b16deb 100644 --- a/video/sync_1.file +++ b/video/sync_1.file @@ -1,11 +1,13 @@ -total 229168 +total 239472 -rw-rw---- 1 root sdcard_rw 18065754 2024-11-27 16:31 brewing_adv11.mp4 -rw-rw---- 1 root sdcard_rw 8233782 2024-12-04 15:39 brewing_adv11_long.mp4 -rw-rw---- 1 root sdcard_rw 9415247 2024-10-08 14:40 brewing_adv12.mp4 -rw-rw---- 1 root sdcard_rw 1919848 2024-12-20 22:32 brewing_adv13.mp4 -rw-rw---- 1 root sdcard_rw 3789806 2024-12-20 22:31 brewing_adv13_long.mp4 --rw-rw---- 1 root sdcard_rw 10634530 2024-10-29 11:51 brewing_adv14.mp4 --rw-rw---- 1 root sdcard_rw 8455461 2024-10-04 09:52 brewing_adv15.mp4 +-rw-rw---- 1 root sdcard_rw 9260622 2025-01-09 17:28 brewing_adv14.mp4 +-rw-rw---- 1 root sdcard_rw 5353047 2025-01-23 13:08 brewing_adv14_long.mp4 +-rw-rw---- 1 root sdcard_rw 9493162 2025-01-10 16:11 brewing_adv15.mp4 +-rw-rw---- 1 root sdcard_rw 5579052 2025-01-23 13:11 brewing_adv15_long.mp4 -rw-rw---- 1 root sdcard_rw 7422861 2024-11-05 16:08 brewing_adv16.mp4 -rw-rw---- 1 root sdcard_rw 10348323 2024-11-21 18:04 brewing_adv17.mp4 -rw-rw---- 1 root sdcard_rw 9701195 2024-11-28 13:34 brewing_adv21.mp4 @@ -18,10 +20,10 @@ total 229168 -rw-rw---- 1 root sdcard_rw 42692 2024-08-29 11:31 brewing_txt_adv12_en.png -rw-rw---- 1 root sdcard_rw 50704 2024-12-20 22:09 brewing_txt_adv13.png -rw-rw---- 1 root sdcard_rw 50172 2024-12-20 22:10 brewing_txt_adv13_en.png --rw-rw---- 1 root sdcard_rw 44623 2024-09-17 14:17 brewing_txt_adv14.png --rw-rw---- 1 root sdcard_rw 41395 2024-09-17 14:18 brewing_txt_adv14_en.png --rw-rw---- 1 root sdcard_rw 44262 2024-10-04 14:41 brewing_txt_adv15.png --rw-rw---- 1 root sdcard_rw 43432 2024-10-04 14:41 brewing_txt_adv15_en.png +-rw-rw---- 1 root sdcard_rw 42617 2025-01-27 10:02 brewing_txt_adv14.png +-rw-rw---- 1 root sdcard_rw 46154 2025-01-27 10:02 brewing_txt_adv14_en.png +-rw-rw---- 1 root sdcard_rw 37899 2025-01-27 10:02 brewing_txt_adv15.png +-rw-rw---- 1 root sdcard_rw 35319 2025-01-27 10:02 brewing_txt_adv15_en.png -rw-rw---- 1 root sdcard_rw 49830 2024-11-05 16:48 brewing_txt_adv16.png -rw-rw---- 1 root sdcard_rw 50931 2024-11-05 16:49 brewing_txt_adv16_en.png -rw-rw---- 1 root sdcard_rw 47482 2024-11-05 21:28 brewing_txt_adv17.png @@ -33,11 +35,11 @@ total 229168 -rw-rw---- 1 root sdcard_rw 35550 2023-09-18 18:44 brewing_txt_adv3_en.png -rw-rw---- 1 root sdcard_rw 17402219 2024-07-16 14:21 main_page.mp4 -rw-rw---- 1 root sdcard_rw 10634530 2024-10-29 11:51 main_page_event.mp4 --rw-rw---- 1 root sdcard_rw 5063 2025-01-22 15:48 script1.ev +-rw-rw---- 1 root sdcard_rw 4708 2025-01-28 15:33 script1.ev -rw-rw---- 1 root sdcard_rw 288 2024-07-24 21:21 script2.ev -rw-rw---- 1 root sdcard_rw 210 2024-11-10 09:20 script3_brew.ev --rw-rw---- 1 root sdcard_rw 10646 2024-12-22 11:12 script3_first_brewing.ev --rw-rw---- 1 root sdcard_rw 0 2025-01-23 15:50 sync_1.file +-rw-rw---- 1 root sdcard_rw 10704 2025-01-27 13:42 script3_first_brewing.ev +-rw-rw---- 1 root sdcard_rw 0 2025-01-29 09:27 sync_1.file -rw-rw---- 1 root sdcard_rw 4806758 2023-09-18 18:44 taobin_save_world1.mp4 -rw-rw---- 1 root sdcard_rw 6428830 2023-09-18 18:44 taobin_save_world2.mp4 -rw-rw---- 1 root sdcard_rw 4634942 2023-09-18 18:44 taobin_save_world3.mp4 diff --git a/xml/event/tricker.ev b/xml/event/tricker.ev index 950ad7a3..03d290af 100644 --- a/xml/event/tricker.ev +++ b/xml/event/tricker.ev @@ -214,6 +214,10 @@ If SystemDateMonthInt >= 2 Then EndIf EndIf +If SystemDateMonthInt >= 3 Then + Var CleanFeedbackFlag = 1 +EndIf + If SystemDateMonthInt = 2 Then Var OvaltineSchoolPro = 1 @@ -246,38 +250,10 @@ If BoxID = 105005 Then Var SugarZeroCalFreeFlag = 1 EndIf -If BoxID = 176757 Then - Var MomCocoaPro = 0 - Var MomCocoaProDiscountEnable = 0 - Var RobinsonBeautyPro = 0 - Var WeekdayDiscountPro = 1 - Var WeekdayDiscountProEventOn = 1 - Var OreoDiscount11Pro = 1 -EndIf - -If BoxID = 201729 Then - Var MomCocoaPro = 0 - Var MomCocoaProDiscountEnable = 0 - Var RobinsonBeautyPro = 0 - Var JemilaToppingFlag = 1 - Var JemilaToppingFreeFlag = 1 - - - Var 12Day12MenuPro = 0 - Var WinterWonderPro = 1 - Var ThickTeaByBrewerPro = 1 - Var ThickTeaByBrewerBanner = 1 - -EndIf - If BoxID = 201714 Then - Var MomCocoaPro = 0 - Var MomCocoaProDiscountEnable = 0 - Var RobinsonBeautyPro = 0 - Var JemilaToppingFlag = 1 - Var ThickTeaByBrewerPro = 1 - Var ThickTeaByBrewerBanner = 1 + Var RedStringOfFatePro = 1 + Var OvaltineSchoolPro = 1 EndIf If BoxID = 173149 Then @@ -290,21 +266,8 @@ If BoxID = 173149 Then EndIf If BoxID = 172644 Then - Var MomCocoaPro = 0 - Var MomCocoaProDiscountEnable = 0 - Var RobinsonBeautyPro = 0 - Var WeekdayDiscountPro = 0 - Var WeekdayDiscountProEventOn = 0 - Var OreoDiscount11Pro = 0 - - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 - - Var 12Day12MenuPro = 0 - Var WinterWonderPro = 1 - Var ThickTeaByBrewerPro = 1 - - Var JemilaToppingFlag = 1 + Var RedStringOfFatePro = 1 + Var OvaltineSchoolPro = 1 EndIf Var XMLLiveInfoEnable = 1 @@ -395,6 +358,8 @@ If taobin_nopro = "true" Then EndIf +; check material + If CoconutSyrupEnable = "true" Then Else @@ -449,6 +414,16 @@ Else Var HappyTriosPro = 0 EndIf +DEBUGVAR HaveIngredientOvaltine +If HaveIngredientOvaltine = "true" Then + +Else + Var OvaltineSchoolPro = 0 + Var RedStringOfFatePro = 0 +EndIf + +DEBUGVAR OvaltineSchoolPro +DEBUGVAR RedStringOfFatePro Var CurrentMainVideoTemp = 0 @@ -468,61 +443,8 @@ EndIf DEBUGVAR OreoDiscount11Pro ; Control collect promotion point behavior -Var New_Payment = 0 -Var NewFlowPaymentCode = 0 - -If BoxID = 105005 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf - -If BoxID = 173149 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf - -If BoxID = 173249 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf - -If BoxID = 172053 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf - -If BoxID = 200001 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf -If BoxID = 175689 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf -If BoxID = 201729 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 - - Var TaobinEnergyDrinkMenu = 1 -EndIf - -If BoxID = 172644 Then - Var TaobinEnergyDrinkMenu = 1 -EndIf - - -If BoxID = 200000 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf - - -If BoxID = 176757 Then - Var New_Payment = 1 - Var NewFlowPaymentCode = 1 -EndIf - ; open now +; open away Var New_Payment = 1 Var NewFlowPaymentCode = 1 diff --git a/xml/menu_new_layout_gen.py b/xml/menu_new_layout_gen.py index bd7bc43f..61b8f550 100644 --- a/xml/menu_new_layout_gen.py +++ b/xml/menu_new_layout_gen.py @@ -326,7 +326,7 @@ if multi_pro_gen: out_xml(' 4 \r\n') elif recommend_page: - out_xml(' 12 \r\n') + out_xml(' 16 \r\n') out_xml(' 10 \r\n') out_xml(' 497 \r\n') out_xml(' 1080 \r\n') diff --git a/xml/page_NewBrewing3.xml b/xml/page_NewBrewing3.xml index 06e02e81..13ada39a 100644 --- a/xml/page_NewBrewing3.xml +++ b/xml/page_NewBrewing3.xml @@ -21,6 +21,7 @@ __CMD "PayWasSent" Seeker.ORDER_ID "-" "-" + __CMD "machine-cleanliness-score" Seeker.CleanFeedbackScore "-" "-" Var PictureFileTextDesctionState = "Enable" @@ -119,7 +120,7 @@ Var XStraw = 142 EndIf - If LanguageShow = "MYANMAR" Then + If LanguageShow = "MYANMAR" Then Play "ROOT/taobin_project/sound_eng/Wait_a_moment.mp3" @@ -194,7 +195,7 @@ Var DirImage2 = "ROOT/taobin_project/image/topping2" EndIf - If LanguageShow = "MYANMAR" Then + If LanguageShow = "MYANMAR" Then Var DirImage = "ROOT/taobin_project/image/page_payment_mmr/page_payment" Var DirImage2 = "ROOT/taobin_project/image/topping_mmr" EndIf @@ -422,7 +423,7 @@ Var LangString = "LANG: "TH"\r\n" EndIf - If LanguageShow = "MYANMAR" Then + If LanguageShow = "MYANMAR" Then Var LangString = "LANG: "TH"\r\n" EndIf @@ -452,7 +453,7 @@ Var LangString = "LANG: "TH"\r\n" EndIf - If LanguageShow = "MYANMAR" Then + If LanguageShow = "MYANMAR" Then Var LangString = "LANG: "TH"\r\n" EndIf @@ -732,7 +733,7 @@ PlayLong PlaySoundLag EndIf - If LanguageShow = "MYANMAR" Then + If LanguageShow = "MYANMAR" Then PlayLong "/mnt/sdcard/coffeevending/taobin_project/sound_eng/next_drink.mp3" EndIf EndIf diff --git a/xml/page_board.xml b/xml/page_board.xml index e5544bd6..be39cc7a 100644 --- a/xml/page_board.xml +++ b/xml/page_board.xml @@ -211,6 +211,8 @@ STRCONTAIN "1037" MaterialAvailable 7UpSyrupEnable STRCONTAIN "1038" MaterialAvailable PepsiHighYSyrupEnable STRCONTAIN "1052" MaterialAvailable CollagenPowderEnable + + STRCONTAIN "1065" MaterialAvailable HaveIngredientOvaltine ;Var AppFastEnable = "false" If AppFastEnable = "true" Then diff --git a/xml/page_catalog_group_appfast.xml b/xml/page_catalog_group_appfast.xml index 3fbecbb5..35fb21ff 100644 --- a/xml/page_catalog_group_appfast.xml +++ b/xml/page_catalog_group_appfast.xml @@ -574,7 +574,7 @@ Essential nutrients" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "App Fast \NChocolate" + Var NameDrink = "App Fast Chocolate" Var NameDrinkTH = "แอพ ฟาสท์ ช็อกโก" Var DrinkDescriptionTH = "โปรตีนจากพืชคุณภาพสูง พร้อมสารอาหารที่มีประโยชน์" Var DrinkDescription = "Plant-Based Protein with Essential nutrients" @@ -670,7 +670,8 @@ Essential nutrients" KanitMediumTTF 0x322B26 showengText - "App Fast \NChocolate" + "App Fast +Chocolate" 16 @@ -827,7 +828,7 @@ Essential nutrients" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "App Fast \NThai Tea" + Var NameDrink = "App Fast Thai Tea" Var NameDrinkTH = "แอพ ฟาสท์ ชาไทย" Var DrinkDescriptionTH = "โปรตีนจากพืชคุณภาพสูง พร้อมสารอาหารที่มีประโยชน์" Var DrinkDescription = "Plant-Based Protein with Essential nutrients" @@ -923,7 +924,8 @@ Essential nutrients" KanitMediumTTF 0x322B26 showengText - "App Fast \NThai Tea" + "App Fast +Thai Tea" 16 @@ -1080,7 +1082,7 @@ Essential nutrients" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "App Fast \NMatcha" + Var NameDrink = "App Fast Matcha" Var NameDrinkTH = "แอพ ฟาสท์ ชาเขียว" Var DrinkDescriptionTH = "โปรตีนจากพืชคุณภาพสูง พร้อมสารอาหารที่มีประโยชน์" Var DrinkDescription = "Plant-Based Protein with Essential nutrients" @@ -1176,7 +1178,8 @@ Essential nutrients" KanitMediumTTF 0x322B26 showengText - "App Fast \NMatcha" + "App Fast +Matcha" 16 diff --git a/xml/page_catalog_group_cocktail.xml b/xml/page_catalog_group_cocktail.xml index f533e3ec..d4114894 100644 --- a/xml/page_catalog_group_cocktail.xml +++ b/xml/page_catalog_group_cocktail.xml @@ -61,7 +61,7 @@ Var NameDrink = "STX On The Beach" Var NameDrinkTH = "STX On The Beach" Var DrinkDescriptionTH = "Pineapple juice, Limeade, Soda, Ice, Malibu" - Var DrinkDescription = "Pineapple Juice, Limeade, \NSoda, Ice, Malibu" + Var DrinkDescription = "Pineapple Juice, Limeade, Soda, Ice, Malibu" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_ILYSB.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -164,7 +164,8 @@ Soda, Ice, Malibu" KanitMediumTTF 0x6F5F51 showengText - "Pineapple Juice, Limeade, \NSoda, Ice, Malibu" + "Pineapple Juice, Limeade, +Soda, Ice, Malibu" 16 @@ -564,7 +565,7 @@ Soda, Ice, Malibu" Var NameDrink = "Sea Level RISE" Var NameDrinkTH = "Sea Level RISE" Var DrinkDescriptionTH = "Strawberry , Limeade, Soda, Malibu" - Var DrinkDescription = "Strawberry , Limeade, \NSoda, Malibu" + Var DrinkDescription = "Strawberry , Limeade, Soda, Malibu" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Third_Behind_Bars.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -667,7 +668,8 @@ Soda, Malibu" KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Limeade, \NSoda, Malibu" + "Strawberry , Limeade, +Soda, Malibu" 16 @@ -816,7 +818,7 @@ Soda, Malibu" Var NameDrink = "Methane Bubbles" Var NameDrinkTH = "Methane Bubbles" Var DrinkDescriptionTH = "Lychee, Limeade, Soda, Mount Gay Rum" - Var DrinkDescription = "Lychee, Limeade, Soda, \NMount Gay Rum" + Var DrinkDescription = "Lychee, Limeade, Soda, Mount Gay Rum" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Pinky_Promise.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -919,7 +921,8 @@ Mount Gay Rum" KanitMediumTTF 0x6F5F51 showengText - "Lychee, Limeade, Soda, \NMount Gay Rum" + "Lychee, Limeade, Soda, +Mount Gay Rum" 16 @@ -1068,7 +1071,7 @@ Mount Gay Rum" Var NameDrink = "My Carbon Footprint" Var NameDrinkTH = "My Carbon Footprint" Var DrinkDescriptionTH = "Pineapple juice, Limeade, Soda, Ice, Mount Gay Rum" - Var DrinkDescription = "Pineapple Juice, Limeade, \NSoda, Ice, Mount Gay Rum" + Var DrinkDescription = "Pineapple Juice, Limeade, Soda, Ice, Mount Gay Rum" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Love_Potion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1173,7 +1176,8 @@ Footprint" KanitMediumTTF 0x6F5F51 showengText - "Pineapple Juice, Limeade, \NSoda, Ice, Mount Gay Rum" + "Pineapple Juice, Limeade, +Soda, Ice, Mount Gay Rum" 16 @@ -1824,7 +1828,7 @@ Footprint" Var NameDrink = "Biofuel" Var NameDrinkTH = "Biofuel" Var DrinkDescriptionTH = "Strawberry , Pineaple juice Ice, Malibu" - Var DrinkDescription = "Strawberry , Pineaple \NJuice Ice, Malibu" + Var DrinkDescription = "Strawberry , Pineaple Juice Ice, Malibu" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Long_Night.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1927,7 +1931,8 @@ juice Ice, Malibu" KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Pineaple \NJuice Ice, Malibu" + "Strawberry , Pineaple +Juice Ice, Malibu" 16 @@ -2076,7 +2081,7 @@ juice Ice, Malibu" Var NameDrink = "Coal Story Bro" Var NameDrinkTH = "Coal Story Bro" Var DrinkDescriptionTH = "Black sugar , Milk, Ice, Mount Gay Rum" - Var DrinkDescription = "Black Sugar , Milk, Ice, \NMount Gay Rum" + Var DrinkDescription = "Black Sugar , Milk, Ice, Mount Gay Rum" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Good_Night_Kiss.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2179,7 +2184,8 @@ Mount Gay Rum" KanitMediumTTF 0x6F5F51 showengText - "Black Sugar , Milk, Ice, \NMount Gay Rum" + "Black Sugar , Milk, Ice, +Mount Gay Rum" 16 @@ -2328,7 +2334,7 @@ Mount Gay Rum" Var NameDrink = "Bangkok Underwater" Var NameDrinkTH = "Bangkok Underwater" Var DrinkDescriptionTH = "Lychee juice, Pineaple juice, Ice, Mount Gay Rum" - Var DrinkDescription = "Lychee Juice, Pineaple Juice, \NIce, Mount Gay Rum" + Var DrinkDescription = "Lychee Juice, Pineaple Juice, Ice, Mount Gay Rum" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Forever_Love.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2433,7 +2439,8 @@ Underwater" KanitMediumTTF 0x6F5F51 showengText - "Lychee Juice, Pineaple Juice, \NIce, Mount Gay Rum" + "Lychee Juice, Pineaple Juice, +Ice, Mount Gay Rum" 16 @@ -4088,7 +4095,7 @@ Underwater" Var NameDrink = "Peach Smash" Var NameDrinkTH = "Peach Smash" Var DrinkDescriptionTH = "Peach , Limenade , Soda, Ice, Gin" - Var DrinkDescription = "Peach , Limenade ,\NSoda, Ice, Gin" + Var DrinkDescription = "Peach , Limenade , Soda, Ice, Gin" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Peach_Smash.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4191,7 +4198,8 @@ Soda, Ice, Gin" KanitMediumTTF 0x6F5F51 showengText - "Peach , Limenade ,\NSoda, Ice, Gin" + "Peach , Limenade , +Soda, Ice, Gin" 16 @@ -4340,7 +4348,7 @@ Soda, Ice, Gin" Var NameDrink = "Melon Fizz" Var NameDrinkTH = "Melon Fizz" Var DrinkDescriptionTH = "Melon , Limenade , Soda, Ice, Gin" - Var DrinkDescription = "Melon , Limenade ,\NSoda, Ice, Gin" + Var DrinkDescription = "Melon , Limenade , Soda, Ice, Gin" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Melon_Fizz.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4443,7 +4451,8 @@ Soda, Ice, Gin" KanitMediumTTF 0x6F5F51 showengText - "Melon , Limenade ,\NSoda, Ice, Gin" + "Melon , Limenade , +Soda, Ice, Gin" 16 @@ -4592,7 +4601,7 @@ Soda, Ice, Gin" Var NameDrink = "Yuzu Collins" Var NameDrinkTH = "Yuzu Collins" Var DrinkDescriptionTH = "Yuzu , Limenade , Soda, Ice, Gin" - Var DrinkDescription = "Yuzu , Limenade ,\NSoda, Ice, Gin" + Var DrinkDescription = "Yuzu , Limenade , Soda, Ice, Gin" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Yuzu_Collins.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4695,7 +4704,8 @@ Soda, Ice, Gin" KanitMediumTTF 0x6F5F51 showengText - "Yuzu , Limenade ,\NSoda, Ice, Gin" + "Yuzu , Limenade , +Soda, Ice, Gin" 16 @@ -5095,7 +5105,7 @@ Soda, Ice, Gin" Var NameDrink = "The Floral" Var NameDrinkTH = "The Floral" Var DrinkDescriptionTH = "Peach , Jasmine Tea , Water, Ice, Gin" - Var DrinkDescription = "Peach , Jasmine Tea ,\NWater, Ice, Gin" + Var DrinkDescription = "Peach , Jasmine Tea , Water, Ice, Gin" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_The_Floral.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5198,7 +5208,8 @@ Water, Ice, Gin" KanitMediumTTF 0x6F5F51 showengText - "Peach , Jasmine Tea ,\NWater, Ice, Gin" + "Peach , Jasmine Tea , +Water, Ice, Gin" 16 @@ -5347,7 +5358,7 @@ Water, Ice, Gin" Var NameDrink = "Combination" Var NameDrinkTH = "Combination" Var DrinkDescriptionTH = "Melon , Limenade , Soda, Ice, Vodka" - Var DrinkDescription = "Melon , Limenade ,\NSoda, Ice, Vodka" + Var DrinkDescription = "Melon , Limenade , Soda, Ice, Vodka" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Combination.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5450,7 +5461,8 @@ Soda, Ice, Vodka" KanitMediumTTF 0x6F5F51 showengText - "Melon , Limenade ,\NSoda, Ice, Vodka" + "Melon , Limenade , +Soda, Ice, Vodka" 16 @@ -5599,7 +5611,7 @@ Soda, Ice, Vodka" Var NameDrink = "Ume Ume" Var NameDrinkTH = "Ume Ume" Var DrinkDescriptionTH = "Yuzu , Plum , Limenade , Soda, Ice, Vodka" - Var DrinkDescription = "Yuzu , Plum , Limenade ,\NSoda, Ice, Vodka" + Var DrinkDescription = "Yuzu , Plum , Limenade , Soda, Ice, Vodka" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Ume_Ume.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5702,7 +5714,8 @@ Soda, Ice, Vodka" KanitMediumTTF 0x6F5F51 showengText - "Yuzu , Plum , Limenade ,\NSoda, Ice, Vodka" + "Yuzu , Plum , Limenade , +Soda, Ice, Vodka" 16 @@ -5851,7 +5864,7 @@ Soda, Ice, Vodka" Var NameDrink = "Like Sex on The Beach" Var NameDrinkTH = "Like Sex on The Beach" Var DrinkDescriptionTH = "Peach , Limenade , Pineapple juice ,Soda, Ice, Vodka" - Var DrinkDescription = "Peach , Limenade ,\NPineapple Juice ,Soda, Ice, Vodka" + Var DrinkDescription = "Peach , Limenade , Pineapple Juice ,Soda, Ice, Vodka" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Like_Sex_on_The_Beach.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5956,7 +5969,8 @@ on The Beach" KanitMediumTTF 0x6F5F51 showengText - "Peach , Limenade ,\NPineapple Juice ,Soda, Ice, Vodka" + "Peach , Limenade , +Pineapple Juice ,Soda, Ice, Vodka" 16 @@ -6105,7 +6119,7 @@ on The Beach" Var NameDrink = "Plum Highball" Var NameDrinkTH = "Plum Highball" Var DrinkDescriptionTH = "Yuzu , Limenade , Soda, Ice, Gold label" - Var DrinkDescription = "Yuzu , Limenade ,\NSoda, Ice, Gold Label" + Var DrinkDescription = "Yuzu , Limenade , Soda, Ice, Gold Label" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Plum_Highball.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -6208,7 +6222,8 @@ Soda, Ice, Gold label" KanitMediumTTF 0x6F5F51 showengText - "Yuzu , Limenade ,\NSoda, Ice, Gold Label" + "Yuzu , Limenade , +Soda, Ice, Gold Label" 16 @@ -7110,7 +7125,7 @@ Soda, Ice, Gold label" Var NameDrink = "Neon Spark" Var NameDrinkTH = "Neon Spark" Var DrinkDescriptionTH = "Vodka, Melon , Lime, Soda , Ice" - Var DrinkDescription = "Vodka, Melon , Lime,\NSoda , Ice" + Var DrinkDescription = "Vodka, Melon , Lime, Soda , Ice" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Neon_Spark.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -7213,7 +7228,8 @@ Soda , Ice" KanitMediumTTF 0x6F5F51 showengText - "Vodka, Melon , Lime,\NSoda , Ice" + "Vodka, Melon , Lime, +Soda , Ice" 16 @@ -7613,7 +7629,7 @@ Soda , Ice" Var NameDrink = "Strawberry Martini" Var NameDrinkTH = "Strawberry Martini" Var DrinkDescriptionTH = "Gin, Vodka, Strawberry , Ice" - Var DrinkDescription = "Gin, Vodka, Strawberry \N, Ice" + Var DrinkDescription = "Gin, Vodka, Strawberry , Ice" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Strawberry_Martini.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -7716,7 +7732,8 @@ Soda , Ice" KanitMediumTTF 0x6F5F51 showengText - "Gin, Vodka, Strawberry \N, Ice" + "Gin, Vodka, Strawberry +, Ice" 16 @@ -7865,7 +7882,7 @@ Soda , Ice" Var NameDrink = "Russian Mojito" Var NameDrinkTH = "Russian Mojito" Var DrinkDescriptionTH = "Vodka, Mint , Sugar, Lime, Ice" - Var DrinkDescription = "Vodka, Mint , Sugar,\NLime, Ice" + Var DrinkDescription = "Vodka, Mint , Sugar, Lime, Ice" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Russian_Mojito.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -7968,7 +7985,8 @@ Lime, Ice" KanitMediumTTF 0x6F5F51 showengText - "Vodka, Mint , Sugar,\NLime, Ice" + "Vodka, Mint , Sugar, +Lime, Ice" 16 @@ -8368,7 +8386,7 @@ Lime, Ice" Var NameDrink = "Beachy Mint" Var NameDrinkTH = "Beachy Mint" Var DrinkDescriptionTH = "Gin, Pineapple, Mint , Soda, Ice" - Var DrinkDescription = "Gin, Pineapple, Mint ,\NSoda, Ice" + Var DrinkDescription = "Gin, Pineapple, Mint , Soda, Ice" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Beachy_Mint.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -8471,7 +8489,8 @@ Soda, Ice" KanitMediumTTF 0x6F5F51 showengText - "Gin, Pineapple, Mint ,\NSoda, Ice" + "Gin, Pineapple, Mint , +Soda, Ice" 16 @@ -8620,7 +8639,7 @@ Soda, Ice" Var NameDrink = "Black Menthe" Var NameDrinkTH = "Black Menthe" Var DrinkDescriptionTH = "Black, Mint , Lime, Soda, Ice" - Var DrinkDescription = "Black, Mint , Lime,\NSoda, Ice" + Var DrinkDescription = "Black, Mint , Lime, Soda, Ice" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Black_Menthe.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -8723,7 +8742,8 @@ Soda, Ice" KanitMediumTTF 0x6F5F51 showengText - "Black, Mint , Lime,\NSoda, Ice" + "Black, Mint , Lime, +Soda, Ice" 16 @@ -8872,7 +8892,7 @@ Soda, Ice" Var NameDrink = "Wakeup Call" Var NameDrinkTH = "Wakeup Call" Var DrinkDescriptionTH = "Vodka, Energy , Strawberry , Soda" - Var DrinkDescription = "Vodka, Energy ,\NStrawberry , Soda" + Var DrinkDescription = "Vodka, Energy , Strawberry , Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Wakeup_Call.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -8975,7 +8995,8 @@ Strawberry , Soda" KanitMediumTTF 0x6F5F51 showengText - "Vodka, Energy ,\NStrawberry , Soda" + "Vodka, Energy , +Strawberry , Soda" 16 diff --git a/xml/page_catalog_group_coffee.xml b/xml/page_catalog_group_coffee.xml index 9ec943e9..ea2637bc 100644 --- a/xml/page_catalog_group_coffee.xml +++ b/xml/page_catalog_group_coffee.xml @@ -4123,7 +4123,7 @@ Espresso" Var NameDrink = "Espresso Ethiopia Guji" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Guji Queen Berry" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (natural process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้" - Var DrinkDescription = "Light Roast Natural Process: \Nstrawberry, Orange, Floral" + Var DrinkDescription = "Light Roast Natural Process: strawberry, Orange, Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0013.Price @@ -4228,7 +4228,8 @@ Ethiopia Guji" KanitMediumTTF 0x6F5F51 showengText - "Light Roast Natural Process: \Nstrawberry, Orange, Floral" + "Light Roast Natural Process: +strawberry, Orange, Floral" 16 @@ -4381,7 +4382,7 @@ Ethiopia Guji" Var NameDrink = "Blue Daddy Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Blue Daddy" Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้" - Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral" + Var DrinkDescription = "Washed Process note: Blue Berry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_bluedaddy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0020.Price @@ -4486,7 +4487,8 @@ Espresso" KanitMediumTTF 0x6F5F51 showengText - "Washed Process \Nnote: Blue Berry & Floral" + "Washed Process +note: Blue Berry & Floral" 16 @@ -4639,7 +4641,7 @@ Espresso" Var NameDrink = "Chopin Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Chopin" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_chopin.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0043.Price @@ -4744,7 +4746,8 @@ Espresso" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -5411,7 +5414,7 @@ Espresso" Var NameDrink = "Mozart Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Mozart" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_mozart.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0022.Price @@ -5516,7 +5519,8 @@ Espresso" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -5669,7 +5673,7 @@ Espresso" Var NameDrink = "Snowwhite Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Snowwhite" Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล" - Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey" + Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_snowwhite.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0024.Price @@ -5774,7 +5778,8 @@ Espresso" KanitMediumTTF 0x6F5F51 showengText - "Anaerobic Process \Nnote: Jasmine & Honey" + "Anaerobic Process +note: Jasmine & Honey" 16 @@ -5927,7 +5932,7 @@ Espresso" Var NameDrink = "Whisky Dude Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Whisky Dude" Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา" - Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_whiskydude.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0026.Price @@ -6032,7 +6037,8 @@ Espresso" KanitMediumTTF 0x6F5F51 showengText - "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + "Washed Sherry Cask Ferment +note: Whisky & Vanilla" 16 @@ -6185,7 +6191,7 @@ Espresso" Var NameDrink = "Peacher Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Peacher" Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต" - Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_peacher.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0028.Price @@ -6290,7 +6296,8 @@ Espresso" KanitMediumTTF 0x6F5F51 showengText - "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + "Barrel-Aged Process +note: Peach, Tea, Chocolate" 16 @@ -6957,7 +6964,7 @@ Geisha" Var NameDrink = "Rosalyn Espresso" Var NameDrinkTH = "เอสเพรสโซ่ช็อต Rosalyn" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่" - Var DrinkDescription = "Light Roast (Natural Process) \Npink​ Rose & Berry" + Var DrinkDescription = "Light Roast (Natural Process) pink​ Rose & Berry" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_rosalyn.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0037.Price @@ -7061,7 +7068,8 @@ Rosalyn" KanitMediumTTF 0x6F5F51 showengText - "Light Roast (Natural Process) \Npink​ Rose & Berry" + "Light Roast (Natural Process) +pink​ Rose & Berry" 16 @@ -7713,7 +7721,7 @@ Rosalyn" Var NameDrink = "Americano Ethiopia Guji" Var NameDrinkTH = "อเมริกาโน Guji Queen Berry" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (natural process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้" - Var DrinkDescription = "Light Roast Natural Process: \Nstrawberry, Orange, Floral" + Var DrinkDescription = "Light Roast Natural Process: strawberry, Orange, Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0014.Price @@ -7818,7 +7826,8 @@ Ethiopia Guji" KanitMediumTTF 0x6F5F51 showengText - "Light Roast Natural Process: \Nstrawberry, Orange, Floral" + "Light Roast Natural Process: +strawberry, Orange, Floral" 16 @@ -7971,7 +7980,7 @@ Ethiopia Guji" Var NameDrink = "Blue Daddy Americano" Var NameDrinkTH = "อเมริกาโน Blue Daddy" Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้" - Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral" + Var DrinkDescription = "Washed Process note: Blue Berry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_bluedaddy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0019.Price @@ -8076,7 +8085,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Washed Process \Nnote: Blue Berry & Floral" + "Washed Process +note: Blue Berry & Floral" 16 @@ -8229,7 +8239,7 @@ Americano" Var NameDrink = "Chopin Americano" Var NameDrinkTH = "อเมริกาโน Chopin" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_chopin.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0044.Price @@ -8334,7 +8344,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -9001,7 +9012,7 @@ Americano" Var NameDrink = "Mozart Americano" Var NameDrinkTH = "อเมริกาโน Mozart" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_mozart.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0021.Price @@ -9106,7 +9117,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -9259,7 +9271,7 @@ Americano" Var NameDrink = "Whisky Dude Americano" Var NameDrinkTH = "อเมริกาโน Whisky Dude" Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา" - Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_whiskydude.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0025.Price @@ -9364,7 +9376,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + "Washed Sherry Cask Ferment +note: Whisky & Vanilla" 16 @@ -9517,7 +9530,7 @@ Americano" Var NameDrink = "Snowwhite Americano" Var NameDrinkTH = "อเมริกาโน Snowwhite" Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล" - Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey" + Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_snowwhite.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0023.Price @@ -9622,7 +9635,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Anaerobic Process \Nnote: Jasmine & Honey" + "Anaerobic Process +note: Jasmine & Honey" 16 @@ -9775,7 +9789,7 @@ Americano" Var NameDrink = "Peacher Americano" Var NameDrinkTH = "อเมริกาโน Peacher" Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต" - Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_peacher.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0027.Price @@ -9880,7 +9894,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + "Barrel-Aged Process +note: Peach, Tea, Chocolate" 16 @@ -10548,7 +10563,7 @@ Americano" Var NameDrink = "Rosalyn Americano" Var NameDrinkTH = "อเมริกาโน Rosalyn" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่" - Var DrinkDescription = "Light Roast (Natural Process) \Npink​ Rose & Berry" + Var DrinkDescription = "Light Roast (Natural Process) pink​ Rose & Berry" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_rosalyn.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0038.Price @@ -10653,7 +10668,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Light Roast (Natural Process) \Npink​ Rose & Berry" + "Light Roast (Natural Process) +pink​ Rose & Berry" 16 @@ -10806,7 +10822,7 @@ Americano" Var NameDrink = "Blue Daddy Almost Dirty" Var NameDrinkTH = "Blue Daddy Almost Dirty" Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้" - Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral" + Var DrinkDescription = "Washed Process note: Blue Berry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_bluedaddy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -10911,7 +10927,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Washed Process \Nnote: Blue Berry & Floral" + "Washed Process +note: Blue Berry & Floral" 16 @@ -11060,7 +11077,7 @@ Almost Dirty" Var NameDrink = "Mozart Almost Dirty" Var NameDrinkTH = "Mozart Almost Dirty" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_mozart.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -11165,7 +11182,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -11314,7 +11332,7 @@ Almost Dirty" Var NameDrink = "Chopin Almost Dirty" Var NameDrinkTH = "Chopin Almost Dirty" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_chopin.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -11419,7 +11437,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -12074,7 +12093,7 @@ Almost Dirty" Var NameDrink = "Whisky Dude Almost Dirty" Var NameDrinkTH = "Whisky Dude Almost Dirty" Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา" - Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_whiskydude.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -12179,7 +12198,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + "Washed Sherry Cask Ferment +note: Whisky & Vanilla" 16 @@ -12328,7 +12348,7 @@ Almost Dirty" Var NameDrink = "Snowwhite Almost Dirty" Var NameDrinkTH = "Snowwhite Almost Dirty" Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล" - Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey" + Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light__snowwhite.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -12433,7 +12453,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Anaerobic Process \Nnote: Jasmine & Honey" + "Anaerobic Process +note: Jasmine & Honey" 16 @@ -12582,7 +12603,7 @@ Almost Dirty" Var NameDrink = "Queen Berry Almost Dirty" Var NameDrinkTH = "Queen Berry Almost Dirty" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้" - Var DrinkDescription = "Light Roast Natural Process: \Nstrawberry, Orange, Floral" + Var DrinkDescription = "Light Roast Natural Process: strawberry, Orange, Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -12687,7 +12708,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Light Roast Natural Process: \Nstrawberry, Orange, Floral" + "Light Roast Natural Process: +strawberry, Orange, Floral" 16 @@ -12836,7 +12858,7 @@ Almost Dirty" Var NameDrink = "Peacher Almost Dirty" Var NameDrinkTH = "Peacher Almost Dirty" Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต" - Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light__peacher.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -12941,7 +12963,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + "Barrel-Aged Process +note: Peach, Tea, Chocolate" 16 @@ -13597,7 +13620,7 @@ Almost Dirty" Var NameDrink = "Rosalyn Almost Dirty" Var NameDrinkTH = "Rosalyn Almost Dirty" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่" - Var DrinkDescription = "Light Roast (Natural Process) \Npink​ Rose & Berry" + Var DrinkDescription = "Light Roast (Natural Process) pink​ Rose & Berry" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_rosalyn.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -13702,7 +13725,8 @@ Almost Dirty" KanitMediumTTF 0x6F5F51 showengText - "Light Roast (Natural Process) \Npink​ Rose & Berry" + "Light Roast (Natural Process) +pink​ Rose & Berry" 16 diff --git a/xml/page_catalog_group_health.xml b/xml/page_catalog_group_health.xml index f98e9839..d7aedd0a 100644 --- a/xml/page_catalog_group_health.xml +++ b/xml/page_catalog_group_health.xml @@ -567,7 +567,7 @@ Var NameDrink = "Cafe' Latte" Var NameDrinkTH = "ลาเต้" Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม" - Var DrinkDescription = "Espresso, Milk,\NFoamed Milk" + Var DrinkDescription = "Espresso, Milk, Foamed Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_latte_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-1004.Price @@ -669,7 +669,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Milk,\NFoamed Milk" + "Espresso, Milk, +Foamed Milk" 16 @@ -820,7 +821,7 @@ Var NameDrink = "Cafe' Latte" Var NameDrinkTH = "ลาเต้" Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม" - Var DrinkDescription = "Espresso, Milk,\NFoamed Milk" + Var DrinkDescription = "Espresso, Milk, Foamed Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_latte_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-1004.Price @@ -922,7 +923,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Milk,\NFoamed Milk" + "Espresso, Milk, +Foamed Milk" 16 @@ -1074,7 +1076,7 @@ Var NameDrink = "Mocha" Var NameDrinkTH = "มอคค่า" Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล" - Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar" + Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Mocha_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-1006.Price @@ -1177,7 +1179,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Cocoa,\NMilk, Sugar" + "Espresso, Cocoa, +Milk, Sugar" 16 @@ -1328,7 +1331,7 @@ Var NameDrink = "Mocha" Var NameDrinkTH = "มอคค่า" Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล" - Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar" + Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Mocha_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-1006.Price @@ -1431,7 +1434,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Cocoa,\NMilk, Sugar" + "Espresso, Cocoa, +Milk, Sugar" 16 @@ -1583,7 +1587,7 @@ Var NameDrink = "Cappuccino" Var NameDrinkTH = "คาปูชิโน่" Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม" - Var DrinkDescription = "Espresso, Milk,\NFoamed Milk" + Var DrinkDescription = "Espresso, Milk, Foamed Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Cappu_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-1099.Price @@ -1685,7 +1689,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Milk,\NFoamed Milk" + "Espresso, Milk, +Foamed Milk" 16 @@ -1836,7 +1841,7 @@ Var NameDrink = "Cappuccino" Var NameDrinkTH = "คาปูชิโน่" Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม" - Var DrinkDescription = "Espresso, Milk,\NFoamed Milk" + Var DrinkDescription = "Espresso, Milk, Foamed Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Cappu_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-1099.Price @@ -1938,7 +1943,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Milk,\NFoamed Milk" + "Espresso, Milk, +Foamed Milk" 16 @@ -2345,7 +2351,7 @@ Var NameDrink = "Taiwanese Milk Tea" Var NameDrinkTH = "ชานมไต้หวัน" Var DrinkDescriptionTH = "ชาไต้หวัน และ นมอุ่น" - Var DrinkDescription = "Taiwanese Tea, Sugar, \NAnd Milk" + Var DrinkDescription = "Taiwanese Tea, Sugar, And Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_taiwan_milk_tea_Jason_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-02-01-1025.Price @@ -2448,7 +2454,8 @@ Milk Tea" KanitMediumTTF 0x6F5F51 showengText - "Taiwanese Tea, Sugar, \NAnd Milk" + "Taiwanese Tea, Sugar, +And Milk" 16 @@ -3877,7 +3884,7 @@ Limenade" Var NameDrink = "Taiwanese LBlack Tea" Var NameDrinkTH = "ชาดำไต้หวัน มะนาว" Var DrinkDescriptionTH = "ชาอู่หลงไต้หวัน น้ำ มะนาว" - Var DrinkDescription = "Taiwan Tea, Limenade, \NWater, And Ice" + Var DrinkDescription = "Taiwan Tea, Limenade, Water, And Ice" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_lime_Oolong_tea_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-02-01-1032.Price @@ -3981,7 +3988,8 @@ LBlack Tea" KanitMediumTTF 0x6F5F51 showengText - "Taiwan Tea, Limenade, \NWater, And Ice" + "Taiwan Tea, Limenade, +Water, And Ice" 16 diff --git a/xml/page_catalog_group_other.xml b/xml/page_catalog_group_other.xml index a6c8b5e3..ffe9fc6b 100644 --- a/xml/page_catalog_group_other.xml +++ b/xml/page_catalog_group_other.xml @@ -3359,7 +3359,7 @@ Soda" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Pepsi High Yeild" + Var NameDrink = "Pepsi" Var NameDrinkTH = "เป๊ปซี่โซดา" Var DrinkDescriptionTH = "เป๊ปซี่ โซดา และน้ำแข็ง" Var DrinkDescription = "Pepsi, Soda And Ice" @@ -3454,7 +3454,7 @@ Soda" KanitMediumTTF 0x322B26 showengText - "Pepsi High Yeild" + "Pepsi" 16 @@ -5471,7 +5471,8 @@ Limenade, Soda & Ice" KanitMediumTTF 0x322B26 showengText - "7Up Lychee Limenade" + "7Up Lychee +Limenade" 16 diff --git a/xml/page_catalog_group_other_other.xml b/xml/page_catalog_group_other_other.xml index 426434f1..a6829ec5 100644 --- a/xml/page_catalog_group_other_other.xml +++ b/xml/page_catalog_group_other_other.xml @@ -1073,7 +1073,7 @@ Soda" Var NameDrink = "Strawberry" Var NameDrinkTH = "น้ำสตรอเบอร์รี่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ และน้ำตาล" - Var DrinkDescription = "STRAWBERRY, SUGAR" + Var DrinkDescription = "Strawberry, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_strawberry.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-05-01-0040.Price @@ -1175,7 +1175,7 @@ Soda" KanitMediumTTF 0x6F5F51 showengText - "STRAWBERRY, SUGAR" + "Strawberry, Sugar" 16 diff --git a/xml/page_catalog_group_pepsi_7up.xml b/xml/page_catalog_group_pepsi_7up.xml index 7744a92b..b82cac42 100644 --- a/xml/page_catalog_group_pepsi_7up.xml +++ b/xml/page_catalog_group_pepsi_7up.xml @@ -814,7 +814,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Pepsi High Yeild" + Var NameDrink = "Pepsi" Var NameDrinkTH = "เป๊ปซี่โซดา" Var DrinkDescriptionTH = "เป๊ปซี่ โซดา และน้ำแข็ง" Var DrinkDescription = "Pepsi, Soda And Ice" @@ -909,7 +909,7 @@ KanitMediumTTF 0x322B26 showengText - "Pepsi High Yeild" + "Pepsi" 16 @@ -1665,7 +1665,8 @@ Plum Soda" KanitMediumTTF 0x322B26 showengText - "7Up Lychee Limenade" + "7Up Lychee +Limenade" 16 diff --git a/xml/page_catalog_group_pro_12_day_12_menu.xml b/xml/page_catalog_group_pro_12_day_12_menu.xml index 39bff513..90b13de5 100644 --- a/xml/page_catalog_group_pro_12_day_12_menu.xml +++ b/xml/page_catalog_group_pro_12_day_12_menu.xml @@ -307,7 +307,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Thai Tea\NCaramel Oreo" + Var NameDrink = "Premium Thai Tea Caramel Oreo" Var NameDrinkTH = "พรีเมียมชาไทย คาราเมลโอรีโอ" Var DrinkDescriptionTH = "ชาไทย นม คาราเมล และโอรีโอ" Var DrinkDescription = "Thai Tea, Milk, Caramel , Oreo" @@ -407,7 +407,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Thai Tea\NCaramel Oreo" + "Premium Thai Tea +Caramel Oreo" 16 @@ -563,7 +564,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut Milk\NSmoothie" + Var NameDrink = "Coconut Milk Smoothie" Var NameDrinkTH = "มะพร้าวน้ำหอมปั่น นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าวน้ำหอมปั่น นม" Var DrinkDescription = "Coconut , Milk" @@ -664,7 +665,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut Milk\NSmoothie" + "Coconut Milk +Smoothie" 16 @@ -1583,7 +1585,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry Milk \NSmoothie" + Var NameDrink = "Strawberry Milk Smoothie" Var NameDrinkTH = "นมสตอเบอร์รี่ปั่น" Var DrinkDescriptionTH = "นม สตอเบอร์รี่ และน้ำแข็ง" Var DrinkDescription = "Strawberry , Milk, Sugar" @@ -1683,7 +1685,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry Milk \NSmoothie" + "Strawberry Milk +Smoothie" 16 @@ -1839,7 +1842,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawcocoa \NSmoothie" + Var NameDrink = "Strawcocoa Smoothie" Var NameDrinkTH = "โกโก้สตอเบอร์รี่ปั่น" Var DrinkDescriptionTH = "นม สตอเบอร์รี่ โกโก้ และน้ำแข็ง" Var DrinkDescription = "Cocoa, Strawberry , Milk" @@ -1939,7 +1942,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawcocoa \NSmoothie" + "Strawcocoa +Smoothie" 16 @@ -2095,7 +2099,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Thai \NIced Espresso" + Var NameDrink = "Thai Iced Espresso" Var NameDrinkTH = "เอสเย็นแบบไทยๆ" Var DrinkDescriptionTH = "กาแฟ นม และ น้ำแข็ง " Var DrinkDescription = "Espresso, Milk, Sugar,Ice" @@ -2194,7 +2198,8 @@ KanitMediumTTF 0x322B26 showengText - "Thai \NIced Espresso" + "Thai +Iced Espresso" 16 @@ -2348,7 +2353,7 @@ SoundVolume xmlpro( 12-31-02-0001, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Thai \NIced Espresso" + Var NameDrink = "Thai Iced Espresso" Var NameDrinkTH = "เอสเย็นแบบไทยๆ" Var DrinkDescriptionTH = "กาแฟ นม และ น้ำแข็ง " Var DrinkDescription = "Espresso, Milk, Sugar,Ice" @@ -2447,7 +2452,8 @@ KanitMediumTTF 0x322B26 showengText - "Thai \NIced Espresso" + "Thai +Iced Espresso" 16 @@ -2602,7 +2608,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut \NJasmine Milk Tea" + Var NameDrink = "Coconut Jasmine Milk Tea" Var NameDrinkTH = "มะพร้าว ชามะลินมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าวชามะลินมนิวซีแลนด์" Var DrinkDescription = "Coconut , Jasmine Tea, Milk Water" @@ -2702,7 +2708,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut \NJasmine Milk Tea" + "Coconut +Jasmine Milk Tea" 16 @@ -3114,7 +3121,7 @@ Water" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Lime \NGinger Tea" + Var NameDrink = "Lime Ginger Tea" Var NameDrinkTH = "ชาขิงมะนาว" Var DrinkDescriptionTH = "ขิง มะนาว และน้ำ " Var DrinkDescription = "Ginger, Lime & Water " @@ -3213,7 +3220,8 @@ Water" KanitMediumTTF 0x322B26 showengText - "Lime \NGinger Tea" + "Lime +Ginger Tea" 16 @@ -3369,7 +3377,7 @@ Water" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Plum \NLimenade Soda" + Var NameDrink = "Plum Limenade Soda" Var NameDrinkTH = "บ๊วยมะนาวโซดา" Var DrinkDescriptionTH = "บ๊วย มะนาว โซดา " Var DrinkDescription = "Ume , Limenade, Soda & Ice" @@ -3468,7 +3476,8 @@ Water" KanitMediumTTF 0x322B26 showengText - "Plum \NLimenade Soda" + "Plum +Limenade Soda" 16 diff --git a/xml/page_catalog_group_pro_7up_lucky_draw_x2.xml b/xml/page_catalog_group_pro_7up_lucky_draw_x2.xml index 295f3dc2..040dcf18 100644 --- a/xml/page_catalog_group_pro_7up_lucky_draw_x2.xml +++ b/xml/page_catalog_group_pro_7up_lucky_draw_x2.xml @@ -5342,7 +5342,7 @@ Refreshment" Var NameDrink = "Pepsi Salak Lime" Var NameDrinkTH = "เป๊ปซี่สละ" Var DrinkDescriptionTH = "เป๊ปซี่ สละ มะนาว และโซดา" - Var DrinkDescription = "Pepsi, Salak , Lime\NAnd Soda" + Var DrinkDescription = "Pepsi, Salak , Lime And Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Pepsi_Salak_lucky_draw_x2.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5444,7 +5444,8 @@ Refreshment" KanitMediumTTF 0xFFFFFF showengText - "Pepsi, Salak , Lime\NAnd Soda" + "Pepsi, Salak , Lime +And Soda" 16 @@ -5593,7 +5594,7 @@ Refreshment" Var NameDrink = "Pepsi Salak Lime" Var NameDrinkTH = "เป๊ปซี่สละ" Var DrinkDescriptionTH = "เป๊ปซี่ สละ มะนาว และโซดา" - Var DrinkDescription = "Pepsi, Salak , Lime\NAnd Soda" + Var DrinkDescription = "Pepsi, Salak , Lime And Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Pepsi_Salak_lucky_draw_x2.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5695,7 +5696,8 @@ Refreshment" KanitMediumTTF 0xFFFFFF showengText - "Pepsi, Salak , Lime\NAnd Soda" + "Pepsi, Salak , Lime +And Soda" 16 @@ -9864,7 +9866,7 @@ Lime" Var NameDrink = "Pepsi Energy" Var NameDrinkTH = "เป๊ปซี่ชูกำลัง" Var DrinkDescriptionTH = "เป๊ปซี่ ชูกำลัง มะนาว และโซดา" - Var DrinkDescription = "Pepsi Energy , Lime\NAnd Soda" + Var DrinkDescription = "Pepsi Energy , Lime And Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Pepsi_Energy_lucky_draw_x2.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -9966,7 +9968,8 @@ Lime" KanitMediumTTF 0xFFFFFF showengText - "Pepsi Energy , Lime\NAnd Soda" + "Pepsi Energy , Lime +And Soda" 16 diff --git a/xml/page_catalog_group_pro_bad_valentine.xml b/xml/page_catalog_group_pro_bad_valentine.xml index 6a685ca6..3657efb0 100644 --- a/xml/page_catalog_group_pro_bad_valentine.xml +++ b/xml/page_catalog_group_pro_bad_valentine.xml @@ -57,7 +57,7 @@ Var NameDrink = "Bad kids smacked good ones ditched" Var NameDrinkTH = "เป็นเด็กดื้อโดนตีเป็น เด็กดีโดนทิ้งตลอด" Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\Ncocoa, Milk" + Var DrinkDescription = "Espresso, Banana , cocoa, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Mocha_Tokyobanana_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -162,7 +162,8 @@ good ones ditched" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\Ncocoa, Milk" + "Espresso, Banana , +cocoa, Milk" 16 @@ -309,7 +310,7 @@ good ones ditched" Var NameDrink = "Bad kids smacked good ones ditched" Var NameDrinkTH = "เป็นเด็กดื้อโดนตีเป็น เด็กดีโดนทิ้งตลอด" Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\Ncocoa, Milk" + Var DrinkDescription = "Espresso, Banana , cocoa, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Mocha_Tokyobanana_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -414,7 +415,8 @@ good ones ditched" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\Ncocoa, Milk" + "Espresso, Banana , +cocoa, Milk" 16 @@ -562,7 +564,7 @@ good ones ditched" Var NameDrink = "Ghosted after night convo's dead" Var NameDrinkTH = "ตัดบทบอกฝันดี = เขาไม่อยากคุย" Var DrinkDescriptionTH = "กาแฟ น้ำ นม มัทฉะ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\Nmatcha, Milk" + Var DrinkDescription = "Espresso, Banana , matcha, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_matcha_Latte_TokyoBanana.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -667,7 +669,8 @@ convo's dead" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\Nmatcha, Milk" + "Espresso, Banana , +matcha, Milk" 16 @@ -814,7 +817,7 @@ convo's dead" Var NameDrink = "Ghosted after night convo's dead" Var NameDrinkTH = "ตัดบทบอกฝันดี = เขาไม่อยากคุย" Var DrinkDescriptionTH = "กาแฟ น้ำ นม มัทฉะ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\Nmatcha, Milk" + Var DrinkDescription = "Espresso, Banana , matcha, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_matcha_Latte_TokyoBanana.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -919,7 +922,8 @@ convo's dead" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\Nmatcha, Milk" + "Espresso, Banana , +matcha, Milk" 16 @@ -1067,7 +1071,7 @@ convo's dead" Var NameDrink = "Kindness fix, zero romance drama." Var NameDrinkTH = "ที่ทำดีด้วยเขาไม่ได้มีใจ แต่เขามีเมตตา" Var DrinkDescriptionTH = "กล้วย นม และโกโก้ และน้ำ" - Var DrinkDescription = "Banana ,\Nmilk, Cocoa" + Var DrinkDescription = "Banana , milk, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Choco_banana_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1172,7 +1176,8 @@ zero romance drama." KanitMediumTTF 0x6F5F51 showengText - "Banana ,\Nmilk, Cocoa" + "Banana , +milk, Cocoa" 16 @@ -1321,7 +1326,7 @@ zero romance drama." Var NameDrink = "Love on mute, stuck in suspense." Var NameDrinkTH = "ตกอยู่ในสถานะ สแตนด์บาย" Var DrinkDescriptionTH = "กล้วย สตรอเบอร์รี่ และนม " - Var DrinkDescription = "Banana , Strawberry ,\Nmilk" + Var DrinkDescription = "Banana , Strawberry , milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_strawberry_Tokyobanana_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1426,7 +1431,8 @@ stuck in suspense." KanitMediumTTF 0x6F5F51 showengText - "Banana , Strawberry ,\Nmilk" + "Banana , Strawberry , +milk" 16 @@ -1575,7 +1581,7 @@ stuck in suspense." Var NameDrink = "Promised a chat, but poof,gone after HEY." Var NameDrinkTH = "บอกว่าคุยได้ พอทักไปก็หาย" Var DrinkDescriptionTH = "กล้วย นม น้ำตาล Oreo" - Var DrinkDescription = "Banana , Milk,\Nsugar, Oreo" + Var DrinkDescription = "Banana , Milk, sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_BananaOreo_smoothie_bad_valentine.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1680,7 +1686,8 @@ poof,gone after HEY." KanitMediumTTF 0x6F5F51 showengText - "Banana , Milk,\Nsugar, Oreo" + "Banana , Milk, +sugar, Oreo" 16 diff --git a/xml/page_catalog_group_pro_banana_mint_lucky_draw_x3.xml b/xml/page_catalog_group_pro_banana_mint_lucky_draw_x3.xml index a8359cae..e029bd40 100644 --- a/xml/page_catalog_group_pro_banana_mint_lucky_draw_x3.xml +++ b/xml/page_catalog_group_pro_banana_mint_lucky_draw_x3.xml @@ -51,7 +51,7 @@ Var NameDrink = "Mint Cafe Latte" Var NameDrinkTH = "กาแฟมินต์ลาเต้" Var DrinkDescriptionTH = "กาแฟ น้ำ นม และ มินต์" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Milk" + Var DrinkDescription = "Espresso, Mint , Sugar, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Iced_Mint_Latte_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -153,7 +153,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Milk" + "Espresso, Mint , +Sugar, Milk" 16 @@ -300,7 +301,7 @@ Var NameDrink = "Mint Cafe Latte" Var NameDrinkTH = "กาแฟมินต์ลาเต้" Var DrinkDescriptionTH = "กาแฟ น้ำ นม และ มินต์" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Milk" + Var DrinkDescription = "Espresso, Mint , Sugar, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Iced_Mint_Latte_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -402,7 +403,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Milk" + "Espresso, Mint , +Sugar, Milk" 16 @@ -550,7 +552,7 @@ Var NameDrink = "Mintcano" Var NameDrinkTH = "มินต์กาโน่" Var DrinkDescriptionTH = "กาแฟ น้ำ และ มินต์" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Water" + Var DrinkDescription = "Espresso, Mint , Sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Americano_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -652,7 +654,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Water" + "Espresso, Mint , +Sugar, Water" 16 @@ -799,7 +802,7 @@ Var NameDrink = "Mintcano" Var NameDrinkTH = "มินต์กาโน่" Var DrinkDescriptionTH = "กาแฟ น้ำ และ มินต์" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Water" + Var DrinkDescription = "Espresso, Mint , Sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Americano_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -901,7 +904,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Water" + "Espresso, Mint , +Sugar, Water" 16 @@ -1046,7 +1050,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Matcha Latte\NMint" + Var NameDrink = "Matcha Latte Mint" Var NameDrinkTH = "มัทฉะลาเต้มินต์" Var DrinkDescriptionTH = "มัทฉะ มินต์ และนมอุ่น" Var DrinkDescription = "Matcha, Mint &Milk" @@ -1141,7 +1145,8 @@ KanitMediumTTF 0x322B26 showengText - "Matcha Latte\NMint" + "Matcha Latte +Mint" 16 @@ -1799,7 +1804,7 @@ Var NameDrink = "Cocoa Mint" Var NameDrinkTH = "โกโก้มินต์" Var DrinkDescriptionTH = "มินต์ นม น้ำตาล และโกโก้" - Var DrinkDescription = "Mint , Milk,\NSugar, Cocoa" + Var DrinkDescription = "Mint , Milk, Sugar, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Cocoa_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1901,7 +1906,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NSugar, Cocoa" + "Mint , Milk, +Sugar, Cocoa" 16 @@ -2302,10 +2308,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry\NMint Milk" + Var NameDrink = "Strawberry Mint Milk" Var NameDrinkTH = "นมสตรอเบอร์รี่มินต์" Var DrinkDescriptionTH = "มินต์ สตรอเบอร์รี่ นมและน้ำตาล " - Var DrinkDescription = "Mint , Milk,\NStrawberry" + Var DrinkDescription = "Mint , Milk, Strawberry" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Milk_Straw_Smoothie_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2397,7 +2403,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry\NMint Milk" + "Strawberry +Mint Milk" 16 @@ -2407,7 +2414,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NStrawberry" + "Mint , Milk, +Strawberry" 16 @@ -2556,7 +2564,7 @@ Var NameDrink = "Mint Oreo Volcano" Var NameDrinkTH = "มินต์โอรีโอภูเขาไฟ" Var DrinkDescriptionTH = "มินต์ นม น้ำตาล Oreo" - Var DrinkDescription = "Mint , Milk,\NSugar, Oreo" + Var DrinkDescription = "Mint , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "Mint_SuperVocano_passion.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2659,7 +2667,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NSugar, Oreo" + "Mint , Milk, +Sugar, Oreo" 16 @@ -3056,7 +3065,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry\NMint Soda" + Var NameDrink = "Strawberry Mint Soda" Var NameDrinkTH = "สตรอเบอร์รี่ มินต์โซดา" Var DrinkDescriptionTH = "มินต์ สตรอเบอร์รี่ มะนาว และโซดา" Var DrinkDescription = "Mint , Strawberry , Lime, Soda & Ice" @@ -3152,7 +3161,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry\NMint Soda" + "Strawberry +Mint Soda" 16 diff --git a/xml/page_catalog_group_pro_cocoa_77.xml b/xml/page_catalog_group_pro_cocoa_77.xml index fb056591..26a208cf 100644 --- a/xml/page_catalog_group_pro_cocoa_77.xml +++ b/xml/page_catalog_group_pro_cocoa_77.xml @@ -576,7 +576,7 @@ Var NameDrink = "Mocha" Var NameDrinkTH = "มอคค่า" Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล" - Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar" + Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "cocoa_mocha_Healthy_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-1006.Price - 7 @@ -683,7 +683,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Cocoa,\NMilk, Sugar" + "Espresso, Cocoa, +Milk, Sugar" 16 @@ -834,7 +835,7 @@ Var NameDrink = "Mocha" Var NameDrinkTH = "มอคค่า" Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล" - Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar" + Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "cocoa_mocha_Healthy_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-1006.Price - 7 @@ -941,7 +942,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Cocoa,\NMilk, Sugar" + "Espresso, Cocoa, +Milk, Sugar" 16 @@ -1093,7 +1095,7 @@ Var NameDrink = "Tokyo banana Mocha" Var NameDrinkTH = "มอคค่าโตเกียวบานาน่า" Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\NCocoa, Milk" + Var DrinkDescription = "Espresso, Banana , Cocoa, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Banana_Mocha_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price - 7 @@ -1199,7 +1201,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\NCocoa, Milk" + "Espresso, Banana , +Cocoa, Milk" 16 @@ -1346,7 +1349,7 @@ Var NameDrink = "Tokyo banana Mocha" Var NameDrinkTH = "มอคค่าโตเกียวบานาน่า" Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\NCocoa, Milk" + Var DrinkDescription = "Espresso, Banana , Cocoa, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Banana_Mocha_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price - 7 @@ -1452,7 +1455,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\NCocoa, Milk" + "Espresso, Banana , +Cocoa, Milk" 16 @@ -2118,7 +2122,7 @@ Var NameDrink = "Caramel Cocoa" Var NameDrinkTH = "คาราเมลโกโก้ " Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล คาราเมล" - Var DrinkDescription = "Cocoa, Milk,Sugar,\NCaramel" + Var DrinkDescription = "Cocoa, Milk,Sugar, Caramel" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_caramel_cocoa_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0004.Price - 7 @@ -2225,7 +2229,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Cocoa, Milk,Sugar,\NCaramel" + "Cocoa, Milk,Sugar, +Caramel" 16 @@ -2898,7 +2903,7 @@ Banana Milk" Var NameDrink = "Cocoa Mint" Var NameDrinkTH = "โกโก้มินต์" Var DrinkDescriptionTH = "มินต์ นม น้ำตาล และโกโก้" - Var DrinkDescription = "Mint , Milk,\NSugar, Cocoa" + Var DrinkDescription = "Mint , Milk, Sugar, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Cocoa_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0035.Price - 7 @@ -3004,7 +3009,8 @@ Banana Milk" KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NSugar, Cocoa" + "Mint , Milk, +Sugar, Cocoa" 16 @@ -3409,10 +3415,10 @@ Banana Milk" "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut \NChocolate Milk" + Var NameDrink = "Coconut Chocolate Milk" Var NameDrinkTH = "มะพร้าวโกโก้ปั่น นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าว โกโก้ นม และน้ำ " - Var DrinkDescription = "Coconut , Cocoa, Milk,\NWater" + Var DrinkDescription = "Coconut , Cocoa, Milk, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Cocoa_coconut_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price - 7 @@ -3509,7 +3515,8 @@ Banana Milk" KanitMediumTTF 0x322B26 showengText - "Coconut \NChocolate Milk" + "Coconut +Chocolate Milk" 16 @@ -3519,7 +3526,8 @@ Banana Milk" KanitMediumTTF 0x6F5F51 showengText - "Coconut , Cocoa, Milk,\NWater" + "Coconut , Cocoa, Milk, +Water" 16 @@ -3925,7 +3933,7 @@ Smoothie" Var NameDrink = "Choco Oreo Volcano" Var NameDrinkTH = "โกโก้ปั่น โอรีโอภูเขาไฟ" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล Oreo" - Var DrinkDescription = "Cocoa, Milk,\NSugar, Oreo" + Var DrinkDescription = "Cocoa, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_ChocoOreo_smoothie_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price - 7 @@ -4033,7 +4041,8 @@ Smoothie" KanitMediumTTF 0x6F5F51 showengText - "Cocoa, Milk,\NSugar, Oreo" + "Cocoa, Milk, +Sugar, Oreo" 16 @@ -4182,7 +4191,7 @@ Smoothie" Var NameDrink = "Strawberry Choco Tokyo Banana Smoothie" Var NameDrinkTH = "ช็อคโก้สตรอว์เบอร์รี่ โตเกียวบานาน่าปั่น" Var DrinkDescriptionTH = "กล้วย สตรอเบอร์รี่ นม และโกโก้" - Var DrinkDescription = "Banana , Strawberry ,\NMilk, Cocoa" + Var DrinkDescription = "Banana , Strawberry , Milk, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Choco_strawberry_banana_smoothie_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price - 7 @@ -4289,7 +4298,8 @@ Smoothie" KanitMediumTTF 0x6F5F51 showengText - "Banana , Strawberry ,\NMilk, Cocoa" + "Banana , Strawberry , +Milk, Cocoa" 16 @@ -4438,7 +4448,7 @@ Smoothie" Var NameDrink = "Cocoa Milk Biscoff Volcano" Var NameDrinkTH = "โกโก้ บิสคอฟ" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล บิสคอฟ" - Var DrinkDescription = "Cocoa, Milk,\NSugar, Biscoff" + Var DrinkDescription = "Cocoa, Milk, Sugar, Biscoff" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_cocoa_MILK_BISCOFF_cocoa77" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price - 7 @@ -4547,7 +4557,8 @@ Biscoff Volcano" KanitMediumTTF 0x6F5F51 showengText - "Cocoa, Milk,\NSugar, Biscoff" + "Cocoa, Milk, +Sugar, Biscoff" 16 diff --git a/xml/page_catalog_group_pro_halloween.xml b/xml/page_catalog_group_pro_halloween.xml index c01ee49f..073aa4b0 100644 --- a/xml/page_catalog_group_pro_halloween.xml +++ b/xml/page_catalog_group_pro_halloween.xml @@ -52,7 +52,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Brutal, Wicked, \NHorrifying" + Var NameDrink = "Brutal, Wicked, Horrifying" Var NameDrinkTH = "โหด โฉด สยอง" Var DrinkDescriptionTH = "มัทฉะ 7up มะนาว และโซดา" Var DrinkDescription = "Matcha, 7Up, Lime And Soda" @@ -148,7 +148,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Brutal, Wicked, \NHorrifying" + "Brutal, Wicked, +Horrifying" 16 @@ -307,7 +308,7 @@ Var NameDrink = "Liver Of The Lost" Var NameDrinkTH = "ปอบเมืองลับแล" Var DrinkDescriptionTH = "สตรอเบอร์รี่ เต่าทรงพลัง 7up และมะนาว" - Var DrinkDescription = "Strawberry , Energy\NDrink , 7Up And Lime" + Var DrinkDescription = "Strawberry , Energy Drink , 7Up And Lime" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_7UP_strawberry_Energy_lime_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -411,7 +412,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Strawberry , Energy\NDrink , 7Up And Lime" + "Strawberry , Energy +Drink , 7Up And Lime" 16 @@ -557,10 +559,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "The Village That\NFeeds Ghosts" + Var NameDrink = "The Village That Feeds Ghosts" Var NameDrinkTH = "หมู่บ้านเลี้ยงผี" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม 7up และมะนาว" - Var DrinkDescription = "Strawberry , Milk, 7Up\Nand Lime" + Var DrinkDescription = "Strawberry , Milk, 7Up and Lime" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_7UP_Strawberry_Milk_lime_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -654,7 +656,8 @@ KanitMediumTTF 0xFFFFFF showengText - "The Village That\NFeeds Ghosts" + "The Village That +Feeds Ghosts" 16 @@ -664,7 +667,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Strawberry , Milk, 7Up\Nand Lime" + "Strawberry , Milk, 7Up +and Lime" 16 @@ -1065,7 +1069,7 @@ Var NameDrink = "Broken Bowl Charm" Var NameDrinkTH = "เสน่ห์-บาตรแตก" Var DrinkDescriptionTH = "ชาไทย สตรอเบอร์รี่ และ7up" - Var DrinkDescription = "Thai Tea, Strawberry \NAnd 7Up" + Var DrinkDescription = "Thai Tea, Strawberry And 7Up" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_7UP_ThaiTea_Strawberry_Soda_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1168,7 +1172,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Thai Tea, Strawberry \NAnd 7Up" + "Thai Tea, Strawberry +And 7Up" 16 @@ -1317,7 +1322,7 @@ Var NameDrink = "Foul Metta" Var NameDrinkTH = "เมตามหาโสมม" Var DrinkDescriptionTH = "ชามะลิ สละ 7up และโซดา" - Var DrinkDescription = "Jasmine Tea, Ume , 7Up \NAnd Soda" + Var DrinkDescription = "Jasmine Tea, Ume , 7Up And Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_7UP_Jasmin_Plum_Soda_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1420,7 +1425,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Jasmine Tea, Ume , 7Up \NAnd Soda" + "Jasmine Tea, Ume , 7Up +And Soda" 16 @@ -1823,10 +1829,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Bone-Chilling\NBites" + Var NameDrink = "Bone-Chilling Bites" Var NameDrinkTH = "ผงกระดูกสัมภเวสี" Var DrinkDescriptionTH = "คาราเมล นม 7up และโอวัลติน" - Var DrinkDescription = "Caramel , Milk, 7Up\NAnd Ovaltine" + Var DrinkDescription = "Caramel , Milk, 7Up And Ovaltine" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "Caramel_milk_7up_smoothie_top_ovaltine_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1919,7 +1925,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Bone-Chilling\NBites" + "Bone-Chilling +Bites" 16 @@ -1929,7 +1936,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Caramel , Milk, 7Up\NAnd Ovaltine" + "Caramel , Milk, 7Up +And Ovaltine" 16 @@ -2828,7 +2836,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Mortuary: Storing\NHer" + Var NameDrink = "Mortuary: Storing Her" Var NameDrinkTH = "Mortuary ห้องเก็บเธอ" Var DrinkDescriptionTH = "Pepsi คาราเมล นม และน้ำแข็ง" Var DrinkDescription = "Pepsi, Caramel, Milk And Ice" @@ -2925,7 +2933,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Mortuary: Storing\NHer" + "Mortuary: Storing +Her" 16 @@ -3337,10 +3346,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Summoning The\NCorpse" + Var NameDrink = "Summoning The Corpse" Var NameDrinkTH = "เสกซากผี" Var DrinkDescriptionTH = "สตรอเบอร์รี่ กาแฟ 7up และโซดา" - Var DrinkDescription = "Strawberry , Coffee, 7Up\NAnd Soda" + Var DrinkDescription = "Strawberry , Coffee, 7Up And Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_7up_Coffee_Strawberry_soda_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -3434,7 +3443,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Summoning The\NCorpse" + "Summoning The +Corpse" 16 @@ -3444,7 +3454,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Strawberry , Coffee, 7Up\NAnd Soda" + "Strawberry , Coffee, 7Up +And Soda" 16 @@ -3588,10 +3599,10 @@ SoundVolume xmlpro( 12-21-02-0083, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Summoning The\NCorpse" + Var NameDrink = "Summoning The Corpse" Var NameDrinkTH = "เสกซากผี" Var DrinkDescriptionTH = "สตรอเบอร์รี่ กาแฟ 7up และโซดา" - Var DrinkDescription = "Strawberry , Coffee, 7Up\NAnd Soda" + Var DrinkDescription = "Strawberry , Coffee, 7Up And Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_7up_Coffee_Strawberry_soda_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -3685,7 +3696,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Summoning The\NCorpse" + "Summoning The +Corpse" 16 @@ -3695,7 +3707,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Strawberry , Coffee, 7Up\NAnd Soda" + "Strawberry , Coffee, 7Up +And Soda" 16 @@ -4092,10 +4105,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Raising A Ghost\NChild" + Var NameDrink = "Raising A Ghost Child" Var NameDrinkTH = "เลี้ยงลูกผี" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม 7up มะนาว และโอวัลติน" - Var DrinkDescription = "Strawberry , Milk, 7Up, Lime\NAnd Ovaltine" + Var DrinkDescription = "Strawberry , Milk, 7Up, Lime And Ovaltine" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "Strawberry_milk_7Up_lime__top_ovaltine_halloween.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4189,7 +4202,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Raising A Ghost\NChild" + "Raising A Ghost +Child" 16 @@ -4199,7 +4213,8 @@ KanitMediumTTF 0xFFFFFF showengText - "Strawberry , Milk, 7Up, Lime\NAnd Ovaltine" + "Strawberry , Milk, 7Up, Lime +And Ovaltine" 16 diff --git a/xml/page_catalog_group_pro_happy_trios.xml b/xml/page_catalog_group_pro_happy_trios.xml index 32967d34..97c2c6f8 100644 --- a/xml/page_catalog_group_pro_happy_trios.xml +++ b/xml/page_catalog_group_pro_happy_trios.xml @@ -54,7 +54,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -151,7 +151,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -305,7 +306,7 @@ SoundVolume xmlpro( 12-21-03-0078, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -402,7 +403,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -557,7 +559,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Matcha\NCaramel Oreo" + Var NameDrink = "Premium Matcha Caramel Oreo" Var NameDrinkTH = "พรีเมียมมัทฉะ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "มัทฉะ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Matcha, Milk, Caramel , Oreo" @@ -654,7 +656,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Matcha\NCaramel Oreo" + "Premium Matcha +Caramel Oreo" 16 @@ -810,7 +813,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Thai Tea\NCaramel Oreo" + Var NameDrink = "Premium Thai Tea Caramel Oreo" Var NameDrinkTH = "พรีเมียมชาไทย คาราเมลโอรีโอ" Var DrinkDescriptionTH = "ชาไทย นม คาราเมล และโอรีโอ" Var DrinkDescription = "Thai Tea, Milk, Caramel , Oreo" @@ -907,7 +910,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Thai Tea\NCaramel Oreo" + "Premium Thai Tea +Caramel Oreo" 16 diff --git a/xml/page_catalog_group_pro_jemila.xml b/xml/page_catalog_group_pro_jemila.xml index 7476cbd5..f2fac1ce 100644 --- a/xml/page_catalog_group_pro_jemila.xml +++ b/xml/page_catalog_group_pro_jemila.xml @@ -52,7 +52,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Hong'S Dragon\NMilk" + Var NameDrink = "Hong'S Dragon Milk" Var NameDrinkTH = "หงส์ ดราก้อนมิลค์" Var DrinkDescriptionTH = "เจมิลา นม และน้ำแข็ง" Var DrinkDescription = "Jemila, Milk And Ice" @@ -148,7 +148,8 @@ KanitMediumTTF 0x322B26 showengText - "Hong'S Dragon\NMilk" + "Hong'S Dragon +Milk" 16 @@ -304,7 +305,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Munin'S Favorite\NDrink" + Var NameDrink = "Munin'S Favorite Drink" Var NameDrinkTH = "มุนินทร์ดริ๊งก์" Var DrinkDescriptionTH = "เจมิลา น้ำ และน้ำแข็ง" Var DrinkDescription = "Jemila, Water And Ice" @@ -400,7 +401,8 @@ KanitMediumTTF 0x322B26 showengText - "Munin'S Favorite\NDrink" + "Munin'S Favorite +Drink" 16 @@ -808,7 +810,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Jai Rerng Quite\NFizzy" + Var NameDrink = "Jai Rerng Quite Fizzy" Var NameDrinkTH = "ใจเริงซ่าพอตัว" Var DrinkDescriptionTH = "เจมิลา โซดา และน้ำแข็ง" Var DrinkDescription = "Jemila, Soda And Ice" @@ -904,7 +906,8 @@ KanitMediumTTF 0x322B26 showengText - "Jai Rerng Quite\NFizzy" + "Jai Rerng Quite +Fizzy" 16 @@ -1060,7 +1063,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Praglaidao Want\NIt Strong" + Var NameDrink = "Praglaidao Want It Strong" Var NameDrinkTH = "ประกายดาวขอเข้ม ๆ" Var DrinkDescriptionTH = "เจมิลา กาแฟ และน้ำแข็ง" Var DrinkDescription = "Jemila, Espresso And Ice" @@ -1156,7 +1159,8 @@ KanitMediumTTF 0x322B26 showengText - "Praglaidao Want\NIt Strong" + "Praglaidao Want +It Strong" 16 @@ -1310,7 +1314,7 @@ SoundVolume xmlpro( 12-21-02-0075, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Praglaidao Want\NIt Strong" + Var NameDrink = "Praglaidao Want It Strong" Var NameDrinkTH = "ประกายดาวขอเข้ม ๆ" Var DrinkDescriptionTH = "เจมิลา กาแฟ และน้ำแข็ง" Var DrinkDescription = "Jemila, Espresso And Ice" @@ -1406,7 +1410,8 @@ KanitMediumTTF 0x322B26 showengText - "Praglaidao Want\NIt Strong" + "Praglaidao Want +It Strong" 16 @@ -1561,7 +1566,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Gaomart 'S\NMiracles" + Var NameDrink = "Gaomart 'S Miracles" Var NameDrinkTH = "เกล้ามาศมหัศจรรย์" Var DrinkDescriptionTH = "เจมิลา โกโก้ และน้ำแข็ง" Var DrinkDescription = "Jemila, Cocoa And Ice" @@ -1657,7 +1662,8 @@ KanitMediumTTF 0x322B26 showengText - "Gaomart 'S\NMiracles" + "Gaomart 'S +Miracles" 16 @@ -2065,7 +2071,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Raveena'S 7Up\NSoda" + Var NameDrink = "Raveena'S 7Up Soda" Var NameDrinkTH = "ราวีน่าเซเว่นอัพ" Var DrinkDescriptionTH = "เจมิลา 7up และน้ำแข็ง" Var DrinkDescription = "Jemila, 7 Up And Ice" @@ -2161,7 +2167,8 @@ KanitMediumTTF 0x322B26 showengText - "Raveena'S 7Up\NSoda" + "Raveena'S 7Up +Soda" 16 @@ -2569,7 +2576,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Ravinworagarn'S\NJasmine" + Var NameDrink = "Ravinworagarn'S Jasmine" Var NameDrinkTH = "รวินทร์วรกานต์มะลิ" Var DrinkDescriptionTH = "เจมิลา ชามะลิ และน้ำแข็ง" Var DrinkDescription = "Jemila, Jasmine Tea And Ice" @@ -2665,7 +2672,8 @@ KanitMediumTTF 0x322B26 showengText - "Ravinworagarn'S\NJasmine" + "Ravinworagarn'S +Jasmine" 16 diff --git a/xml/page_catalog_group_pro_lipit.xml b/xml/page_catalog_group_pro_lipit.xml index c3755e39..cc58aa32 100644 --- a/xml/page_catalog_group_pro_lipit.xml +++ b/xml/page_catalog_group_pro_lipit.xml @@ -1065,7 +1065,7 @@ Var NameDrink = "Berry Jam" Var NameDrinkTH = "โชว์แก้วอร่อย" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ยูซุ น้ำและน้ำแข็ง" - Var DrinkDescription = "Strawberry , Yuzu , \NWater" + Var DrinkDescription = "Strawberry , Yuzu , Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Straw_Yuzu_Berry_Yuzu.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1168,7 +1168,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Yuzu , \NWater" + "Strawberry , Yuzu , +Water" 16 @@ -1317,7 +1318,7 @@ Var NameDrink = "Raspberry" Var NameDrinkTH = "ไหนดื่มสิ" Var DrinkDescriptionTH = "ลิ้นจี่ สละ น้ำและน้ำแข็ง" - Var DrinkDescription = "Lychee , Salak , \NWater" + Var DrinkDescription = "Lychee , Salak , Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Lychee_SALAK_Rasberry.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1420,7 +1421,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Lychee , Salak , \NWater" + "Lychee , Salak , +Water" 16 @@ -1569,7 +1571,7 @@ Var NameDrink = "Lychee Rose" Var NameDrinkTH = "เรื่องราวแก้วนี้" Var DrinkDescriptionTH = "ลิ้นจี่ ชามะลิ น้ำและน้ำแข็ง" - Var DrinkDescription = "Lychee , Jasmine Tea \NWater" + Var DrinkDescription = "Lychee , Jasmine Tea Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Lychee_Jasmine tea_Lychee_Rose.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1672,7 +1674,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Lychee , Jasmine Tea \NWater" + "Lychee , Jasmine Tea +Water" 16 @@ -2073,7 +2076,7 @@ Var NameDrink = "Peach Tea" Var NameDrinkTH = "ถ้าพี่นัทเป๊ะ เต่าก็เป๊ะ" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ลิ้นจี่ ชาไทย และน้ำแข็ง" - Var DrinkDescription = "Strawberry, Lychee ,\NThai Tea Water" + Var DrinkDescription = "Strawberry, Lychee , Thai Tea Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Straw_Lychee_Thai Tea_Peach_tea.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2176,7 +2179,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry, Lychee ,\NThai Tea Water" + "Strawberry, Lychee , +Thai Tea Water" 16 @@ -2325,7 +2329,7 @@ Var NameDrink = "Peach" Var NameDrinkTH = "เต่าบินเมคโอเวอร์ มั๊วะ!" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ลิ้นจี่ น้ำและน้ำแข็ง" - Var DrinkDescription = "Strawberry, Lychee , \NWater" + Var DrinkDescription = "Strawberry, Lychee , Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Lychee_Staw_Peach_Syrup.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2429,7 +2433,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry, Lychee , \NWater" + "Strawberry, Lychee , +Water" 16 diff --git a/xml/page_catalog_group_pro_mom_cocoa.xml b/xml/page_catalog_group_pro_mom_cocoa.xml index 5645424c..5ea6e7f1 100644 --- a/xml/page_catalog_group_pro_mom_cocoa.xml +++ b/xml/page_catalog_group_pro_mom_cocoa.xml @@ -2569,7 +2569,7 @@ Var NameDrink = "Mocha (Healthy Option)" Var NameDrinkTH = "มอคค่า (ทางเลือกสุขภาพ)" Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล" - Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar" + Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Mocha_Healthy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-1006.Price @@ -2672,7 +2672,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Cocoa,\NMilk, Sugar" + "Espresso, Cocoa, +Milk, Sugar" 16 @@ -2825,7 +2826,7 @@ Var NameDrink = "Tokyo Banana Mocha" Var NameDrinkTH = "มอคค่ามัทฉะโตเกียวบานาน่า" Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\NCocoa, Milk" + Var DrinkDescription = "Espresso, Banana , Cocoa, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Banana_Mocha.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2927,7 +2928,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\NCocoa, Milk" + "Espresso, Banana , +Cocoa, Milk" 16 @@ -3582,7 +3584,7 @@ Var NameDrink = "Caramel Cocoa" Var NameDrinkTH = "คาราเมลโกโก้" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล คาราเมล" - Var DrinkDescription = "Cocoa, Milk,Sugar,\NCaramel" + Var DrinkDescription = "Cocoa, Milk,Sugar, Caramel" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_caramel_cocoa.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0004.Price @@ -3685,7 +3687,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Cocoa, Milk,Sugar,\NCaramel" + "Cocoa, Milk,Sugar, +Caramel" 16 @@ -4348,7 +4351,7 @@ Var NameDrink = "Cocoa Mint" Var NameDrinkTH = "โกโก้มินต์" Var DrinkDescriptionTH = "มินต์ นม น้ำตาล และโกโก้" - Var DrinkDescription = "Mint , Milk,\Nsugar, Cocoa" + Var DrinkDescription = "Mint , Milk, sugar, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Cocoa.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0035.Price @@ -4450,7 +4453,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\Nsugar, Cocoa" + "Mint , Milk, +sugar, Cocoa" 16 @@ -4603,7 +4607,7 @@ Var NameDrink = "Peach Cocao Milk" Var NameDrinkTH = "โกโก้พีช" Var DrinkDescriptionTH = "พีช นม โกโก้ และน้ำ " - Var DrinkDescription = "Peach , Milk, Cocoa\NWater" + Var DrinkDescription = "Peach , Milk, Cocoa Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_peach_Cocoa.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4705,7 +4709,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Peach , Milk, Cocoa\NWater" + "Peach , Milk, Cocoa +Water" 16 @@ -4854,7 +4859,7 @@ Var NameDrink = "Coconut Cocoa" Var NameDrinkTH = "โกโก้มะพร้าวน้ำหอม" Var DrinkDescriptionTH = "มะพร้าว โกโก้ นม และน้ำ " - Var DrinkDescription = "Coconut , Cocoa, Milk,\NWater" + Var DrinkDescription = "Coconut , Cocoa, Milk, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Cocoa_coconut.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4956,7 +4961,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Coconut , Cocoa, Milk,\NWater" + "Coconut , Cocoa, Milk, +Water" 16 @@ -5357,7 +5363,7 @@ Var NameDrink = "Choco Oreo Smoothie" Var NameDrinkTH = "โกโก้โอรีโอปั่น" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล Oreo" - Var DrinkDescription = "Cocoa, Milk,\NSugar, Oreo" + Var DrinkDescription = "Cocoa, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_ChocoOreo_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5460,7 +5466,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Cocoa, Milk,\NSugar, Oreo" + "Cocoa, Milk, +Sugar, Oreo" 16 @@ -5609,7 +5616,7 @@ Var NameDrink = "Tokyo Banana Cocoa Straw Smoothie" Var NameDrinkTH = "ช็อกโกโตเกีียวบานาน่าสตรอว์เบอร์รี่" Var DrinkDescriptionTH = "กล้วย สตรอเบอร์รี่ นม และโกโก้" - Var DrinkDescription = "Banana , Strawberry ,\NMilk, Cocoa" + Var DrinkDescription = "Banana , Strawberry , Milk, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Choco_strawberry_banana_smoothie_mom_cocoa.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5711,7 +5718,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Banana , Strawberry ,\NMilk, Cocoa" + "Banana , Strawberry , +Milk, Cocoa" 16 diff --git a/xml/page_catalog_group_pro_nam_hom_coconut.xml b/xml/page_catalog_group_pro_nam_hom_coconut.xml index 75862b0d..bdb347e0 100644 --- a/xml/page_catalog_group_pro_nam_hom_coconut.xml +++ b/xml/page_catalog_group_pro_nam_hom_coconut.xml @@ -53,7 +53,7 @@ Var NameDrink = "Hat Yai Beach Coconut" Var NameDrinkTH = "มะพร้าวหาดใหญ่ (มาก)" Var DrinkDescriptionTH = "กาแฟดำมะพร้าวน้ำหอม" - Var DrinkDescription = "Espresso, Coconut ,\NSugar, Water" + Var DrinkDescription = "Espresso, Coconut , Sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_Coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -158,7 +158,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Coconut ,\NSugar, Water" + "Espresso, Coconut , +Sugar, Water" 16 @@ -305,7 +306,7 @@ Coconut" Var NameDrink = "Hat Yai Beach Coconut" Var NameDrinkTH = "มะพร้าวหาดใหญ่ (มาก)" Var DrinkDescriptionTH = "กาแฟดำมะพร้าวน้ำหอม" - Var DrinkDescription = "Espresso, Coconut ,\NSugar, Water" + Var DrinkDescription = "Espresso, Coconut , Sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_Coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -410,7 +411,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Coconut ,\NSugar, Water" + "Espresso, Coconut , +Sugar, Water" 16 @@ -812,7 +814,7 @@ Coconut" Var NameDrink = "Jomtien Beach Coconut" Var NameDrinkTH = "มะพร้าวหาด จอมเทียน(พรรษา)" Var DrinkDescriptionTH = "มะพร้าวน้ำหอมปั่น นมนิวซีแลนด์" - Var DrinkDescription = "Coconut , Milk,\NWater" + Var DrinkDescription = "Coconut , Milk, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_milk_coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -918,7 +920,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Coconut , Milk,\NWater" + "Coconut , Milk, +Water" 16 @@ -1067,7 +1070,7 @@ Coconut" Var NameDrink = "Nang Ram Beach Coconut" Var NameDrinkTH = "มะพร้าวหาด นางรำ(สวย)" Var DrinkDescriptionTH = "มะพร้าวโกโก้ปั่น นมนิวซีแลนด์" - Var DrinkDescription = "Coconut , Cocoa, Milk,\NWater" + Var DrinkDescription = "Coconut , Cocoa, Milk, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Cocoa_coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1173,7 +1176,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Coconut , Cocoa, Milk,\NWater" + "Coconut , Cocoa, Milk, +Water" 16 @@ -1322,7 +1326,7 @@ Coconut" Var NameDrink = "Glass Sand Beach Coconut" Var NameDrinkTH = "มะพร้าวหาด ทรายแก้ว(มังกร)" Var DrinkDescriptionTH = "มะพร้าวน้ำหอมมัทฉะลาเต้" - Var DrinkDescription = "Coconut , Matcha Milk \NWater" + Var DrinkDescription = "Coconut , Matcha Milk Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_match_milk_coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1427,7 +1431,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Coconut , Matcha Milk \NWater" + "Coconut , Matcha Milk +Water" 16 @@ -1830,7 +1835,7 @@ Coconut" Var NameDrink = "Moonlight Beach Coconut" Var NameDrinkTH = "มะพร้าวหาด แสงจันทร์(ลงทัณฑ์)" Var DrinkDescriptionTH = "มะพร้าวชาไทย นมนิวซีแลนด์" - Var DrinkDescription = "Coconut , Thai Tea, Milk \NWater" + Var DrinkDescription = "Coconut , Thai Tea, Milk Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_thai_milk_tea_coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1936,7 +1941,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Coconut , Thai Tea, Milk \NWater" + "Coconut , Thai Tea, Milk +Water" 16 @@ -2339,7 +2345,7 @@ Coconut" Var NameDrink = "Suan Son Beach Coconut" Var NameDrinkTH = "มะพร้าวหาด สวนสน(ใจไหม)" Var DrinkDescriptionTH = "มะพร้าวชามะลินมนิวซีแลนด์" - Var DrinkDescription = "Coconut , Jasmine Tea, Milk \NWater" + Var DrinkDescription = "Coconut , Jasmine Tea, Milk Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_jasmine_milk_coconut_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2444,7 +2450,8 @@ Coconut" KanitMediumTTF 0x6F5F51 showengText - "Coconut , Jasmine Tea, Milk \NWater" + "Coconut , Jasmine Tea, Milk +Water" 16 @@ -4112,7 +4119,7 @@ Coconut" Var NameDrink = "Oreo Bomb Banana-Beach" Var NameDrinkTH = "ภูเขาโอรีโอระเบิดหา กล้วยมอด" Var DrinkDescriptionTH = "นมกล้วยปั่น โอรีโอภูเขาไฟ" - Var DrinkDescription = "Banana , Milk,\NSugar, Oreo" + Var DrinkDescription = "Banana , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_BananaOreo_smoothie_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4218,7 +4225,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Banana , Milk,\NSugar, Oreo" + "Banana , Milk, +Sugar, Oreo" 16 @@ -4367,7 +4375,7 @@ Banana-Beach" Var NameDrink = "Pirates in Hat Yai beach" Var NameDrinkTH = "โจรบุกหาดใหญ่(มาก)" Var DrinkDescriptionTH = "กาแฟมินต์ลาเต้" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Milk" + Var DrinkDescription = "Espresso, Mint , Sugar, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Iced_Mint_Latte_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4470,7 +4478,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Milk" + "Espresso, Mint , +Sugar, Milk" 16 @@ -4617,7 +4626,7 @@ Banana-Beach" Var NameDrink = "Pirates in Hat Yai beach" Var NameDrinkTH = "โจรบุกหาดใหญ่(มาก)" Var DrinkDescriptionTH = "กาแฟมินต์ลาเต้" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Milk" + Var DrinkDescription = "Espresso, Mint , Sugar, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Iced_Mint_Latte_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4720,7 +4729,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Milk" + "Espresso, Mint , +Sugar, Milk" 16 @@ -4868,7 +4878,7 @@ Banana-Beach" Var NameDrink = "Pirates in Bangsaen Beach" Var NameDrinkTH = "โจรบุกหาดบางแสน (ห้า)" Var DrinkDescriptionTH = "มินต์กาโน่" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Water" + Var DrinkDescription = "Espresso, Mint , Sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Americano_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4972,7 +4982,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Water" + "Espresso, Mint , +Sugar, Water" 16 @@ -5119,7 +5130,7 @@ Banana-Beach" Var NameDrink = "Pirates in Bangsaen Beach" Var NameDrinkTH = "โจรบุกหาดบางแสน (ห้า)" Var DrinkDescriptionTH = "มินต์กาโน่" - Var DrinkDescription = "Espresso, Mint ,\NSugar, Water" + Var DrinkDescription = "Espresso, Mint , Sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Americano_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -5223,7 +5234,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Mint ,\NSugar, Water" + "Espresso, Mint , +Sugar, Water" 16 @@ -6125,7 +6137,7 @@ Banana-Beach" Var NameDrink = "Pirates in Nang Ram Beach" Var NameDrinkTH = "โจรบุกหาดนางรำ (สวย)" Var DrinkDescriptionTH = "โกโก้มินต์" - Var DrinkDescription = "Mint , Milk,\NSugar, Cocoa" + Var DrinkDescription = "Mint , Milk, Sugar, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Cocoa_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -6229,7 +6241,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NSugar, Cocoa" + "Mint , Milk, +Sugar, Cocoa" 16 @@ -6378,7 +6391,7 @@ Banana-Beach" Var NameDrink = "Pirates in Toem Rak Beach" Var NameDrinkTH = "โจรบุกหาดแม่พิมพ์ (ดีด)" Var DrinkDescriptionTH = "มินต์โอรีโอภูเขาไฟ" - Var DrinkDescription = "Mint , Milk,\NSugar, Oreo" + Var DrinkDescription = "Mint , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "Mint_SuperVocano_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -6482,7 +6495,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NSugar, Oreo" + "Mint , Milk, +Sugar, Oreo" 16 @@ -6631,7 +6645,7 @@ Banana-Beach" Var NameDrink = "Pirates in Hat Beach " Var NameDrinkTH = "โจรบุกหาด(ใกล้ฉัน)" Var DrinkDescriptionTH = "นมสตรอเบอร์รี่มินต์" - Var DrinkDescription = "Mint , Milk,\NStrawberry" + Var DrinkDescription = "Mint , Milk, Strawberry" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Milk_Straw_Smoothie_pro.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -6734,7 +6748,8 @@ Banana-Beach" KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NStrawberry" + "Mint , Milk, +Strawberry" 16 diff --git a/xml/page_catalog_group_pro_oreo_11.xml b/xml/page_catalog_group_pro_oreo_11.xml index 39a8d91b..17d09ac5 100644 --- a/xml/page_catalog_group_pro_oreo_11.xml +++ b/xml/page_catalog_group_pro_oreo_11.xml @@ -52,10 +52,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Cafe Latte Oreo\NSmoothie" + Var NameDrink = "Iced Cafe Latte Oreo Smoothie" Var NameDrinkTH = "ลาเต้ปั่นโอรีโอภูเขาไฟ" Var DrinkDescriptionTH = "กาแฟ นม น้ำตาล และโอรีโอ" - Var DrinkDescription = "Coffee, Milk, \NSugar, Oreo" + Var DrinkDescription = "Coffee, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Cafe_Latte_Oreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -148,7 +148,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Cafe Latte Oreo\NSmoothie" + "Iced Cafe Latte Oreo +Smoothie" 16 @@ -158,7 +159,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Coffee, Milk, \NSugar, Oreo" + "Coffee, Milk, +Sugar, Oreo" 16 @@ -304,10 +306,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Thai Milk Tea Oreo\NSmoothie" + Var NameDrink = "Thai Milk Tea Oreo Smoothie" Var NameDrinkTH = "ชานมไทยโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "ชาไทย นม น้ำตาล และโอรีโอ" - Var DrinkDescription = "Thai Tea, Milk,\NSugar, Oreo" + Var DrinkDescription = "Thai Tea, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_ThaiTeaOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -401,7 +403,8 @@ KanitMediumTTF 0x322B26 showengText - "Thai Milk Tea Oreo\NSmoothie" + "Thai Milk Tea Oreo +Smoothie" 16 @@ -411,7 +414,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Thai Tea, Milk,\NSugar, Oreo" + "Thai Tea, Milk, +Sugar, Oreo" 16 @@ -557,7 +561,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Oreo Smoothie\NVolcano" + Var NameDrink = "Oreo Smoothie Volcano" Var NameDrinkTH = "โอรีโอปั่นภูเขาไฟ" Var DrinkDescriptionTH = "นม น้ำตาล โอรีโอ " Var DrinkDescription = "Milk, Sugar, Oreo, Ice" @@ -654,7 +658,8 @@ KanitMediumTTF 0x322B26 showengText - "Oreo Smoothie\NVolcano" + "Oreo Smoothie +Volcano" 16 @@ -810,10 +815,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Pink Oreo\NVolcano" + Var NameDrink = "Pink Oreo Volcano" Var NameDrinkTH = "นมชมพูปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "น้ำแดงกลิ่นสละ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Salak , Milk,\NSugar Oreo" + Var DrinkDescription = "Salak , Milk, Sugar Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_PinkOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -908,7 +913,8 @@ KanitMediumTTF 0x322B26 showengText - "Pink Oreo\NVolcano" + "Pink Oreo +Volcano" 16 @@ -918,7 +924,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Salak , Milk,\NSugar Oreo" + "Salak , Milk, +Sugar Oreo" 16 @@ -1064,10 +1071,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry Milk Oreo\NSmoothie" + Var NameDrink = "Strawberry Milk Oreo Smoothie" Var NameDrinkTH = "สตอเบอร์รี่ปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "สตอเบอร์รี่ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Strawberry , Milk,\NSugar, Oreo" + Var DrinkDescription = "Strawberry , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_StrawberrOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1162,7 +1169,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry Milk Oreo\NSmoothie" + "Strawberry Milk Oreo +Smoothie" 16 @@ -1172,7 +1180,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Milk,\NSugar, Oreo" + "Strawberry , Milk, +Sugar, Oreo" 16 @@ -1318,10 +1327,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Choco Oreo\NSmoothie" + Var NameDrink = "Choco Oreo Smoothie" Var NameDrinkTH = "โกโก้ปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Cocoa, Milk,\NSugar, Oreo" + Var DrinkDescription = "Cocoa, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_ChocoOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1416,7 +1425,8 @@ KanitMediumTTF 0x322B26 showengText - "Choco Oreo\NSmoothie" + "Choco Oreo +Smoothie" 16 @@ -1426,7 +1436,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Cocoa, Milk,\NSugar, Oreo" + "Cocoa, Milk, +Sugar, Oreo" 16 @@ -1572,10 +1583,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Caramel Milk Oreo\NSmoothie" + Var NameDrink = "Caramel Milk Oreo Smoothie" Var NameDrinkTH = "นมคาราเมลปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "คาราเมล นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Caramel , Milk,\NSugar, Oreo" + Var DrinkDescription = "Caramel , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_CaramelOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1670,7 +1681,8 @@ KanitMediumTTF 0x322B26 showengText - "Caramel Milk Oreo\NSmoothie" + "Caramel Milk Oreo +Smoothie" 16 @@ -1680,7 +1692,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Caramel , Milk,\NSugar, Oreo" + "Caramel , Milk, +Sugar, Oreo" 16 @@ -2079,10 +2092,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Jasmine Milk Tea \Noreo Smoothie" + Var NameDrink = "Jasmine Milk Tea oreo Smoothie" Var NameDrinkTH = "ชานมมะลิปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "ชามะลิ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Jasmine Tea, Milk,\NSugar, Oreo" + Var DrinkDescription = "Jasmine Tea, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_jasmine_Oreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2177,7 +2190,8 @@ KanitMediumTTF 0x322B26 showengText - "Jasmine Milk Tea \Noreo Smoothie" + "Jasmine Milk Tea +oreo Smoothie" 16 @@ -2187,7 +2201,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Jasmine Tea, Milk,\NSugar, Oreo" + "Jasmine Tea, Milk, +Sugar, Oreo" 16 @@ -2333,10 +2348,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Hojicha Oreo\NSmoothie" + Var NameDrink = "Hojicha Oreo Smoothie" Var NameDrinkTH = "ชานมโฮจิฉะโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "โฮจิฉะ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Hojicha, Milk,\NSugar, Oreo" + Var DrinkDescription = "Hojicha, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_HojichaOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2431,7 +2446,8 @@ KanitMediumTTF 0x322B26 showengText - "Hojicha Oreo\NSmoothie" + "Hojicha Oreo +Smoothie" 16 @@ -2441,7 +2457,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Hojicha, Milk,\NSugar, Oreo" + "Hojicha, Milk, +Sugar, Oreo" 16 @@ -2587,10 +2604,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Melon Milk Oreo\NSmoothie" + Var NameDrink = "Melon Milk Oreo Smoothie" Var NameDrinkTH = "เมล่อนปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "เมล่อน นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Melon , Milk,\NSugar, Oreo" + Var DrinkDescription = "Melon , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_MelonOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2685,7 +2702,8 @@ KanitMediumTTF 0x322B26 showengText - "Melon Milk Oreo\NSmoothie" + "Melon Milk Oreo +Smoothie" 16 @@ -2695,7 +2713,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Melon , Milk,\NSugar, Oreo" + "Melon , Milk, +Sugar, Oreo" 16 @@ -2841,10 +2860,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Banana Milk Oreo\NSmoothie" + Var NameDrink = "Banana Milk Oreo Smoothie" Var NameDrinkTH = "นมกล้วยปั่นภูเขาไฟ" Var DrinkDescriptionTH = "กล้วย นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Banana , Milk,\NSugar, Oreo" + Var DrinkDescription = "Banana , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_BananaOreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2938,7 +2957,8 @@ KanitMediumTTF 0x322B26 showengText - "Banana Milk Oreo\NSmoothie" + "Banana Milk Oreo +Smoothie" 16 @@ -2948,7 +2968,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Banana , Milk,\NSugar, Oreo" + "Banana , Milk, +Sugar, Oreo" 16 @@ -3097,7 +3118,7 @@ Var NameDrink = "Mint Oreo Volcano" Var NameDrinkTH = "มินต์โอรีโอภูเขาไฟ" Var DrinkDescriptionTH = "มินต์ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Mint , Milk,\NSugar, Oreo" + Var DrinkDescription = "Mint , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Oreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -3201,7 +3222,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\NSugar, Oreo" + "Mint , Milk, +Sugar, Oreo" 16 @@ -3347,10 +3369,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Ginger Milk Tea\Noreo Smoothie" + Var NameDrink = "Ginger Milk Tea oreo Smoothie" Var NameDrinkTH = "ชานมขิงโอรีโอปั่น" Var DrinkDescriptionTH = "ขิง นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Ginger, Milk,\NSugar, Oreo" + Var DrinkDescription = "Ginger, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Ginger_milk_Oreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -3444,7 +3466,8 @@ KanitMediumTTF 0x322B26 showengText - "Ginger Milk Tea\Noreo Smoothie" + "Ginger Milk Tea +oreo Smoothie" 16 @@ -3454,7 +3477,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Ginger, Milk,\NSugar, Oreo" + "Ginger, Milk, +Sugar, Oreo" 16 @@ -3600,10 +3624,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut Milk Oreo\NSmoothie" + Var NameDrink = "Coconut Milk Oreo Smoothie" Var NameDrinkTH = "นมมะพร้าวปั่นโอรีโอ ภูเขาไฟ" Var DrinkDescriptionTH = "มะพร้าว นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Coconut, Milk,\NSugar, Oreo" + Var DrinkDescription = "Coconut, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Coconut_Oreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -3698,7 +3722,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut Milk Oreo\NSmoothie" + "Coconut Milk Oreo +Smoothie" 16 @@ -3708,7 +3733,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Coconut, Milk,\NSugar, Oreo" + "Coconut, Milk, +Sugar, Oreo" 16 @@ -3854,10 +3880,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Yuzu Milk Oreo\NSmoothie" + Var NameDrink = "Yuzu Milk Oreo Smoothie" Var NameDrinkTH = "นมยูสุปั่นโอรีโอภูเขาไฟ" Var DrinkDescriptionTH = "ยูซุ นม น้ำตาล โอรีโอ" - Var DrinkDescription = "Yuzu , Milk,\NSugar, Oreo" + Var DrinkDescription = "Yuzu , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_YUZU_Oreo_smoothie_oreo_11" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -3951,7 +3977,8 @@ KanitMediumTTF 0x322B26 showengText - "Yuzu Milk Oreo\NSmoothie" + "Yuzu Milk Oreo +Smoothie" 16 @@ -3961,7 +3988,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Yuzu , Milk,\NSugar, Oreo" + "Yuzu , Milk, +Sugar, Oreo" 16 @@ -4107,7 +4135,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -4204,7 +4232,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -4358,7 +4387,7 @@ SoundVolume xmlpro( 12-21-03-0078, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -4455,7 +4484,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -4610,7 +4640,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Matcha\NCaramel Oreo" + Var NameDrink = "Premium Matcha Caramel Oreo" Var NameDrinkTH = "พรีเมียมมัทฉะ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "มัทฉะ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Matcha, Milk, Caramel , Oreo" @@ -4707,7 +4737,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Matcha\NCaramel Oreo" + "Premium Matcha +Caramel Oreo" 16 @@ -4863,7 +4894,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Thai Tea\NCaramel Oreo" + Var NameDrink = "Premium Thai Tea Caramel Oreo" Var NameDrinkTH = "พรีเมียมชาไทย คาราเมลโอรีโอ" Var DrinkDescriptionTH = "ชาไทย นม คาราเมล และโอรีโอ" Var DrinkDescription = "Thai Tea, Milk, Caramel , Oreo" @@ -4960,7 +4991,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Thai Tea\NCaramel Oreo" + "Premium Thai Tea +Caramel Oreo" 16 diff --git a/xml/page_catalog_group_pro_ovaltine_school.xml b/xml/page_catalog_group_pro_ovaltine_school.xml index 87593569..43d2def8 100644 --- a/xml/page_catalog_group_pro_ovaltine_school.xml +++ b/xml/page_catalog_group_pro_ovaltine_school.xml @@ -56,7 +56,7 @@ Var NameDrink = "Ovaltine" Var NameDrinkTH = "โอวัลติน" Var DrinkDescriptionTH = "โอวัลติน นม โกโก้ และน้ำตาล " - Var DrinkDescription = "Ovaltine, Milk, Cocoa,\Nand Sugar" + Var DrinkDescription = "Ovaltine, Milk, Cocoa, and Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_ovaltine.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0019.Price @@ -158,7 +158,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Ovaltine, Milk, Cocoa,\Nand Sugar" + "Ovaltine, Milk, Cocoa, +and Sugar" 16 @@ -308,10 +309,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Mini Bus Ovaltine\NVolcano" + Var NameDrink = "Mini Bus Ovaltine Volcano" Var NameDrinkTH = "โอวัลตินรถโรงเรียน ภูเขาไฟ" Var DrinkDescriptionTH = "โอวัลติน นม โกโก้ และน้ำตาล " - Var DrinkDescription = "Ovaltine, Milk, Cocoa,\Nand Sugar" + Var DrinkDescription = "Ovaltine, Milk, Cocoa, and Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Ovaltine_cocoa_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -404,7 +405,8 @@ KanitMediumTTF 0x322B26 showengText - "Mini Bus Ovaltine\NVolcano" + "Mini Bus Ovaltine +Volcano" 16 @@ -414,7 +416,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Ovaltine, Milk, Cocoa,\Nand Sugar" + "Ovaltine, Milk, Cocoa, +and Sugar" 16 @@ -560,10 +563,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Mini Bus Ovaltine\NSuper Volcano" + Var NameDrink = "Mini Bus Ovaltine Super Volcano" Var NameDrinkTH = "โอวัลตินรถโรงเรียน ซุปเปอร์ภูเขาไฟ" Var DrinkDescriptionTH = "โอวัลติน นม โกโก้ และน้ำตาล " - Var DrinkDescription = "Ovaltine, Milk, Cocoa,\Nand Sugar" + Var DrinkDescription = "Ovaltine, Milk, Cocoa, and Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_bn_iced_Super_Ovaltine_cocoa_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -656,7 +659,8 @@ KanitMediumTTF 0x322B26 showengText - "Mini Bus Ovaltine\NSuper Volcano" + "Mini Bus Ovaltine +Super Volcano" 16 @@ -666,7 +670,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Ovaltine, Milk, Cocoa,\Nand Sugar" + "Ovaltine, Milk, Cocoa, +and Sugar" 16 diff --git a/xml/page_catalog_group_pro_peach.xml b/xml/page_catalog_group_pro_peach.xml index faf91748..79df1d0d 100644 --- a/xml/page_catalog_group_pro_peach.xml +++ b/xml/page_catalog_group_pro_peach.xml @@ -56,7 +56,7 @@ Var NameDrink = "Peach Tell Me Love" Var NameDrinkTH = "พีชเทลมีเลิฟ" Var DrinkDescriptionTH = "กาแฟ น้ำ และ พีช" - Var DrinkDescription = "Espresso, Peach ,\Nsugar, Water" + Var DrinkDescription = "Espresso, Peach , sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_peach.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0059.Price @@ -158,7 +158,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Peach ,\Nsugar, Water" + "Espresso, Peach , +sugar, Water" 16 @@ -309,7 +310,7 @@ Var NameDrink = "Peach Tell Me Love" Var NameDrinkTH = "พีชเทลมีเลิฟ" Var DrinkDescriptionTH = "กาแฟ น้ำ และ พีช" - Var DrinkDescription = "Espresso, Peach ,\Nsugar, Water" + Var DrinkDescription = "Espresso, Peach , sugar, Water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_peach.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-0059.Price @@ -411,7 +412,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Peach ,\Nsugar, Water" + "Espresso, Peach , +sugar, Water" 16 @@ -563,7 +565,7 @@ Var NameDrink = "Peach Be My Last Love" Var NameDrinkTH = "พีชบีมายด์ลาสท์เลิฟ" Var DrinkDescriptionTH = "กาแฟ น้ำ นม และ พีช" - Var DrinkDescription = "Espresso, Peach ,\Nsugar, Milk" + Var DrinkDescription = "Espresso, Peach , sugar, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_peach_latte.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0060.Price @@ -666,7 +668,8 @@ My Last Love" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Peach ,\Nsugar, Milk" + "Espresso, Peach , +sugar, Milk" 16 @@ -817,7 +820,7 @@ My Last Love" Var NameDrink = "Peach Be My Last Love" Var NameDrinkTH = "พีชบีมายด์ลาสท์เลิฟ" Var DrinkDescriptionTH = "กาแฟ น้ำ นม และ พีช" - Var DrinkDescription = "Espresso, Peach ,\Nsugar, Milk" + Var DrinkDescription = "Espresso, Peach , sugar, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_peach_latte.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-0060.Price @@ -920,7 +923,8 @@ My Last Love" KanitMediumTTF 0x6F5F51 showengText - "Espresso, Peach ,\Nsugar, Milk" + "Espresso, Peach , +sugar, Milk" 16 @@ -1072,7 +1076,7 @@ My Last Love" Var NameDrink = "Peach, Stay By My Side" Var NameDrinkTH = "พีชสเตย์บายมายไซด์" Var DrinkDescriptionTH = "พีช ชาไทย และน้ำ " - Var DrinkDescription = "Peach , Thai Tea,\Nwater" + Var DrinkDescription = "Peach , Thai Tea, water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_peach_tea.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-02-01-0051.Price @@ -1175,7 +1179,8 @@ My Side" KanitMediumTTF 0x6F5F51 showengText - "Peach , Thai Tea,\Nwater" + "Peach , Thai Tea, +water" 16 @@ -1328,7 +1333,7 @@ My Side" Var NameDrink = "Peach Grow Old With Me" Var NameDrinkTH = "พีชโกรโอลด์วิทมี" Var DrinkDescriptionTH = "พีช ชามะลิ และน้ำ " - Var DrinkDescription = "Peach , Jasmine Tea,\Nwater" + Var DrinkDescription = "Peach , Jasmine Tea, water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_peach_jasmine_tea.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1430,7 +1435,8 @@ My Side" KanitMediumTTF 0x6F5F51 showengText - "Peach , Jasmine Tea,\Nwater" + "Peach , Jasmine Tea, +water" 16 @@ -1579,7 +1585,7 @@ My Side" Var NameDrink = "Can you Peach Love Me Too" Var NameDrinkTH = "แคนยูพีชเลิฟมีทู" Var DrinkDescriptionTH = "พีช นม และน้ำ " - Var DrinkDescription = "Peach , Milk,\Nwater" + Var DrinkDescription = "Peach , Milk, water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_peach_Milk.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0038.Price @@ -1682,7 +1688,8 @@ Love Me Too" KanitMediumTTF 0x6F5F51 showengText - "Peach , Milk,\Nwater" + "Peach , Milk, +water" 16 @@ -1835,7 +1842,7 @@ Love Me Too" Var NameDrink = "Peach, Shower Me With Your Love." Var NameDrinkTH = "พีช โชว์เวอร์มี วิทยัวเลิฟ" Var DrinkDescriptionTH = "พีช นม โกโก้ และน้ำ " - Var DrinkDescription = "Peach , Milk, Cocoa\Nwater" + Var DrinkDescription = "Peach , Milk, Cocoa water" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_peach_Cocoa.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1939,7 +1946,8 @@ With Your Love." KanitMediumTTF 0x6F5F51 showengText - "Peach , Milk, Cocoa\Nwater" + "Peach , Milk, Cocoa +water" 16 diff --git a/xml/page_catalog_group_pro_red_string_of_fate.xml b/xml/page_catalog_group_pro_red_string_of_fate.xml index 62cb63a3..4a52ba7f 100644 --- a/xml/page_catalog_group_pro_red_string_of_fate.xml +++ b/xml/page_catalog_group_pro_red_string_of_fate.xml @@ -56,7 +56,7 @@ Var NameDrink = "Chemistry Love" Var NameDrinkTH = "เพียงพบสบตารัก" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม โกโก้ มะนาว และโอวัลติน" - Var DrinkDescription = "Strawberry, Milk, Cocoa,\NLime, Ovaltine" + Var DrinkDescription = "Strawberry, Milk, Cocoa, Lime, Ovaltine" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Ovaltine_lime_milk_Strawberry_Cocoa_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -159,7 +159,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry, Milk, Cocoa,\NLime, Ovaltine" + "Strawberry, Milk, Cocoa, +Lime, Ovaltine" 16 @@ -557,9 +558,9 @@ SoundVolume Var NameDrink = "Endless Love" - Var NameDrinkTH = "ดั่งรักนิรันด์" + Var NameDrinkTH = "ดั่งรักนิรันดร์" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ขิง มะนาว และโอวัลติน" - Var DrinkDescription = "Strawberry, Ginger, Lime,\NOvaltine" + Var DrinkDescription = "Strawberry, Ginger, Lime, Ovaltine" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Ovaltine_lime_ginger_Strawberry_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -630,7 +631,7 @@ KanitMediumTTF 0x322B26 showthaiText - "ดั่งรักนิรันด์" + "ดั่งรักนิรันดร์" 16 @@ -662,7 +663,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry, Ginger, Lime,\NOvaltine" + "Strawberry, Ginger, Lime, +Ovaltine" 16 diff --git a/xml/page_catalog_group_pro_rerun.xml b/xml/page_catalog_group_pro_rerun.xml index 72df3329..b2738a78 100644 --- a/xml/page_catalog_group_pro_rerun.xml +++ b/xml/page_catalog_group_pro_rerun.xml @@ -2347,7 +2347,7 @@ the Past" Var NameDrink = "Cocoa Mint" Var NameDrinkTH = "รวยจนช็อก! น็อคแล้วไหม" Var DrinkDescriptionTH = "มินต์ นม น้ำตาล และโกโก้" - Var DrinkDescription = "Mint , Milk,\Nsugar, Cocoa" + Var DrinkDescription = "Mint , Milk, sugar, Cocoa" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Wealthy_Cocoa_rerun.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = 35 @@ -2453,7 +2453,8 @@ the Past" KanitMediumTTF 0x6F5F51 showengText - "Mint , Milk,\Nsugar, Cocoa" + "Mint , Milk, +sugar, Cocoa" 16 diff --git a/xml/page_catalog_group_pro_robinson_beauty.xml b/xml/page_catalog_group_pro_robinson_beauty.xml index 753d2b09..408b27b5 100644 --- a/xml/page_catalog_group_pro_robinson_beauty.xml +++ b/xml/page_catalog_group_pro_robinson_beauty.xml @@ -54,7 +54,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Revlon\NStraw Chee Soda Smoothie" + Var NameDrink = "Revlon Straw Chee Soda Smoothie" Var NameDrinkTH = "เรฟลอนสตรอว์ชี่ โซดา" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ลิ้นจี่ และโซดา" Var DrinkDescription = "Strawberry , Lychee &Soda" @@ -151,7 +151,8 @@ KanitMediumTTF 0x322B26 showengText - "Revlon\NStraw Chee Soda Smoothie" + "Revlon +Straw Chee Soda Smoothie" 16 @@ -307,7 +308,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Arty Pep\NLychee Soda" + Var NameDrink = "Iced Arty Pep Lychee Soda" Var NameDrinkTH = "อาร์ตี้เป๊ปลิ้นจี่โซดา" Var DrinkDescriptionTH = "ลิ้นจี่ เป๊ปซี่ ผงมะนาว และโซดา" Var DrinkDescription = "Lychee , Pepsi , Lime &Soda" @@ -403,7 +404,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Arty Pep\NLychee Soda" + "Iced Arty Pep +Lychee Soda" 16 @@ -559,7 +561,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Sivanna\Nstraw Chee Tea" + Var NameDrink = "Iced Sivanna straw Chee Tea" Var NameDrinkTH = "ซีเวนน่าสตรอว์ ชี่ชาไทย" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ลิ้นจี่ และชาไทย" Var DrinkDescription = "Strawberry , Lychee , Thai Tea" @@ -656,7 +658,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Sivanna\Nstraw Chee Tea" + "Iced Sivanna +straw Chee Tea" 16 @@ -812,7 +815,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Estee Lychee\NStraw Cano" + Var NameDrink = "Iced Estee Lychee Straw Cano" Var NameDrinkTH = "เอสเต้ดับเบิ้ลลิ้นจี่ สตอว์กาโน่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ลิ้นจี่ และกาแฟ" Var DrinkDescription = "Strawberry , Lychee , Espresso" @@ -909,7 +912,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Estee Lychee\NStraw Cano" + "Iced Estee Lychee +Straw Cano" 16 @@ -1063,7 +1067,7 @@ SoundVolume xmlpro( 12-21-02-0073, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Iced Estee Lychee\NStraw Cano" + Var NameDrink = "Iced Estee Lychee Straw Cano" Var NameDrinkTH = "เอสเต้ดับเบิ้ลลิ้นจี่ สตอว์กาโน่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ลิ้นจี่ และกาแฟ" Var DrinkDescription = "Strawberry , Lychee , Espresso" @@ -1160,7 +1164,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Estee Lychee\NStraw Cano" + "Iced Estee Lychee +Straw Cano" 16 @@ -1315,7 +1320,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Clarins\NPlum Cara Milk Smoothie" + Var NameDrink = "Clarins Plum Cara Milk Smoothie" Var NameDrinkTH = "คลาแรงส์พลัม คารามิลล์" Var DrinkDescriptionTH = "บ๊วย คาราเมล นมและน้ำแข็ง" Var DrinkDescription = "Ume , Caramel , Milk ,Ice" @@ -1412,7 +1417,8 @@ KanitMediumTTF 0x322B26 showengText - "Clarins\NPlum Cara Milk Smoothie" + "Clarins +Plum Cara Milk Smoothie" 16 @@ -1568,7 +1574,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Calvin\NKlein Cocoa Chee" + Var NameDrink = "Iced Calvin Klein Cocoa Chee" Var NameDrinkTH = "คลาวิน ไคลน์ โกโก้ชี่" Var DrinkDescriptionTH = "ลิ้นจี่ โกโก้ และนม " Var DrinkDescription = "Lychee , Cocoa , Milk " @@ -1664,7 +1670,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Calvin\NKlein Cocoa Chee" + "Iced Calvin +Klein Cocoa Chee" 16 @@ -1820,7 +1827,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Ro Straw\NMatcha" + Var NameDrink = "Iced Ro Straw Matcha" Var NameDrinkTH = "โรสตรอว์มัทฉะ" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ชาเขียว และนม " Var DrinkDescription = "Strawberry , Matcha, Milk" @@ -1916,7 +1923,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Ro Straw\NMatcha" + "Iced Ro Straw +Matcha" 16 @@ -2072,7 +2080,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Bin Straw\NCafe Latte" + Var NameDrink = "Iced Bin Straw Cafe Latte" Var NameDrinkTH = "บินสตรอว์คาเฟ่ลาเต้" Var DrinkDescriptionTH = "สตรอเบอร์รี่ กาแฟและนม " Var DrinkDescription = "Strawberry , Espresso, Milk" @@ -2168,7 +2176,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Bin Straw\NCafe Latte" + "Iced Bin Straw +Cafe Latte" 16 @@ -2322,7 +2331,7 @@ SoundVolume xmlpro( 12-21-02-0074, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Iced Bin Straw\NCafe Latte" + Var NameDrink = "Iced Bin Straw Cafe Latte" Var NameDrinkTH = "บินสตรอว์คาเฟ่ลาเต้" Var DrinkDescriptionTH = "สตรอเบอร์รี่ กาแฟและนม " Var DrinkDescription = "Strawberry , Espresso, Milk" @@ -2418,7 +2427,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Bin Straw\NCafe Latte" + "Iced Bin Straw +Cafe Latte" 16 @@ -2573,7 +2583,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Son Jas\NChee Tea Smoothie" + Var NameDrink = "Son Jas Chee Tea Smoothie" Var NameDrinkTH = "สันจัสชี่" Var DrinkDescriptionTH = "ลิ้นจี่ ชามะลิ และน้ำ" Var DrinkDescription = "Lychee , Jasmine Tea, Water" @@ -2669,7 +2679,8 @@ KanitMediumTTF 0x322B26 showengText - "Son Jas\NChee Tea Smoothie" + "Son Jas +Chee Tea Smoothie" 16 diff --git a/xml/page_catalog_group_pro_strawberry_series.xml b/xml/page_catalog_group_pro_strawberry_series.xml index 21fb0ec6..f7c9a0fc 100644 --- a/xml/page_catalog_group_pro_strawberry_series.xml +++ b/xml/page_catalog_group_pro_strawberry_series.xml @@ -53,10 +53,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry\NLimenade Soda" + Var NameDrink = "Strawberry Limenade Soda" Var NameDrinkTH = "สตรอเบอร์รี่มะนาว โซดา" Var DrinkDescriptionTH = "สตรอเบอร์รี่ มะนาว น้ำตาล และโซดา" - Var DrinkDescription = "Strawberry , Lime,\NSugar, Soda" + Var DrinkDescription = "Strawberry , Lime, Sugar, Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_strawberry_lime_soda.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -150,7 +150,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry\NLimenade Soda" + "Strawberry +Limenade Soda" 16 @@ -160,7 +161,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Lime,\NSugar, Soda" + "Strawberry , Lime, +Sugar, Soda" 16 @@ -309,7 +311,7 @@ Var NameDrink = "Strawberry Tea" Var NameDrinkTH = "ชาสตรอเบอร์รี่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ ชามะลิ และน้ำตาล" - Var DrinkDescription = "Strawberry ,\NJasmine Tea, Sugar" + Var DrinkDescription = "Strawberry , Jasmine Tea, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_strawberry_tea.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-02-01-0022.Price @@ -412,7 +414,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry ,\NJasmine Tea, Sugar" + "Strawberry , +Jasmine Tea, Sugar" 16 @@ -565,7 +568,7 @@ Var NameDrink = "Strawberry Soda" Var NameDrinkTH = "สตรอเบอร์รี่โซดา" Var DrinkDescriptionTH = "สตรอเบอร์รี่ น้ำตาล และโซดา" - Var DrinkDescription = "Strawberry , Sugar,\NSoda" + Var DrinkDescription = "Strawberry , Sugar, Soda" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_strawberry_soda.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -668,7 +671,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Sugar,\NSoda" + "Strawberry , Sugar, +Soda" 16 @@ -1072,7 +1076,7 @@ Var NameDrink = "Cocoa Strawberry" Var NameDrinkTH = "โกโก้สตรอเบอร์รี่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม โกโก้ และน้ำตาล" - Var DrinkDescription = "Strawberry , Millk,\NCocoa, Sugar" + Var DrinkDescription = "Strawberry , Millk, Cocoa, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Strawberry_cocoa.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-03-01-0010.Price @@ -1175,7 +1179,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Millk,\NCocoa, Sugar" + "Strawberry , Millk, +Cocoa, Sugar" 16 @@ -1325,10 +1330,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry\NCafe Latte" + Var NameDrink = "Strawberry Cafe Latte" Var NameDrinkTH = "กาแฟสตรอเบอร์รี่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม กาแฟ และน้ำตาล" - Var DrinkDescription = "Strawberry , Millk,\NCoffee, Sugar" + Var DrinkDescription = "Strawberry , Millk, Coffee, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Strawberry_caramel_latte.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0074.Price @@ -1421,7 +1426,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry\NCafe Latte" + "Strawberry +Cafe Latte" 16 @@ -1431,7 +1437,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Millk,\NCoffee, Sugar" + "Strawberry , Millk, +Coffee, Sugar" 16 @@ -1579,10 +1586,10 @@ SoundVolume xmlpro( 12-21-01-0074, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Strawberry\NCafe Latte" + Var NameDrink = "Strawberry Cafe Latte" Var NameDrinkTH = "กาแฟสตรอเบอร์รี่" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม กาแฟ และน้ำตาล" - Var DrinkDescription = "Strawberry , Millk,\NCoffee, Sugar" + Var DrinkDescription = "Strawberry , Millk, Coffee, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Strawberry_caramel_latte.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-21-01-0074.Price @@ -1675,7 +1682,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry\NCafe Latte" + "Strawberry +Cafe Latte" 16 @@ -1685,7 +1693,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Millk,\NCoffee, Sugar" + "Strawberry , Millk, +Coffee, Sugar" 16 @@ -1834,10 +1843,10 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry Milk\NOreo Smoothie" + Var NameDrink = "Strawberry Milk Oreo Smoothie" Var NameDrinkTH = "สตรอเบอร์รี่โอริโอ้ปั่น" Var DrinkDescriptionTH = "สตรอเบอร์รี่ นม โอริโอ้ และน้ำตาล" - Var DrinkDescription = "Strawberry , Millk,\NCoffee, Sugar" + Var DrinkDescription = "Strawberry , Millk, Coffee, Sugar" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Strawberr_milk_Oreo_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -1930,7 +1939,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry Milk\NOreo Smoothie" + "Strawberry Milk +Oreo Smoothie" 16 @@ -1940,7 +1950,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Strawberry , Millk,\NCoffee, Sugar" + "Strawberry , Millk, +Coffee, Sugar" 16 diff --git a/xml/page_catalog_group_pro_tea_time.xml b/xml/page_catalog_group_pro_tea_time.xml index 9c82d02a..f675ea49 100644 --- a/xml/page_catalog_group_pro_tea_time.xml +++ b/xml/page_catalog_group_pro_tea_time.xml @@ -2600,7 +2600,7 @@ Var NameDrink = "Thai Milk Tea Oreo Smoothie" Var NameDrinkTH = "ชาไทยโอริโอ้ปั่น" Var DrinkDescriptionTH = "ชาไทย นม น้ำตาล Oreo" - Var DrinkDescription = "Thai Tea, Milk,\Nsugar, Oreo" + Var DrinkDescription = "Thai Tea, Milk, sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_THAI_MILK_TEA_OREO_SMOOTHIE_tea_time.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -2704,7 +2704,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Thai Tea, Milk,\Nsugar, Oreo" + "Thai Tea, Milk, +sugar, Oreo" 16 @@ -4644,7 +4645,7 @@ Var NameDrink = "Tokyo Banana Matcha Cafe Latte" Var NameDrinkTH = "มัทฉะลาเต้โตเกียวบานาน่า" Var DrinkDescriptionTH = "กาแฟ น้ำ นม มัทฉะ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\NMatcha, Milk" + Var DrinkDescription = "Espresso, Banana , Matcha, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_ICED_TOKYO_BANANA_MATCHA_CAFE_LATTE_tea_time.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4747,7 +4748,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\NMatcha, Milk" + "Espresso, Banana , +Matcha, Milk" 16 @@ -4894,7 +4896,7 @@ Var NameDrink = "Tokyo Banana Matcha Cafe Latte" Var NameDrinkTH = "มัทฉะลาเต้โตเกียวบานาน่า" Var DrinkDescriptionTH = "กาแฟ น้ำ นม มัทฉะ และ กล้วย" - Var DrinkDescription = "Espresso, Banana ,\NMatcha, Milk" + Var DrinkDescription = "Espresso, Banana , Matcha, Milk" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_ICED_TOKYO_BANANA_MATCHA_CAFE_LATTE_tea_time.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -4997,7 +4999,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Espresso, Banana ,\NMatcha, Milk" + "Espresso, Banana , +Matcha, Milk" 16 @@ -5909,7 +5912,7 @@ Var NameDrink = "Hojicha Oreo Smoothie" Var NameDrinkTH = "โฮจิฉะลาเต้โอริโอ้ปั่น" Var DrinkDescriptionTH = "โฮจิฉะ นม น้ำตาล Oreo" - Var DrinkDescription = "Hojicha, Milk,\NSugar, Oreo" + Var DrinkDescription = "Hojicha, Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_HOJICHA_smoothie_tea_time.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $-.Price @@ -6013,7 +6016,8 @@ KanitMediumTTF 0x6F5F51 showengText - "Hojicha, Milk,\NSugar, Oreo" + "Hojicha, Milk, +Sugar, Oreo" 16 diff --git a/xml/page_catalog_group_pro_thick_tea_by_brewer.xml b/xml/page_catalog_group_pro_thick_tea_by_brewer.xml index 1c795cca..9dd8f2fc 100644 --- a/xml/page_catalog_group_pro_thick_tea_by_brewer.xml +++ b/xml/page_catalog_group_pro_thick_tea_by_brewer.xml @@ -53,7 +53,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Southern Fusion\NTea" + Var NameDrink = "Southern Fusion Tea" Var NameDrinkTH = "ชาผสานปักษ์ใต้" Var DrinkDescriptionTH = "มัทฉะ ชาไทย นม และคาราเมล" Var DrinkDescription = "Matcha , Thai Tea, Milk Caramel" @@ -148,7 +148,8 @@ KanitMediumTTF 0x322B26 showengText - "Southern Fusion\NTea" + "Southern Fusion +Tea" 16 @@ -308,7 +309,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Traditional\NMatcha" + Var NameDrink = "Traditional Matcha" Var NameDrinkTH = "มัทฉะโบราณ" Var DrinkDescriptionTH = "ชามะลิ มัทฉะ นม และคาราเมล" Var DrinkDescription = "Jasmine Tea, Matcha, Milk, Caramel" @@ -403,7 +404,8 @@ KanitMediumTTF 0x322B26 showengText - "Traditional\NMatcha" + "Traditional +Matcha" 16 diff --git a/xml/page_catalog_group_pro_wednesday_melon.xml b/xml/page_catalog_group_pro_wednesday_melon.xml index 81e1cda4..59a42440 100644 --- a/xml/page_catalog_group_pro_wednesday_melon.xml +++ b/xml/page_catalog_group_pro_wednesday_melon.xml @@ -833,7 +833,7 @@ Cafe Latte" Var NameDrink = "Melon Milk Oreo Volcano" Var NameDrinkTH = "เมล่อนปั่น โอรีโอภูเขาไฟ" Var DrinkDescriptionTH = "เมล่อน นม น้ำตาล Oreo" - Var DrinkDescription = "Melon , Milk,\NSugar, Oreo" + Var DrinkDescription = "Melon , Milk, Sugar, Oreo" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_MelonOreo_smoothie.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = "-" @@ -941,7 +941,8 @@ Cafe Latte" KanitMediumTTF 0x6F5F51 showengText - "Melon , Milk,\NSugar, Oreo" + "Melon , Milk, +Sugar, Oreo" 16 diff --git a/xml/page_catalog_group_pro_weekday_discount.xml b/xml/page_catalog_group_pro_weekday_discount.xml index be591246..c4a672e8 100644 --- a/xml/page_catalog_group_pro_weekday_discount.xml +++ b/xml/page_catalog_group_pro_weekday_discount.xml @@ -52,7 +52,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -148,7 +148,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -302,7 +303,7 @@ SoundVolume xmlpro( 12-21-03-0078, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -398,7 +399,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -553,7 +555,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Green Tea\NCaramel Oreo" + Var NameDrink = "Premium Green Tea Caramel Oreo" Var NameDrinkTH = "พรีเมียมมัทฉะ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "มัทฉะ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Matcha, Milk, Caramel , Oreo" @@ -649,7 +651,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Green Tea\NCaramel Oreo" + "Premium Green Tea +Caramel Oreo" 16 @@ -805,7 +808,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Thai Tea\NCaramel Oreo" + Var NameDrink = "Premium Thai Tea Caramel Oreo" Var NameDrinkTH = "พรีเมียมชาไทย คาราเมลโอรีโอ" Var DrinkDescriptionTH = "ชาไทย นม คาราเมล และโอรีโอ" Var DrinkDescription = "Thai Tea, Milk, Caramel , Oreo" @@ -901,7 +904,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Thai Tea\NCaramel Oreo" + "Premium Thai Tea +Caramel Oreo" 16 @@ -1057,7 +1061,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut Milk\NSmoothie" + Var NameDrink = "Coconut Milk Smoothie" Var NameDrinkTH = "มะพร้าวน้ำหอมปั่น นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าวน้ำหอมปั่น นม" Var DrinkDescription = "Coconut , Milk" @@ -1154,7 +1158,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut Milk\NSmoothie" + "Coconut Milk +Smoothie" 16 @@ -1310,7 +1315,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry Milk\NSmoothie" + Var NameDrink = "Strawberry Milk Smoothie" Var NameDrinkTH = "นมสตอเบอร์รี่ปั่น" Var DrinkDescriptionTH = "นม สตอเบอร์รี่ และน้ำแข็ง" Var DrinkDescription = "Strawberry , Milk, Sugar" @@ -1406,7 +1411,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry Milk\NSmoothie" + "Strawberry Milk +Smoothie" 16 @@ -1562,7 +1568,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut Cocoa\NSmoothie" + Var NameDrink = "Coconut Cocoa Smoothie" Var NameDrinkTH = "มะพร้าวโกโก้ปั่น นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าว โกโก้ นม และน้ำ " Var DrinkDescription = "Coconut , Cocoa, Milk" @@ -1658,7 +1664,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut Cocoa\NSmoothie" + "Coconut Cocoa +Smoothie" 16 @@ -1814,7 +1821,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Thai Milk Tea\NCoconut" + Var NameDrink = "Iced Thai Milk Tea Coconut" Var NameDrinkTH = "มะพร้าวชาไทย นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าว ชาไทย นมนิวซีแลนด์" Var DrinkDescription = "Coconut , Thai Tea, Milk" @@ -1910,7 +1917,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Thai Milk Tea\NCoconut" + "Iced Thai Milk Tea +Coconut" 16 @@ -2066,7 +2074,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Caramel Cocoa\NSmoothie" + Var NameDrink = "Caramel Cocoa Smoothie" Var NameDrinkTH = "คาราเมลโกโก้ปั่น" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล คาราเมล" Var DrinkDescription = "Cocoa, Caramel, Milk" @@ -2162,7 +2170,8 @@ KanitMediumTTF 0x322B26 showengText - "Caramel Cocoa\NSmoothie" + "Caramel Cocoa +Smoothie" 16 diff --git a/xml/page_catalog_group_pro_weekday_discount_event_on.xml b/xml/page_catalog_group_pro_weekday_discount_event_on.xml index 426ed82d..e64fa89b 100644 --- a/xml/page_catalog_group_pro_weekday_discount_event_on.xml +++ b/xml/page_catalog_group_pro_weekday_discount_event_on.xml @@ -52,7 +52,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -148,7 +148,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -302,7 +303,7 @@ SoundVolume xmlpro( 12-99-03-0075, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") - Var NameDrink = "Premium Espresso\NCaramel Oreo" + Var NameDrink = "Premium Espresso Caramel Oreo" Var NameDrinkTH = "พรีเมียมเอสเพรสโซ่ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "กาแฟ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Coffee, Milk, Caramel , Oreo" @@ -398,7 +399,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Espresso\NCaramel Oreo" + "Premium Espresso +Caramel Oreo" 16 @@ -553,7 +555,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Matcha\NCaramel Oreo" + Var NameDrink = "Premium Matcha Caramel Oreo" Var NameDrinkTH = "พรีเมียมมัทฉะ คาราเมลโอรีโอ" Var DrinkDescriptionTH = "มัทฉะ นม คาราเมล และโอรีโอ" Var DrinkDescription = "Matcha, Milk, Caramel , Oreo" @@ -649,7 +651,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Matcha\NCaramel Oreo" + "Premium Matcha +Caramel Oreo" 16 @@ -805,7 +808,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Premium Thai Tea\NCaramel Oreo" + Var NameDrink = "Premium Thai Tea Caramel Oreo" Var NameDrinkTH = "พรีเมียมชาไทย คาราเมลโอรีโอ" Var DrinkDescriptionTH = "ชาไทย นม คาราเมล และโอรีโอ" Var DrinkDescription = "Thai Tea, Milk, Caramel , Oreo" @@ -901,7 +904,8 @@ KanitMediumTTF 0x322B26 showengText - "Premium Thai Tea\NCaramel Oreo" + "Premium Thai Tea +Caramel Oreo" 16 @@ -1057,7 +1061,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut Milk\NSmoothie" + Var NameDrink = "Coconut Milk Smoothie" Var NameDrinkTH = "มะพร้าวน้ำหอมปั่น นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าวน้ำหอมปั่น นม" Var DrinkDescription = "Coconut , Milk" @@ -1154,7 +1158,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut Milk\NSmoothie" + "Coconut Milk +Smoothie" 16 @@ -1310,7 +1315,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Strawberry Milk\NSmoothie" + Var NameDrink = "Strawberry Milk Smoothie" Var NameDrinkTH = "นมสตอเบอร์รี่ปั่น" Var DrinkDescriptionTH = "นม สตอเบอร์รี่ และน้ำแข็ง" Var DrinkDescription = "Strawberry , Milk, Sugar" @@ -1406,7 +1411,8 @@ KanitMediumTTF 0x322B26 showengText - "Strawberry Milk\NSmoothie" + "Strawberry Milk +Smoothie" 16 @@ -1562,7 +1568,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Coconut Cocoa\NSmoothie" + Var NameDrink = "Coconut Cocoa Smoothie" Var NameDrinkTH = "มะพร้าวโกโก้ปั่น นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าว โกโก้ นม และน้ำ " Var DrinkDescription = "Coconut , Cocoa, Milk" @@ -1658,7 +1664,8 @@ KanitMediumTTF 0x322B26 showengText - "Coconut Cocoa\NSmoothie" + "Coconut Cocoa +Smoothie" 16 @@ -1814,7 +1821,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Iced Thai Milk Tea\NCoconut" + Var NameDrink = "Iced Thai Milk Tea Coconut" Var NameDrinkTH = "มะพร้าวชาไทย นมนิวซีแลนด์" Var DrinkDescriptionTH = "มะพร้าว ชาไทย นม" Var DrinkDescription = "Coconut , Thai Tea, Milk" @@ -1910,7 +1917,8 @@ KanitMediumTTF 0x322B26 showengText - "Iced Thai Milk Tea\NCoconut" + "Iced Thai Milk Tea +Coconut" 16 @@ -2066,7 +2074,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Caramel Cocoa\NSmoothie" + Var NameDrink = "Caramel Cocoa Smoothie" Var NameDrinkTH = "คาราเมลโกโก้ปั่น" Var DrinkDescriptionTH = "โกโก้ นม น้ำตาล คาราเมล" Var DrinkDescription = "Cocoa, Caramel, Milk" @@ -2162,7 +2170,8 @@ KanitMediumTTF 0x322B26 showengText - "Caramel Cocoa\NSmoothie" + "Caramel Cocoa +Smoothie" 16 @@ -2318,7 +2327,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Cocoa Straw\NSmoothie" + Var NameDrink = "Cocoa Straw Smoothie" Var NameDrinkTH = "โกโก้สตอเบอร์รี่ปั่น" Var DrinkDescriptionTH = "นม สตอเบอร์รี่ โกโก้ และน้ำแข็ง" Var DrinkDescription = "Cocoa, Strawberry , Milk" @@ -2414,7 +2423,8 @@ KanitMediumTTF 0x322B26 showengText - "Cocoa Straw\NSmoothie" + "Cocoa Straw +Smoothie" 16 diff --git a/xml/page_catalog_group_recommend.xml b/xml/page_catalog_group_recommend.xml index ff80c8e2..a0080752 100644 --- a/xml/page_catalog_group_recommend.xml +++ b/xml/page_catalog_group_recommend.xml @@ -47,7 +47,7 @@ - 12 + 16 10 497 1080 @@ -9195,7 +9195,7 @@ Sugar, Biscoff" Var NameDrink = "Americano Ethiopia Guji" Var NameDrinkTH = "อเมริกาโน Guji Queen Berry" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (natural process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้" - Var DrinkDescription = "กาแฟคั่วอ่อน (Natural Process) \Nหอมสตรอว์เบอร์รี ส้ม และดอกไม้" + Var DrinkDescription = "กาแฟคั่วอ่อน (Natural Process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0014.Price @@ -9300,7 +9300,8 @@ Ethiopia Guji" KanitMediumTTF 0x6F5F51 showengText - "กาแฟคั่วอ่อน (Natural Process) \Nหอมสตรอว์เบอร์รี ส้ม และดอกไม้" + "กาแฟคั่วอ่อน (Natural Process) +หอมสตรอว์เบอร์รี ส้ม และดอกไม้" 16 @@ -9453,7 +9454,7 @@ Ethiopia Guji" Var NameDrink = "Blue Daddy Americano" Var NameDrinkTH = "อเมริกาโน Blue Daddy" Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้" - Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral" + Var DrinkDescription = "Washed Process note: Blue Berry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_bluedaddy.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0019.Price @@ -9558,7 +9559,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Washed Process \Nnote: Blue Berry & Floral" + "Washed Process +note: Blue Berry & Floral" 16 @@ -9711,7 +9713,7 @@ Americano" Var NameDrink = "Mozart Americano" Var NameDrinkTH = "อเมริกาโน Mozart" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_mozart.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0021.Price @@ -9816,7 +9818,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 @@ -9969,7 +9972,7 @@ Americano" Var NameDrink = "Whisky Dude Americano" Var NameDrinkTH = "อเมริกาโน Whisky Dude" Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา" - Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_whiskydude.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0025.Price @@ -10074,7 +10077,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" + "Washed Sherry Cask Ferment +note: Whisky & Vanilla" 16 @@ -10227,7 +10231,7 @@ Americano" Var NameDrink = "Snowwhite Americano" Var NameDrinkTH = "อเมริกาโน Snowwhite" Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล" - Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey" + Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_snowwhite.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0023.Price @@ -10332,7 +10336,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Anaerobic Process \Nnote: Jasmine & Honey" + "Anaerobic Process +note: Jasmine & Honey" 16 @@ -10485,7 +10490,7 @@ Americano" Var NameDrink = "Peacher Americano" Var NameDrinkTH = "อเมริกาโน Peacher" Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต" - Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_peacher.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0027.Price @@ -10590,7 +10595,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" + "Barrel-Aged Process +note: Peach, Tea, Chocolate" 16 @@ -11258,7 +11264,7 @@ Americano" Var NameDrink = "Rosalyn Americano" Var NameDrinkTH = "อเมริกาโน Rosalyn" Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่" - Var DrinkDescription = "Light Roast (Natural Process) \Npink​ Rose & Berry" + Var DrinkDescription = "Light Roast (Natural Process) pink​ Rose & Berry" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_rosalyn.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0038.Price @@ -11363,7 +11369,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Light Roast (Natural Process) \Npink​ Rose & Berry" + "Light Roast (Natural Process) +pink​ Rose & Berry" 16 @@ -11516,7 +11523,7 @@ Americano" Var NameDrink = "Chopin Americano" Var NameDrinkTH = "อเมริกาโน Chopin" Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ" - Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral" + Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral" Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_chopin.png" Var OpenFromXML = CurrentXMLFileName2 Var PriceD1 = $12-01-01-0044.Price @@ -11621,7 +11628,8 @@ Americano" KanitMediumTTF 0x6F5F51 showengText - "Raisin Honey Process \Nnote: Strawberry & Floral" + "Raisin Honey Process +note: Strawberry & Floral" 16 diff --git a/xml/page_catalog_group_tea.xml b/xml/page_catalog_group_tea.xml index 3d58e516..d3650657 100644 --- a/xml/page_catalog_group_tea.xml +++ b/xml/page_catalog_group_tea.xml @@ -43,7 +43,7 @@ Var block_index_move = 0 ;dummy_layout.inc -; menu_new_list 48 +; menu_new_list 135 ; ==================> Len = 15 ; 12-02-01-0022 12-02-02-0022 12-02-03-0022 @@ -12282,6 +12282,21186 @@ Water" text_unavailable center-vertical-horizontal + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0143 12-05-03-0143 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0143.Button,12-05-03-0143.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201431205030143) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าพลังโซดา +(เพิ่มปริมาณ)" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง โซดา +และน้ำแข็ง (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Soda Extra" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Soda, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0143.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0143.Button + StringFmt( $12-05-02-0143.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0143.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0143.Button + StringFmt( $12-05-03-0143.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201431205030143 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0143.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0143.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" + $Sum12050201431205030143 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0133 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0133.Button,DateTimeStart="2025/01/01T00:00:00",$Sum1205020133) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่ (เพิ่มปริมาณ)" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ โซดา และน้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Extra" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Soda And Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0133.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0133.Button + StringFmt( $12-05-02-0133.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020133 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0133.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" + $Sum1205020133 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0136 12-05-03-0136 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0136.Button,12-05-03-0136.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201361205030136) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลัง +สตอเบอร์รี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง สตรอเบอรี่ +และโซดา (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Strawberry Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Strawberry +, Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0136.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0136.Button + StringFmt( $12-05-02-0136.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0136.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0136.Button + StringFmt( $12-05-03-0136.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201361205030136 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0136.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0136.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" + $Sum12050201361205030136 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0137 12-05-03-0137 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0137.Button,12-05-03-0137.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201371205030137) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลังบ๊วย +โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง บ๊วย +และโซดา (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Ume Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Ume , +Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0137.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0137.Button + StringFmt( $12-05-02-0137.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0137.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0137.Button + StringFmt( $12-05-03-0137.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201371205030137 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0137.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0137.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" + $Sum12050201371205030137 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0138 12-05-03-0138 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0138.Button,12-05-03-0138.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201381205030138) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลังลิ้นจี่ +โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง ลิ้นจี่ +และโซดา (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Lychee Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Lychee +, Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0138.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0138.Button + StringFmt( $12-05-02-0138.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0138.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0138.Button + StringFmt( $12-05-03-0138.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201381205030138 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0138.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0138.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" + $Sum12050201381205030138 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0139 12-05-03-0139 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0139.Button,12-05-03-0139.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201391205030139) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลังมะนาว +โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง มะนาว +และโซดา (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Lime Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Lime Powder, +Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0139.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0139.Button + StringFmt( $12-05-02-0139.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0139.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0139.Button + StringFmt( $12-05-03-0139.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201391205030139 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0139.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0139.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" + $Sum12050201391205030139 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0140 12-05-03-0140 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0140.Button,12-05-03-0140.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201401205030140) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลังคาราเมล +โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง +คาราเมล และโซดา (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Caramel Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, +, Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0140.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0140.Button + StringFmt( $12-05-02-0140.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0140.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0140.Button + StringFmt( $12-05-03-0140.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201401205030140 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0140.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0140.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" + $Sum12050201401205030140 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0141 12-05-03-0141 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0141.Button,12-05-03-0141.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201411205030141) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลังสละ +โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง +น้ำแดงกลิ่นสละ และโซดา (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Salak Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Salak , +Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0141.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0141.Button + StringFmt( $12-05-02-0141.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0141.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0141.Button + StringFmt( $12-05-03-0141.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201411205030141 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0141.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0141.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" + $Sum12050201411205030141 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0142 12-05-03-0142 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0142.Button,12-05-03-0142.Button,DateTimeStart="2025/01/21T00:00:00",Var=TaobinEnergyDrinkMenu,$Sum12050201421205030142) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลัง +เพิ่มปริมาณ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง น้ำ +และน้ำแข็ง (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Extra" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Water, +Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0142.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0142.Button + StringFmt( $12-05-02-0142.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0142.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0142.Button + StringFmt( $12-05-03-0142.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201421205030142 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0142.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0142.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" + $Sum12050201421205030142 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0034 12-05-03-0034 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0034.Button,12-05-03-0034.Button,$Sum12050200341205030034) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลัง" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง น้ำและน้ำแข็ง +(มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Water, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0034.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0034.Button + StringFmt( $12-05-02-0034.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0034.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0034.Button + StringFmt( $12-05-03-0034.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200341205030034 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0034.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0034.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" + $Sum12050200341205030034 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0035 12-05-03-0035 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0035.Button,12-05-03-0035.Button,$Sum12050200351205030035) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เต่าทรงพลังโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เครื่องดื่มเต่าทรงพลัง โซดา +และน้ำแข็ง (มีคาเฟอีน)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Energy Drink +Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Medicine Drink, Soda, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0035.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0035.Button + StringFmt( $12-05-02-0035.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0035.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0035.Button + StringFmt( $12-05-03-0035.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200351205030035 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0035.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0035.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" + $Sum12050200351205030035 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 22 + ; เป๊ปซี่ Pepsi & Ice - + + 33 + 22 + 225 + 296 + Flag( เป๊ปซี่ .Button,Pepsi & Ice.Button,$Sumเป๊ปซี่ Pepsi & Ice) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "Pepsi & Ice" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่น้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $เป๊ปซี่ .Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $เป๊ปซี่ .Button + StringFmt( $เป๊ปซี่ .Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $Pepsi & Ice.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $Pepsi & Ice.Button + StringFmt( $Pepsi & Ice.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 $Sumเป๊ปซี่ Pepsi & Ice = "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 $Sumเป๊ปซี่ Pepsi & Ice = "Disable" Then + STRCONTAIN "ERR" $เป๊ปซี่ .TAG tag1_is_disable + STRCONTAIN "ERR" $Pepsi & Ice.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" + $Sumเป๊ปซี่ Pepsi & Ice + text_unavailable + center-vertical-horizontal + + + ; 12-05-03-0007 bn_iced_pepsi.png - + + 33 + 22 + 225 + 296 + Flag( 12-05-03-0007.Button,bn_iced_pepsi.png.Button,$Sum1205030007bn_iced_pepsi.png) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "Pepsi & Ice" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่น้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-05-03-0007.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0007.Button + StringFmt( $12-05-03-0007.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $bn_iced_pepsi.png.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $bn_iced_pepsi.png.Button + StringFmt( $bn_iced_pepsi.png.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + "Invisible" + + + 183 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum1205030007bn_iced_pepsi.png = "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 $Sum1205030007bn_iced_pepsi.png = "Disable" Then + STRCONTAIN "ERR" $12-05-03-0007.TAG tag1_is_disable + STRCONTAIN "ERR" $bn_iced_pepsi.png.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" + $Sum1205030007bn_iced_pepsi.png + text_unavailable + center-vertical-horizontal + + + ; ==================> Len = 20 + ; - 12-05-02-0094 12-05-03-0094 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0094.Button,12-05-03-0094.Button,$Sum12050200941205030094) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ โซดา และน้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Soda And Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0094.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0094.Button + StringFmt( $12-05-02-0094.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0094.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0094.Button + StringFmt( $12-05-03-0094.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200941205030094 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0094.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0094.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" + $Sum12050200941205030094 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0095 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0095.Button,$Sum1205020095) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0095.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0095.Button + StringFmt( $12-05-02-0095.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020095 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0095.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" + $Sum1205020095 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0096 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0096.Button,$Sum1205020096) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพชูกำลัง +บ๊วยโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ เครื่องดื่มเต่าทรงพลัง บ๊วย และน้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Tao Power +Plum Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up , Medicine drink, Ume, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0096.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0096.Button + StringFmt( $12-05-02-0096.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020096 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0096.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" + $Sum1205020096 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0044 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0044.Button,$Sum1205020044) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เมล่อนโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เมล่อน โซดา +และน้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Melon Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Melon, Soda, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0044.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0044.Button + StringFmt( $12-05-02-0044.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020044 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0044.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" + $Sum1205020044 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0045 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0045.Button,$Sum1205020045) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ยูซุโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ยูซุ โซดา +และน้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Yuzu Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Yuzu, Soda, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0045.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0045.Button + StringFmt( $12-05-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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020045 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum1205020045 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0010 12-05-03-0010 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0010.Button,12-05-03-0010.Button,$Sum12050200101205030010) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำมะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะนาว โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Limenade +Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Limenade, Sugar, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0010.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0010.Button + StringFmt( $12-05-02-0010.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0010.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0010.Button + StringFmt( $12-05-03-0010.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200101205030010 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0010.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0010.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" + $Sum12050200101205030010 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0033 12-05-03-0033 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0033.Button,12-05-03-0033.Button,$Sum12050200331205030033) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำลิ้นจี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ลิ้นจี่ โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Lychee Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Lychee, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0033.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0033.Button + StringFmt( $12-05-02-0033.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0033.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0033.Button + StringFmt( $12-05-03-0033.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200331205030033 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0033.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0033.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" + $Sum12050200331205030033 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0022 12-05-03-0022 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0022.Button,12-05-03-0022.Button,$Sum12050200221205030022) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ลิ้นจี่มะนาวโซดา " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ลิ้นจี่ มะนาว +โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Lychee +Limenade Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Lychee, +Limenade, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0022.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0022.Button + StringFmt( $12-05-02-0022.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0022.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0022.Button + StringFmt( $12-05-03-0022.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200221205030022 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0022.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200221205030022 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0115 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0115.Button,$Sum1205020115) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพลิ้นจี่ +มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ ลิ้นจี่ มะนาว" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Lychee +Limenade" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up , Lychee, Limenade" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0115.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0115.Button + StringFmt( $12-05-02-0115.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020115 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0115.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" + $Sum1205020115 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0012 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0012.Button,$Sum1205020012) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "สตอเบอร์รี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "สตอเบอร์รี่ โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Strawberry Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Strawberry, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0012.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0012.Button + StringFmt( $12-05-02-0012.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020012 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0012.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" + $Sum1205020012 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0041 12-05-03-0041 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0041.Button,12-05-03-0041.Button,$Sum12050200411205030041) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "สตอเบอร์รี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "สตอเบอร์รี่ โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Strawberry Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Strawberry, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0041.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0041.Button + StringFmt( $12-05-02-0041.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0041.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0041.Button + StringFmt( $12-05-03-0041.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200411205030041 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0041.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200411205030041 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0008 12-05-03-0008 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0008.Button,12-05-03-0008.Button,$Sum12050200081205030008) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำแดงโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำแดงกลิ่นสละ โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Salak Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Salak, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0008.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0008.Button + StringFmt( $12-05-02-0008.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0008.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0008.Button + StringFmt( $12-05-03-0008.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200081205030008 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0008.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200081205030008 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0009 12-05-03-0009 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0009.Button,12-05-03-0009.Button,$Sum12050200091205030009) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำแดงมะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำแดงกลิ่นสละ มะนาว โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Lime +Salak Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Salak, Limenade, +Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0009.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0009.Button + StringFmt( $12-05-02-0009.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0009.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0009.Button + StringFmt( $12-05-03-0009.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200091205030009 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0009.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0009.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" + $Sum12050200091205030009 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0100 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0100.Button,$Sum1205020100) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพสละ +มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำแดงกลิ่นสละ มะนาว โซดา 7UP" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Salak Lime" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up , Medicine drink, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0100.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0100.Button + StringFmt( $12-05-02-0100.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020100 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0100.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" + $Sum1205020100 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0024 12-05-03-0024 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0024.Button,12-05-03-0024.Button,$Sum12050200241205030024) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "บ๊วยโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "บ๊วย โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Plum Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ume, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0024.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0024.Button + StringFmt( $12-05-02-0024.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0024.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0024.Button + StringFmt( $12-05-03-0024.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200241205030024 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0024.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200241205030024 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0025 12-05-03-0025 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0025.Button,12-05-03-0025.Button,$Sum12050200251205030025) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "บ๊วยมะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "บ๊วย มะนาว โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Plum +Limenade Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ume, Limenade, +Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0025.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0025.Button + StringFmt( $12-05-02-0025.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0025.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0025.Button + StringFmt( $12-05-03-0025.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200251205030025 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0025.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200251205030025 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0046 12-05-03-0046 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0046.Button,12-05-03-0046.Button,$Sum12050200461205030046) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่บ๊วย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ บ๊วย โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Plum" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Ume & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0046.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0046.Button + StringFmt( $12-05-02-0046.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0046.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0046.Button + StringFmt( $12-05-03-0046.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200461205030046 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0046.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0046.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" + $Sum12050200461205030046 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0104 12-05-03-0104 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0104.Button,12-05-03-0104.Button,$Sum12050201041205030104) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่บ๊วย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ บ๊วย โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Plum" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Ume & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0104.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0104.Button + StringFmt( $12-05-02-0104.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0104.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0104.Button + StringFmt( $12-05-03-0104.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201041205030104 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0104.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0104.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" + $Sum12050201041205030104 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0074 12-05-03-0074 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0074.Button,12-05-03-0074.Button,$Sum12050200741205030074) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่แม็กซ์บ๊วย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่แม็กซ์ บ๊วย โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Max Plum" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi Max, Ume & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0074.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0074.Button + StringFmt( $12-05-02-0074.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0074.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0074.Button + StringFmt( $12-05-03-0074.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200741205030074 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0074.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0074.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" + $Sum12050200741205030074 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0097 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0097.Button,$Sum1205020097) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพบ๊วย +มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ บ๊วย มะนาว" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Plum Lime" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up , Ume, Limenade" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0097.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0097.Button + StringFmt( $12-05-02-0097.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020097 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0097.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" + $Sum1205020097 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0101 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0101.Button,$Sum1205020101) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพ +สตรอเบอรี่ร์บ๊วยโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ บ๊วย สตรอเบอร์รี่ มะนาว" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Plum +Strawberry Lime" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up , Strawberry, Ume, Limenade" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0101.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0101.Button + StringFmt( $12-05-02-0101.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020101 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0101.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" + $Sum1205020101 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0047 12-05-03-0047 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0047.Button,12-05-03-0047.Button,$Sum12050200471205030047) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่เมล่อน" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ เมล่อน โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Melon" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Melon & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0047.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0047.Button + StringFmt( $12-05-02-0047.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0047.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0047.Button + StringFmt( $12-05-03-0047.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200471205030047 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0047.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0047.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" + $Sum12050200471205030047 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0105 12-05-03-0105 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0105.Button,12-05-03-0105.Button,$Sum12050201051205030105) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่เมล่อน" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ เมล่อน โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Melon" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Melon & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0105.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0105.Button + StringFmt( $12-05-02-0105.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0105.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0105.Button + StringFmt( $12-05-03-0105.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201051205030105 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0105.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0105.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" + $Sum12050201051205030105 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0075 12-05-03-0075 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0075.Button,12-05-03-0075.Button,$Sum12050200751205030075) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่แม็กเมล่อน" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่แม็กซ์ เมล่อน โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Max Melon" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi Max, Melon & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0075.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0075.Button + StringFmt( $12-05-02-0075.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0075.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0075.Button + StringFmt( $12-05-03-0075.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200751205030075 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0075.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0075.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" + $Sum12050200751205030075 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0053 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0053.Button,$Sum1205020053) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่ยูซุ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ ยูซุ โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Yuzu" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Yuzu & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0053.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0053.Button + StringFmt( $12-05-02-0053.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020053 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0053.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" + $Sum1205020053 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0106 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0106.Button,$Sum1205020106) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่ยูซุ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ ยูซุ โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Yuzu" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Yuzu & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0106.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0106.Button + StringFmt( $12-05-02-0106.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020106 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0106.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" + $Sum1205020106 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0076 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0076.Button,$Sum1205020076) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่แม็กยูซุ" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่แม็กซ์ ยูซุ โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Yuzu Lime" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi Max, Yuzu & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0076.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0076.Button + StringFmt( $12-05-02-0076.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020076 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0076.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" + $Sum1205020076 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0102 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0102.Button,$Sum1205020102) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพยูซุ +มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ ยูซุ มะนาว โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Yuzu Lime" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up, Yuzu & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0102.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0102.Button + StringFmt( $12-05-02-0102.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020102 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0102.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" + $Sum1205020102 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0054 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0054.Button,$Sum1205020054) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่กล้วย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ กล้วย โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Banana" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Banana & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0054.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0054.Button + StringFmt( $12-05-02-0054.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020054 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0054.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" + $Sum1205020054 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0107 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0107.Button,$Sum1205020107) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่กล้วย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ กล้วย โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Banana" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Banana & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0107.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0107.Button + StringFmt( $12-05-02-0107.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020107 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0107.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" + $Sum1205020107 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0077 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0077.Button,$Sum1205020077) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่แม็กกล้วย" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่แม็กซ์ ยูซุ โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Max Banana" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi Max, Banana & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0077.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0077.Button + StringFmt( $12-05-02-0077.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020077 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0077.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" + $Sum1205020077 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0038 12-05-03-0038 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0038.Button,12-05-03-0038.Button,$Sum12050200381205030038) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ขิงโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Ginger Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0038.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0038.Button + StringFmt( $12-05-02-0038.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0038.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0038.Button + StringFmt( $12-05-03-0038.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200381205030038 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0038.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0038.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" + $Sum12050200381205030038 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0039 12-05-03-0039 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0039.Button,12-05-03-0039.Button,$Sum12050200391205030039) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ขิงมะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง มะนาว โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Ginger Lime +Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger, Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0039.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0039.Button + StringFmt( $12-05-02-0039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0039.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0039.Button + StringFmt( $12-05-03-0039.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200391205030039 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0039.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200391205030039 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0051 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0051.Button,$Sum1205020051) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ขิงโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Ginger Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0051.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0051.Button + StringFmt( $12-05-02-0051.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020051 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0051.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" + $Sum1205020051 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0052 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0052.Button,$Sum1205020052) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ขิงมะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ขิง มะนาว โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Ginger Lime +Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ginger, Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0052.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0052.Button + StringFmt( $12-05-02-0052.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020052 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0052.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" + $Sum1205020052 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0060 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0060.Button,$Sum1205020060) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มินต์มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มินต์ มะนาว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Mint Lime Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Mint , Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0060.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0060.Button + StringFmt( $12-05-02-0060.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020060 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0060.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" + $Sum1205020060 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0116 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0116.Button,$Sum1205020116) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพมินต์ +มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เซเว่นอัพ มินต์ มะนาว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "7Up Mint Lime" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "7Up, Mint, Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0116.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0116.Button + StringFmt( $12-05-02-0116.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020116 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0116.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" + $Sum1205020116 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0063 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0063.Button,$Sum1205020063) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "สตรอเบอร์รี่ +มินต์โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มินต์ สตรอเบอร์รี่ มะนาว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Strawbbery +Mint Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Mint, Strawberry, Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0063.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0063.Button + StringFmt( $12-05-02-0063.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020063 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0063.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" + $Sum1205020063 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0064 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0064.Button,$Sum1205020064) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "ยูซุมินต์โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มินต์ ยูซุ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Yuzu Mint Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Mint, Yuzu Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0064.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0064.Button + StringFmt( $12-05-02-0064.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020064 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0064.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" + $Sum1205020064 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0065 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0065.Button,$Sum1205020065) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "บ๊วยมะนาว +มินต์โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มินต์ บ๊วย มะนาว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Plum Limenade +Mint Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Mint, Ume, Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0065.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0065.Button + StringFmt( $12-05-02-0065.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020065 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0065.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" + $Sum1205020065 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0066 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0066.Button,$Sum1205020066) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มินต์ลิ้นจี่ +มะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มินต์ ลิ้นจี่ มะนาว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Mint Lychee +Lemon Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Mint,Lychee , Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0066.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0066.Button + StringFmt( $12-05-02-0066.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020066 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0066.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" + $Sum1205020066 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0067 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0067.Button,$Sum1205020067) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่มินต์" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ มินต์ ผงมะนาว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Mint" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Mint Lime & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0067.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0067.Button + StringFmt( $12-05-02-0067.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020067 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0067.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" + $Sum1205020067 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0108 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0108.Button,$Sum1205020108) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่มินต์" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ มินต์ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Mint" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Mint & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0108.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0108.Button + StringFmt( $12-05-02-0108.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020108 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0108.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" + $Sum1205020108 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0069 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0069.Button,$Sum1205020069) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "พีชโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "พีช และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Peach Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Peach & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0069.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0069.Button + StringFmt( $12-05-02-0069.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020069 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0069.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" + $Sum1205020069 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0070 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0070.Button,$Sum1205020070) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "พีชมินต์โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "พีช มินต์ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Peach Mint Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Peach, Mint Soda& Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0070.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0070.Button + StringFmt( $12-05-02-0070.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020070 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0070.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" + $Sum1205020070 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0071 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0071.Button,$Sum1205020071) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "พีชมะนาวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "พีช มะนาว และโซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Peach Lime Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Peach , Lime, Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0071.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0071.Button + StringFmt( $12-05-02-0071.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020071 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0071.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" + $Sum1205020071 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0072 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0072.Button,$Sum1205020072) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่พีช" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ พีช และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Peach" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Peach & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0072.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0072.Button + StringFmt( $12-05-02-0072.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020072 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0072.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" + $Sum1205020072 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0109 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0109.Button,$Sum1205020109) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เป๊ปซี่พีช" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "เป๊ปซี่ พีช และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Pepsi Peach" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Pepsi, Peach & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0109.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0109.Button + StringFmt( $12-05-02-0109.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020109 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0109.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" + $Sum1205020109 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0073 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0073.Button,$Sum1205020073) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "พีชสตรอเบอร์รี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "พีช สตรอเบอร์รี่ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Peach Strawberry Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Peach, Strawberry,Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0073.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0073.Button + StringFmt( $12-05-02-0073.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020073 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0073.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" + $Sum1205020073 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - - 12-05-03-0092 + + 33 + 22 + 225 + 296 + Flag( 12-05-03-0092.Button,$Sum1205030092) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มะพร้าวน้ำหอมปั่น" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะพร้าว และน้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Coconut Smoothie" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Coconut and Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.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" ) + $12-05-03-0092.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0092.Button + StringFmt( $12-05-03-0092.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205030092 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0092.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" + $Sum1205030092 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0090 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0090.Button,$Sum1205020090) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มะพร้าวน้ำหอมโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะพร้าว และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Coconut Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Coconut and Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0090.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0090.Button + StringFmt( $12-05-02-0090.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020090 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0090.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" + $Sum1205020090 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0091 12-05-03-0091 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0091.Button,12-05-03-0091.Button,$Sum12050200911205030091) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มะพร้าวน้ำหอมเป๊ปซี่" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะพร้าว เป๊ปซี่ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Coconut Pepsi" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Coconut, Pepsi and Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0091.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0091.Button + StringFmt( $12-05-02-0091.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0091.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0091.Button + StringFmt( $12-05-03-0091.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200911205030091 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0091.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0091.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" + $Sum12050200911205030091 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0114 12-05-03-0114 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0114.Button,12-05-03-0114.Button,$Sum12050201141205030114) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มะพร้าวน้ำหอมเป๊ปซี่" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะพร้าว เป๊ปซี่ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Coconut Pepsi" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Coconut, Pepsi and Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0114.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0114.Button + StringFmt( $12-05-02-0114.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0114.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0114.Button + StringFmt( $12-05-03-0114.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050201141205030114 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0114.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0114.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" + $Sum12050201141205030114 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0093 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0093.Button,$Sum1205020093) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "มะพร้าวน้ำหอม +ลิ้นจี่โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะพร้าว ลิ้นจี่ โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Coconut +Lychee Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Coconut, Lychee and Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0093.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0093.Button + StringFmt( $12-05-02-0093.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020093 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0093.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" + $Sum1205020093 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0103 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0103.Button,$Sum1205020103) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "เซเว่นอัพมะพร้าวโซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "มะพร้าว เซเว่นอัพ และโซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Coconut 7Up" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Coconut, 7Up and Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0103.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0103.Button + StringFmt( $12-05-02-0103.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020103 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0103.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" + $Sum1205020103 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0014 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0014.Button,$Sum1205020014) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "โซดา" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "โซดา" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Soda" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0014.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0014.Button + StringFmt( $12-05-02-0014.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020014 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0014.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" + $Sum1205020014 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0015 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0015.Button,$Sum1205020015) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "โซดาน้ำแข็ง" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "โซดา " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Ice & Soda" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Soda & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0015.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0015.Button + StringFmt( $12-05-02-0015.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020015 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0015.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" + $Sum1205020015 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0003 12-05-03-0003 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0003.Button,12-05-03-0003.Button,$Sum12050200031205030003) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำแดงมะนาว " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำแดงกลิ่นสละ น้ำมะนาว + " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Lime Salak" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Salak, Limenade, +Water & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0003.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0003.Button + StringFmt( $12-05-02-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0003.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0003.Button + StringFmt( $12-05-03-0003.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200031205030003 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0003.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200031205030003 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0004 12-05-03-0004 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0004.Button,12-05-03-0004.Button,$Sum12050200041205030004) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำลิ้นจี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ลิ้นจี่ น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Lychee Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Lychee, Sugar, +Water & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0004.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0004.Button + StringFmt( $12-05-02-0004.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0004.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0004.Button + StringFmt( $12-05-03-0004.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200041205030004 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0004.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200041205030004 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0002 12-05-03-0002 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0002.Button,12-05-03-0002.Button,$Sum12050200021205030002) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำแดง" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำแดงกลิ่นสละ + " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Salak Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Salak & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0002.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0002.Button + StringFmt( $12-05-02-0002.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0002.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0002.Button + StringFmt( $12-05-03-0002.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200021205030002 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0002.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0002.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" + $Sum12050200021205030002 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0005 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0005.Button,$Sum1205020005) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำสตอเบอร์รี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "สตอเบอร์รี่ น้ำ + " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Strawberry" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Strawberry, +Water & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0005.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0005.Button + StringFmt( $12-05-02-0005.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020005 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0005.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" + $Sum1205020005 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; 12-05-01-0001 12-05-02-0001 12-05-03-0001 + + 33 + 22 + 225 + 296 + Flag( 12-05-01-0001.Button,12-05-02-0001.Button,12-05-03-0001.Button,$Sum120501000112050200011205030001) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำมะนาว " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำมะนาว น้ำตาล" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Limenade" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Limenade, Sugar " + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-05-01-0001.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-01-0001.Button + StringFmt( $12-05-01-0001.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0001.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0001.Button + StringFmt( $12-05-02-0001.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0001.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0001.Button + StringFmt( $12-05-03-0001.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + If $Sum120501000112050200011205030001 = "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 $Sum120501000112050200011205030001 = "Disable" Then + STRCONTAIN "ERR" $12-05-01-0001.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0001.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum120501000112050200011205030001 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0026 12-05-03-0026 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0026.Button,12-05-03-0026.Button,$Sum12050200261205030026) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำบ๊วย " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "บ๊วย น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Plum Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ume, Water & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0026.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0026.Button + StringFmt( $12-05-02-0026.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0026.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0026.Button + StringFmt( $12-05-03-0026.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200261205030026 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0026.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum12050200261205030026 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0032 12-05-03-0032 + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0032.Button,12-05-03-0032.Button,$Sum12050200321205030032) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำลิ้นจี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ลิ้นจี่ น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Lychee Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Lychee, Sugar, +Water & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0032.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0032.Button + StringFmt( $12-05-02-0032.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 146 + 264 + Var( DirImage2 + "blend.png" ) + Var( DirImage2 + "blend_db.png" ) + $12-05-03-0032.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0032.Button + StringFmt( $12-05-03-0032.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum12050200321205030032 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0032.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-03-0032.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" + $Sum12050200321205030032 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - - 12-05-03-0040 + + 33 + 22 + 225 + 296 + Flag( 12-05-03-0040.Button,$Sum1205030040) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำสตอเบอร์รี่ " + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "สตอเบอร์รี่ น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Strawberry Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Strawberry, +Water, Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.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" ) + $12-05-03-0040.Button + + + 180 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitRegularTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-03-0040.Button + StringFmt( $12-05-03-0040.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + + eval( + If ICE_PROCESS_STATUS = 2 Then + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205030040 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $##-##-##-####.TAG tag2_is_disable + STRCONTAIN "ERR" $12-05-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" + $Sum1205030040 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 15 + ; - 12-05-02-0068 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0068.Button,$Sum1205020068) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำพีช" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "พีช น้ำ " + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Peach Drink" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Peach, Water & Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0068.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0068.Button + StringFmt( $12-05-02-0068.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020068 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0068.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" + $Sum1205020068 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; 12-06-01-0001 - - + + 33 + 22 + 225 + 296 + Flag( 12-06-01-0001.Button,$Sum1206010001) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "โจ๊กใส่โปรตีนจากพืช" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ข้าว ผัก โปรตีนจากพืช น้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Congee With +Plant Protein" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Rice, Plant-based protein, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-06-01-0001.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-06-01-0001.Button + StringFmt( $12-06-01-0001.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 $Sum1206010001 = "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 $Sum1206010001 = "Disable" Then + STRCONTAIN "ERR" $12-06-01-0001.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" + $Sum1206010001 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; 12-06-01-0002 - - + + 33 + 22 + 225 + 296 + Flag( 12-06-01-0002.Button,$Sum1206010002) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "โจ๊กผักฮ้องกง" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "ข้าว ผัก โปรตีนจากพืช น้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Hongkong Congee" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Rice, Plant-based protein, Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-06-01-0002.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-06-01-0002.Button + StringFmt( $12-06-01-0002.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 $Sum1206010002 = "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 $Sum1206010002 = "Disable" Then + STRCONTAIN "ERR" $12-06-01-0002.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" + $Sum1206010002 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0017 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0017.Button,$Sum1205020017) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำแข็ง" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำแข็ง" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Ice" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Ice" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0017.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0017.Button + StringFmt( $12-05-02-0017.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020017 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0017.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" + $Sum1205020017 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; - 12-05-02-0016 - + + 33 + 22 + 225 + 296 + Flag( 12-05-02-0016.Button,$Sum1205020016) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำดื่ม" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำ" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Drinking Water" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Water" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + "Invisible" + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + "Invisible" + StringFmt( $-.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0016.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0016.Button + StringFmt( $12-05-02-0016.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 + + Var ice_tab_process_show = "Invisible" + + 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 $Sum1205020016 = "Disable" Then + STRCONTAIN "ERR" $##-##-##-####.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0016.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" + $Sum1205020016 + text_unavailable + center-vertical-horizontal + + + ; - - - + ; ==================> Len = 20 + ; 12-05-01-0002 12-05-02-0018 - + + 33 + 22 + 225 + 296 + Flag( 12-05-01-0002.Button,12-05-02-0018.Button,$Sum12050100021205020018) + + + 16 + 164 + 24 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showthaiText + "น้ำ (น้ำร้อน / น้ำเย็น)" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showthaiText + "น้ำ (น้ำร้อน / น้ำ และน้ำแข็ง)" + + + 16 + 164 + 22 + 220 + "multi2" + KanitMediumTTF + 0x322B26 + showengText + "Water (Hot Water +/ Water With Iced)" + + + 16 + 220 + 14 + 220 + KanitMediumTTF + 0x6F5F51 + showengText + "Water (Hot Water +/ Water With Iced)" + + + 16 + 264 + Var( DirImage2 + "option_deactive.png" ) + + + 16 + 264 + $12-05-01-0002.Button + Var( DirImage2 + "hot.png" ) + Var( DirImage2 + "hot_db.png" ) + + + 50 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-01-0002.Button + StringFmt( $12-05-01-0002.Price , DisplayFormat, PreScaleConvertShow) ; test + + + 81 + 264 + Var( DirImage2 + "cold.png" ) + Var( DirImage2 + "cold_db.png" ) + $12-05-02-0018.Button + + + 115 + TextPriceMenuY + TextPriceMenuSize + 220 + KanitMediumTTF + 0x6F5F51 + 0xEAE6E1 + $12-05-02-0018.Button + StringFmt( $12-05-02-0018.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 $Sum12050100021205020018 = "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 $Sum12050100021205020018 = "Disable" Then + STRCONTAIN "ERR" $12-05-01-0002.TAG tag1_is_disable + STRCONTAIN "ERR" $12-05-02-0018.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" + $Sum12050100021205020018 + text_unavailable + center-vertical-horizontal + ; - - - diff --git a/xml/page_catalog_momday.xml b/xml/page_catalog_momday.xml index a35edb8f..1818e435 100644 --- a/xml/page_catalog_momday.xml +++ b/xml/page_catalog_momday.xml @@ -563,7 +563,7 @@ "/mnt/sdcard/coffeevending/wav/click.wav" SoundVolume - Var NameDrink = "Jasmine Milk Tea\NOREO Smoothie" + Var NameDrink = "Jasmine Milk Tea OREO Smoothie" Var NameDrinkTH = "มัมมี่ของต้าวก้อน" Var DrinkDescriptionTH = "ชามะลิ นม และโอรีโอ" Var DrinkDescription = "Jasmine Tea Milk and Oreo" @@ -658,7 +658,8 @@ KanitMediumTTF 0x322B26 showengText - "Jasmine Milk Tea\NOREO Smoothie" + "Jasmine Milk Tea +OREO Smoothie" 16 diff --git a/xml/page_clean_feedback.xml b/xml/page_clean_feedback.xml index bf3de1ed..34ee4252 100644 --- a/xml/page_clean_feedback.xml +++ b/xml/page_clean_feedback.xml @@ -9,6 +9,7 @@ Var DirImage = "ROOT/taobin_project/image/clean_feedback/" + Var Seeker.CleanFeedbackScore = 0 Var PopupTitle = "คะแนนความสะอาดของตู้" Var Description = "ช่วยน้องเต่าประเมินด้วยน๊า.. เพราะเราอยากพัฒนาขึ้นในทุก ๆ วัน" @@ -110,7 +111,7 @@ FeedbackLevel[0] FeedbackLevel[0].Pressed - __CMD "machine-cleanliness-score" 1 "-" "-" + Var Seeker.CleanFeedbackScore = 1 Function 2 @@ -121,7 +122,7 @@ FeedbackLevel[1] FeedbackLevel[1].Pressed - __CMD "machine-cleanliness-score" 2 "-" "-" + Var Seeker.CleanFeedbackScore = 2 Function 2 @@ -132,7 +133,7 @@ FeedbackLevel[2] FeedbackLevel[2].Pressed - __CMD "machine-cleanliness-score" 3 "-" "-" + Var Seeker.CleanFeedbackScore = 3 Function 2 @@ -143,7 +144,7 @@ FeedbackLevel[3] FeedbackLevel[3].Pressed - __CMD "machine-cleanliness-score" 4 "-" "-" + Var Seeker.CleanFeedbackScore = 4 Function 2 @@ -154,7 +155,7 @@ FeedbackLevel[4] FeedbackLevel[4].Pressed - __CMD "machine-cleanliness-score" 5 "-" "-" + Var Seeker.CleanFeedbackScore = 5 Function 2 diff --git a/xml/page_thankyou.xml b/xml/page_thankyou.xml index 42bb1030..3d8bb20f 100644 --- a/xml/page_thankyou.xml +++ b/xml/page_thankyou.xml @@ -515,13 +515,23 @@ EndIf EndIf If Seeker.IsLineMember = 0 Then - If LuckyDrawCampaign = 1 Then - Open "ROOT/taobin_project/xml/sometime/page_campaign_ads_lucky_draw.xml" - Else - Open "ROOT/taobin_project/xml/page_lid_straw.xml" - EndIf + If CleanFeedbackFlag = 1 Then + Var CleanFeedBackToCollectPoint = 0 + Open "ROOT/taobin_project/xml/page_clean_feedback.xml" + Else + If LuckyDrawCampaign = 1 Then + Open "ROOT/taobin_project/xml/sometime/page_campaign_ads_lucky_draw.xml" + Else + Open "ROOT/taobin_project/xml/page_lid_straw.xml" + EndIf + EndIf Else - Open "ROOT/taobin_project/xml/page_lid_straw.xml" + If CleanFeedbackFlag = 1 Then + Var CleanFeedBackToCollectPoint = 0 + Open "ROOT/taobin_project/xml/page_clean_feedback.xml" + Else + Open "ROOT/taobin_project/xml/page_lid_straw.xml" + EndIf EndIf Else If CART_INDEX >= 2 Then @@ -567,13 +577,23 @@ EndIf If Seeker.IsLineMember = 0 Then - If LuckyDrawCampaign = 1 Then - Open "ROOT/taobin_project/xml/sometime/page_campaign_ads_lucky_draw.xml" - Else - Open "ROOT/taobin_project/xml/page_lid_straw.xml" - EndIf + If CleanFeedbackFlag = 1 Then + Var CleanFeedBackToCollectPoint = 0 + Open "ROOT/taobin_project/xml/page_clean_feedback.xml" + Else + If LuckyDrawCampaign = 1 Then + Open "ROOT/taobin_project/xml/sometime/page_campaign_ads_lucky_draw.xml" + Else + Open "ROOT/taobin_project/xml/page_lid_straw.xml" + EndIf + EndIf Else - Open "ROOT/taobin_project/xml/page_lid_straw.xml" + If CleanFeedbackFlag = 1 Then + Var CleanFeedBackToCollectPoint = 0 + Open "ROOT/taobin_project/xml/page_clean_feedback.xml" + Else + Open "ROOT/taobin_project/xml/page_lid_straw.xml" + EndIf EndIf Else If CART_INDEX >= 2 Then