If user is entering 678.98 then it should display only 678 in one of the field of a window.
我在openbravo的表和列中声明该字段为数据库中的数字和数字类型引用。
答案 0 :(得分:0)
使用Math.floor()
import java.lang.Math;
...
value = 678.98;
roundeddown = Math.floor(value); // roundeddown == 678
另见this page关于另一个舍入示例。
直接使用PostgreSql,使用floor()
函数
插入数据
INSERT INTO table ... VALUES( floor(678.98) ) ...
选择数据
SELECT floor( field ) FROM table WHERE ....
答案 1 :(得分:0)
在openbravo中的表和列中设置整数类型引用。