Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
0203a969
提交
0203a969
编写于
2月 27, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MoneyQ 发布系统代码 [后台服务,演示应用]
上级
60d9c078
变更
16
显示空白字符变更
内嵌
并排
正在显示
16 个修改的文件
包含
1958 行增加
和
1965 行删除
+1958
-1965
get-unit-and-price-logic-base.ts
...service/ibizorder-detail/get-unit-and-price-logic-base.ts
+220
-217
default-searchform-base.vue
...s/ibizbook/default-searchform/default-searchform-base.vue
+2
-2
quicksearchform-searchform-base.vue
...searchform-searchform/quicksearchform-searchform-base.vue
+2
-2
usr2-dataview-base.vue
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
+26
-56
usr2-dataview-model.ts
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
+12
-1
IBIZOrderDetail.json
...odel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
+455
-452
GetUnitAndPrice.json
...AENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json
+455
-452
GetUnitAndPrice.json.bpmn
...TIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.bpmn
+87
-87
GetUnitAndPrice.json.drl
...ITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.drl
+137
-137
Usr.json
...SSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
+24
-24
TreeTable.json
.../PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
+12
-12
IBIZOrderDetail.json
...odel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json
+488
-485
IBIZBOOKGanttView.json
...temodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
+24
-24
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
浏览文件 @
0203a969
import
IBIZUNIProductService
from
'@/service/ibizuniproduct/ibizuniproduct-service'
;
import
IBIZOrderDetailService
from
'@/service/ibizorder-detail/ibizorder-detail-service'
;
import
IBIZOrderService
from
'@/service/ibizorder/ibizorder-service'
;
import
IBIZOrderDetailService
from
'@/service/ibizorder-detail/ibizorder-detail-service'
;
import
IBIZUNIProductService
from
'@/service/ibizuniproduct/ibizuniproduct-service'
;
import
{
Verify
}
from
'@/utils/verify/verify'
;
...
...
@@ -60,10 +60,10 @@ export default class GetUnitAndPriceLogicBase {
this
.
paramsMap
.
set
(
'Default'
,
opts
);
this
.
paramsMap
.
set
(
'page'
,{});
this
.
paramsMap
.
set
(
'list'
,{});
this
.
paramsMap
.
set
(
'
session
'
,{});
this
.
paramsMap
.
set
(
'
Order
'
,{});
this
.
paramsMap
.
set
(
'Product'
,{});
this
.
paramsMap
.
set
(
'filter'
,{});
this
.
paramsMap
.
set
(
'
Order
'
,{});
this
.
paramsMap
.
set
(
'
session
'
,{});
}
...
...
@@ -82,11 +82,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute1Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
unitprice
,
'GT'
,
'Amount'
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -113,7 +109,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute4Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'100'
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -122,7 +122,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute5Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'PRICE'
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -131,7 +135,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute6Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
createdate
,
'GTANDEQ'
,
'CREATEDATE'
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -140,7 +148,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute7Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
ordertime
,
'LTANDEQ'
,
''
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -149,11 +161,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute8Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'100'
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -162,7 +170,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute9Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'PRICE
'
)){
if
(
Verify
.
testCond
(
params
.
unitprice
,
'GT'
,
'Amount
'
)){
return
true
;
}
else
{
return
false
;
...
...
@@ -175,11 +183,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute10Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
createdate
,
'GTANDEQ'
,
'CREATEDATE'
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -188,11 +192,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
*/
public
compute11Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
ordertime
,
'LTANDEQ'
,
''
)){
return
true
;
}
else
{
return
false
;
}
}
/**
...
...
@@ -249,129 +249,144 @@ export default class GetUnitAndPriceLogicBase {
}
/**
*
实体数据集
*
排序数组参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
execute
DEDATASET
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEDATASET
暂未支持
console
.
log
(
"
DEDATASET
暂未支持"
);
private
async
execute
SORTPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
SORTPARAM
暂未支持
console
.
log
(
"
SORTPARAM
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
填充单位和单价
*
获取订单信息异常
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executePrepareparam2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
context
?
this
.
paramsMap
.
get
(
'Default'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
let
tempSrcParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam0Data
,{
unit
:
tempSrcParam0Data
[
'unit'
]});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
let
tempDstParam1Context
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
context
?
this
.
paramsMap
.
get
(
'Default'
).
context
:{};
let
tempDstParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{
unitprice
:
tempSrcParam1Data
[
'unitprice'
]});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
if
(
this
.
compute1Cond
(
params
)){
return
this
.
executePREPAREPARAM3
(
context
,
params
,
isloading
);
}
if
(
this
.
compute2Cond
(
params
)){
return
this
.
executeDELOGIC1
(
context
,
params
,
isloading
);
}
if
(
this
.
compute3Cond
(
params
)){
return
this
.
executeDEACTION3
(
context
,
params
,
isloading
);
}
private
async
executeTHROWEXCEPTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
获取商品信息
*
实体数据集
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDeaction1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
let
result
:
any
;
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Product'
);
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
.
compute4Cond
(
params
)){
return
this
.
executePrepareparam2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute5Cond
(
params
)){
return
this
.
executeThrowexception
(
context
,
params
,
isloading
);
}
}
private
async
executeDEDATASET2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATASET暂未支持
console
.
log
(
"DEDATASET暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
调试逻辑参数
*
大于200处理
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEBUGPARAM
3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM
2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
附加到数组参数
*
设置orderid
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeAPPENDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// APPENDPARAM暂未支持
console
.
log
(
"APPENDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
private
async
executePREPAREPARAM3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
let
tempSrcParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
Object
.
assign
(
tempDstParam0Context
,{
ibizorder
:
tempSrcParam0Data
[
'ibizorderid'
]});
Object
.
assign
(
tempDstParam0Data
,{
ibizorderid
:
tempSrcParam0Data
[
'ibizorderid'
]});
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
let
tempDstParam1Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{
createman
:
"111"
});
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
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
:{};
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam2Data
,
context
:
tempDstParam2Context
});
if
(
this
.
compute1Cond
(
params
)){
return
this
.
executeDEACTION2
(
context
,
params
,
isloading
);
}
}
/**
*
统计金额
*
获取商品ID
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDELOGIC1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DELOGIC暂未支持
console
.
log
(
"DELOGIC暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
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
.
compute2Cond
(
params
)){
return
this
.
executeDeaction1
(
context
,
params
,
isloading
);
}
}
/**
*
重置参数
*
实体数据查询
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
execute
RESETPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
RESETPARAM
暂未支持
console
.
log
(
"
RESETPARAM
暂未支持"
);
private
async
execute
DEDATAQUERY
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEDATAQUERY
暂未支持
console
.
log
(
"
DEDATAQUERY
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
大于200处理
*
获取订单信息
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEBUGPARAM2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
private
async
executeDEACTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
let
result
:
any
;
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
.
compute3Cond
(
params
)){
return
this
.
executeTHROWEXCEPTION2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute4Cond
(
params
)){
return
this
.
executeDEBUGPARAM1
(
context
,
params
,
isloading
);
}
if
(
this
.
compute5Cond
(
params
)){
return
this
.
executeDEBUGPARAM2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute6Cond
(
params
)){
return
this
.
executeDEBUGPARAM4
(
context
,
params
,
isloading
);
}
if
(
this
.
compute7Cond
(
params
)){
return
this
.
executeDEBUGPARAM5
(
context
,
params
,
isloading
);
}
if
(
this
.
compute8Cond
(
params
)){
return
this
.
executeDEBUGPARAM3
(
context
,
params
,
isloading
);
}
}
}
/**
...
...
@@ -400,181 +415,202 @@ export default class GetUnitAndPriceLogicBase {
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEDATAQUERY
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEDATAQUERY
2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATAQUERY暂未支持
console
.
log
(
"DEDATAQUERY暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
获取商品ID
*
重新建立参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executePrepareparam1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
if
(
this
.
compute6Cond
(
params
)){
return
this
.
executeDeaction1
(
context
,
params
,
isloading
);
}
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
executeRENEWPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// RENEWPARAM暂未支持
console
.
log
(
"RENEWPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
private
async
executePrepareparam2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
context
?
this
.
paramsMap
.
get
(
'Default'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
let
tempSrcParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam0Data
,{
unit
:
tempSrcParam0Data
[
'unit'
]});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
let
tempDstParam1Context
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
context
?
this
.
paramsMap
.
get
(
'Default'
).
context
:{};
let
tempDstParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{
unitprice
:
tempSrcParam1Data
[
'unitprice'
]});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
if
(
this
.
compute9Cond
(
params
)){
return
this
.
executePREPAREPARAM3
(
context
,
params
,
isloading
);
}
if
(
this
.
compute10Cond
(
params
)){
return
this
.
executeDELOGIC1
(
context
,
params
,
isloading
);
}
if
(
this
.
compute11Cond
(
params
)){
return
this
.
executeDEACTION3
(
context
,
params
,
isloading
);
}
}
/**
*
获取产品价格异常
*
调试逻辑参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeThrowexception
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
private
async
executeDEBUGPARAM5
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
实体数据集
*
Setting
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEDATASET2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATASET暂未支持
console
.
log
(
"DEDATASET暂未支持"
);
private
async
executePREPAREPARAM4
(
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
(
'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
;
}
/**
*
获取订单信息异常
*
绑定参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeTHROWEXCEPTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
private
async
executeBINDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// BINDPARAM暂未支持
console
.
log
(
"BINDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
结束
*
获取产品价格异常
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeEND1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// END暂未支持
console
.
log
(
"END暂未支持"
);
private
async
executeThrowexception
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
排序数组
参数
*
拷贝
参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
execute
SORT
PARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
SORT
PARAM暂未支持
console
.
log
(
"
SORT
PARAM暂未支持"
);
private
async
execute
COPY
PARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
COPY
PARAM暂未支持
console
.
log
(
"
COPY
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
调试逻辑
参数
*
重置
参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
execute
DEBUGPARAM5
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEBUG
PARAM暂未支持
console
.
log
(
"
DEBUG
PARAM暂未支持"
);
private
async
execute
RESETPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
RESET
PARAM暂未支持
console
.
log
(
"
RESET
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
绑定参数
*
获取商品信息
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeBINDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// BINDPARAM暂未支持
console
.
log
(
"BINDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
private
async
executeDeaction1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
let
result
:
any
;
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Product'
);
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
.
compute12Cond
(
params
)){
return
this
.
executePrepareparam2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute13Cond
(
params
)){
return
this
.
executeThrowexception
(
context
,
params
,
isloading
);
}
}
}
/**
* 实体数据
查询
* 实体数据
集
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEDATA
QUERY2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATA
QUERY
暂未支持
console
.
log
(
"DEDATA
QUERY
暂未支持"
);
private
async
executeDEDATA
SET1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATA
SET
暂未支持
console
.
log
(
"DEDATA
SET
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
拷贝参数
*
结束
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
execute
COPYPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
COPYPARAM
暂未支持
console
.
log
(
"
COPYPARAM
暂未支持"
);
private
async
execute
END
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
END
暂未支持
console
.
log
(
"
END
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
获取订单信息
*
统计金额
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEACTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
let
result
:
any
;
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
.
compute7Cond
(
params
)){
return
this
.
executeTHROWEXCEPTION2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute8Cond
(
params
)){
return
this
.
executeDEBUGPARAM1
(
context
,
params
,
isloading
);
}
if
(
this
.
compute9Cond
(
params
)){
return
this
.
executeDEBUGPARAM2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute10Cond
(
params
)){
return
this
.
executeDEBUGPARAM4
(
context
,
params
,
isloading
);
}
if
(
this
.
compute11Cond
(
params
)){
return
this
.
executeDEBUGPARAM5
(
context
,
params
,
isloading
);
}
if
(
this
.
compute12Cond
(
params
)){
return
this
.
executeDEBUGPARAM3
(
context
,
params
,
isloading
);
}
}
private
async
executeDELOGIC1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DELOGIC暂未支持
console
.
log
(
"DELOGIC暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
...
...
@@ -583,67 +619,34 @@ export default class GetUnitAndPriceLogicBase {
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEBUGPARAM
4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM
3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
Setting
*
调试逻辑参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executePREPAREPARAM4
(
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
(
'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
});
private
async
executeDEBUGPARAM4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
*
设置orderid
*
附加到数组参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executePREPAREPARAM3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
let
tempSrcParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Default'
).
data
?
this
.
paramsMap
.
get
(
'Default'
).
data
:{};
Object
.
assign
(
tempDstParam0Context
,{
ibizorder
:
tempSrcParam0Data
[
'ibizorderid'
]});
Object
.
assign
(
tempDstParam0Data
,{
ibizorderid
:
tempSrcParam0Data
[
'ibizorderid'
]});
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam0Data
,
context
:
tempDstParam0Context
});
let
tempDstParam1Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
let
tempDstParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{
createman
:
"111"
});
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
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
:{};
this
.
paramsMap
.
set
(
'Order'
,{
data
:
tempDstParam2Data
,
context
:
tempDstParam2Context
});
if
(
this
.
compute13Cond
(
params
)){
return
this
.
executeDEACTION2
(
context
,
params
,
isloading
);
}
private
async
executeAPPENDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// APPENDPARAM暂未支持
console
.
log
(
"APPENDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
...
...
app_Web/src/widgets/ibizbook/default-searchform/default-searchform-base.vue
浏览文件 @
0203a969
...
...
@@ -719,7 +719,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -755,7 +755,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/quicksearchform-searchform/quicksearchform-searchform-base.vue
浏览文件 @
0203a969
...
...
@@ -673,7 +673,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Calendar
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -709,7 +709,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Calendar
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
浏览文件 @
0203a969
...
...
@@ -48,18 +48,18 @@
<div
v-show=
"flag"
class=
"batch-toolbar"
>
<div
class=
'toolbar-container'
>
<tooltip
:transfer=
"true"
:max-width=
"600"
>
<i-button
v-show=
"
dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction1.visabled"
:disabled=
"dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction1.disabled"
class=
''
v-button-loading:i-button
@
click=
"dataviewexpbar_
dataview_batchtoolbar_click({ tag: 'deuiaction1' }, $event)"
>
<i-button
v-show=
"
usr2dataviewdataview_batchtoolbarModels.deuiaction1.visabled"
:disabled=
"usr2dataviewdataview_batchtoolbarModels.deuiaction1.disabled"
class=
''
v-button-loading:i-button
@
click=
"
dataview_batchtoolbar_click({ tag: 'deuiaction1' }, $event)"
>
<i
class=
'fa fa-edit'
></i>
<span
class=
'caption'
>
{{$t('entities.ibizbook.
dataviewexpviewdataviewexpbar_
dataview_batchtoolbar_toolbar.deuiaction1.caption')}}
</span>
<span
class=
'caption'
>
{{$t('entities.ibizbook.
usr2dataview
dataview_batchtoolbar_toolbar.deuiaction1.caption')}}
</span>
</i-button>
<div
slot=
'content'
>
{{$t('entities.ibizbook.
dataviewexpviewdataviewexpbar_
dataview_batchtoolbar_toolbar.deuiaction1.tip')}}
</div>
<div
slot=
'content'
>
{{$t('entities.ibizbook.
usr2dataview
dataview_batchtoolbar_toolbar.deuiaction1.tip')}}
</div>
</tooltip>
<tooltip
:transfer=
"true"
:max-width=
"600"
>
<i-button
v-show=
"
dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction2.visabled"
:disabled=
"dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction2.disabled"
class=
''
v-button-loading:i-button
@
click=
"dataviewexpbar_
dataview_batchtoolbar_click({ tag: 'deuiaction2' }, $event)"
>
<i-button
v-show=
"
usr2dataviewdataview_batchtoolbarModels.deuiaction2.visabled"
:disabled=
"usr2dataviewdataview_batchtoolbarModels.deuiaction2.disabled"
class=
''
v-button-loading:i-button
@
click=
"
dataview_batchtoolbar_click({ tag: 'deuiaction2' }, $event)"
>
<i
class=
'fa fa-remove'
></i>
<span
class=
'caption'
>
{{$t('entities.ibizbook.
dataviewexpviewdataviewexpbar_
dataview_batchtoolbar_toolbar.deuiaction2.caption')}}
</span>
<span
class=
'caption'
>
{{$t('entities.ibizbook.
usr2dataview
dataview_batchtoolbar_toolbar.deuiaction2.caption')}}
</span>
</i-button>
<div
slot=
'content'
>
{{$t('entities.ibizbook.
dataviewexpviewdataviewexpbar_
dataview_batchtoolbar_toolbar.deuiaction2.tip')}}
</div>
<div
slot=
'content'
>
{{$t('entities.ibizbook.
usr2dataview
dataview_batchtoolbar_toolbar.deuiaction2.tip')}}
</div>
</tooltip>
</div>
</div>
...
...
@@ -202,18 +202,18 @@ export default class Usr2Base extends Vue implements ControlInterface {
public
appEntityService
:
IBIZBOOKEntityService
=
new
IBIZBOOKEntityService
({
$store
:
this
.
$store
});
/**
* dataview
expbar_dataview
_batchtoolbar 部件 click 事件
* dataview_batchtoolbar 部件 click 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof Usr2Base
*/
public
dataview
expbar_dataview
_batchtoolbar_click
(
$event
:
any
,
$event2
?:
any
)
{
public
dataview_batchtoolbar_click
(
$event
:
any
,
$event2
?:
any
)
{
if
(
Object
.
is
(
$event
.
tag
,
'deuiaction1'
))
{
this
.
dataview
expbar_dataview_batchtoolbar_deuiaction1_click
(
null
,
'dataviewexpbar_
dataview_batchtoolbar'
,
$event2
);
this
.
dataview
_batchtoolbar_deuiaction1_click
(
null
,
'
dataview_batchtoolbar'
,
$event2
);
}
if
(
Object
.
is
(
$event
.
tag
,
'deuiaction2'
))
{
this
.
dataview
expbar_dataview_batchtoolbar_deuiaction2_click
(
null
,
'dataviewexpbar_
dataview_batchtoolbar'
,
$event2
);
this
.
dataview
_batchtoolbar_deuiaction2_click
(
null
,
'
dataview_batchtoolbar'
,
$event2
);
}
}
...
...
@@ -226,7 +226,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event]
* @memberof
*/
public
dataview
expbar_dataview
_batchtoolbar_deuiaction1_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
public
dataview_batchtoolbar_deuiaction1_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
// 参数
// 取数
let
datas
:
any
[]
=
[];
...
...
@@ -254,7 +254,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event]
* @memberof
*/
public
dataview
expbar_dataview
_batchtoolbar_deuiaction2_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
public
dataview_batchtoolbar_deuiaction2_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
// 参数
// 取数
let
datas
:
any
[]
=
[];
...
...
@@ -282,7 +282,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event]
* @memberof
*/
public
dataview
expbar_dataview
_memo1_u37f11a8_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
public
dataview_memo1_u37f11a8_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
// 取数
let
datas
:
any
[]
=
[];
let
xData
:
any
=
null
;
...
...
@@ -309,7 +309,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event]
* @memberof
*/
public
dataview
expbar_dataview
_memo1_uc365542_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
public
dataview_memo1_uc365542_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
// 取数
let
datas
:
any
[]
=
[];
let
xData
:
any
=
null
;
...
...
@@ -337,7 +337,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOK
DataViewExp
ViewBase
* @memberof IBIZBOOK
Usr2Data
ViewBase
*/
public
Edit
(
args
:
any
[],
contextJO
?:
any
,
params
?:
any
,
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
)
{
if
(
args
.
length
===
0
)
{
...
...
@@ -363,7 +363,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOK
DataViewExp
ViewBase
* @memberof IBIZBOOK
Usr2Data
ViewBase
*/
public
Remove
(
args
:
any
[],
contextJO
?:
any
,
params
?:
any
,
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
)
{
const
_this
:
any
=
this
;
...
...
@@ -427,12 +427,6 @@ export default class Usr2Base extends Vue implements ControlInterface {
}
let
result
:
boolean
=
true
;
Object
.
assign
(
actionData
,
args
);
if
(
'selectionchange'
.
indexOf
(
eventName
)
!==
-
1
)
{
result
=
await
this
.
execute_dataviewexpbar_selectionchange_ctrl_logic
(
actionData
)
&&
result
;
}
if
(
'load'
.
indexOf
(
eventName
)
!==
-
1
)
{
result
=
await
this
.
execute_dataviewexpbar_load_ctrl_logic
(
actionData
)
&&
result
;
}
if
(
!
result
)
{
return
false
;
}
...
...
@@ -440,30 +434,6 @@ export default class Usr2Base extends Vue implements ControlInterface {
return
true
;
}
/**
* 部件逻辑 -- dataviewexpbar_selectionchange
*
* @param {string} eventName 部件事件名称
* @param {any[]} data 数据
* @param {*} event 源事件对象
* @memberof Usr2Base
*/
public
async
execute_dataviewexpbar_selectionchange_ctrl_logic
(
actionData
:
any
):
Promise
<
boolean
>
{
console
.
log
(
'暂未支持 CUSTOM 类型'
);
return
true
;
}
/**
* 部件逻辑 -- dataviewexpbar_load
*
* @param {string} eventName 部件事件名称
* @param {any[]} data 数据
* @param {*} event 源事件对象
* @memberof Usr2Base
*/
public
async
execute_dataviewexpbar_load_ctrl_logic
(
actionData
:
any
):
Promise
<
boolean
>
{
console
.
log
(
'暂未支持 CUSTOM 类型'
);
return
true
;
}
...
...
@@ -708,9 +678,9 @@ export default class Usr2Base extends Vue implements ControlInterface {
* 工具栏模型
*
* @type {*}
* @memberof IBIZBOOK
DataViewExp
View
* @memberof IBIZBOOK
Usr2Data
View
*/
public
dataviewexpviewdataviewexpbar_
dataview_batchtoolbarModels
:
any
=
{
public
usr2dataview
dataview_batchtoolbarModels
:
any
=
{
deuiaction1
:
{
name
:
'deuiaction1'
,
actiontarget
:
'NONE'
,
caption
:
'编辑'
,
disabled
:
false
,
type
:
'DEUIACTION'
,
visabled
:
true
,
noprivdisplaymode
:
2
,
dataaccaction
:
''
,
uiaction
:
{
tag
:
'Edit'
,
target
:
'SINGLEKEY'
}
},
deuiaction2
:
{
name
:
'deuiaction2'
,
actiontarget
:
'NONE'
,
caption
:
'删除'
,
disabled
:
false
,
type
:
'DEUIACTION'
,
visabled
:
true
,
noprivdisplaymode
:
2
,
dataaccaction
:
''
,
uiaction
:
{
tag
:
'Remove'
,
target
:
'MULTIKEY'
}
},
...
...
@@ -1035,7 +1005,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
*/
public
async
load
(
opt
:
any
=
{},
isReset
:
boolean
=
false
):
Promise
<
any
>
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
DataViewExp
View'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2Data
View'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{...
opt
};
...
...
@@ -1130,7 +1100,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
*/
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
DataViewExp
View'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2Data
View'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
return
;
}
let
_datas
:
any
[]
=
[];
...
...
@@ -1247,7 +1217,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
!
this
.
createAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
DataViewExp
View'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2Data
View'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
...
...
@@ -1255,7 +1225,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
DataViewExp
View'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2Data
View'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
if
(
item
.
ibizbook
){
...
...
@@ -1357,16 +1327,16 @@ export default class Usr2Base extends Vue implements ControlInterface {
public
uiAction
(
data
:
any
,
tag
:
any
,
$event
:
any
)
{
$event
.
stopPropagation
();
if
(
Object
.
is
(
'Edit'
,
tag
))
{
this
.
dataview
expbar_dataview
_batchtoolbar_deuiaction1_click
(
data
,
tag
,
$event
);
this
.
dataview_batchtoolbar_deuiaction1_click
(
data
,
tag
,
$event
);
}
if
(
Object
.
is
(
'Remove'
,
tag
))
{
this
.
dataview
expbar_dataview
_batchtoolbar_deuiaction2_click
(
data
,
tag
,
$event
);
this
.
dataview_batchtoolbar_deuiaction2_click
(
data
,
tag
,
$event
);
}
if
(
Object
.
is
(
'Edit'
,
tag
))
{
this
.
dataview
expbar_dataview
_memo1_u37f11a8_click
(
data
,
tag
,
$event
);
this
.
dataview_memo1_u37f11a8_click
(
data
,
tag
,
$event
);
}
if
(
Object
.
is
(
'Remove'
,
tag
))
{
this
.
dataview
expbar_dataview
_memo1_uc365542_click
(
data
,
tag
,
$event
);
this
.
dataview_memo1_uc365542_click
(
data
,
tag
,
$event
);
}
}
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
浏览文件 @
0203a969
...
...
@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合
*
* @returns {any[]}
* @memberof Usr2Data
viewexpbar_datav
iewMode
* @memberof Usr2Data
V
iewMode
*/
public
getDataItems
():
any
[]
{
return
[
...
...
@@ -43,6 +43,17 @@ export default class Usr2Model {
dataType
:
'FONTKEY'
,
},
{
name
:
'n_ibizbookname_like'
,
prop
:
'n_ibizbookname_like'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_price_gtandeq'
,
prop
:
'n_price_gtandeq'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'size'
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
浏览文件 @
0203a969
...
...
@@ -3931,7 +3931,31 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"SORTPARAM1"
,
"dstFieldName"
:
"PRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"dstSortDir"
:
"ASC"
,
"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"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取订单信息异常"
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
-248
},
{
"codeName"
:
"DEDATASET2"
,
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
...
...
@@ -3942,214 +3966,18 @@
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
BOOK
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
Order
.json"
},
"leftPos"
:
1446
,
"leftPos"
:
691
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
1
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
2
"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
1
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
2
"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
},
"topPos"
:
284
},
{
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"name"
:
"填充单位和单价"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREPARAM3"
},
"name"
:
"其他处理"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"UNITPRICE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Default[UNITPRICE] 大于(>) [Amount]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"Amount"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DELOGIC1"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION3"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNIT"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNIT] ==> Default[UNIT]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNIT"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNITPRICE] ==> Default[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"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"
:
"DEBUGPARAM3"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1210
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
},
{
"codeName"
:
"APPENDPARAM1"
,
"dstIndex"
:
0
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"leftPos"
:
439
,
"logicNodeType"
:
"APPENDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"name"
:
"附加到数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"srcIndex"
:
1
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcSize"
:
1
,
"topPos"
:
-10
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DELOGIC"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"name"
:
"统计金额"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"topPos"
:
189
},
{
"codeName"
:
"RESETPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"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
"topPos"
:
560
},
{
"codeName"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
...
...
@@ -4163,187 +3991,96 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
"codeName"
:
"DEACTION3"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDEACTIONS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"name"
:
"实体行为"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"topPos"
:
318
},
{
"codeName"
:
"DEDATAQUERY1"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
"leftPos"
:
1524
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
80
},
{
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/P
repareparam1
"
,
"name"
:
"
获取商品ID
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/P
REPAREPARAM3
"
,
"name"
:
"
设置orderid
"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"D
eaction1
"
"id"
:
"D
EACTION2
"
},
"name"
:
"连接"
,
"name"
:
"连接
名称
"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"P
repareparam1
"
"id"
:
"P
REPAREPARAM3
"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZ
UNIPRODUCTTYPE
"
,
"dstFieldName"
:
"IBIZ
ORDERID
"
,
"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"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
187
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"topPos"
:
50
},
{
"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"
:
"DEDATASET2"
,
"getDstPSDEDataSet"
:
{
"name"
:
"Default[IBIZORDERID] ==> Order[IBIZORDERID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZORDERID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"CREATEMAN"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"leftPos"
:
691
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET2"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET2"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
"id"
:
"Order"
},
"topPos"
:
560
},
{
"codeName"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取订单信息异常"
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
-248
},
{
"codeName"
:
"END1"
,
"leftPos"
:
439
,
"logicNodeType"
:
"END"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"name"
:
"结束"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"returnType"
:
"NONEVALUE"
,
"topPos"
:
579
"name"
:
"直接值[111] ==> Order[CREATEMAN]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"111"
,
"srcValueType"
:
"SRCVALUE"
},
{
"codeName"
:
"SORTPARAM1"
,
"dstFieldName"
:
"PRICE"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list
"
"id"
:
"Order
"
},
"dstSortDir"
:
"ASC"
,
"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"
:
"DEBUGPARAM5"
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"topPos"
:
-188
"name"
:
"无值(NONE) ==> Order[CREATEDATE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValueType"
:
"NONEVALUE"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
},
{
"codeName"
:
"BINDPARAM1"
,
"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"
:
"IBIZUNIPRODUCTID"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
-40
,
"logicNodeType"
:
"BINDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"Default[IBIZUNIPRODUCTID] ==> Product[IBIZUNIPRODUCTID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Produc
t"
"id"
:
"Defaul
t"
},
"topPos"
:
100
"srcValue"
:
"zzz"
,
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEDATAQUERY
2
"
,
"codeName"
:
"DEDATAQUERY
1
"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
...
...
@@ -4354,34 +4091,18 @@
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
Order
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
BOOK
.json"
},
"leftPos"
:
865
,
"leftPos"
:
1524
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
2
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
1
"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
2
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
1
"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
422
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
268
,
"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"
:
-70
"topPos"
:
80
},
{
"codeName"
:
"DEACTION2"
,
"getDstPSDEAction"
:
{
...
...
@@ -4524,25 +4245,171 @@
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
"codeName"
:
"DEACTION3"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDEACTIONS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"name"
:
"实体行为"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"topPos"
:
318
},
{
"codeName"
:
"DEDATAQUERY2"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"leftPos"
:
865
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY2"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY2"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
422
},
{
"codeName"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
187
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"topPos"
:
50
},
{
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"name"
:
"填充单位和单价"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREPARAM3"
},
"name"
:
"其他处理"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"UNITPRICE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Default[UNITPRICE] 大于(>) [Amount]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"Amount"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DELOGIC1"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION3"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNIT"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNIT] ==> Default[UNIT]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNIT"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"name"
:
"Product[UNITPRICE] ==> Default[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"
DEACTION2
"
"id"
:
"
Product
"
},
"
defaultLink"
:
true
"
srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEBUGPARAM
4
"
,
"leftPos"
:
1
28
0
,
"codeName"
:
"DEBUGPARAM
5
"
,
"leftPos"
:
1
31
0
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"topPos"
:
50
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"topPos"
:
-188
},
{
"codeName"
:
"PREPAREPARAM4"
,
"leftPos"
:
362
,
...
...
@@ -4604,58 +4471,194 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM4"
,
"topPos"
:
438
},
{
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"name"
:
"设置orderid"
,
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
-40
,
"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"
:
100
},
{
"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"
:
268
,
"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"
:
-70
},
{
"codeName"
:
"RESETPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"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"
:
"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"
:
"
DEACTION
2"
"id"
:
"
Prepareparam
2"
},
"name"
:
"连接
名称
"
,
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
PREPAREPARAM3
"
"id"
:
"
Deaction1
"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZORDERID"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEDATASET1"
,
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Ord
er"
"id"
:
"filt
er"
},
"name"
:
"Default[IBIZORDERID] ==> Order[IBIZORDERID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZORDERID"
,
"getSrcPSDELogicParam"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
"leftPos"
:
1446
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET1"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET1"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
},
"topPos"
:
284
},
{
"codeName"
:
"END1"
,
"leftPos"
:
439
,
"logicNodeType"
:
"END"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"name"
:
"结束"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"returnType"
:
"NONEVALUE"
,
"topPos"
:
579
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DELOGIC"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"name"
:
"统计金额"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"topPos"
:
189
},
{
"dstFieldName"
:
"CREATEMAN
"
,
"codeName"
:
"DEBUGPARAM3
"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order
"
"id"
:
"Default
"
},
"name"
:
"直接值[111] ==> Order[CREATEMAN]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"111"
,
"srcValueType"
:
"SRCVALUE"
"leftPos"
:
1210
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
},
{
"dstFieldName"
:
"CREATEDATE"
,
"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"
:
"APPENDPARAM1"
,
"dstIndex"
:
0
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order
"
"id"
:
"list
"
},
"name"
:
"无值(NONE) ==> Order[CREATEDATE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValueType"
:
"NONEVALUE"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"leftPos"
:
439
,
"logicNodeType"
:
"APPENDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"name"
:
"附加到数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"srcIndex"
:
1
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcSize"
:
1
,
"topPos"
:
-10
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Default"
,
...
...
@@ -4684,12 +4687,16 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"name"
:
"session"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"sessionParam"
:
true
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"name"
:
"订单"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
},
{
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
...
...
@@ -4709,16 +4716,12 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"filterParam"
:
true
},
{
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"name"
:
"订单"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"name"
:
"session"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"sessionParam"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json
浏览文件 @
0203a969
...
...
@@ -38,7 +38,31 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"SORTPARAM1"
,
"dstFieldName"
:
"PRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"dstSortDir"
:
"ASC"
,
"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"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取订单信息异常"
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
-248
},
{
"codeName"
:
"DEDATASET2"
,
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
...
...
@@ -49,214 +73,18 @@
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
BOOK
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
Order
.json"
},
"leftPos"
:
1446
,
"leftPos"
:
691
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
1
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
2
"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
1
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET
2
"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
},
"topPos"
:
284
},
{
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"name"
:
"填充单位和单价"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREPARAM3"
},
"name"
:
"其他处理"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"UNITPRICE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Default[UNITPRICE] 大于(>) [Amount]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"Amount"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DELOGIC1"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION3"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNIT"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNIT] ==> Default[UNIT]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNIT"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNITPRICE] ==> Default[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"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"
:
"DEBUGPARAM3"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1210
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
},
{
"codeName"
:
"APPENDPARAM1"
,
"dstIndex"
:
0
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"leftPos"
:
439
,
"logicNodeType"
:
"APPENDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"name"
:
"附加到数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"srcIndex"
:
1
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcSize"
:
1
,
"topPos"
:
-10
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DELOGIC"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"name"
:
"统计金额"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"topPos"
:
189
},
{
"codeName"
:
"RESETPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"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
"topPos"
:
560
},
{
"codeName"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
...
...
@@ -270,187 +98,96 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
"codeName"
:
"DEACTION3"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDEACTIONS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"name"
:
"实体行为"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"topPos"
:
318
},
{
"codeName"
:
"DEDATAQUERY1"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
"leftPos"
:
1524
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
80
},
{
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/P
repareparam1
"
,
"name"
:
"
获取商品ID
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/P
REPAREPARAM3
"
,
"name"
:
"
设置orderid
"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"D
eaction1
"
"id"
:
"D
EACTION2
"
},
"name"
:
"连接"
,
"name"
:
"连接
名称
"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"P
repareparam1
"
"id"
:
"P
REPAREPARAM3
"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZ
UNIPRODUCTTYPE
"
,
"dstFieldName"
:
"IBIZ
ORDERID
"
,
"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"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
187
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"topPos"
:
50
},
{
"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"
:
"DEDATASET2"
,
"getDstPSDEDataSet"
:
{
"name"
:
"Default[IBIZORDERID] ==> Order[IBIZORDERID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZORDERID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"CREATEMAN"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"leftPos"
:
691
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET2"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET2"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
"id"
:
"Order"
},
"topPos"
:
560
},
{
"codeName"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取订单信息异常"
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
-248
},
{
"codeName"
:
"END1"
,
"leftPos"
:
439
,
"logicNodeType"
:
"END"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"name"
:
"结束"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"returnType"
:
"NONEVALUE"
,
"topPos"
:
579
"name"
:
"直接值[111] ==> Order[CREATEMAN]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"111"
,
"srcValueType"
:
"SRCVALUE"
},
{
"codeName"
:
"SORTPARAM1"
,
"dstFieldName"
:
"PRICE"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list
"
"id"
:
"Order
"
},
"dstSortDir"
:
"ASC"
,
"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"
:
"DEBUGPARAM5"
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM5"
,
"topPos"
:
-188
"name"
:
"无值(NONE) ==> Order[CREATEDATE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValueType"
:
"NONEVALUE"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
},
{
"codeName"
:
"BINDPARAM1"
,
"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"
:
"IBIZUNIPRODUCTID"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
-40
,
"logicNodeType"
:
"BINDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"Default[IBIZUNIPRODUCTID] ==> Product[IBIZUNIPRODUCTID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Produc
t"
"id"
:
"Defaul
t"
},
"topPos"
:
100
"srcValue"
:
"zzz"
,
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEDATAQUERY
2
"
,
"codeName"
:
"DEDATAQUERY
1
"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
...
...
@@ -461,34 +198,18 @@
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
Order
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
BOOK
.json"
},
"leftPos"
:
865
,
"leftPos"
:
1524
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
2
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
1
"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
2
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY
1
"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
422
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
268
,
"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"
:
-70
"topPos"
:
80
},
{
"codeName"
:
"DEACTION2"
,
"getDstPSDEAction"
:
{
...
...
@@ -631,25 +352,171 @@
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM3"
"id"
:
"DEBUGPARAM3"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION2"
},
"defaultLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
"codeName"
:
"DEACTION3"
,
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDEACTIONS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"name"
:
"实体行为"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"topPos"
:
318
},
{
"codeName"
:
"DEDATAQUERY2"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"leftPos"
:
865
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY2"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY2"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
422
},
{
"codeName"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
187
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RENEWPARAM1"
,
"topPos"
:
50
},
{
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"name"
:
"填充单位和单价"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREPARAM3"
},
"name"
:
"其他处理"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"UNITPRICE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Default[UNITPRICE] 大于(>) [Amount]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"Amount"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DELOGIC1"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION3"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNIT"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNIT] ==> Default[UNIT]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNIT"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"默认"
,
"getSrcPSDELogicNode"
:
{
"name"
:
"Product[UNITPRICE] ==> Default[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"
DEACTION2
"
"id"
:
"
Product
"
},
"
defaultLink"
:
true
"
srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Prepareparam2"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEBUGPARAM
4
"
,
"leftPos"
:
1
28
0
,
"codeName"
:
"DEBUGPARAM
5
"
,
"leftPos"
:
1
31
0
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
4
"
,
"topPos"
:
50
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM
5
"
,
"topPos"
:
-188
},
{
"codeName"
:
"PREPAREPARAM4"
,
"leftPos"
:
362
,
...
...
@@ -711,58 +578,194 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM4"
,
"topPos"
:
438
},
{
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"name"
:
"设置orderid"
,
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
-40
,
"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"
:
100
},
{
"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"
:
268
,
"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"
:
-70
},
{
"codeName"
:
"RESETPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"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"
:
"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"
:
"
DEACTION
2"
"id"
:
"
Prepareparam
2"
},
"name"
:
"连接
名称
"
,
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
PREPAREPARAM3
"
"id"
:
"
Deaction1
"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZORDERID"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEDATASET1"
,
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Ord
er"
"id"
:
"filt
er"
},
"name"
:
"Default[IBIZORDERID] ==> Order[IBIZORDERID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZORDERID"
,
"getSrcPSDELogicParam"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
"leftPos"
:
1446
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET1"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATASET1"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
},
"topPos"
:
284
},
{
"codeName"
:
"END1"
,
"leftPos"
:
439
,
"logicNodeType"
:
"END"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"name"
:
"结束"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/END1"
,
"returnType"
:
"NONEVALUE"
,
"topPos"
:
579
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DELOGIC"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"name"
:
"统计金额"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DELOGIC1"
,
"topPos"
:
189
},
{
"dstFieldName"
:
"CREATEMAN
"
,
"codeName"
:
"DEBUGPARAM3
"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order
"
"id"
:
"Default
"
},
"name"
:
"直接值[111] ==> Order[CREATEMAN]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"111"
,
"srcValueType"
:
"SRCVALUE"
"leftPos"
:
1210
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
},
{
"dstFieldName"
:
"CREATEDATE"
,
"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"
:
"APPENDPARAM1"
,
"dstIndex"
:
0
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order
"
"id"
:
"list
"
},
"name"
:
"无值(NONE) ==> Order[CREATEDATE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValueType"
:
"NONEVALUE"
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"leftPos"
:
439
,
"logicNodeType"
:
"APPENDPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"name"
:
"附加到数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"srcIndex"
:
1
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcSize"
:
1
,
"topPos"
:
-10
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Default"
,
...
...
@@ -791,12 +794,16 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"name"
:
"session"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"sessionParam"
:
true
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"name"
:
"订单"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
},
{
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
...
...
@@ -816,16 +823,12 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"filterParam"
:
true
},
{
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"name"
:
"订单"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"name"
:
"session"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/session"
,
"sessionParam"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.bpmn
浏览文件 @
0203a969
...
...
@@ -8,112 +8,92 @@
<tns:metaData
express=
""
name=
"ibizorderdetailgetunitandpricedefault"
type=
"entity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricepage"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricelist"
type=
"refentity"
/>
<tns:metaData
express=
"new
HashMap()"
name=
"ibizorderdetailgetunitandpricesession
"
type=
"refentity"
/>
<tns:metaData
express=
"new
cn.ibizlab.core.sample.domain.IBIZOrder()"
name=
"ibizorderdetailgetunitandpriceorder
"
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 cn.ibizlab.core.sample.domain.IBIZOrder()"
name=
"ibizorderdetailgetunitandpriceorder"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricesession"
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=
"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.IIBIZUNIProductService))"
name=
"ibizuniproductservice"
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.IIBIZ
OrderService))"
name=
"ibizorder
service"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZ
UNIProductService))"
name=
"ibizuniproduct
service"
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:global
identifier=
"ibizorderdetailgetunitandpricedefault"
type=
"cn.ibizlab.core.sample.domain.IBIZOrderDetail"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceproduct"
type=
"cn.ibizlab.core.sample.domain.IBIZUNIProduct"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceorder"
type=
"cn.ibizlab.core.sample.domain.IBIZOrder"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceproduct"
type=
"cn.ibizlab.core.sample.domain.IBIZUNIProduct"
/>
</extensionElements>
<startEvent
id=
"begin"
isInterrupting=
"true"
/>
<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=
"ibizorderdetailgetunitandpricededataset1"
id=
"dedataset1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据集"
/>
<endEvent
id=
"dedataset1_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataset1_end_line"
sourceRef=
"dedataset1"
targetRef=
"dedataset1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam2"
id=
"prepareparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"填充单位和单价"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction1"
id=
"deaction1"
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"
/>
<sequenceFlow
id=
"debugparam3_end_line"
sourceRef=
"debugparam3"
targetRef=
"debugparam3_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceappendparam1"
id=
"appendparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"附加到数组参数"
/>
<endEvent
id=
"appendparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"appendparam1_end_line"
sourceRef=
"appendparam1"
targetRef=
"appendparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedelogic1"
id=
"delogic1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"统计金额"
/>
<endEvent
id=
"delogic1_end"
name=
"end"
/>
<sequenceFlow
id=
"delogic1_end_line"
sourceRef=
"delogic1"
targetRef=
"delogic1_end"
/>
<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=
"ibizorderdetailgetunitandpricethrowexception2"
id=
"throwexception2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息异常"
/>
<endEvent
id=
"throwexception2_end"
name=
"end"
/>
<sequenceFlow
id=
"throwexception2_end_line"
sourceRef=
"throwexception2"
targetRef=
"throwexception2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataset2"
id=
"dedataset2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据集"
/>
<endEvent
id=
"dedataset2_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataset2_end_line"
sourceRef=
"dedataset2"
targetRef=
"dedataset2_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=
"ibizorderdetailgetunitandpricedeaction3"
id=
"deaction3"
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=
"ibizorderdetailgetunitandpriceprepareparam3"
id=
"prepareparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"设置orderid"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam1"
id=
"prepareparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品ID"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataquery1"
id=
"dedataquery1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询"
/>
<endEvent
id=
"dedataquery1_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataquery1_end_line"
sourceRef=
"dedataquery1"
targetRef=
"dedataquery1_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=
"ibizorderdetailgetunitandpricedeaction2"
id=
"deaction2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction3"
id=
"deaction3"
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=
"ibizorderdetailgetunitandpricededataquery2"
id=
"dedataquery2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询"
/>
<endEvent
id=
"dedataquery2_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataquery2_end_line"
sourceRef=
"dedataquery2"
targetRef=
"dedataquery2_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=
"ibizorderdetailgetunitandpricededataset2"
id=
"dedataset2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据集"
/>
<endEvent
id=
"dedataset2_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataset2_end_line"
sourceRef=
"dedataset2"
targetRef=
"dedataset2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception2"
id=
"throwexception2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息异常"
/>
<endEvent
id=
"throwexception2_end"
name=
"end"
/>
<sequenceFlow
id=
"throwexception2_end_line"
sourceRef=
"throwexception2"
targetRef=
"throwexception2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceend1"
id=
"end1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"结束"
/>
<endEvent
id=
"end1_end"
name=
"end"
/>
<sequenceFlow
id=
"end1_end_line"
sourceRef=
"end1"
targetRef=
"end1_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=
"ibizorderdetailgetunitandpriceprepareparam2"
id=
"prepareparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"填充单位和单价"
/>
<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=
"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=
"ibizorderdetailgetunitandpricebindparam1"
id=
"bindparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"绑定参数"
/>
<endEvent
id=
"bindparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"bindparam1_end_line"
sourceRef=
"bindparam1"
targetRef=
"bindparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandprice
dedataquery2"
id=
"dedataquery2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询
"
/>
<endEvent
id=
"
dedataquery2
_end"
name=
"end"
/>
<sequenceFlow
id=
"
dedataquery2_end_line"
sourceRef=
"dedataquery2"
targetRef=
"dedataquery2
_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandprice
throwexception"
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"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction2"
id=
"deaction2"
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=
"resetparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"resetparam1_end_line"
sourceRef=
"resetparam1"
targetRef=
"resetparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction1"
id=
"deaction1"
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"
/>
<sequenceFlow
id=
"dedataset1_end_line"
sourceRef=
"dedataset1"
targetRef=
"dedataset1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceend1"
id=
"end1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"结束"
/>
<endEvent
id=
"end1_end"
name=
"end"
/>
<sequenceFlow
id=
"end1_end_line"
sourceRef=
"end1"
targetRef=
"end1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedelogic1"
id=
"delogic1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"统计金额"
/>
<endEvent
id=
"delogic1_end"
name=
"end"
/>
<sequenceFlow
id=
"delogic1_end_line"
sourceRef=
"delogic1"
targetRef=
"delogic1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam3"
id=
"debugparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam3_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam3_end_line"
sourceRef=
"debugparam3"
targetRef=
"debugparam3_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=
"ibizorderdetailgetunitandpriceprepareparam3"
id=
"prepareparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"设置orderid"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceappendparam1"
id=
"appendparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"附加到数组参数"
/>
<endEvent
id=
"appendparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"appendparam1_end_line"
sourceRef=
"appendparam1"
targetRef=
"appendparam1_end"
/>
<sequenceFlow
id=
"begin_prepareparam1"
sourceRef=
"begin"
targetRef=
"prepareparam1"
>
</sequenceFlow>
<sequenceFlow
id=
"gateway-prepareparam2_prepareparam3"
sourceRef=
"gateway-prepareparam2"
targetRef=
"prepareparam3"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder);
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=
"deaction1_prepareparam2"
sourceRef=
"deaction1"
targetRef=
"prepareparam2"
>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_throwexception"
sourceRef=
"deaction1"
targetRef=
"throwexception"
>
<sequenceFlow
id=
"prepareparam3_deaction2"
sourceRef=
"prepareparam3"
targetRef=
"deaction2"
>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam1_deaction1"
sourceRef=
"prepareparam1"
targetRef=
"deaction1"
>
</sequenceFlow>
...
...
@@ -124,11 +104,11 @@
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandprice
session:Map
();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
product==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder
);
$ibizorderdetailgetunitandprice
session:Map
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
order==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct &&
);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","100")))
]]>
</conditionExpression>
...
...
@@ -138,11 +118,11 @@
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandprice
session:Map
();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
product==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder
);
$ibizorderdetailgetunitandprice
session:Map
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
order==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct &&
);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","PRICE")))
]]>
</conditionExpression>
...
...
@@ -152,11 +132,11 @@
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandprice
session:Map
();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
product==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder
);
$ibizorderdetailgetunitandprice
session:Map
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
order==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct &&
);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("createdate"),"GTANDEQ","CREATEDATE")))
]]>
</conditionExpression>
...
...
@@ -166,26 +146,46 @@
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandprice
session:Map
();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandprice
order:IBIZOrder
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
product==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder
);
$ibizorderdetailgetunitandprice
session:Map
();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandprice
order==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct &&
);
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("ordertime"),"LTANDEQ","")))
]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"deaction2_debugparam3"
sourceRef=
"deaction2"
targetRef=
"debugparam3"
>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam3_deaction2"
sourceRef=
"prepareparam3"
targetRef=
"deaction2"
>
<sequenceFlow
id=
"gateway-prepareparam2_prepareparam3"
sourceRef=
"gateway-prepareparam2"
targetRef=
"prepareparam3"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricepage:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricesession: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
id=
"deaction1_prepareparam2"
sourceRef=
"deaction1"
targetRef=
"prepareparam2"
>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_throwexception"
sourceRef=
"deaction1"
targetRef=
"throwexception"
>
</sequenceFlow>
<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=
"gateway-prepareparam2_end_line"
sourceRef=
"gateway-prepareparam2"
targetRef=
"gateway-prepareparam2_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"
/>
<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=
"gateway-prepareparam2_end_line"
sourceRef=
"gateway-prepareparam2"
targetRef=
"gateway-prepareparam2_end"
/>
<endEvent
id=
"gateway-prepareparam2_end"
name=
"end"
/>
</process>
</definitions>
\ No newline at end of file
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.drl
浏览文件 @
0203a969
...
...
@@ -8,14 +8,14 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrderDetail
ibizorderdetailgetunitandpricedefault
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricepage
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricelist
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricesession
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrder
ibizorderdetailgetunitandpriceorder
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZUNIProduct
ibizorderdetailgetunitandpriceproduct
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricefilter
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrder
ibizorderdetailgetunitandpriceorder
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricesession
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderService
ibizorderservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZBOOKService
ibizbookservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZUNIProductService
ibizuniproductservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
ibizorderdetailservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZ
OrderService
ibizorder
service
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZ
UNIProductService
ibizuniproduct
service
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
iBzSysIbizorderdetailDefaultService
;
global
cn
.
ibizlab
.
util
.
security
.
AuthenticationUser
curuser
;
...
...
@@ -37,125 +37,126 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
实体数据集
]
rule
"
dedataset
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
dedataset
1"
//
逻辑处理节点
[
排序数组参数
]
rule
"
sortparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
sortparam
1"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
填充单位和单价
]
rule
"
prepareparam
2"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam
2"
//
逻辑处理节点
[
获取订单信息异常
]
rule
"
throwexception
2"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception
2"
when
then
ibizorderdetailgetunitandpricedefault
.
set
(
"unit"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unit"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取商品信息
]
rule
"de
action1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
action1
"
//
逻辑处理节点
[
实体数据集
]
rule
"de
dataset2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
dataset2
"
when
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizuniproductservice
.
get
(
ibizorderdetailgetunitandpriceproduct
.
getIbizuniproductid
()),
ibizorderdetailgetunitandpriceproduct
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
调试逻辑参数
]
rule
"debugparam
3
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
3
"
//
逻辑处理节点
[
大于
200
处理
]
rule
"debugparam
2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
2
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
附加到数组参数
]
rule
"
appendparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
appendparam1
"
//
逻辑处理节点
[
设置
orderid
]
rule
"
prepareparam3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam3
"
when
then
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizorderid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizorderid"
));
ibizorderdetailgetunitandpriceorder
.
set
(
"createman"
,
"111"
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
统计金额
]
rule
"
delogic
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
delogic
1"
//
逻辑处理节点
[
获取商品
id
]
rule
"
prepareparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam
1"
when
then
ibizorderdetailgetunitandpriceproduct
.
set
(
"ibizuniproductid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizuniproductid"
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
重置参数
]
rule
"
resetparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
resetparam
1"
//
逻辑处理节点
[
实体数据查询
]
rule
"
dedataquery
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
dedataquery
1"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
大于
200
处理
]
rule
"de
bugparam
2"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
bugparam
2"
//
逻辑处理节点
[
获取订单信息
]
rule
"de
action
2"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
action
2"
when
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizorderservice
.
get
(
ibizorderdetailgetunitandpriceorder
.
getIbizorderid
()),
ibizorderdetailgetunitandpriceorder
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
实体行为
]
...
...
@@ -167,240 +168,239 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
实体数据查询
]
rule
"dedataquery
1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricededataquery
1
"
rule
"dedataquery
2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricededataquery
2
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取商品
id
]
rule
"
prepare
param1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepare
param1"
//
逻辑处理节点
[
重新建立参数
]
rule
"
renew
param1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
renew
param1"
when
then
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizuniproducttype"
,
null
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
重新建立参数
]
rule
"
renewparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
renewparam1
"
//
逻辑处理节点
[
填充单位和单价
]
rule
"
prepareparam2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam2
"
when
then
ibizorderdetailgetunitandpricedefault
.
set
(
"unit"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unit"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取产品价格异常
]
rule
"
throwexception
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception
"
//
逻辑处理节点
[
调试逻辑参数
]
rule
"
debugparam5
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam5
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
实体数据集
]
rule
"
dedataset2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
dedataset2
"
//
逻辑处理节点
[
setting
]
rule
"
prepareparam4
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam4
"
when
then
ibizorderdetailgetunitandpriceproduct
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
ibizorderdetailgetunitandpriceproduct
.
set
(
""
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
ibizorderdetailgetunitandpriceproduct
.
set
(
""
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
ibizorderdetailgetunitandpriceproduct
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取订单信息异常
]
rule
"
throwexception2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception2
"
//
逻辑处理节点
[
绑定参数
]
rule
"
bindparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
bindparam1
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
结束
]
rule
"
end1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
end1
"
//
逻辑处理节点
[
获取产品价格异常
]
rule
"
throwexception
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
排序数组
参数
]
rule
"
sort
param1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
sort
param1"
//
逻辑处理节点
[
拷贝
参数
]
rule
"
copy
param1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
copy
param1"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
调试逻辑
参数
]
rule
"
debugparam5
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam5
"
//
逻辑处理节点
[
重置
参数
]
rule
"
resetparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
resetparam1
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
绑定参数
]
rule
"
bindparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
bindparam
1"
//
逻辑处理节点
[
获取商品信息
]
rule
"
deaction
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction
1"
when
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizuniproductservice
.
get
(
ibizorderdetailgetunitandpriceproduct
.
getIbizuniproductid
()),
ibizorderdetailgetunitandpriceproduct
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
实体数据
查询
]
rule
"dedata
query2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricededata
query2
"
//
逻辑处理节点
[
实体数据
集
]
rule
"dedata
set1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricededata
set1
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
拷贝参数
]
rule
"
copyparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
copyparam
1"
//
逻辑处理节点
[
结束
]
rule
"
end
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
end
1"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
获取订单信息
]
rule
"de
action2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
action2
"
//
逻辑处理节点
[
统计金额
]
rule
"de
logic1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
logic1
"
when
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizorderservice
.
get
(
ibizorderdetailgetunitandpriceorder
.
getIbizorderid
()),
ibizorderdetailgetunitandpriceorder
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
调试逻辑参数
]
rule
"debugparam
4
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
4
"
rule
"debugparam
3
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
3
"
when
then
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
setting
]
rule
"
prepare
param4"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepare
param4"
//
逻辑处理节点
[
调试逻辑参数
]
rule
"
debug
param4"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debug
param4"
when
then
ibizorderdetailgetunitandpriceproduct
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
ibizorderdetailgetunitandpriceproduct
.
set
(
""
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
ibizorderdetailgetunitandpriceproduct
.
set
(
""
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
ibizorderdetailgetunitandpriceproduct
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
""
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
//
逻辑处理节点
[
设置
orderid
]
rule
"
prepareparam3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam3
"
//
逻辑处理节点
[
附加到数组参数
]
rule
"
appendparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
appendparam1
"
when
then
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizorderid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizorderid"
));
ibizorderdetailgetunitandpriceorder
.
set
(
"createman"
,
"111"
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
order
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandprice
session
);//
更新
fact
中变量值
end
\ No newline at end of file
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
0203a969
...
...
@@ -23,18 +23,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"出版社"
,
"codeName"
:
"press"
,
...
...
@@ -47,18 +35,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
...
...
@@ -71,6 +47,30 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
0203a969
...
...
@@ -20,6 +20,18 @@
}
}
],
"getPSDETreeColumns"
:
[
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
...
@@ -43,18 +55,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json
浏览文件 @
0203a969
...
...
@@ -2787,14 +2787,38 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"SORTPARAM1"
,
"dstFieldName"
:
"PRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"dstSortDir"
:
"ASC"
,
"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"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取订单信息异常"
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
-248
},
{
"codeName"
:
"DEDATASET2"
,
"getDstPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZ
BOOK
.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZ
Order
.json"
},
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
...
...
@@ -2806,230 +2830,18 @@
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
BOOK
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
Order
.json"
},
"leftPos"
:
1446
,
"leftPos"
:
691
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET
1
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET
2
"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET
1
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET
2
"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
},
"topPos"
:
284
},
{
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam2"
,
"name"
:
"填充单位和单价"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREPARAM3"
},
"name"
:
"其他处理"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"UNITPRICE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Default[UNITPRICE] 大于(>) [Amount]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"Amount"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DELOGIC1"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION3"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNIT"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNIT] ==> Default[UNIT]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNIT"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNITPRICE] ==> Default[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam2"
,
"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"
:
"DEBUGPARAM3"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1210
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
},
{
"codeName"
:
"APPENDPARAM1"
,
"dstIndex"
:
0
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"leftPos"
:
439
,
"logicNodeType"
:
"APPENDPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"name"
:
"附加到数组参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"srcIndex"
:
1
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcSize"
:
1
,
"topPos"
:
-10
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"CountMoney"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json"
},
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DELOGIC"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DELOGIC1"
,
"name"
:
"统计金额"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DELOGIC1"
,
"topPos"
:
189
},
{
"codeName"
:
"RESETPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"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
"topPos"
:
560
},
{
"codeName"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
...
...
@@ -3043,203 +2855,96 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
"codeName"
:
"DEACTION3"
,
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"CountMoney"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json"
},
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDEACTIONS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"name"
:
"实体行为"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"topPos"
:
318
},
{
"codeName"
:
"DEDATAQUERY1"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
"leftPos"
:
1524
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY1"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY1"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
80
},
{
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/P
repareparam1
"
,
"name"
:
"
获取商品ID
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/P
REPAREPARAM3
"
,
"name"
:
"
设置orderid
"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"D
eaction1
"
"id"
:
"D
EACTION2
"
},
"name"
:
"连接"
,
"name"
:
"连接
名称
"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"P
repareparam1
"
"id"
:
"P
REPAREPARAM3
"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZ
UNIPRODUCTTYPE
"
,
"dstFieldName"
:
"IBIZ
ORDERID
"
,
"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"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
187
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"topPos"
:
50
},
{
"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"
:
"DEDATASET2"
,
"getDstPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getDstPSDEDataSet"
:
{
"name"
:
"Default[IBIZORDERID] ==> Order[IBIZORDERID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZORDERID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"CREATEMAN"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"leftPos"
:
691
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET2"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET2"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
"id"
:
"Order"
},
"topPos"
:
560
},
{
"codeName"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorInfo"
:
"获取订单信息异常"
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
-248
},
{
"codeName"
:
"END1"
,
"leftPos"
:
439
,
"logicNodeType"
:
"END"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/END1"
,
"name"
:
"结束"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/END1"
,
"returnType"
:
"NONEVALUE"
,
"topPos"
:
579
"name"
:
"直接值[111] ==> Order[CREATEMAN]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"111"
,
"srcValueType"
:
"SRCVALUE"
},
{
"codeName"
:
"SORTPARAM1"
,
"dstFieldName"
:
"PRICE"
,
"dstFieldName"
:
"CREATEDATE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list
"
"id"
:
"Order
"
},
"dstSortDir"
:
"ASC"
,
"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"
:
"DEBUGPARAM5"
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM5"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM5"
,
"topPos"
:
-188
"name"
:
"无值(NONE) ==> Order[CREATEDATE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValueType"
:
"NONEVALUE"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
},
{
"codeName"
:
"BINDPARAM1"
,
"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"
:
"IBIZUNIPRODUCTID"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
-40
,
"logicNodeType"
:
"BINDPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"name"
:
"Default[IBIZUNIPRODUCTID] ==> Product[IBIZUNIPRODUCTID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZUNIPRODUCTID"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Produc
t"
"id"
:
"Defaul
t"
},
"topPos"
:
100
"srcValue"
:
"zzz"
,
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEDATAQUERY
2
"
,
"codeName"
:
"DEDATAQUERY
1
"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
...
...
@@ -3250,34 +2955,18 @@
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
Order
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
BOOK
.json"
},
"leftPos"
:
865
,
"leftPos"
:
1524
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY
2
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY
1
"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY
2
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY
1
"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
422
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
268
,
"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"
:
-70
"topPos"
:
80
},
{
"codeName"
:
"DEACTION2"
,
"getDstPSAppDEAction"
:
{
...
...
@@ -3440,13 +3129,167 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"topPos"
:
-37
},
{
"codeName"
:
"DEBUGPARAM4"
,
"leftPos"
:
1280
,
"codeName"
:
"DEACTION3"
,
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"CountMoney"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json"
},
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDEACTIONS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"name"
:
"实体行为"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"topPos"
:
318
},
{
"codeName"
:
"DEDATAQUERY2"
,
"getDstPSDEDataQuery"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"leftPos"
:
865
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY2"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY2"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"list"
},
"topPos"
:
422
},
{
"codeName"
:
"RENEWPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
187
,
"logicNodeType"
:
"RENEWPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"name"
:
"重新建立参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RENEWPARAM1"
,
"topPos"
:
50
},
{
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam2"
,
"name"
:
"填充单位和单价"
,
"getPSDELogicLinks"
:
[
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREPARAM3"
},
"name"
:
"其他处理"
,
"getPSDELogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"name"
:
"连接条件组"
,
"getPSDELogicLinkConds"
:
[
{
"condOP"
:
"GT"
,
"dstFieldName"
:
"UNITPRICE"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"logicType"
:
"SINGLE"
,
"name"
:
"Default[UNITPRICE] 大于(>) [Amount]"
,
"paramType"
:
"ENTITYFIELD"
,
"paramValue"
:
"Amount"
,
"getSrcLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order"
}
}
]
},
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DELOGIC1"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEACTION3"
},
"name"
:
"连接名称"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
}
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"UNIT"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNIT] ==> Default[UNIT]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNIT"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
},
{
"dstFieldName"
:
"UNITPRICE"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"name"
:
"Product[UNITPRICE] ==> Default[UNITPRICE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"UNITPRICE"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Prepareparam2"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEBUGPARAM5"
,
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
4
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
5
"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
4
"
,
"topPos"
:
50
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM
5
"
,
"topPos"
:
-188
},
{
"codeName"
:
"PREPAREPARAM4"
,
"leftPos"
:
362
,
...
...
@@ -3472,94 +3315,254 @@
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product ==> Product"
,
"paramAction"
:
"COPYPARAM"
,
"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"
:
"BINDPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"leftPos"
:
-40
,
"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"
},
"srcValueType"
:
"SRCDLPARAM"
"topPos"
:
100
},
{
"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
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[undefined]"
,
"paramAction"
:
"BINDPARAM"
,
"leftPos"
:
268
,
"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"
:
"Product
"
"id"
:
"Order
"
},
"srcValueType"
:
"SRCDLPARAM"
"topPos"
:
-70
},
{
"dstFieldName"
:
"UNITPRICE
"
,
"codeName"
:
"RESETPARAM1
"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Product"
},
"name"
:
"Product[undefined] ==> Product[UNITPRICE]"
,
"paramAction"
:
"APPENDPARAM"
,
"getSrcPSDELogicParam"
:
{
"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"
:
"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"
},
"srcValueType"
:
"SRCDLPARAM"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM4"
,
"topPos"
:
438
},
{
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"logicNodeType"
:
"PREPAREPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"name"
:
"设置orderid"
,
"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"
:
"
DEACTION
2"
"id"
:
"
Prepareparam
2"
},
"name"
:
"连接
名称
"
,
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
PREPAREPARAM3
"
"id"
:
"
Deaction1
"
}
},
{
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Throwexception"
},
"name"
:
"异常"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
},
"catchLink"
:
true
}
],
"getPSDELogicNodeParams"
:
[
{
"dstFieldName"
:
"IBIZORDERID"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
"codeName"
:
"DEDATASET1"
,
"getDstPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Ord
er"
"id"
:
"filt
er"
},
"name"
:
"Default[IBIZORDERID] ==> Order[IBIZORDERID]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcFieldName"
:
"IBIZORDERID"
,
"getSrcPSDELogicParam"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
"leftPos"
:
1446
,
"logicNodeType"
:
"DEDATASET"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET1"
,
"name"
:
"实体数据集"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATASET1"
,
"getRetPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"page"
},
"topPos"
:
284
},
{
"codeName"
:
"END1"
,
"leftPos"
:
439
,
"logicNodeType"
:
"END"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/END1"
,
"name"
:
"结束"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/END1"
,
"returnType"
:
"NONEVALUE"
,
"topPos"
:
579
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"CountMoney"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json"
},
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcValueType"
:
"SRCDLPARAM"
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json"
},
"leftPos"
:
1001
,
"logicNodeType"
:
"DELOGIC"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DELOGIC1"
,
"name"
:
"统计金额"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DELOGIC1"
,
"topPos"
:
189
},
{
"dstFieldName"
:
"CREATEMAN
"
,
"codeName"
:
"DEBUGPARAM3
"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order
"
"id"
:
"Default
"
},
"name"
:
"直接值[111] ==> Order[CREATEMAN]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"111"
,
"srcValueType"
:
"SRCVALUE"
"leftPos"
:
1210
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
},
{
"dstFieldName"
:
"CREATEDATE"
,
"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"
:
"APPENDPARAM1"
,
"dstIndex"
:
0
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Order
"
"id"
:
"list
"
},
"name"
:
"无值(NONE) ==> Order[CREATEDATE]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValueType"
:
"NONEVALUE"
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"leftPos"
:
439
,
"logicNodeType"
:
"APPENDPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"name"
:
"附加到数组参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"srcIndex"
:
1
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"srcSize"
:
1
,
"topPos"
:
-10
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Default"
,
...
...
@@ -3592,12 +3595,20 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"entityListParam"
:
true
},
{
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/session"
,
"name"
:
"session"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/session"
,
"sessionParam"
:
true
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"name"
:
"订单"
,
"getParamPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"entityParam"
:
true
},
{
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
...
...
@@ -3621,20 +3632,12 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/filter"
,
"filterParam"
:
true
},
{
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"name"
:
"订单"
,
"getParamPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrder.json"
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"entityParam"
:
true
"codeName"
:
"session"
,
"logicName"
:
"session"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/session"
,
"name"
:
"session"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/session"
,
"sessionParam"
:
true
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
0203a969
...
...
@@ -57,18 +57,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"出版社"
,
"codeName"
:
"press"
,
...
...
@@ -81,18 +69,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
...
...
@@ -105,6 +81,30 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
0203a969
...
...
@@ -100,6 +100,18 @@
"id"
:
"TREEGRIDEX"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
...
@@ -123,18 +135,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
0203a969
...
...
@@ -393,7 +393,7 @@
<!--输出实体[IBIZORDERDETAIL]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-18
0
-14"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-18
2
-14"
>
<createTable
tableName=
"T_IBIZORDERDETAIL"
>
<column
name=
"IBIZORDERDETAILNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
...
...
demo-core/src/main/resources/liquibase/view.xml
浏览文件 @
0203a969
...
...
@@ -37,7 +37,7 @@
</createView>
</changeSet>
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-18
0
-8"
runOnChange=
"true"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-18
2
-8"
runOnChange=
"true"
>
<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 ]]>
</createView>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录