Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
4434142e
提交
4434142e
编写于
2月 23, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MoneyQ 发布系统代码 [后台服务,演示应用]
上级
a83c6ff5
变更
15
隐藏空白字符变更
内嵌
并排
正在显示
15 个修改的文件
包含
1756 行增加
和
1481 行删除
+1756
-1481
get-unit-and-price-logic-base.ts
...service/ibizorder-detail/get-unit-and-price-logic-base.ts
+188
-148
guide-borrow-form-form-base.vue
...ok/guide-borrow-form-form/guide-borrow-form-form-base.vue
+1
-2
guide-wizardpanel-base.vue
...ets/ibizbook/guide-wizardpanel/guide-wizardpanel-base.vue
+1
-1
main-grid-base.vue
...src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
+6
-6
IBIZOrderDetail.json
...odel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
+414
-348
GetUnitAndPrice.json
...AENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json
+414
-348
GetUnitAndPrice.json.bpmn
...TIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.bpmn
+87
-81
GetUnitAndPrice.json.drl
...ITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.drl
+165
-133
Usr.json
...SSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
+12
-12
TreeTable.json
.../PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
+12
-12
IBIZOrderDetail.json
...odel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json
+430
-364
IBIZBOOKGanttView.json
...temodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
+12
-12
IBIZBOOKTreeGridExView.json
...el/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
+12
-12
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+1
-1
view.xml
demo-core/src/main/resources/liquibase/view.xml
+1
-1
未找到文件。
app_Web/src/service/ibizorder-detail/get-unit-and-price-logic-base.ts
浏览文件 @
4434142e
import
IBIZOrderDetailService
from
'@/service/ibizorder-detail/ibizorder-detail-service'
;
import
IBIZOrderService
from
'@/service/ibizorder/ibizorder-service'
;
import
IBIZOrderService
from
'@/service/ibizorder/ibizorder-service'
;
import
IBIZUNIProductService
from
'@/service/ibizuniproduct/ibizuniproduct-service'
;
import
IBIZUNIProductService
from
'@/service/ibizuniproduct/ibizuniproduct-service'
;
import
IBIZOrderDetailService
from
'@/service/ibizorder-detail/ibizorder-detail-service'
;
import
{
Verify
}
from
'@/utils/verify/verify'
;
import
{
Verify
}
from
'@/utils/verify/verify'
;
...
@@ -57,13 +57,13 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -57,13 +57,13 @@ export default class GetUnitAndPriceLogicBase {
* @memberof GetUnitAndPriceLogicBase
* @memberof GetUnitAndPriceLogicBase
*/
*/
public
initParams
(
opts
:
any
){
public
initParams
(
opts
:
any
){
this
.
paramsMap
.
set
(
'list'
,{});
this
.
paramsMap
.
set
(
'Default'
,
opts
);
this
.
paramsMap
.
set
(
'Order'
,{});
this
.
paramsMap
.
set
(
'Order'
,{});
this
.
paramsMap
.
set
(
'list'
,{});
this
.
paramsMap
.
set
(
'Product'
,{});
this
.
paramsMap
.
set
(
'Product'
,{});
this
.
paramsMap
.
set
(
'filter'
,{});
this
.
paramsMap
.
set
(
'filter'
,{});
this
.
paramsMap
.
set
(
'session'
,{});
this
.
paramsMap
.
set
(
'page'
,{});
this
.
paramsMap
.
set
(
'page'
,{});
this
.
paramsMap
.
set
(
'session'
,{});
this
.
paramsMap
.
set
(
'Default'
,
opts
);
}
}
...
@@ -82,7 +82,11 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -82,7 +82,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute1Cond
(
params
:
any
):
boolean
{
public
compute1Cond
(
params
:
any
):
boolean
{
return
true
;
if
(
Verify
.
testCond
(
params
.
unitprice
,
'GT'
,
'Amount'
)){
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -100,11 +104,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -100,11 +104,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute3Cond
(
params
:
any
):
boolean
{
public
compute3Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'100'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -113,11 +113,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -113,11 +113,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute4Cond
(
params
:
any
):
boolean
{
public
compute4Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'PRICE'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -126,11 +122,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -126,11 +122,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute5Cond
(
params
:
any
):
boolean
{
public
compute5Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
createdate
,
'GTANDEQ'
,
'CREATEDATE'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -139,7 +131,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -139,7 +131,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute6Cond
(
params
:
any
):
boolean
{
public
compute6Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
ordertime
,
'LTANDEQ'
,
'
'
)){
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'100
'
)){
return
true
;
return
true
;
}
else
{
}
else
{
return
false
;
return
false
;
...
@@ -152,7 +144,11 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -152,7 +144,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute7Cond
(
params
:
any
):
boolean
{
public
compute7Cond
(
params
:
any
):
boolean
{
return
true
;
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'PRICE'
)){
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -161,7 +157,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -161,7 +157,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute8Cond
(
params
:
any
):
boolean
{
public
compute8Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
unitprice
,
'GT'
,
'Amount
'
)){
if
(
Verify
.
testCond
(
params
.
createdate
,
'GTANDEQ'
,
'CREATEDATE
'
)){
return
true
;
return
true
;
}
else
{
}
else
{
return
false
;
return
false
;
...
@@ -174,7 +170,11 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -174,7 +170,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute9Cond
(
params
:
any
):
boolean
{
public
compute9Cond
(
params
:
any
):
boolean
{
return
true
;
if
(
Verify
.
testCond
(
params
.
ordertime
,
'LTANDEQ'
,
''
)){
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -237,115 +237,68 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -237,115 +237,68 @@ export default class GetUnitAndPriceLogicBase {
}
}
/**
/**
* 获取商品ID
* 大于200处理
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executePrepareparam1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
context
?
this
.
paramsMap
.
get
(
'Product'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
Object
.
assign
(
tempDstParam0Context
,{
ibizuniproduct
:
tempSrcParam0Data
[
'ibizuniproductid'
]});
Object
.
assign
(
tempDstParam0Data
,{
ibizuniproductid
:
tempSrcParam0Data
[
'ibizuniproductid'
]});
this
.
paramsMap
.
set
(
'Product'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
if
(
this
.
compute1Cond
(
params
)){
return
this
.
executeDeaction1
(
context
,
params
,
isloading
);
}
}
/**
* 调试逻辑参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEBUGPARAM
4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM
2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
获取订单信息
*
实体行为
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEACTION
2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEACTION
3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
// 行为处理节点
let
result
:
any
;
let
result
:
any
;
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'
Order
'
);
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'
Default
'
);
const
targetService
:
IBIZOrder
Service
=
new
IBIZOrder
Service
();
const
targetService
:
IBIZOrder
DetailService
=
new
IBIZOrderDetail
Service
();
if
(
targetService
[
'
Get'
]
&&
targetService
[
'Get
'
]
instanceof
Function
)
{
if
(
targetService
[
'
CountMoney'
]
&&
targetService
[
'CountMoney
'
]
instanceof
Function
)
{
result
=
await
targetService
[
'
Get
'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
result
=
await
targetService
[
'
CountMoney
'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
}
if
(
result
&&
result
.
status
==
200
){
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
if
(
this
.
compute2Cond
(
params
)){
return
this
.
executeTHROWEXCEPTION2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute3Cond
(
params
)){
return
this
.
executeDEBUGPARAM1
(
context
,
params
,
isloading
);
}
if
(
this
.
compute4Cond
(
params
)){
return
this
.
executeDEBUGPARAM2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute5Cond
(
params
)){
return
this
.
executeDEBUGPARAM4
(
context
,
params
,
isloading
);
}
if
(
this
.
compute6Cond
(
params
)){
return
this
.
executeDEBUGPARAM5
(
context
,
params
,
isloading
);
}
if
(
this
.
compute7Cond
(
params
)){
return
this
.
executeDEBUGPARAM3
(
context
,
params
,
isloading
);
}
}
}
/**
* 绑定参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeBINDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// BINDPARAM暂未支持
console
.
log
(
"BINDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
}
/**
/**
*
获取产品价格异常
*
统计金额
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeThrowexception
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDELOGIC1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
// DELOGIC暂未支持
console
.
log
(
"DELOGIC暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
统计金额
*
重置参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
DELOGIC
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
RESETPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DELOGIC
暂未支持
//
RESETPARAM
暂未支持
console
.
log
(
"
DELOGIC
暂未支持"
);
console
.
log
(
"
RESETPARAM
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
调试逻辑参数
*
大于100处理
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEBUGPARAM
5
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
...
@@ -369,13 +322,13 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -369,13 +322,13 @@ export default class GetUnitAndPriceLogicBase {
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{
unitprice
:
tempSrcParam1Data
[
'unitprice'
]});
Object
.
assign
(
tempDstParam1Data
,{
unitprice
:
tempSrcParam1Data
[
'unitprice'
]});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
if
(
this
.
compute
8
Cond
(
params
)){
if
(
this
.
compute
1
Cond
(
params
)){
return
this
.
executePREPAREPARAM3
(
context
,
params
,
isloading
);
return
this
.
executePREPAREPARAM3
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
9
Cond
(
params
)){
if
(
this
.
compute
2
Cond
(
params
)){
return
this
.
executeDELOGIC1
(
context
,
params
,
isloading
);
return
this
.
executeDELOGIC1
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
10
Cond
(
params
)){
if
(
this
.
compute
3
Cond
(
params
)){
return
this
.
executeDEACTION3
(
context
,
params
,
isloading
);
return
this
.
executeDEACTION3
(
context
,
params
,
isloading
);
}
}
}
}
...
@@ -393,39 +346,26 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -393,39 +346,26 @@ export default class GetUnitAndPriceLogicBase {
}
}
/**
/**
*
获取商品信息
*
绑定参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDeaction1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeBINDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
// BINDPARAM暂未支持
let
result
:
any
;
console
.
log
(
"BINDPARAM暂未支持"
);
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Product'
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
const
targetService
:
IBIZUNIProductService
=
new
IBIZUNIProductService
();
if
(
targetService
[
'Get'
]
&&
targetService
[
'Get'
]
instanceof
Function
)
{
result
=
await
targetService
[
'Get'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
if
(
this
.
compute11Cond
(
params
)){
return
this
.
executePrepareparam2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute12Cond
(
params
)){
return
this
.
executeThrowexception
(
context
,
params
,
isloading
);
}
}
}
}
/**
/**
*
重新建立
参数
*
调试逻辑
参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
RENEWPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
DEBUGPARAM5
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
RENEW
PARAM暂未支持
//
DEBUG
PARAM暂未支持
console
.
log
(
"
RENEW
PARAM暂未支持"
);
console
.
log
(
"
DEBUG
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
...
@@ -450,112 +390,177 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -450,112 +390,177 @@ export default class GetUnitAndPriceLogicBase {
let
tempDstParam2Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam2Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam2Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
let
tempDstParam2Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam2Data
,
context
:
tempDstParam2Context
});
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam2Data
,
context
:
tempDstParam2Context
});
if
(
this
.
compute
13
Cond
(
params
)){
if
(
this
.
compute
4
Cond
(
params
)){
return
this
.
executeDEACTION2
(
context
,
params
,
isloading
);
return
this
.
executeDEACTION2
(
context
,
params
,
isloading
);
}
}
}
}
/**
* 附加到数组参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeAPPENDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// APPENDPARAM暂未支持
console
.
log
(
"APPENDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
/**
* 重置参数
* 重置参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeRESETPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeRESETPARAM
2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// RESETPARAM暂未支持
// RESETPARAM暂未支持
console
.
log
(
"RESETPARAM暂未支持"
);
console
.
log
(
"RESETPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
排序数组参数
*
获取订单信息
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeSORTPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEACTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// SORTPARAM暂未支持
// 行为处理节点
console
.
log
(
"SORTPARAM暂未支持"
);
let
result
:
any
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Order'
);
const
targetService
:
IBIZOrderService
=
new
IBIZOrderService
();
if
(
targetService
[
'Get'
]
&&
targetService
[
'Get'
]
instanceof
Function
)
{
result
=
await
targetService
[
'Get'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
if
(
this
.
compute5Cond
(
params
)){
return
this
.
executeTHROWEXCEPTION2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute6Cond
(
params
)){
return
this
.
executeDEBUGPARAM1
(
context
,
params
,
isloading
);
}
if
(
this
.
compute7Cond
(
params
)){
return
this
.
executeDEBUGPARAM2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute8Cond
(
params
)){
return
this
.
executeDEBUGPARAM4
(
context
,
params
,
isloading
);
}
if
(
this
.
compute9Cond
(
params
)){
return
this
.
executeDEBUGPARAM5
(
context
,
params
,
isloading
);
}
if
(
this
.
compute10Cond
(
params
)){
return
this
.
executeDEBUGPARAM3
(
context
,
params
,
isloading
);
}
}
}
}
/**
/**
*
拷贝参数
*
实体数据集
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
COPYPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
DEDATASET
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
COPYPARAM
暂未支持
//
DEDATASET
暂未支持
console
.
log
(
"
COPYPARAM
暂未支持"
);
console
.
log
(
"
DEDATASET
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
大于200处理
*
调试逻辑参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEBUGPARAM
2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM
4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
附加到数组参数
*
Setting
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeAPPENDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executePREPAREPARAM4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// APPENDPARAM暂未支持
// 准备参数节点
console
.
log
(
"APPENDPARAM暂未支持"
);
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
context
?
this
.
paramsMap
.
get
(
'Product'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam0Data
,{
unitprice
:
tempSrcParam0Data
[
'unitprice'
]});
this
.
paramsMap
.
set
(
'Product'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
let
tempDstParam1Context
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
context
?
this
.
paramsMap
.
get
(
'Product'
).
context
:{};
let
tempDstParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{:
tempSrcParam1Data
[
''
]});
this
.
paramsMap
.
set
(
'Product'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
let
tempDstParam2Context
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
context
?
this
.
paramsMap
.
get
(
'Product'
).
context
:{};
let
tempDstParam2Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam2Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam2Data
,{:
tempSrcParam2Data
[
''
]});
this
.
paramsMap
.
set
(
'Product'
,{
data
:
tempDstParam2Data
,
context
:
tempDstParam2Context
});
let
tempDstParam3Context
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
context
?
this
.
paramsMap
.
get
(
'Product'
).
context
:{};
let
tempDstParam3Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam3Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam3Data
,{
unitprice
:
tempSrcParam3Data
[
''
]});
this
.
paramsMap
.
set
(
'Product'
,{
data
:
tempDstParam3Data
,
context
:
tempDstParam3Context
});
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
大于100处理
*
获取商品ID
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEBUGPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executePrepareparam1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
// 准备参数节点
console
.
log
(
"DEBUGPARAM暂未支持"
);
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
if
(
this
.
compute11Cond
(
params
)){
return
this
.
executeDeaction1
(
context
,
params
,
isloading
);
}
}
}
/**
/**
*
实体行为
*
获取商品信息
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeD
EACTION3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeD
eaction1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
// 行为处理节点
let
result
:
any
;
let
result
:
any
;
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'
Defaul
t'
);
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'
Produc
t'
);
const
targetService
:
IBIZ
OrderDetailService
=
new
IBIZOrderDetail
Service
();
const
targetService
:
IBIZ
UNIProductService
=
new
IBIZUNIProduct
Service
();
if
(
targetService
[
'
CountMoney'
]
&&
targetService
[
'CountMoney
'
]
instanceof
Function
)
{
if
(
targetService
[
'
Get'
]
&&
targetService
[
'Get
'
]
instanceof
Function
)
{
result
=
await
targetService
[
'
CountMoney
'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
result
=
await
targetService
[
'
Get
'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
}
if
(
result
&&
result
.
status
==
200
){
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
if
(
this
.
compute12Cond
(
params
)){
return
this
.
executePrepareparam2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute13Cond
(
params
)){
return
this
.
executeThrowexception
(
context
,
params
,
isloading
);
}
}
}
}
}
/**
/**
*
实体数据集
*
排序数组参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
DEDATASET
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
SORTPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEDATASET
暂未支持
//
SORTPARAM
暂未支持
console
.
log
(
"
DEDATASET
暂未支持"
);
console
.
log
(
"
SORTPARAM
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
...
@@ -582,5 +587,40 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -582,5 +587,40 @@ export default class GetUnitAndPriceLogicBase {
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
* 重新建立参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeRENEWPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// RENEWPARAM暂未支持
console
.
log
(
"RENEWPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
* 获取产品价格异常
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeThrowexception
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
* 拷贝参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeCOPYPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// COPYPARAM暂未支持
console
.
log
(
"COPYPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
}
\ No newline at end of file
app_Web/src/widgets/ibizbook/guide-borrow-form-form/guide-borrow-form-form-base.vue
浏览文件 @
4434142e
...
@@ -1853,7 +1853,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
...
@@ -1853,7 +1853,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
if
(
copyData
&&
Object
.
keys
(
copyData
).
length
>
0
){
if
(
copyData
&&
Object
.
keys
(
copyData
).
length
>
0
){
Object
.
keys
(
copyData
).
forEach
((
key
:
string
)
=>
{
Object
.
keys
(
copyData
).
forEach
((
key
:
string
)
=>
{
if
(
!
arg
.
hasOwnProperty
(
key
)
||
(
arg
.
hasOwnProperty
(
key
)
&&
(
copyData
[
key
]
!==
null
&&
copyData
[
key
]
!==
undefined
))){
if
(
!
arg
.
hasOwnProperty
(
key
)
||
(
arg
.
hasOwnProperty
(
key
)
&&
(
copyData
[
key
]
!==
null
&&
copyData
[
key
]
!==
undefined
))){
ey
]:
copyData
[
key
]});
Object
.
assign
(
responseData
,{[
k
ey
]:
copyData
[
key
]});
}
}
})
})
}
}
...
@@ -2222,5 +2222,4 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
...
@@ -2222,5 +2222,4 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
<
style
lang=
'less'
>
<
style
lang=
'less'
>
@import './guide-borrow-form-form.less';
@import './guide-borrow-form-form.less';
</
style
>
de-borrow-form-form.less';
</
style
>
</
style
>
\ No newline at end of file
app_Web/src/widgets/ibizbook/guide-wizardpanel/guide-wizardpanel-base.vue
浏览文件 @
4434142e
...
@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
...
@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
* @type {Boolean}
* @type {Boolean}
* @memberof GuideBase
* @memberof GuideBase
*/
*/
public
isShowStepBar
:
Boolean
=
fals
e
;
public
isShowStepBar
:
Boolean
=
tru
e
;
/**
/**
* 获取多项数据
* 获取多项数据
...
...
app_Web/src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
浏览文件 @
4434142e
...
@@ -1011,7 +1011,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1011,7 +1011,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
fetchAction
)
{
if
(
!
this
.
fetchAction
)
{
this
.
$Notice
.
error
({
this
.
$Notice
.
error
({
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
desc
:
"IBIZOrderDetail
S
GridView9"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
desc
:
"IBIZOrderDetailGridView9"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
});
});
return
;
return
;
}
}
...
@@ -1140,7 +1140,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1140,7 +1140,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
removeAction
)
{
if
(
!
this
.
removeAction
)
{
this
.
$Notice
.
error
({
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
S
GridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
desc
:
'IBIZOrderDetailGridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
});
return
;
return
;
}
}
...
@@ -1254,7 +1254,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1254,7 +1254,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
addBatch
(
arg
:
any
=
{}):
void
{
public
addBatch
(
arg
:
any
=
{}):
void
{
if
(
!
this
.
fetchAction
){
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
S
GridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailGridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
if
(
!
arg
){
if
(
!
arg
){
...
@@ -2151,7 +2151,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2151,7 +2151,7 @@ export default class MainBase extends Vue implements ControlInterface {
try
{
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
!
this
.
createAction
)
{
if
(
!
this
.
createAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
S
GridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailGridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
@@ -2160,7 +2160,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2160,7 +2160,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
)
{
if
(
!
this
.
updateAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
S
GridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailGridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
@@ -2236,7 +2236,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2236,7 +2236,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
loaddraftAction
){
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
S
GridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
desc
:
'IBIZOrderDetailGridView9'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
});
});
return
;
return
;
}
}
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
浏览文件 @
4434142e
...
@@ -3890,227 +3890,37 @@
...
@@ -3890,227 +3890,37 @@
"topPos"
:
216
,
"topPos"
:
216
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"Prepareparam1"
,
"codeName"
:
"DEBUGPARAM2"
,
"leftPos"
:
313
,
"getDstPSDELogicParam"
:
{
"logicNodeType"
:
"PREPAREPARAM"
,
"modelref"
:
true
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"id"
:
"Default"
"name"
:
"获取商品ID"
,
},
"getPSDELogicLinks"
:
[
{
"leftPos"
:
1310
,
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam1"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZUNIPRODUCTID"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Default[IBIZUNIPRODUCTID] ==> Product[IBIZUNIPRODUCTID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"logicNodeType"
:
"DEBUGPARAM"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
2
"
,
"name"
:
"
调试逻辑参数
"
,
"name"
:
"
大于200处理
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
2
"
,
"topPos"
:
50
"topPos"
:
-
50
},
{
},
{
"codeName"
:
"DEACTION
2
"
,
"codeName"
:
"DEACTION
3
"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
/PSDEACTIONS/Get
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail/PSDEACTIONS/CountMoney
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Order
"
"id"
:
"
Default
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail
.json"
},
},
"leftPos"
:
97
1
,
"leftPos"
:
100
1
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"name"
:
"获取订单信息"
,
"name"
:
"实体行为"
,
"getPSDELogicLinks"
:
[
{
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"getDstPSDELogicNode"
:
{
"topPos"
:
318
"modelref"
:
true
,
"id"
:
"THROWEXCEPTION2"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"catchLink"
:
true
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"name"
:
">100"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) (100)"
,
"paramValue"
:
"100"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM2"
},
"name"
:
">200"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) [PRICE]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"PRICE"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM4"
},
"name"
:
"源数据对象属性"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GTANDEQ"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[CREATEDATE] 大于等于(>=) Product[CREATEDATE]"
,
"paramType"
:
"SRCENTITYFIELD"
,
"paramValue"
:
"CREATEDATE"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM5"
},
"name"
:
"订单小于当前时间"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"LTANDEQ"
,
"dstFieldName"
:
"ORDERTIME"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[ORDERTIME] 小于等于(<=) [当前时间]"
,
"paramType"
:
"CURTIME"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
41
,
"logicNodeType"
:
"BINDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"topPos"
:
80
},
{
"codeName"
:
"Throwexception"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
},
{
"codeName"
:
"DELOGIC1"
,
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"getDstPSDELogic"
:
{
...
@@ -4132,13 +3942,25 @@
...
@@ -4132,13 +3942,25 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"topPos"
:
189
"topPos"
:
189
},
{
},
{
"codeName"
:
"DEBUGPARAM5"
,
"codeName"
:
"RESETPARAM1"
,
"leftPos"
:
65
,
"logicNodeType"
:
"RESETPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
1
"
,
"name"
:
"
调试逻辑参数
"
,
"name"
:
"
大于100处理
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
1
"
,
"topPos"
:
-
188
"topPos"
:
-
420
},
{
},
{
"codeName"
:
"Prepareparam2"
,
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -4254,60 +4076,29 @@
...
@@ -4254,60 +4076,29 @@
},
},
"topPos"
:
80
"topPos"
:
80
},
{
},
{
"codeName"
:
"Deaction1"
,
"codeName"
:
"BINDPARAM1"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"getDstPSDataEntity"
:
{
"leftPos"
:
41
,
"modelref"
:
true
,
"logicNodeType"
:
"BINDPARAM"
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
},
"name"
:
"绑定参数"
,
"leftPos"
:
555
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"logicNodeType"
:
"DEACTION"
,
"getSrcPSDELogicParam"
:
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"name"
:
"获取商品信息"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"leftPos"
:
177
,
"topPos"
:
80
"logicNodeType"
:
"RENEWPARAM"
,
},
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"codeName"
:
"DEBUGPARAM5"
,
"name"
:
"重新建立参数"
,
"leftPos"
:
1310
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"topPos"
:
129
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"topPos"
:
-188
},
{
},
{
"codeName"
:
"PREPAREPARAM3"
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -4361,50 +4152,6 @@
...
@@ -4361,50 +4152,6 @@
}
],
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"topPos"
:
-38
},
{
"codeName"
:
"RESETPARAM1"
,
"leftPos"
:
65
,
"logicNodeType"
:
"RESETPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
258
,
"logicNodeType"
:
"COPYPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"name"
:
"拷贝参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"topPos"
:
10
},
{
"codeName"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"name"
:
"大于200处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
},
{
"codeName"
:
"APPENDPARAM1"
,
"codeName"
:
"APPENDPARAM1"
,
"leftPos"
:
439
,
"leftPos"
:
439
,
...
@@ -4414,37 +4161,166 @@
...
@@ -4414,37 +4161,166 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"topPos"
:
-10
"topPos"
:
-10
},
{
},
{
"codeName"
:
"DEBUGPARAM1"
,
"codeName"
:
"RESETPARAM2"
,
"getDstPSDELogicParam"
:
{
"leftPos"
:
145
,
"modelref"
:
true
,
"logicNodeType"
:
"RESETPARAM"
,
"id"
:
"Default"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM2"
,
},
"name"
:
"重置参数"
,
"leftPos"
:
1310
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM2"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"topPos"
:
378
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"name"
:
"大于100处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
},
{
"codeName"
:
"DEACTION
3
"
,
"codeName"
:
"DEACTION
2
"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail/PSDEACTIONS/CountMoney
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
/PSDEACTIONS/Get
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Default
"
"id"
:
"
Order
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
},
"leftPos"
:
100
1
,
"leftPos"
:
97
1
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"name"
:
"实体行为"
,
"name"
:
"获取订单信息"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"getPSDELogicLinks"
:
[
{
"topPos"
:
318
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"THROWEXCEPTION2"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"catchLink"
:
true
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"name"
:
">100"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) (100)"
,
"paramValue"
:
"100"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM2"
},
"name"
:
">200"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) [PRICE]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"PRICE"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM4"
},
"name"
:
"源数据对象属性"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GTANDEQ"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[CREATEDATE] 大于等于(>=) Product[CREATEDATE]"
,
"paramType"
:
"SRCENTITYFIELD"
,
"paramValue"
:
"CREATEDATE"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM5"
},
"name"
:
"订单小于当前时间"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"LTANDEQ"
,
"dstFieldName"
:
"ORDERTIME"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[ORDERTIME] 小于等于(<=) [当前时间]"
,
"paramType"
:
"CURTIME"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"DEDATASET1"
,
"getDstPSDEDataSet"
:
{
"getDstPSDEDataSet"
:
{
...
@@ -4469,6 +4345,158 @@
...
@@ -4469,6 +4345,158 @@
"id"
:
"page"
"id"
:
"page"
},
},
"topPos"
:
284
"topPos"
:
284
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
"topPos"
:
50
},
{
"codeName"
:
"PREPAREPARAM4"
,
"leftPos"
:
362
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM4"
,
"name"
:
"Setting"
,
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[UNITPRICE] ==> Product[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product ==> Product"
,
"paramAction"
:
"COPYPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[undefined]"
,
"paramAction"
:
"BINDPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[UNITPRICE]"
,
"paramAction"
:
"APPENDPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM4"
,
"topPos"
:
438
},
{
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"name"
:
"获取商品ID"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam1"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZUNIPRODUCTTYPE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"dstSortDir"
:
"ASC"
,
"name"
:
"空值(NULL) ==> Order[IBIZUNIPRODUCTTYPE]"
,
"paramAction"
:
"SORTPARAM"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"srcValue"
:
"zzz"
,
"srcValueType"
:
"NULLVALUE"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"Deaction1"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
},
"leftPos"
:
555
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"name"
:
"获取商品信息"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
},
{
"codeName"
:
"THROWEXCEPTION2"
,
"codeName"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorCode"
:
0
,
...
@@ -4491,27 +4519,46 @@
...
@@ -4491,27 +4519,46 @@
"name"
:
"调试逻辑参数"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
"topPos"
:
140
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Default"
,
"codeName"
:
"RENEWPARAM1"
,
"logicName"
:
"传入变量"
,
"getDstPSDELogicParam"
:
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"name"
:
"传入变量"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
"
"
id"
:
"Product
"
},
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"leftPos"
:
177
,
"default"
:
true
,
"logicNodeType"
:
"RENEWPARAM"
,
"entityParam"
:
true
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"topPos"
:
129
},
{
},
{
"codeName"
:
"Throwexception"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
258
,
"logicNodeType"
:
"COPYPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"name"
:
"拷贝参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"topPos"
:
10
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Order"
,
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
...
@@ -4522,6 +4569,13 @@
...
@@ -4522,6 +4569,13 @@
},
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
"entityParam"
:
true
},
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Product"
,
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
"logicName"
:
"商品"
,
...
@@ -4540,6 +4594,13 @@
...
@@ -4540,6 +4594,13 @@
"name"
:
"filter"
,
"name"
:
"filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"filterParam"
:
true
"filterParam"
:
true
},
{
"codeName"
:
"page"
,
"logicName"
:
"page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"name"
:
"page"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"entityPageParam"
:
true
},
{
},
{
"codeName"
:
"session"
,
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"logicName"
:
"session"
,
...
@@ -4548,12 +4609,17 @@
...
@@ -4548,12 +4609,17 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"sessionParam"
:
true
"sessionParam"
:
true
},
{
},
{
"codeName"
:
"page"
,
"codeName"
:
"Default"
,
"logicName"
:
"page"
,
"logicName"
:
"传入变量"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"name"
:
"page"
,
"name"
:
"传入变量"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"getParamPSDataEntity"
:
{
"entityPageParam"
:
true
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"default"
:
true
,
"entityParam"
:
true
}
],
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
"getStartPSDELogicNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json
浏览文件 @
4434142e
...
@@ -26,227 +26,37 @@
...
@@ -26,227 +26,37 @@
"topPos"
:
216
,
"topPos"
:
216
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"Prepareparam1"
,
"codeName"
:
"DEBUGPARAM2"
,
"leftPos"
:
313
,
"getDstPSDELogicParam"
:
{
"logicNodeType"
:
"PREPAREPARAM"
,
"modelref"
:
true
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"id"
:
"Default"
"name"
:
"获取商品ID"
,
},
"getPSDELogicLinks"
:
[
{
"leftPos"
:
1310
,
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam1"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZUNIPRODUCTID"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Default[IBIZUNIPRODUCTID] ==> Product[IBIZUNIPRODUCTID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"logicNodeType"
:
"DEBUGPARAM"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
2
"
,
"name"
:
"
调试逻辑参数
"
,
"name"
:
"
大于200处理
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
2
"
,
"topPos"
:
50
"topPos"
:
-
50
},
{
},
{
"codeName"
:
"DEACTION
2
"
,
"codeName"
:
"DEACTION
3
"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
/PSDEACTIONS/Get
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail/PSDEACTIONS/CountMoney
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Order
"
"id"
:
"
Default
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail
.json"
},
},
"leftPos"
:
97
1
,
"leftPos"
:
100
1
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"name"
:
"获取订单信息"
,
"name"
:
"实体行为"
,
"getPSDELogicLinks"
:
[
{
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"getDstPSDELogicNode"
:
{
"topPos"
:
318
"modelref"
:
true
,
"id"
:
"THROWEXCEPTION2"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"catchLink"
:
true
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"name"
:
">100"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) (100)"
,
"paramValue"
:
"100"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM2"
},
"name"
:
">200"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) [PRICE]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"PRICE"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM4"
},
"name"
:
"源数据对象属性"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GTANDEQ"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[CREATEDATE] 大于等于(>=) Product[CREATEDATE]"
,
"paramType"
:
"SRCENTITYFIELD"
,
"paramValue"
:
"CREATEDATE"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM5"
},
"name"
:
"订单小于当前时间"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"LTANDEQ"
,
"dstFieldName"
:
"ORDERTIME"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[ORDERTIME] 小于等于(<=) [当前时间]"
,
"paramType"
:
"CURTIME"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
41
,
"logicNodeType"
:
"BINDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"topPos"
:
80
},
{
"codeName"
:
"Throwexception"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
},
{
"codeName"
:
"DELOGIC1"
,
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"getDstPSDELogic"
:
{
...
@@ -268,13 +78,25 @@
...
@@ -268,13 +78,25 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"topPos"
:
189
"topPos"
:
189
},
{
},
{
"codeName"
:
"DEBUGPARAM5"
,
"codeName"
:
"RESETPARAM1"
,
"leftPos"
:
65
,
"logicNodeType"
:
"RESETPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
1
"
,
"name"
:
"
调试逻辑参数
"
,
"name"
:
"
大于100处理
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
1
"
,
"topPos"
:
-
188
"topPos"
:
-
420
},
{
},
{
"codeName"
:
"Prepareparam2"
,
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -390,60 +212,29 @@
...
@@ -390,60 +212,29 @@
},
},
"topPos"
:
80
"topPos"
:
80
},
{
},
{
"codeName"
:
"Deaction1"
,
"codeName"
:
"BINDPARAM1"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"getDstPSDataEntity"
:
{
"leftPos"
:
41
,
"modelref"
:
true
,
"logicNodeType"
:
"BINDPARAM"
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
},
"name"
:
"绑定参数"
,
"leftPos"
:
555
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"logicNodeType"
:
"DEACTION"
,
"getSrcPSDELogicParam"
:
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"name"
:
"获取商品信息"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"leftPos"
:
177
,
"topPos"
:
80
"logicNodeType"
:
"RENEWPARAM"
,
},
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"codeName"
:
"DEBUGPARAM5"
,
"name"
:
"重新建立参数"
,
"leftPos"
:
1310
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"topPos"
:
129
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"topPos"
:
-188
},
{
},
{
"codeName"
:
"PREPAREPARAM3"
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -497,50 +288,6 @@
...
@@ -497,50 +288,6 @@
}
],
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"topPos"
:
-38
},
{
"codeName"
:
"RESETPARAM1"
,
"leftPos"
:
65
,
"logicNodeType"
:
"RESETPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
258
,
"logicNodeType"
:
"COPYPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"name"
:
"拷贝参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"topPos"
:
10
},
{
"codeName"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"name"
:
"大于200处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
},
{
"codeName"
:
"APPENDPARAM1"
,
"codeName"
:
"APPENDPARAM1"
,
"leftPos"
:
439
,
"leftPos"
:
439
,
...
@@ -550,37 +297,166 @@
...
@@ -550,37 +297,166 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"topPos"
:
-10
"topPos"
:
-10
},
{
},
{
"codeName"
:
"DEBUGPARAM1"
,
"codeName"
:
"RESETPARAM2"
,
"getDstPSDELogicParam"
:
{
"leftPos"
:
145
,
"modelref"
:
true
,
"logicNodeType"
:
"RESETPARAM"
,
"id"
:
"Default"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM2"
,
},
"name"
:
"重置参数"
,
"leftPos"
:
1310
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM2"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"topPos"
:
378
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"name"
:
"大于100处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
},
{
"codeName"
:
"DEACTION
3
"
,
"codeName"
:
"DEACTION
2
"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail/PSDEACTIONS/CountMoney
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
/PSDEACTIONS/Get
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Default
"
"id"
:
"
Order
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
},
"leftPos"
:
100
1
,
"leftPos"
:
97
1
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"name"
:
"实体行为"
,
"name"
:
"获取订单信息"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"getPSDELogicLinks"
:
[
{
"topPos"
:
318
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"THROWEXCEPTION2"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"catchLink"
:
true
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"name"
:
">100"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) (100)"
,
"paramValue"
:
"100"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM2"
},
"name"
:
">200"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) [PRICE]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"PRICE"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM4"
},
"name"
:
"源数据对象属性"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GTANDEQ"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[CREATEDATE] 大于等于(>=) Product[CREATEDATE]"
,
"paramType"
:
"SRCENTITYFIELD"
,
"paramValue"
:
"CREATEDATE"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM5"
},
"name"
:
"订单小于当前时间"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"LTANDEQ"
,
"dstFieldName"
:
"ORDERTIME"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[ORDERTIME] 小于等于(<=) [当前时间]"
,
"paramType"
:
"CURTIME"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"DEDATASET1"
,
"getDstPSDEDataSet"
:
{
"getDstPSDEDataSet"
:
{
...
@@ -605,6 +481,158 @@
...
@@ -605,6 +481,158 @@
"id"
:
"page"
"id"
:
"page"
},
},
"topPos"
:
284
"topPos"
:
284
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
"topPos"
:
50
},
{
"codeName"
:
"PREPAREPARAM4"
,
"leftPos"
:
362
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM4"
,
"name"
:
"Setting"
,
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[UNITPRICE] ==> Product[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product ==> Product"
,
"paramAction"
:
"COPYPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[undefined]"
,
"paramAction"
:
"BINDPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[UNITPRICE]"
,
"paramAction"
:
"APPENDPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM4"
,
"topPos"
:
438
},
{
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"name"
:
"获取商品ID"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam1"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZUNIPRODUCTTYPE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"dstSortDir"
:
"ASC"
,
"name"
:
"空值(NULL) ==> Order[IBIZUNIPRODUCTTYPE]"
,
"paramAction"
:
"SORTPARAM"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"srcValue"
:
"zzz"
,
"srcValueType"
:
"NULLVALUE"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"Deaction1"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
},
"leftPos"
:
555
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"name"
:
"获取商品信息"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
},
{
"codeName"
:
"THROWEXCEPTION2"
,
"codeName"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorCode"
:
0
,
...
@@ -627,27 +655,46 @@
...
@@ -627,27 +655,46 @@
"name"
:
"调试逻辑参数"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
"topPos"
:
140
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Default"
,
"codeName"
:
"RENEWPARAM1"
,
"logicName"
:
"传入变量"
,
"getDstPSDELogicParam"
:
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"name"
:
"传入变量"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
"
"
id"
:
"Product
"
},
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"leftPos"
:
177
,
"default"
:
true
,
"logicNodeType"
:
"RENEWPARAM"
,
"entityParam"
:
true
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"topPos"
:
129
},
{
},
{
"codeName"
:
"Throwexception"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
258
,
"logicNodeType"
:
"COPYPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"name"
:
"拷贝参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/COPYPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"topPos"
:
10
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Order"
,
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
...
@@ -658,6 +705,13 @@
...
@@ -658,6 +705,13 @@
},
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
"entityParam"
:
true
},
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Product"
,
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
"logicName"
:
"商品"
,
...
@@ -676,6 +730,13 @@
...
@@ -676,6 +730,13 @@
"name"
:
"filter"
,
"name"
:
"filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"filterParam"
:
true
"filterParam"
:
true
},
{
"codeName"
:
"page"
,
"logicName"
:
"page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"name"
:
"page"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"entityPageParam"
:
true
},
{
},
{
"codeName"
:
"session"
,
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"logicName"
:
"session"
,
...
@@ -684,12 +745,17 @@
...
@@ -684,12 +745,17 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"sessionParam"
:
true
"sessionParam"
:
true
},
{
},
{
"codeName"
:
"page"
,
"codeName"
:
"Default"
,
"logicName"
:
"page"
,
"logicName"
:
"传入变量"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"name"
:
"page"
,
"name"
:
"传入变量"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"getParamPSDataEntity"
:
{
"entityPageParam"
:
true
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"default"
:
true
,
"entityParam"
:
true
}
],
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
"getStartPSDELogicNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.bpmn
浏览文件 @
4434142e
...
@@ -5,175 +5,181 @@
...
@@ -5,175 +5,181 @@
<tns:import
name=
"java.util.Map"
/>
<tns:import
name=
"java.util.Map"
/>
<tns:import
name=
"org.springframework.util.StringUtils"
/>
<tns:import
name=
"org.springframework.util.StringUtils"
/>
<tns:import
name=
"cn.ibizlab.util.helper.RuleUtils"
/>
<tns:import
name=
"cn.ibizlab.util.helper.RuleUtils"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricelist"
type=
"refentity"
/>
<tns:metaData
express=
""
name=
"ibizorderdetailgetunitandpricedefault"
type=
"entity"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZOrder()"
name=
"ibizorderdetailgetunitandpriceorder"
type=
"refentity"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZOrder()"
name=
"ibizorderdetailgetunitandpriceorder"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricelist"
type=
"refentity"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZUNIProduct()"
name=
"ibizorderdetailgetunitandpriceproduct"
type=
"refentity"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZUNIProduct()"
name=
"ibizorderdetailgetunitandpriceproduct"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricefilter"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricefilter"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricesession"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricepage"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricepage"
type=
"refentity"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderService))"
name=
"ibizorderservice"
type=
"service"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricesession"
type=
"refentity"
/>
<tns:metaData
express=
""
name=
"ibizorderdetailgetunitandpricedefault"
type=
"entity"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"ibizorderdetailservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"ibizorderdetailservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZBOOKService))"
name=
"ibizbookservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZBOOKService))"
name=
"ibizbookservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderService))"
name=
"ibizorderservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZUNIProductService))"
name=
"ibizuniproductservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZUNIProductService))"
name=
"ibizuniproductservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"iBzSysIbizorderdetailDefaultService"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"iBzSysIbizorderdetailDefaultService"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.AuthenticationUser).getAuthenticationUser()"
name=
"curuser"
type=
"session"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.AuthenticationUser).getAuthenticationUser()"
name=
"curuser"
type=
"session"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpricedefault"
type=
"cn.ibizlab.core.sample.domain.IBIZOrderDetail"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceorder"
type=
"cn.ibizlab.core.sample.domain.IBIZOrder"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceorder"
type=
"cn.ibizlab.core.sample.domain.IBIZOrder"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceproduct"
type=
"cn.ibizlab.core.sample.domain.IBIZUNIProduct"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceproduct"
type=
"cn.ibizlab.core.sample.domain.IBIZUNIProduct"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpricedefault"
type=
"cn.ibizlab.core.sample.domain.IBIZOrderDetail"
/>
</extensionElements>
</extensionElements>
<startEvent
id=
"begin"
isInterrupting=
"true"
/>
<startEvent
id=
"begin"
isInterrupting=
"true"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam1"
id=
"prepareparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品ID"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam2"
id=
"debugparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"大于200处理"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam4"
id=
"debugparam4"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam2_end"
name=
"end"
/>
<endEvent
id=
"debugparam4_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam2_end_line"
sourceRef=
"debugparam2"
targetRef=
"debugparam2_end"
/>
<sequenceFlow
id=
"debugparam4_end_line"
sourceRef=
"debugparam4"
targetRef=
"debugparam4_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction3"
id=
"deaction3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体行为"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction2"
id=
"deaction2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息"
/>
<endEvent
id=
"deaction3_end"
name=
"end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricebindparam1"
id=
"bindparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"绑定参数"
/>
<sequenceFlow
id=
"deaction3_end_line"
sourceRef=
"deaction3"
targetRef=
"deaction3_end"
/>
<endEvent
id=
"bindparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"bindparam1_end_line"
sourceRef=
"bindparam1"
targetRef=
"bindparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception"
id=
"throwexception"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取产品价格异常"
/>
<endEvent
id=
"throwexception_end"
name=
"end"
/>
<sequenceFlow
id=
"throwexception_end_line"
sourceRef=
"throwexception"
targetRef=
"throwexception_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedelogic1"
id=
"delogic1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"统计金额"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedelogic1"
id=
"delogic1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"统计金额"
/>
<endEvent
id=
"delogic1_end"
name=
"end"
/>
<endEvent
id=
"delogic1_end"
name=
"end"
/>
<sequenceFlow
id=
"delogic1_end_line"
sourceRef=
"delogic1"
targetRef=
"delogic1_end"
/>
<sequenceFlow
id=
"delogic1_end_line"
sourceRef=
"delogic1"
targetRef=
"delogic1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam5"
id=
"debugparam5"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceresetparam1"
id=
"resetparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重置参数"
/>
<endEvent
id=
"debugparam5_end"
name=
"end"
/>
<endEvent
id=
"resetparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam5_end_line"
sourceRef=
"debugparam5"
targetRef=
"debugparam5_end"
/>
<sequenceFlow
id=
"resetparam1_end_line"
sourceRef=
"resetparam1"
targetRef=
"resetparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam1"
id=
"debugparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"大于100处理"
/>
<endEvent
id=
"debugparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam1_end_line"
sourceRef=
"debugparam1"
targetRef=
"debugparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam2"
id=
"prepareparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"填充单位和单价"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam2"
id=
"prepareparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"填充单位和单价"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataquery1"
id=
"dedataquery1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataquery1"
id=
"dedataquery1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询"
/>
<endEvent
id=
"dedataquery1_end"
name=
"end"
/>
<endEvent
id=
"dedataquery1_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataquery1_end_line"
sourceRef=
"dedataquery1"
targetRef=
"dedataquery1_end"
/>
<sequenceFlow
id=
"dedataquery1_end_line"
sourceRef=
"dedataquery1"
targetRef=
"dedataquery1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction1"
id=
"deaction1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品信息"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricebindparam1"
id=
"bindparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"绑定参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricerenewparam1"
id=
"renewparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重新建立参数"
/>
<endEvent
id=
"bindparam1_end"
name=
"end"
/>
<endEvent
id=
"renewparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"bindparam1_end_line"
sourceRef=
"bindparam1"
targetRef=
"bindparam1_end"
/>
<sequenceFlow
id=
"renewparam1_end_line"
sourceRef=
"renewparam1"
targetRef=
"renewparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam5"
id=
"debugparam5"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam5_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam5_end_line"
sourceRef=
"debugparam5"
targetRef=
"debugparam5_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam3"
id=
"prepareparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"设置orderid"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam3"
id=
"prepareparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"设置orderid"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceresetparam1"
id=
"resetparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重置参数"
/>
<endEvent
id=
"resetparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"resetparam1_end_line"
sourceRef=
"resetparam1"
targetRef=
"resetparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricesortparam1"
id=
"sortparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"排序数组参数"
/>
<endEvent
id=
"sortparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"sortparam1_end_line"
sourceRef=
"sortparam1"
targetRef=
"sortparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricecopyparam1"
id=
"copyparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"拷贝参数"
/>
<endEvent
id=
"copyparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"copyparam1_end_line"
sourceRef=
"copyparam1"
targetRef=
"copyparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam2"
id=
"debugparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"大于200处理"
/>
<endEvent
id=
"debugparam2_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam2_end_line"
sourceRef=
"debugparam2"
targetRef=
"debugparam2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceappendparam1"
id=
"appendparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"附加到数组参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceappendparam1"
id=
"appendparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"附加到数组参数"
/>
<endEvent
id=
"appendparam1_end"
name=
"end"
/>
<endEvent
id=
"appendparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"appendparam1_end_line"
sourceRef=
"appendparam1"
targetRef=
"appendparam1_end"
/>
<sequenceFlow
id=
"appendparam1_end_line"
sourceRef=
"appendparam1"
targetRef=
"appendparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam1"
id=
"debugparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"大于100处理"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceresetparam2"
id=
"resetparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重置参数"
/>
<endEvent
id=
"debugparam1_end"
name=
"end"
/>
<endEvent
id=
"resetparam2_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam1_end_line"
sourceRef=
"debugparam1"
targetRef=
"debugparam1_end"
/>
<sequenceFlow
id=
"resetparam2_end_line"
sourceRef=
"resetparam2"
targetRef=
"resetparam2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction3"
id=
"deaction3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体行为"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction2"
id=
"deaction2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息"
/>
<endEvent
id=
"deaction3_end"
name=
"end"
/>
<sequenceFlow
id=
"deaction3_end_line"
sourceRef=
"deaction3"
targetRef=
"deaction3_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataset1"
id=
"dedataset1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据集"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataset1"
id=
"dedataset1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据集"
/>
<endEvent
id=
"dedataset1_end"
name=
"end"
/>
<endEvent
id=
"dedataset1_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataset1_end_line"
sourceRef=
"dedataset1"
targetRef=
"dedataset1_end"
/>
<sequenceFlow
id=
"dedataset1_end_line"
sourceRef=
"dedataset1"
targetRef=
"dedataset1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam4"
id=
"debugparam4"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam4_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam4_end_line"
sourceRef=
"debugparam4"
targetRef=
"debugparam4_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam4"
id=
"prepareparam4"
implementation=
"http://www.jboss.org/drools/rule"
name=
"Setting"
/>
<endEvent
id=
"prepareparam4_end"
name=
"end"
/>
<sequenceFlow
id=
"prepareparam4_end_line"
sourceRef=
"prepareparam4"
targetRef=
"prepareparam4_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam1"
id=
"prepareparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品ID"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction1"
id=
"deaction1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品信息"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricesortparam1"
id=
"sortparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"排序数组参数"
/>
<endEvent
id=
"sortparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"sortparam1_end_line"
sourceRef=
"sortparam1"
targetRef=
"sortparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception2"
id=
"throwexception2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息异常"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception2"
id=
"throwexception2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息异常"
/>
<endEvent
id=
"throwexception2_end"
name=
"end"
/>
<endEvent
id=
"throwexception2_end"
name=
"end"
/>
<sequenceFlow
id=
"throwexception2_end_line"
sourceRef=
"throwexception2"
targetRef=
"throwexception2_end"
/>
<sequenceFlow
id=
"throwexception2_end_line"
sourceRef=
"throwexception2"
targetRef=
"throwexception2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam3"
id=
"debugparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam3"
id=
"debugparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam3_end"
name=
"end"
/>
<endEvent
id=
"debugparam3_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam3_end_line"
sourceRef=
"debugparam3"
targetRef=
"debugparam3_end"
/>
<sequenceFlow
id=
"debugparam3_end_line"
sourceRef=
"debugparam3"
targetRef=
"debugparam3_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricerenewparam1"
id=
"renewparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重新建立参数"
/>
<endEvent
id=
"renewparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"renewparam1_end_line"
sourceRef=
"renewparam1"
targetRef=
"renewparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception"
id=
"throwexception"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取产品价格异常"
/>
<endEvent
id=
"throwexception_end"
name=
"end"
/>
<sequenceFlow
id=
"throwexception_end_line"
sourceRef=
"throwexception"
targetRef=
"throwexception_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricecopyparam1"
id=
"copyparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"拷贝参数"
/>
<endEvent
id=
"copyparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"copyparam1_end_line"
sourceRef=
"copyparam1"
targetRef=
"copyparam1_end"
/>
<sequenceFlow
id=
"begin_prepareparam1"
sourceRef=
"begin"
targetRef=
"prepareparam1"
>
<sequenceFlow
id=
"begin_prepareparam1"
sourceRef=
"begin"
targetRef=
"prepareparam1"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam1_deaction1"
sourceRef=
"prepareparam1"
targetRef=
"deaction1"
>
<sequenceFlow
id=
"gateway-prepareparam2_prepareparam3"
sourceRef=
"gateway-prepareparam2"
targetRef=
"prepareparam3"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
eval($ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault);
eval((RuleUtils.test($ibizorderdetailgetunitandpricedefault.get("unitprice"),"GT","Amount")))
]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam2_delogic1"
sourceRef=
"prepareparam2"
targetRef=
"delogic1"
>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam2_deaction3"
sourceRef=
"prepareparam2"
targetRef=
"deaction3"
>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam3_deaction2"
sourceRef=
"prepareparam3"
targetRef=
"deaction2"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"deaction2_throwexception2"
sourceRef=
"deaction2"
targetRef=
"throwexception2"
>
<sequenceFlow
id=
"deaction2_throwexception2"
sourceRef=
"deaction2"
targetRef=
"throwexception2"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam1"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam1"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam1"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam1"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
eval($ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","100")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","100")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam2"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam2"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam2"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam2"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
eval($ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","PRICE")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","PRICE")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam4"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam4"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam4"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam4"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
eval($ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("createdate"),"GTANDEQ","CREATEDATE")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("createdate"),"GTANDEQ","CREATEDATE")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam5"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam5"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam5"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam5"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
eval($ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("ordertime"),"LTANDEQ","")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("ordertime"),"LTANDEQ","")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"deaction2_debugparam3"
sourceRef=
"deaction2"
targetRef=
"debugparam3"
>
<sequenceFlow
id=
"deaction2_debugparam3"
sourceRef=
"deaction2"
targetRef=
"debugparam3"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-prepareparam2_prepareparam3"
sourceRef=
"gateway-prepareparam2"
targetRef=
"prepareparam3"
>
<sequenceFlow
id=
"prepareparam1_deaction1"
sourceRef=
"prepareparam1"
targetRef=
"deaction1"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
eval((RuleUtils.test($ibizorderdetailgetunitandpricedefault.get("unitprice"),"GT","Amount")))
]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam2_delogic1"
sourceRef=
"prepareparam2"
targetRef=
"delogic1"
>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam2_deaction3"
sourceRef=
"prepareparam2"
targetRef=
"deaction3"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_prepareparam2"
sourceRef=
"deaction1"
targetRef=
"prepareparam2"
>
<sequenceFlow
id=
"deaction1_prepareparam2"
sourceRef=
"deaction1"
targetRef=
"prepareparam2"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_throwexception"
sourceRef=
"deaction1"
targetRef=
"throwexception"
>
<sequenceFlow
id=
"deaction1_throwexception"
sourceRef=
"deaction1"
targetRef=
"throwexception"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam3_deaction2"
sourceRef=
"prepareparam3"
targetRef=
"deaction2"
>
</sequenceFlow>
<exclusiveGateway
id=
"gateway-deaction2"
name=
"Gateway"
gatewayDirection=
"Diverging"
default=
"gateway-deaction2_end_line"
></exclusiveGateway>
<sequenceFlow
id=
"deaction2_gateway-deaction2_gatewayline"
sourceRef=
"deaction2"
targetRef=
"gateway-deaction2"
></sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_end_line"
sourceRef=
"gateway-deaction2"
targetRef=
"gateway-deaction2_end"
/>
<endEvent
id=
"gateway-deaction2_end"
name=
"end"
/>
<exclusiveGateway
id=
"gateway-prepareparam2"
name=
"Gateway"
gatewayDirection=
"Diverging"
default=
"gateway-prepareparam2_end_line"
></exclusiveGateway>
<exclusiveGateway
id=
"gateway-prepareparam2"
name=
"Gateway"
gatewayDirection=
"Diverging"
default=
"gateway-prepareparam2_end_line"
></exclusiveGateway>
<sequenceFlow
id=
"prepareparam2_gateway-prepareparam2_gatewayline"
sourceRef=
"prepareparam2"
targetRef=
"gateway-prepareparam2"
></sequenceFlow>
<sequenceFlow
id=
"prepareparam2_gateway-prepareparam2_gatewayline"
sourceRef=
"prepareparam2"
targetRef=
"gateway-prepareparam2"
></sequenceFlow>
<sequenceFlow
id=
"gateway-prepareparam2_end_line"
sourceRef=
"gateway-prepareparam2"
targetRef=
"gateway-prepareparam2_end"
/>
<sequenceFlow
id=
"gateway-prepareparam2_end_line"
sourceRef=
"gateway-prepareparam2"
targetRef=
"gateway-prepareparam2_end"
/>
<endEvent
id=
"gateway-prepareparam2_end"
name=
"end"
/>
<endEvent
id=
"gateway-prepareparam2_end"
name=
"end"
/>
<exclusiveGateway
id=
"gateway-deaction2"
name=
"Gateway"
gatewayDirection=
"Diverging"
default=
"gateway-deaction2_end_line"
></exclusiveGateway>
<sequenceFlow
id=
"deaction2_gateway-deaction2_gatewayline"
sourceRef=
"deaction2"
targetRef=
"gateway-deaction2"
></sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_end_line"
sourceRef=
"gateway-deaction2"
targetRef=
"gateway-deaction2_end"
/>
<endEvent
id=
"gateway-deaction2_end"
name=
"end"
/>
</process>
</process>
</definitions>
</definitions>
\ No newline at end of file
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.drl
浏览文件 @
4434142e
...
@@ -5,16 +5,16 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -5,16 +5,16 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
import
org
.
springframework
.
util
.
StringUtils
;
import
org
.
springframework
.
util
.
StringUtils
;
import
org
.
springframework
.
util
.
ObjectUtils
;
import
org
.
springframework
.
util
.
ObjectUtils
;
import
cn
.
ibizlab
.
util
.
errors
.
BadRequestAlertException
;
import
cn
.
ibizlab
.
util
.
errors
.
BadRequestAlertException
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricelist
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrderDetail
ibizorderdetailgetunitandpricedefault
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrder
ibizorderdetailgetunitandpriceorder
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrder
ibizorderdetailgetunitandpriceorder
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricelist
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZUNIProduct
ibizorderdetailgetunitandpriceproduct
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZUNIProduct
ibizorderdetailgetunitandpriceproduct
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricefilter
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricefilter
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricesession
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricepage
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricepage
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderService
ibizorderservice
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricesession
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrderDetail
ibizorderdetailgetunitandpricedefault
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
ibizorderdetailservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
ibizorderdetailservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZBOOKService
ibizbookservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZBOOKService
ibizbookservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderService
ibizorderservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZUNIProductService
ibizuniproductservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZUNIProductService
ibizuniproductservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
iBzSysIbizorderdetailDefaultService
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
iBzSysIbizorderdetailDefaultService
;
global
cn
.
ibizlab
.
util
.
security
.
AuthenticationUser
curuser
;
global
cn
.
ibizlab
.
util
.
security
.
AuthenticationUser
curuser
;
...
@@ -29,104 +29,75 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -29,104 +29,75 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
then
then
end
end
//
逻辑处理节点
[
获取商品
id
]
//
逻辑处理节点
[
大于
200
处理
]
rule
"
prepareparam1
"
rule
"
debugparam2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam2
"
when
when
then
then
ibizorderdetailgetunitandpriceproduct
.
set
(
"ibizuniproductid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizuniproductid"
));
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
调试逻辑参数
]
rule
"debugparam4"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam4"
when
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取订单信息
]
rule
"deaction2"
ruleflow
-
group
"ibizorderdetailgetunitandpricedeaction2"
when
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizorderservice
.
get
(
ibizorderdetailgetunitandpriceorder
.
getIbizorderid
()),
ibizorderdetailgetunitandpriceorder
);
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
page
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
default
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
绑定参数
]
//
逻辑处理节点
[
实体行为
]
rule
"
bindparam1
"
rule
"
deaction3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
bindparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction3
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
ibizorderdetailservice
.
countMoney
(
ibizorderdetailgetunitandpricedefault
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取产品价格异常
]
//
逻辑处理节点
[
统计金额
]
rule
"
throwexception
"
rule
"
delogic1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
delogic1
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
统计金额
]
//
逻辑处理节点
[
重置参数
]
rule
"
delogic
1"
rule
"
resetparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
delogic
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
resetparam
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
调试逻辑参数
]
//
逻辑处理节点
[
大于
100
处理
]
rule
"debugparam
5
"
rule
"debugparam
1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
5
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
1
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
填充单位和单价
]
//
逻辑处理节点
[
填充单位和单价
]
...
@@ -136,13 +107,13 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -136,13 +107,13 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
then
then
ibizorderdetailgetunitandpricedefault
.
set
(
"unit"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unit"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unit"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unit"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
实体数据查询
]
//
逻辑处理节点
[
实体数据查询
]
...
@@ -150,42 +121,41 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -150,42 +121,41 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
ruleflow
-
group
"ibizorderdetailgetunitandpricededataquery1"
ruleflow
-
group
"ibizorderdetailgetunitandpricededataquery1"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取商品信息
]
//
逻辑处理节点
[
绑定参数
]
rule
"
deaction
1"
rule
"
bindparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
bindparam
1"
when
when
then
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizuniproductservice
.
get
(
ibizorderdetailgetunitandpriceproduct
.
getIbizuniproductid
()),
ibizorderdetailgetunitandpriceproduct
);
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
重新建立
参数
]
//
逻辑处理节点
[
调试逻辑
参数
]
rule
"
renewparam1
"
rule
"
debugparam5
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
renewparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam5
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
设置
orderid
]
//
逻辑处理节点
[
设置
orderid
]
...
@@ -195,126 +165,146 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -195,126 +165,146 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
then
then
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizorderid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizorderid"
));
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizorderid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizorderid"
));
ibizorderdetailgetunitandpriceorder
.
set
(
"createman"
,
"111"
);
ibizorderdetailgetunitandpriceorder
.
set
(
"createman"
,
"111"
);
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
附加到数组参数
]
rule
"appendparam1"
ruleflow
-
group
"ibizorderdetailgetunitandpriceappendparam1"
when
then
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
重置参数
]
//
逻辑处理节点
[
重置参数
]
rule
"resetparam
1
"
rule
"resetparam
2
"
ruleflow
-
group
"ibizorderdetailgetunitandpriceresetparam
1
"
ruleflow
-
group
"ibizorderdetailgetunitandpriceresetparam
2
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
排序数组参数
]
//
逻辑处理节点
[
获取订单信息
]
rule
"
sortparam1
"
rule
"
deaction2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
sortparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction2
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizorderservice
.
get
(
ibizorderdetailgetunitandpriceorder
.
getIbizorderid
()),
ibizorderdetailgetunitandpriceorder
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
拷贝参数
]
//
逻辑处理节点
[
实体数据集
]
rule
"
copyparam
1"
rule
"
dedataset
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
copyparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
dedataset
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
大于
200
处理
]
//
逻辑处理节点
[
调试逻辑参数
]
rule
"debugparam
2
"
rule
"debugparam
4
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
4
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
附加到数组参数
]
//
逻辑处理节点
[
setting
]
rule
"
appendparam1
"
rule
"
prepareparam4
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
appendparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam4
"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
ibizorderdetailgetunitandpriceproduct
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
ibizorderdetailgetunitandpriceproduct
.
set
(
""
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
ibizorderdetailgetunitandpriceproduct
.
set
(
""
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
ibizorderdetailgetunitandpriceproduct
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
大于
100
处理
]
//
逻辑处理节点
[
获取商品
id
]
rule
"
debug
param1"
rule
"
prepare
param1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debug
param1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepare
param1"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizuniproducttype"
,
null
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
实体行为
]
//
逻辑处理节点
[
获取商品信息
]
rule
"deaction
3
"
rule
"deaction
1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedeaction
3
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedeaction
1
"
when
when
then
then
ibizorderdetailservice
.
countMoney
(
ibizorderdetailgetunitandpricedefault
);
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizuniproductservice
.
get
(
ibizorderdetailgetunitandpriceproduct
.
getIbizuniproductid
()),
ibizorderdetailgetunitandpriceproduct
);
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
实体数据集
]
//
逻辑处理节点
[
排序数组参数
]
rule
"
dedataset
1"
rule
"
sortparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
dedataset
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
sortparam
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取订单信息异常
]
//
逻辑处理节点
[
获取订单信息异常
]
...
@@ -322,13 +312,13 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -322,13 +312,13 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
ruleflow
-
group
"ibizorderdetailgetunitandpricethrowexception2"
ruleflow
-
group
"ibizorderdetailgetunitandpricethrowexception2"
when
when
then
then
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
调试逻辑参数
]
//
逻辑处理节点
[
调试逻辑参数
]
...
@@ -336,11 +326,53 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -336,11 +326,53 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam3"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam3"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
重新建立参数
]
rule
"renewparam1"
ruleflow
-
group
"ibizorderdetailgetunitandpricerenewparam1"
when
then
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取产品价格异常
]
rule
"throwexception"
ruleflow
-
group
"ibizorderdetailgetunitandpricethrowexception"
when
then
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
拷贝参数
]
rule
"copyparam1"
ruleflow
-
group
"ibizorderdetailgetunitandpricecopyparam1"
when
then
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
end
end
\ No newline at end of file
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
4434142e
...
@@ -12,6 +12,18 @@
...
@@ -12,6 +12,18 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
},
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -59,18 +71,6 @@
...
@@ -59,18 +71,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
}
],
"getPSDETreeNodeRSs"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
4434142e
...
@@ -20,13 +20,13 @@
...
@@ -20,13 +20,13 @@
}
}
}
],
}
],
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"caption"
:
"
图书名称
"
,
"caption"
:
"
作者
"
,
"codeName"
:
"
ibizbookname
"
,
"codeName"
:
"
author
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
ibizbookname
"
,
"dataItemName"
:
"
author
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
author
"
,
"name"
:
"
ibizbookname
"
,
"name"
:
"
author
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
author
"
,
"width"
:
50
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
...
@@ -44,13 +44,13 @@
...
@@ -44,13 +44,13 @@
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
},
{
"caption"
:
"
作者
"
,
"caption"
:
"
图书名称
"
,
"codeName"
:
"
author
"
,
"codeName"
:
"
ibizbookname
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
author
"
,
"dataItemName"
:
"
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
author
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"name"
:
"
author
"
,
"name"
:
"
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
author
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"width"
:
50
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json
浏览文件 @
4434142e
...
@@ -2746,235 +2746,45 @@
...
@@ -2746,235 +2746,45 @@
"topPos"
:
216
,
"topPos"
:
216
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"Prepareparam1"
,
"codeName"
:
"DEBUGPARAM2"
,
"leftPos"
:
313
,
"getDstPSDELogicParam"
:
{
"logicNodeType"
:
"PREPAREPARAM"
,
"modelref"
:
true
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam1"
,
"id"
:
"Default"
"name"
:
"获取商品ID"
,
},
"getPSDELogicLinks"
:
[
{
"leftPos"
:
1310
,
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam1"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZUNIPRODUCTID"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Default[IBIZUNIPRODUCTID] ==> Product[IBIZUNIPRODUCTID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"logicNodeType"
:
"DEBUGPARAM"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
4
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
2
"
,
"name"
:
"
调试逻辑参数
"
,
"name"
:
"
大于200处理
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
4
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
2
"
,
"topPos"
:
50
"topPos"
:
-
50
},
{
},
{
"codeName"
:
"DEACTION
2
"
,
"codeName"
:
"DEACTION
3
"
,
"getDstPSAppDEAction"
:
{
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Get
"
"id"
:
"
CountMoney
"
},
},
"getDstPSAppDataEntity"
:
{
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder
Detail
.json"
},
},
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
/PSDEACTIONS/Get
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail/PSDEACTIONS/CountMoney
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Order
"
"id"
:
"
Default
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail
.json"
},
},
"leftPos"
:
97
1
,
"leftPos"
:
100
1
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"name"
:
"获取订单信息"
,
"name"
:
"实体行为"
,
"getPSDELogicLinks"
:
[
{
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"getDstPSDELogicNode"
:
{
"topPos"
:
318
"modelref"
:
true
,
"id"
:
"THROWEXCEPTION2"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"catchLink"
:
true
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"name"
:
">100"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) (100)"
,
"paramValue"
:
"100"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM2"
},
"name"
:
">200"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) [PRICE]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"PRICE"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM4"
},
"name"
:
"源数据对象属性"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GTANDEQ"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[CREATEDATE] 大于等于(>=) Product[CREATEDATE]"
,
"paramType"
:
"SRCENTITYFIELD"
,
"paramValue"
:
"CREATEDATE"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM5"
},
"name"
:
"订单小于当前时间"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"LTANDEQ"
,
"dstFieldName"
:
"ORDERTIME"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[ORDERTIME] 小于等于(<=) [当前时间]"
,
"paramType"
:
"CURTIME"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
41
,
"logicNodeType"
:
"BINDPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"topPos"
:
80
},
{
"codeName"
:
"Throwexception"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
},
{
"codeName"
:
"DELOGIC1"
,
"codeName"
:
"DELOGIC1"
,
"getDstPSAppDELogic"
:
{
"getDstPSAppDELogic"
:
{
...
@@ -3004,13 +2814,25 @@
...
@@ -3004,13 +2814,25 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DELOGIC1"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DELOGIC1"
,
"topPos"
:
189
"topPos"
:
189
},
{
},
{
"codeName"
:
"DEBUGPARAM5"
,
"codeName"
:
"RESETPARAM1"
,
"leftPos"
:
65
,
"logicNodeType"
:
"RESETPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
5
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
1
"
,
"name"
:
"
调试逻辑参数
"
,
"name"
:
"
大于100处理
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
5
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
1
"
,
"topPos"
:
-
188
"topPos"
:
-
420
},
{
},
{
"codeName"
:
"Prepareparam2"
,
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -3126,68 +2948,29 @@
...
@@ -3126,68 +2948,29 @@
},
},
"topPos"
:
80
"topPos"
:
80
},
{
},
{
"codeName"
:
"Deaction1"
,
"codeName"
:
"BINDPARAM1"
,
"getDstPSAppDEAction"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Get"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZUNIProduct.json"
},
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"getDstPSDataEntity"
:
{
"leftPos"
:
41
,
"modelref"
:
true
,
"logicNodeType"
:
"BINDPARAM"
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
},
"name"
:
"绑定参数"
,
"leftPos"
:
555
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"logicNodeType"
:
"DEACTION"
,
"getSrcPSDELogicParam"
:
{
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"name"
:
"获取商品信息"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"leftPos"
:
177
,
"topPos"
:
80
"logicNodeType"
:
"RENEWPARAM"
,
},
{
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"codeName"
:
"DEBUGPARAM5"
,
"name"
:
"重新建立参数"
,
"leftPos"
:
1310
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"topPos"
:
129
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM5"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM5"
,
"topPos"
:
-188
},
{
},
{
"codeName"
:
"PREPAREPARAM3"
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -3241,50 +3024,6 @@
...
@@ -3241,50 +3024,6 @@
}
],
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"topPos"
:
-38
},
{
"codeName"
:
"RESETPARAM1"
,
"leftPos"
:
65
,
"logicNodeType"
:
"RESETPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
258
,
"logicNodeType"
:
"COPYPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/COPYPARAM1"
,
"name"
:
"拷贝参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/COPYPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"topPos"
:
10
},
{
"codeName"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM2"
,
"name"
:
"大于200处理"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
},
{
"codeName"
:
"APPENDPARAM1"
,
"codeName"
:
"APPENDPARAM1"
,
"leftPos"
:
439
,
"leftPos"
:
439
,
...
@@ -3294,45 +3033,174 @@
...
@@ -3294,45 +3033,174 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"topPos"
:
-10
"topPos"
:
-10
},
{
},
{
"codeName"
:
"DEBUGPARAM1"
,
"codeName"
:
"RESETPARAM2"
,
"getDstPSDELogicParam"
:
{
"leftPos"
:
145
,
"modelref"
:
true
,
"logicNodeType"
:
"RESETPARAM"
,
"id"
:
"Default"
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM2"
,
},
"name"
:
"重置参数"
,
"leftPos"
:
1310
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM2"
,
"logicNodeType"
:
"DEBUGPARAM"
,
"topPos"
:
378
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"name"
:
"大于100处理"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
},
{
"codeName"
:
"DEACTION
3
"
,
"codeName"
:
"DEACTION
2
"
,
"getDstPSAppDEAction"
:
{
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
CountMoney
"
"id"
:
"
Get
"
},
},
"getDstPSAppDataEntity"
:
{
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder
Detail
.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
},
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail/PSDEACTIONS/CountMoney
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
/PSDEACTIONS/Get
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Default
"
"id"
:
"
Order
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder
Detail
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
},
"leftPos"
:
100
1
,
"leftPos"
:
97
1
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"name"
:
"实体行为"
,
"name"
:
"获取订单信息"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"getPSDELogicLinks"
:
[
{
"topPos"
:
318
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"THROWEXCEPTION2"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"catchLink"
:
true
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"name"
:
">100"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) (100)"
,
"paramValue"
:
"100"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM2"
},
"name"
:
">200"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"AMOUNT"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[AMOUNT] 大于(>) [PRICE]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"PRICE"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM4"
},
"name"
:
"源数据对象属性"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GTANDEQ"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[CREATEDATE] 大于等于(>=) Product[CREATEDATE]"
,
"paramType"
:
"SRCENTITYFIELD"
,
"paramValue"
:
"CREATEDATE"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM5"
},
"name"
:
"订单小于当前时间"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"LTANDEQ"
,
"dstFieldName"
:
"ORDERTIME"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Order[ORDERTIME] 小于等于(<=) [当前时间]"
,
"paramType"
:
"CURTIME"
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"DEDATASET1"
,
"getDstPSAppDEDataSet"
:
{
"getDstPSAppDEDataSet"
:
{
...
@@ -3365,6 +3233,166 @@
...
@@ -3365,6 +3233,166 @@
"id"
:
"page"
"id"
:
"page"
},
},
"topPos"
:
284
"topPos"
:
284
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM4"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM4"
,
"topPos"
:
50
},
{
"codeName"
:
"PREPAREPARAM4"
,
"leftPos"
:
362
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM4"
,
"name"
:
"Setting"
,
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[UNITPRICE] ==> Product[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product ==> Product"
,
"paramAction"
:
"COPYPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[undefined]"
,
"paramAction"
:
"BINDPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[UNITPRICE]"
,
"paramAction"
:
"APPENDPARAM"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM4"
,
"topPos"
:
438
},
{
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam1"
,
"name"
:
"获取商品ID"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam1"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZUNIPRODUCTTYPE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"dstSortDir"
:
"ASC"
,
"name"
:
"空值(NULL) ==> Order[IBIZUNIPRODUCTTYPE]"
,
"paramAction"
:
"SORTPARAM"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"srcValue"
:
"zzz"
,
"srcValueType"
:
"NULLVALUE"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"Deaction1"
,
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Get"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZUNIProduct.json"
},
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
},
"leftPos"
:
555
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"name"
:
"获取商品信息"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
},
{
"codeName"
:
"THROWEXCEPTION2"
,
"codeName"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorCode"
:
0
,
...
@@ -3387,31 +3415,46 @@
...
@@ -3387,31 +3415,46 @@
"name"
:
"调试逻辑参数"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM3"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
"topPos"
:
140
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Default"
,
"codeName"
:
"RENEWPARAM1"
,
"logicName"
:
"传入变量"
,
"getDstPSDELogicParam"
:
{
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Default"
,
"name"
:
"传入变量"
,
"getParamPSAppDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json
"
"
id"
:
"Product
"
},
},
"getParamPSDataEntity"
:
{
"leftPos"
:
177
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"topPos"
:
129
},
{
"codeName"
:
"Throwexception"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
"
"
id"
:
"Product
"
},
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Default"
,
"leftPos"
:
258
,
"default"
:
true
,
"logicNodeType"
:
"COPYPARAM"
,
"entityParam"
:
true
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/COPYPARAM1"
,
},
{
"name"
:
"拷贝参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/COPYPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
},
"topPos"
:
10
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Order"
,
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
...
@@ -3426,6 +3469,13 @@
...
@@ -3426,6 +3469,13 @@
},
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"entityParam"
:
true
"entityParam"
:
true
},
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Product"
,
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
"logicName"
:
"商品"
,
...
@@ -3448,6 +3498,13 @@
...
@@ -3448,6 +3498,13 @@
"name"
:
"filter"
,
"name"
:
"filter"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/filter"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/filter"
,
"filterParam"
:
true
"filterParam"
:
true
},
{
"codeName"
:
"page"
,
"logicName"
:
"page"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"name"
:
"page"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"entityPageParam"
:
true
},
{
},
{
"codeName"
:
"session"
,
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"logicName"
:
"session"
,
...
@@ -3456,12 +3513,21 @@
...
@@ -3456,12 +3513,21 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/session"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/session"
,
"sessionParam"
:
true
"sessionParam"
:
true
},
{
},
{
"codeName"
:
"page"
,
"codeName"
:
"Default"
,
"logicName"
:
"page"
,
"logicName"
:
"传入变量"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Default"
,
"name"
:
"page"
,
"name"
:
"传入变量"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"getParamPSAppDataEntity"
:
{
"entityPageParam"
:
true
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json"
},
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Default"
,
"default"
:
true
,
"entityParam"
:
true
}
],
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
"getStartPSDELogicNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
4434142e
...
@@ -46,6 +46,18 @@
...
@@ -46,6 +46,18 @@
"id"
:
"GANTT"
"id"
:
"GANTT"
},
},
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -93,18 +105,6 @@
...
@@ -93,18 +105,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
}
],
"getPSDETreeNodeRSs"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
4434142e
...
@@ -100,13 +100,13 @@
...
@@ -100,13 +100,13 @@
"id"
:
"TREEGRIDEX"
"id"
:
"TREEGRIDEX"
},
},
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"caption"
:
"
图书名称
"
,
"caption"
:
"
作者
"
,
"codeName"
:
"
ibizbookname
"
,
"codeName"
:
"
author
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
ibizbookname
"
,
"dataItemName"
:
"
author
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
author
"
,
"name"
:
"
ibizbookname
"
,
"name"
:
"
author
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
author
"
,
"width"
:
50
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
...
@@ -124,13 +124,13 @@
...
@@ -124,13 +124,13 @@
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
},
{
"caption"
:
"
作者
"
,
"caption"
:
"
图书名称
"
,
"codeName"
:
"
author
"
,
"codeName"
:
"
ibizbookname
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
author
"
,
"dataItemName"
:
"
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
author
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"name"
:
"
author
"
,
"name"
:
"
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
author
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"width"
:
50
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
4434142e
...
@@ -393,7 +393,7 @@
...
@@ -393,7 +393,7 @@
<!--输出实体[IBIZORDERDETAIL]数据结构 -->
<!--输出实体[IBIZORDERDETAIL]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-1
50
-14"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-1
66
-14"
>
<createTable
tableName=
"T_IBIZORDERDETAIL"
>
<createTable
tableName=
"T_IBIZORDERDETAIL"
>
<column
name=
"IBIZORDERDETAILNAME"
remarks=
""
type=
"VARCHAR(200)"
>
<column
name=
"IBIZORDERDETAILNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
</column>
...
...
demo-core/src/main/resources/liquibase/view.xml
浏览文件 @
4434142e
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
</createView>
</createView>
</changeSet>
</changeSet>
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-1
50
-8"
runOnChange=
"true"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-1
66
-8"
runOnChange=
"true"
>
<createView
fullDefinition=
"false"
replaceIfExists=
"true"
viewName=
"V_IBIZORDERDETAIL"
>
<createView
fullDefinition=
"false"
replaceIfExists=
"true"
viewName=
"V_IBIZORDERDETAIL"
>
<![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]>
<![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]>
</createView>
</createView>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录