Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz商业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz商业套件
iBiz商业中心
提交
7f9f7ad1
提交
7f9f7ad1
编写于
11月 03, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码 [Spring Boot]
上级
91775188
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
137 行增加
和
0 行删除
+137
-0
Purchase_order_lineServiceImpl.java
...purchase/service/impl/Purchase_order_lineServiceImpl.java
+6
-0
IPurchase_order_linecalc_priceLogic.java
...se/service/logic/IPurchase_order_linecalc_priceLogic.java
+18
-0
Purchase_order_linecalc_priceLogicImpl.java
...ce/logic/impl/Purchase_order_linecalc_priceLogicImpl.java
+64
-0
Purchase_order_linecalc_priceRule.drl
...ain/resources/rules/Purchase_order_linecalc_priceRule.drl
+31
-0
Purchase_order_linecalc_priceRuleFlow.bpmn
...esources/rules/Purchase_order_linecalc_priceRuleFlow.bpmn
+18
-0
未找到文件。
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/impl/Purchase_order_lineServiceImpl.java
浏览文件 @
7f9f7ad1
...
...
@@ -94,6 +94,10 @@ public class Purchase_order_lineServiceImpl extends EBSServiceImpl<Purchase_orde
@Lazy
protected
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_uom
.
service
.
IUom_uomService
uomUomService
;
@Autowired
@Lazy
protected
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
logic
.
IPurchase_order_linecalc_priceLogic
calc_priceLogic
;
@Autowired
@Lazy
protected
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
logic
.
IPurchase_order_linecalc_amountLogic
calc_amountLogic
;
...
...
@@ -119,6 +123,7 @@ public class Purchase_order_lineServiceImpl extends EBSServiceImpl<Purchase_orde
boolean
mail_create_nolog
=
et
.
get
(
"mail_create_nolog"
)
!=
null
;
boolean
mail_notrack
=
et
.
get
(
"mail_notrack"
)
!=
null
;
fillParentData
(
et
);
calc_priceLogic
.
execute
(
et
);
if
(!
this
.
retBool
(
this
.
baseMapper
.
insert
(
et
)))
return
false
;
CachedBeanCopier
.
copy
((
AopContext
.
currentProxy
()
!=
null
?
(
IPurchase_order_lineService
)
AopContext
.
currentProxy
()
:
this
).
get
(
et
.
getId
()),
et
);
...
...
@@ -164,6 +169,7 @@ public class Purchase_order_lineServiceImpl extends EBSServiceImpl<Purchase_orde
CachedBeanCopier
.
copy
((
AopContext
.
currentProxy
()
!=
null
?
(
IPurchase_order_lineService
)
AopContext
.
currentProxy
()
:
this
).
get
(
et
.
getId
()),
old
);
boolean
mail_notrack
=
et
.
get
(
"mail_notrack"
)
!=
null
;
fillParentData
(
et
);
calc_priceLogic
.
execute
(
et
);
if
(!
update
(
et
,(
Wrapper
)
et
.
getUpdateWrapper
(
true
).
eq
(
"id"
,
et
.
getId
())))
return
false
;
CachedBeanCopier
.
copy
((
AopContext
.
currentProxy
()
!=
null
?
(
IPurchase_order_lineService
)
AopContext
.
currentProxy
()
:
this
).
get
(
et
.
getId
()),
et
);
...
...
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/logic/IPurchase_order_linecalc_priceLogic.java
0 → 100644
浏览文件 @
7f9f7ad1
package
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
logic
;
import
java.sql.Timestamp
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.HashMap
;
import
cn.ibizlab.businesscentral.core.odoo_purchase.domain.Purchase_order_line
;
/**
* 关系型数据实体[calc_price] 对象
*/
public
interface
IPurchase_order_linecalc_priceLogic
{
void
execute
(
Purchase_order_line
et
)
;
}
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/logic/impl/Purchase_order_linecalc_priceLogicImpl.java
0 → 100644
浏览文件 @
7f9f7ad1
package
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
logic
.
impl
;
import
java.sql.Timestamp
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.HashMap
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.kie.api.runtime.KieSession
;
import
org.kie.api.runtime.KieContainer
;
import
cn.ibizlab.businesscentral.core.odoo_purchase.service.logic.IPurchase_order_linecalc_priceLogic
;
import
cn.ibizlab.businesscentral.core.odoo_purchase.domain.Purchase_order_line
;
/**
* 关系型数据实体[calc_price] 对象
*/
@Slf4j
@Service
public
class
Purchase_order_linecalc_priceLogicImpl
implements
IPurchase_order_linecalc_priceLogic
{
@Autowired
private
KieContainer
kieContainer
;
@Autowired
private
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
IPurchase_order_lineService
purchase_order_lineservice
;
public
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
IPurchase_order_lineService
getPurchase_order_lineService
()
{
return
this
.
purchase_order_lineservice
;
}
@Autowired
private
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
IPurchase_order_lineService
iBzSysDefaultService
;
public
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
IPurchase_order_lineService
getIBzSysDefaultService
()
{
return
this
.
iBzSysDefaultService
;
}
public
void
execute
(
Purchase_order_line
et
){
KieSession
kieSession
=
null
;
try
{
kieSession
=
kieContainer
.
newKieSession
();
kieSession
.
insert
(
et
);
kieSession
.
setGlobal
(
"purchase_order_linecalc_pricedefault"
,
et
);
kieSession
.
setGlobal
(
"purchase_order_lineservice"
,
purchase_order_lineservice
);
kieSession
.
setGlobal
(
"iBzSysPurchase_order_lineDefaultService"
,
iBzSysDefaultService
);
kieSession
.
setGlobal
(
"curuser"
,
cn
.
ibizlab
.
businesscentral
.
util
.
security
.
AuthenticationUser
.
getAuthenticationUser
());
kieSession
.
startProcess
(
"cn.ibizlab.businesscentral.core.odoo_purchase.service.logic.purchase_order_linecalc_price"
);
}
catch
(
Exception
e
){
throw
new
RuntimeException
(
"执行[计算行金额]处理逻辑发生异常"
+
e
);
}
finally
{
if
(
kieSession
!=
null
)
kieSession
.
destroy
();
}
}
}
businesscentral-core/src/main/resources/rules/Purchase_order_linecalc_priceRule.drl
0 → 100644
浏览文件 @
7f9f7ad1
package
cn
.
ibizlab
.
businesscentral
.
odoo_purchase
.
logic
.
purchase_order_linelogic
.
calc_price
;
import
java
.
util
.
Map
;
import
java
.
util
.
HashMap
;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
org
.
springframework
.
util
.
StringUtils
;
import
org
.
springframework
.
util
.
ObjectUtils
;
import
cn
.
ibizlab
.
businesscentral
.
util
.
errors
.
BadRequestAlertException
;
global
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
domain
.
Purchase_order_line
purchase_order_linecalc_pricedefault
;
global
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
IPurchase_order_lineService
purchase_order_lineservice
;
global
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_purchase
.
service
.
IPurchase_order_lineService
iBzSysPurchase_order_lineDefaultService
;
global
cn
.
ibizlab
.
businesscentral
.
util
.
security
.
AuthenticationUser
curuser
;
no
-
loop
//
逻辑处理节点
[
开始
]
rule
"begin"
ruleflow
-
group
"purchase_order_linecalc_pricebegin"
when
then
end
//
逻辑处理节点
[
calc_price
]
rule
"deaction1"
ruleflow
-
group
"purchase_order_linecalc_pricedeaction1"
when
then
purchase_order_lineservice
.
calc_price
(
purchase_order_linecalc_pricedefault
);
update
(
purchase_order_linecalc_pricedefault
);//
更新
fact
中变量值
end
businesscentral-core/src/main/resources/rules/Purchase_order_linecalc_priceRuleFlow.bpmn
0 → 100644
浏览文件 @
7f9f7ad1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions
xmlns=
"http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:activiti=
"http://activiti.org/bpmn"
xmlns:bpmndi=
"http://www.omg.org/spec/BPMN/20100524/DI"
xmlns:dc=
"http://www.omg.org/spec/DD/20100524/DC"
xmlns:di=
"http://www.omg.org/spec/DD/20100524/DI"
xmlns:g=
"http://www.jboss.org/drools/flow/gpd"
xmlns:tns=
"http://www.jboss.org/drools"
xmlns:xsd=
"http://www.w3.org/2001/XMLSchema"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
expressionLanguage=
"http://www.mvel.org/2.0"
id=
"Definition"
name=
""
targetNamespace=
"http://www.jboss.org/drools"
typeLanguage=
"http://www.java.com/javaTypes"
>
<process
id=
"cn.ibizlab.businesscentral.core.odoo_purchase.service.logic.purchase_order_linecalc_price"
isClosed=
"false"
isExecutable=
"true"
name=
"ScoreRule"
processType=
"Private"
tns:packageName=
"cn.ibizlab.businesscentral.core.odoo_purchase.service.logic.purchase_order_linecalc_price"
>
<extensionElements>
<tns:import
name=
"java.util.Map"
/>
<tns:import
name=
"org.springframework.util.StringUtils"
/>
<tns:import
name=
"cn.ibizlab.businesscentral.util.helper.RuleUtils"
/>
<tns:global
identifier=
"purchase_order_linecalc_pricedefault"
type=
"cn.ibizlab.businesscentral.core.odoo_purchase.domain.Purchase_order_line"
/>
</extensionElements>
<startEvent
id=
"begin"
isInterrupting=
"true"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"purchase_order_linecalc_pricedeaction1"
id=
"deaction1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"calc_price"
/>
<endEvent
id=
"deaction1_end"
name=
"end"
/>
<sequenceFlow
id=
"deaction1_end_line"
sourceRef=
"deaction1"
targetRef=
"deaction1_end"
/>
<sequenceFlow
id=
"begin_deaction1"
sourceRef=
"begin"
targetRef=
"deaction1"
>
</sequenceFlow>
</process>
</definitions>
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录