代码行:
def origEst = issue.getOriginalEstimate()
origEst = new Float(issue.getOriginalEstimate()/3600)
def origEstTotal = origEst.floatValue()
return origEstTotal
如果它有十进制值,我想将origEstTotal
四舍五入为2位数。
答案 0 :(得分:0)
您只需使用round(int precision)
:
def origEstTotal = new Float(123.00954)
def origEstTotalRounded = origEstTotal.floatValue().round(2)
println origEstTotalRounded
打印
123.01