Commit 73317406 by 徐高华

Merge branch 'feature/xgh/202504会员分组' into 'master'

获取msgid的完成时间调整

See merge request !2901
parents af5ddf5c e001a565
...@@ -101,6 +101,10 @@ public class GroupChatPlanExcelVO extends Object implements Serializable{ ...@@ -101,6 +101,10 @@ public class GroupChatPlanExcelVO extends Object implements Serializable{
} }
public String getCompletionRate() { public String getCompletionRate() {
if (null == this.staffCount || this.staffCount==0 || null == this.sendCount || 0==this.sendCount){
completionRate = "0%";
return completionRate;
}
Double i = 100.0 * this.sendCount / this.staffCount; Double i = 100.0 * this.sendCount / this.staffCount;
BigDecimal bd = new BigDecimal(i); BigDecimal bd = new BigDecimal(i);
bd = bd.setScale(2, RoundingMode.HALF_UP); bd = bd.setScale(2, RoundingMode.HALF_UP);
......
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