Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz商业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz商业套件
iBiz商业中心
提交
c891d1e7
提交
c891d1e7
编写于
10月 28, 2020
作者:
misaka
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
单位换算Helper
上级
fcb2d945
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
91 行增加
和
0 行删除
+91
-0
UomHelper.java
...n/ibizlab/businesscentral/core/util/helper/UomHelper.java
+91
-0
未找到文件。
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/util/helper/UomHelper.java
0 → 100644
浏览文件 @
c891d1e7
package
cn
.
ibizlab
.
businesscentral
.
core
.
util
.
helper
;
import
cn.ibizlab.businesscentral.core.odoo_uom.domain.Uom_category
;
import
cn.ibizlab.businesscentral.core.odoo_uom.domain.Uom_uom
;
import
cn.ibizlab.businesscentral.core.odoo_uom.filter.Uom_uomSearchContext
;
import
cn.ibizlab.businesscentral.core.odoo_uom.service.IUom_uomService
;
import
cn.ibizlab.businesscentral.util.dict.StaticDict
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
@Component
public
class
UomHelper
{
@Autowired
IUom_uomService
uom_uomService
;
private
Map
<
Long
,
Uom_uom
>
uom_cache
=
new
HashMap
<>();
/**
* 转换
*
* @param num
* @param from
* @param to
* @return
*/
public
double
convert
(
double
num
,
Uom_uom
from
,
Uom_uom
to
)
{
if
(
from
.
getCategoryId
()
!=
to
.
getCategoryId
())
throw
new
RuntimeException
(
"计量单位类别不同,无法进行转换。"
);
if
(
from
.
getId
()
==
to
.
getId
())
return
num
;
//先转换为参考计量单位
double
_num
=
convert2reference
(
num
,
from
);
//再转换成目标单位
return
convert2other
(
_num
,
to
);
}
/**
* 转换
* @param num
* @param from
* @param to
* @return
*/
public
double
convert
(
double
num
,
long
from
,
long
to
)
{
Uom_uom
fromUom
=
this
.
getUom
(
from
);
Uom_uom
toUom
=
this
.
getUom
(
to
);
return
convert
(
num
,
fromUom
,
toUom
);
}
/**
* 获取标准计量单位
*
* @param num
* @param uom
* @return
*/
public
double
convert2reference
(
double
num
,
Uom_uom
uom
)
{
//参考计量单位
if
(
StringUtils
.
compare
(
uom
.
getUomType
(),
StaticDict
.
UOM_UOM__UOM_TYPE
.
REFERENCE
.
getValue
())
==
0
)
return
num
;
return
num
/
uom
.
getFactor
();
}
public
double
convert2other
(
double
num
,
Uom_uom
uom
)
{
//参考计量单位
if
(
StringUtils
.
compare
(
uom
.
getUomType
(),
StaticDict
.
UOM_UOM__UOM_TYPE
.
REFERENCE
.
getValue
())
==
0
)
return
num
;
return
num
/
uom
.
getFactor
();
}
private
Uom_uom
getUom
(
long
id
)
{
if
(
this
.
uom_cache
.
containsKey
(
id
))
{
return
uom_cache
.
get
(
id
);
}
Uom_uom
uom
=
uom_uomService
.
get
(
id
);
uom_cache
.
put
(
id
,
uom
);
return
uom
;
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录