Commit c294ca70 by leialin

Merge branch 'lal' into 'develop'

提交

See merge request 8timerv2/8timerapiv200!311
parents b309a030 ce2109fb
...@@ -572,9 +572,13 @@ public class ClockInController { ...@@ -572,9 +572,13 @@ public class ClockInController {
if((atttype)%2 > 0){//上班 if((atttype)%2 > 0){//上班
if(timeyes > 0){ if(timeyes > 0){
sbdkjg = Integer.valueOf(timeyes.toString()); sbdkjg = Integer.valueOf(timeyes.toString());
}else {
sbdkjg = 0;
} }
}else{//下班 }else{//下班
if(timeyes > 0){}else{ if(timeyes > 0){
sbdkjg = 0;
}else{
sbdkjg = Math.abs(Integer.valueOf(timeyes.toString())); sbdkjg = Math.abs(Integer.valueOf(timeyes.toString()));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment