From 0090b5a24367caf194100ed356273bb5ee304017 Mon Sep 17 00:00:00 2001 From: xiaoding721 <33130084+xiaoding721@users.noreply.github.com> Date: 星期一, 26 八月 2024 17:50:33 +0800 Subject: [PATCH] 修改加班时间 --- _Main/BL/Type_LocalCell_Default/Method_SetBreakDayOverTimeDurction.qbl | 28 +++++++++++++++++----------- 1 files changed, 17 insertions(+), 11 deletions(-) diff --git a/_Main/BL/Type_LocalCell_Default/Method_SetBreakDayOverTimeDurction.qbl b/_Main/BL/Type_LocalCell_Default/Method_SetBreakDayOverTimeDurction.qbl index 4273106..8a81702 100644 --- a/_Main/BL/Type_LocalCell_Default/Method_SetBreakDayOverTimeDurction.qbl +++ b/_Main/BL/Type_LocalCell_Default/Method_SetBreakDayOverTimeDurction.qbl @@ -9,21 +9,27 @@ // rislai Jul-10-2024 (created) overtime := 0.0; nextDayOvertime := 0.0; - if( outcome = "涓�鐝�" ){ - overtime := 8.5; + if( outcome = "1" ){ + overtime := 8; nextDayOvertime := 0.0; - }else if( outcome = "浜岀彮" ){ - overtime := 16; - nextDayOvertime := 0.5; + }else if( outcome = "2" ){ + overtime := 15; + nextDayOvertime := 1; }else if(outcome = "9+9"){ overtime := 16; - nextDayOvertime := 2.5; + nextDayOvertime := 2; }else if(outcome = "10+10"){ - overtime := 16; - nextDayOvertime := 4.5; - }else if(outcome = "涓夌彮"){ - overtime := 16; - nextDayOvertime := 8; + overtime := 17; + nextDayOvertime := 3; + }else if(outcome = "1(9)" or outcome = "1锛�9锛�"){ + overtime := 9; + nextDayOvertime := 0; + }else if(outcome = "1(10)" or outcome = "1锛�10锛�"){ + overtime := 10; + nextDayOvertime := 0; + }else if(outcome = "3"){ + overtime := 15; + nextDayOvertime := 7.5; } this.RealValue( this.RealValue() + overtime + nextDayOvertime ); *] -- Gitblit v1.9.3