Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
a83c6ff5
提交
a83c6ff5
编写于
2年前
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MoneyQ 发布系统代码 [后台服务,演示应用]
上级
1679470e
变更
14
显示空白字符变更
内嵌
并排
正在显示
14 个修改的文件
包含
1223 行增加
和
1171 行删除
+1223
-1171
get-unit-and-price-logic-base.ts
...service/ibizorder-detail/get-unit-and-price-logic-base.ts
+158
-157
guide-borrow-form-form-base.vue
...ok/guide-borrow-form-form/guide-borrow-form-form-base.vue
+2
-1
guide-wizardpanel-base.vue
...ets/ibizbook/guide-wizardpanel/guide-wizardpanel-base.vue
+1
-1
IBIZOrderDetail.json
...odel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
+241
-234
GetUnitAndPrice.json
...AENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json
+241
-234
GetUnitAndPrice.json.bpmn
...TIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.bpmn
+76
-70
GetUnitAndPrice.json.drl
...ITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.drl
+163
-140
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
+267
-260
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
浏览文件 @
a83c6ff5
import
IBIZUNIProductService
from
'@/service/ibizuniproduct/ibizuniproduct-service'
;
import
IBIZOrderService
from
'@/service/ibizorder/ibizorder-service'
;
import
IBIZOrderService
from
'@/service/ibizorder/ibizorder-service'
;
import
IBIZUNIProductService
from
'@/service/ibizuniproduct/ibizuniproduct-service'
;
import
IBIZOrderDetailService
from
'@/service/ibizorder-detail/ibizorder-detail-service'
;
import
IBIZOrderDetailService
from
'@/service/ibizorder-detail/ibizorder-detail-service'
;
import
{
Verify
}
from
'@/utils/verify/verify'
;
import
{
Verify
}
from
'@/utils/verify/verify'
;
...
@@ -57,12 +57,13 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -57,12 +57,13 @@ export default class GetUnitAndPriceLogicBase {
* @memberof GetUnitAndPriceLogicBase
* @memberof GetUnitAndPriceLogicBase
*/
*/
public
initParams
(
opts
:
any
){
public
initParams
(
opts
:
any
){
this
.
paramsMap
.
set
(
'Product'
,{});
this
.
paramsMap
.
set
(
'Default'
,
opts
);
this
.
paramsMap
.
set
(
'list'
,{});
this
.
paramsMap
.
set
(
'list'
,{});
this
.
paramsMap
.
set
(
'Default'
,
opts
);
this
.
paramsMap
.
set
(
'Order'
,{});
this
.
paramsMap
.
set
(
'Order'
,{});
this
.
paramsMap
.
set
(
'
page
'
,{});
this
.
paramsMap
.
set
(
'
Product
'
,{});
this
.
paramsMap
.
set
(
'filter'
,{});
this
.
paramsMap
.
set
(
'filter'
,{});
this
.
paramsMap
.
set
(
'session'
,{});
this
.
paramsMap
.
set
(
'page'
,{});
}
}
...
@@ -99,7 +100,11 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -99,7 +100,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute3Cond
(
params
:
any
):
boolean
{
public
compute3Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'100'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -108,7 +113,11 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -108,7 +113,11 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute4Cond
(
params
:
any
):
boolean
{
public
compute4Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'PRICE'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -117,7 +126,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -117,7 +126,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute5Cond
(
params
:
any
):
boolean
{
public
compute5Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'100
'
)){
if
(
Verify
.
testCond
(
params
.
createdate
,
'GTANDEQ'
,
'CREATEDATE
'
)){
return
true
;
return
true
;
}
else
{
}
else
{
return
false
;
return
false
;
...
@@ -130,7 +139,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -130,7 +139,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute6Cond
(
params
:
any
):
boolean
{
public
compute6Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
amount
,
'GT'
,
'PRICE
'
)){
if
(
Verify
.
testCond
(
params
.
ordertime
,
'LTANDEQ'
,
'
'
)){
return
true
;
return
true
;
}
else
{
}
else
{
return
false
;
return
false
;
...
@@ -143,11 +152,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -143,11 +152,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute7Cond
(
params
:
any
):
boolean
{
public
compute7Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
createdate
,
'GTANDEQ'
,
'CREATEDATE'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -156,7 +161,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -156,7 +161,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute8Cond
(
params
:
any
):
boolean
{
public
compute8Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
ordertime
,
'LTANDEQ'
,
'
'
)){
if
(
Verify
.
testCond
(
params
.
unitprice
,
'GT'
,
'Amount
'
)){
return
true
;
return
true
;
}
else
{
}
else
{
return
false
;
return
false
;
...
@@ -178,11 +183,7 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -178,11 +183,7 @@ export default class GetUnitAndPriceLogicBase {
* @param params 传入参数
* @param params 传入参数
*/
*/
public
compute10Cond
(
params
:
any
):
boolean
{
public
compute10Cond
(
params
:
any
):
boolean
{
if
(
Verify
.
testCond
(
params
.
unitprice
,
'GT'
,
'Amount'
)){
return
true
;
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -235,30 +236,6 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -235,30 +236,6 @@ export default class GetUnitAndPriceLogicBase {
}
}
}
}
/**
* 统计金额
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDELOGIC1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DELOGIC暂未支持
console
.
log
(
"DELOGIC暂未支持"
);
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
;
}
/**
/**
* 获取商品ID
* 获取商品ID
*
*
...
@@ -279,28 +256,15 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -279,28 +256,15 @@ export default class GetUnitAndPriceLogicBase {
}
}
/**
/**
*
获取商品信息
*
调试逻辑参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDeaction1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
// DEBUGPARAM暂未支持
let
result
:
any
;
console
.
log
(
"DEBUGPARAM暂未支持"
);
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Product'
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
const
targetService
:
IBIZUNIProductService
=
new
IBIZUNIProductService
();
if
(
targetService
[
'Get'
]
&&
targetService
[
'Get'
]
instanceof
Function
)
{
result
=
await
targetService
[
'Get'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
if
(
this
.
compute2Cond
(
params
)){
return
this
.
executePrepareparam2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute3Cond
(
params
)){
return
this
.
executeThrowexception
(
context
,
params
,
isloading
);
}
}
}
}
/**
/**
...
@@ -319,48 +283,71 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -319,48 +283,71 @@ export default class GetUnitAndPriceLogicBase {
}
}
if
(
result
&&
result
.
status
==
200
){
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
if
(
this
.
compute
4
Cond
(
params
)){
if
(
this
.
compute
2
Cond
(
params
)){
return
this
.
executeTHROWEXCEPTION2
(
context
,
params
,
isloading
);
return
this
.
executeTHROWEXCEPTION2
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
5
Cond
(
params
)){
if
(
this
.
compute
3
Cond
(
params
)){
return
this
.
executeDEBUGPARAM1
(
context
,
params
,
isloading
);
return
this
.
executeDEBUGPARAM1
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
6
Cond
(
params
)){
if
(
this
.
compute
4
Cond
(
params
)){
return
this
.
executeDEBUGPARAM2
(
context
,
params
,
isloading
);
return
this
.
executeDEBUGPARAM2
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
7
Cond
(
params
)){
if
(
this
.
compute
5
Cond
(
params
)){
return
this
.
executeDEBUGPARAM4
(
context
,
params
,
isloading
);
return
this
.
executeDEBUGPARAM4
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
8
Cond
(
params
)){
if
(
this
.
compute
6
Cond
(
params
)){
return
this
.
executeDEBUGPARAM5
(
context
,
params
,
isloading
);
return
this
.
executeDEBUGPARAM5
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
9
Cond
(
params
)){
if
(
this
.
compute
7
Cond
(
params
)){
return
this
.
executeDEBUGPARAM3
(
context
,
params
,
isloading
);
return
this
.
executeDEBUGPARAM3
(
context
,
params
,
isloading
);
}
}
}
}
}
}
/**
/**
*
拷贝
参数
*
绑定
参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
COPY
PARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
BIND
PARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
COPY
PARAM暂未支持
//
BIND
PARAM暂未支持
console
.
log
(
"
COPY
PARAM暂未支持"
);
console
.
log
(
"
BIND
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
实体数据集
*
获取产品价格异常
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEDATASET1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeThrowexception
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATASET暂未支持
// 异常捕获节点
console
.
log
(
"DEDATASET暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
* 统计金额
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDELOGIC1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DELOGIC暂未支持
console
.
log
(
"DELOGIC暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
/**
* 调试逻辑参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private
async
executeDEBUGPARAM5
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
...
@@ -382,202 +369,216 @@ export default class GetUnitAndPriceLogicBase {
...
@@ -382,202 +369,216 @@ export default class GetUnitAndPriceLogicBase {
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
let
tempSrcParam1Data
:
any
=
this
.
paramsMap
.
get
(
'Product'
).
data
?
this
.
paramsMap
.
get
(
'Product'
).
data
:{};
Object
.
assign
(
tempDstParam1Data
,{
unitprice
:
tempSrcParam1Data
[
'unitprice'
]});
Object
.
assign
(
tempDstParam1Data
,{
unitprice
:
tempSrcParam1Data
[
'unitprice'
]});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
this
.
paramsMap
.
set
(
'Default'
,{
data
:
tempDstParam1Data
,
context
:
tempDstParam1Context
});
if
(
this
.
compute
10
Cond
(
params
)){
if
(
this
.
compute
8
Cond
(
params
)){
return
this
.
executePREPAREPARAM3
(
context
,
params
,
isloading
);
return
this
.
executePREPAREPARAM3
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute
11
Cond
(
params
)){
if
(
this
.
compute
9
Cond
(
params
)){
return
this
.
executeDELOGIC1
(
context
,
params
,
isloading
);
return
this
.
executeDELOGIC1
(
context
,
params
,
isloading
);
}
}
if
(
this
.
compute1
2
Cond
(
params
)){
if
(
this
.
compute1
0
Cond
(
params
)){
return
this
.
executeDEACTION3
(
context
,
params
,
isloading
);
return
this
.
executeDEACTION3
(
context
,
params
,
isloading
);
}
}
}
}
/**
/**
*
大于100处理
*
实体数据查询
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDE
BUGPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDE
DATAQUERY
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DE
BUGPARAM
暂未支持
// DE
DATAQUERY
暂未支持
console
.
log
(
"DE
BUGPARAM
暂未支持"
);
console
.
log
(
"DE
DATAQUERY
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
重置参数
*
获取商品信息
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeRESETPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDeaction1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// RESETPARAM暂未支持
// 行为处理节点
console
.
log
(
"RESETPARAM暂未支持"
);
let
result
:
any
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
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
.
compute11Cond
(
params
)){
return
this
.
executePrepareparam2
(
context
,
params
,
isloading
);
}
if
(
this
.
compute12Cond
(
params
)){
return
this
.
executeThrowexception
(
context
,
params
,
isloading
);
}
}
}
}
/**
/**
*
调试逻辑
参数
*
重新建立
参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
DEBUGPARAM4
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
RENEWPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEBUG
PARAM暂未支持
//
RENEW
PARAM暂未支持
console
.
log
(
"
DEBUG
PARAM暂未支持"
);
console
.
log
(
"
RENEW
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
排序数组参数
*
设置orderid
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeSORTPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executePREPAREPARAM3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// SORTPARAM暂未支持
// 准备参数节点
console
.
log
(
"SORTPARAM暂未支持"
);
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
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
);
}
}
}
/**
/**
*
调试逻辑
参数
*
重置
参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
DEBUGPARAM5
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
RESETPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEBUG
PARAM暂未支持
//
RESET
PARAM暂未支持
console
.
log
(
"
DEBUG
PARAM暂未支持"
);
console
.
log
(
"
RESET
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
获取订单信息异常
*
排序数组参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeTHROWEXCEPTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeSORTPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
// SORTPARAM暂未支持
console
.
log
(
"SORTPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
实体行为
*
拷贝参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEACTION3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeCOPYPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 行为处理节点
// COPYPARAM暂未支持
let
result
:
any
;
console
.
log
(
"COPYPARAM暂未支持"
);
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Default'
);
const
targetService
:
IBIZOrderDetailService
=
new
IBIZOrderDetailService
();
if
(
targetService
[
'CountMoney'
]
&&
targetService
[
'CountMoney'
]
instanceof
Function
)
{
result
=
await
targetService
[
'CountMoney'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
}
/**
/**
*
绑定参数
*
大于200处理
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
BINDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
DEBUGPARAM2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
BIND
PARAM暂未支持
//
DEBUG
PARAM暂未支持
console
.
log
(
"
BIND
PARAM暂未支持"
);
console
.
log
(
"
DEBUG
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
调试逻辑
参数
*
附加到数组
参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
DEBUGPARAM3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
APPENDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
DEBUG
PARAM暂未支持
//
APPEND
PARAM暂未支持
console
.
log
(
"
DEBUG
PARAM暂未支持"
);
console
.
log
(
"
APPEND
PARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
设置orderid
*
大于100处理
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executePREPAREPARAM3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 准备参数节点
// DEBUGPARAM暂未支持
let
tempDstParam0Context
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
context
?
this
.
paramsMap
.
get
(
'Order'
).
context
:{};
console
.
log
(
"DEBUGPARAM暂未支持"
);
let
tempDstParam0Data
:
any
=
this
.
paramsMap
.
get
(
'Order'
).
data
?
this
.
paramsMap
.
get
(
'Order'
).
data
:{};
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
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
);
}
}
}
/**
/**
* 实体
数据查询
* 实体
行为
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeDEDATAQUERY1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEACTION3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// DEDATAQUERY暂未支持
// 行为处理节点
console
.
log
(
"DEDATAQUERY暂未支持"
);
let
result
:
any
;
let
actionParam
:
any
=
this
.
paramsMap
.
get
(
'Default'
);
const
targetService
:
IBIZOrderDetailService
=
new
IBIZOrderDetailService
();
if
(
targetService
[
'CountMoney'
]
&&
targetService
[
'CountMoney'
]
instanceof
Function
)
{
result
=
await
targetService
[
'CountMoney'
](
actionParam
.
context
,
actionParam
.
data
,
false
);
}
if
(
result
&&
result
.
status
==
200
){
Object
.
assign
(
actionParam
.
data
,
result
.
data
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
}
/**
/**
*
重新建立参数
*
实体数据集
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
execute
RENEWPARAM
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
execute
DEDATASET
1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
//
RENEWPARAM
暂未支持
//
DEDATASET
暂未支持
console
.
log
(
"
RENEWPARAM
暂未支持"
);
console
.
log
(
"
DEDATASET
暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
附加到数组参数
*
获取订单信息异常
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeAPPENDPARAM1
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeTHROWEXCEPTION2
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// APPENDPARAM暂未支持
// 异常捕获节点
console
.
log
(
"APPENDPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
/**
/**
*
获取产品价格异常
*
调试逻辑参数
*
*
* @param context 应用上下文
* @param context 应用上下文
* @param params 传入参数
* @param params 传入参数
*/
*/
private
async
executeThrowexception
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
private
async
executeDEBUGPARAM3
(
context
:
any
,
params
:
any
,
isloading
:
boolean
){
// 异常捕获节点
// DEBUGPARAM暂未支持
console
.
log
(
"DEBUGPARAM暂未支持"
);
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
return
this
.
paramsMap
.
get
(
this
.
defaultParamName
).
data
;
}
}
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/ibizbook/guide-borrow-form-form/guide-borrow-form-form-base.vue
浏览文件 @
a83c6ff5
...
@@ -1853,7 +1853,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
...
@@ -1853,7 +1853,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
if
(
copyData
&&
Object
.
keys
(
copyData
).
length
>
0
){
if
(
copyData
&&
Object
.
keys
(
copyData
).
length
>
0
){
Object
.
keys
(
copyData
).
forEach
((
key
:
string
)
=>
{
Object
.
keys
(
copyData
).
forEach
((
key
:
string
)
=>
{
if
(
!
arg
.
hasOwnProperty
(
key
)
||
(
arg
.
hasOwnProperty
(
key
)
&&
(
copyData
[
key
]
!==
null
&&
copyData
[
key
]
!==
undefined
))){
if
(
!
arg
.
hasOwnProperty
(
key
)
||
(
arg
.
hasOwnProperty
(
key
)
&&
(
copyData
[
key
]
!==
null
&&
copyData
[
key
]
!==
undefined
))){
Object
.
assign
(
responseData
,{[
k
ey
]:
copyData
[
key
]});
ey
]:
copyData
[
key
]});
}
}
})
})
}
}
...
@@ -2222,4 +2222,5 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
...
@@ -2222,4 +2222,5 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
<
style
lang=
'less'
>
<
style
lang=
'less'
>
@import './guide-borrow-form-form.less';
@import './guide-borrow-form-form.less';
</
style
>
de-borrow-form-form.less';
</style>
</style>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/ibizbook/guide-wizardpanel/guide-wizardpanel-base.vue
浏览文件 @
a83c6ff5
...
@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
...
@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
* @type {Boolean}
* @type {Boolean}
* @memberof GuideBase
* @memberof GuideBase
*/
*/
public
isShowStepBar
:
Boolean
=
tru
e
;
public
isShowStepBar
:
Boolean
=
fals
e
;
/**
/**
* 获取多项数据
* 获取多项数据
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.json
浏览文件 @
a83c6ff5
...
@@ -3889,38 +3889,6 @@
...
@@ -3889,38 +3889,6 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Begin"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Begin"
,
"topPos"
:
216
,
"topPos"
:
216
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
"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"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"name"
:
"大于200处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
},
{
"codeName"
:
"Prepareparam1"
,
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"leftPos"
:
313
,
...
@@ -3957,48 +3925,13 @@
...
@@ -3957,48 +3925,13 @@
"topPos"
:
224
,
"topPos"
:
224
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"Deaction1"
,
"codeName"
:
"DEBUGPARAM4"
,
"getDstPSDEAction"
:
{
"leftPos"
:
1280
,
"modelref"
:
true
,
"logicNodeType"
:
"DEBUGPARAM"
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
},
"name"
:
"调试逻辑参数"
,
"getDstPSDELogicParam"
:
{
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
"modelref"
:
true
,
"topPos"
:
50
"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"
:
"DEACTION2"
,
"codeName"
:
"DEACTION2"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
...
@@ -4153,45 +4086,59 @@
...
@@ -4153,45 +4086,59 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
"topPos"
:
-37
},
{
},
{
"codeName"
:
"
COPY
PARAM1"
,
"codeName"
:
"
BIND
PARAM1"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"leftPos"
:
258
,
"leftPos"
:
41
,
"logicNodeType"
:
"
COPY
PARAM"
,
"logicNodeType"
:
"
BIND
PARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPY
PARAM1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
BIND
PARAM1"
,
"name"
:
"
拷贝
参数"
,
"name"
:
"
绑定
参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPY
PARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
BIND
PARAM1"
,
"getSrcPSDELogicParam"
:
{
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Order
"
"id"
:
"
Product
"
},
},
"topPos"
:
1
0
"topPos"
:
8
0
},
{
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"Throwexception"
,
"getDstPSDEDataSet"
:
{
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
id"
:
"Default
"
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json
"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
filter
"
"id"
:
"
Default
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.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
"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"
:
"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
},
{
},
{
"codeName"
:
"Prepareparam2"
,
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -4283,107 +4230,84 @@
...
@@ -4283,107 +4230,84 @@
"topPos"
:
224
,
"topPos"
:
224
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"DE
BUGPARAM
1"
,
"codeName"
:
"DE
DATAQUERY
1"
,
"getDstPSDE
LogicParam
"
:
{
"getDstPSDE
DataQuery
"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Default"
"id"
:
"Default"
},
},
"leftPos"
:
1310
,
"getDstPSDELogicParam"
:
{
"logicNodeType"
:
"DEBUGPARAM"
,
"modelref"
:
true
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"id"
:
"filter"
"name"
:
"大于100处理"
,
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"getDstPSDataEntity"
:
{
"topPos"
:
-420
"modelref"
:
true
,
},
{
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
"codeName"
:
"RESETPARAM1"
,
},
"leftPos"
:
65
,
"leftPos"
:
1524
,
"logicNodeType"
:
"RESETPARAM"
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"name"
:
"重置参数"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"topPos"
:
-60
"getRetPSDELogicParam"
:
{
},
{
"modelref"
:
true
,
"codeName"
:
"DEBUGPARAM4"
,
"id"
:
"list"
"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"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
"topPos"
:
80
},
{
},
{
"codeName"
:
"DEBUGPARAM5"
,
"codeName"
:
"Deaction1"
,
"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
},
{
"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"
:
"DEACTION3"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
OrderDetail/PSDEACTIONS/CountMoney
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
UNIProduct/PSDEACTIONS/Get
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Defaul
t"
"id"
:
"
Produc
t"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
OrderDetail
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
UNIProduct
.json"
},
},
"leftPos"
:
1001
,
"leftPos"
:
555
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"name"
:
"实体行为"
,
"name"
:
"获取商品信息"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"getPSDELogicLinks"
:
[
{
"topPos"
:
318
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
},
{
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicNode"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product
"
"id"
:
"Throwexception
"
},
},
"leftPos"
:
41
,
"name"
:
"异常"
,
"logicNodeType"
:
"BINDPARAM"
,
"getSrcPSDELogicNode"
:
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product
"
"id"
:
"Deaction1
"
},
},
"topPos"
:
80
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"
DEBUGPARAM3
"
,
"codeName"
:
"
RENEWPARAM1
"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Defaul
t"
"id"
:
"
Produc
t"
},
},
"leftPos"
:
1
210
,
"leftPos"
:
1
77
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"logicNodeType"
:
"
RENEW
PARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM3
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"name"
:
"
调试逻辑
参数"
,
"name"
:
"
重新建立
参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM3
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"topPos"
:
1
40
"topPos"
:
1
29
},
{
},
{
"codeName"
:
"PREPAREPARAM3"
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -4438,41 +4362,49 @@
...
@@ -4438,41 +4362,49 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"topPos"
:
-38
},
{
},
{
"codeName"
:
"DEDATAQUERY1"
,
"codeName"
:
"RESETPARAM1"
,
"getDstPSDEDataQuery"
:
{
"leftPos"
:
65
,
"modelref"
:
true
,
"logicNodeType"
:
"RESETPARAM"
,
"id"
:
"Default"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
},
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"filter"
"id"
:
"Product"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
},
"leftPos"
:
1524
,
"leftPos"
:
258
,
"logicNodeType"
:
"
DEDATAQUERY
"
,
"logicNodeType"
:
"
COPYPARAM
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEDATAQUERY
1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPYPARAM
1"
,
"name"
:
"
实体数据查询
"
,
"name"
:
"
拷贝参数
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEDATAQUERY
1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPYPARAM
1"
,
"get
Ret
PSDELogicParam"
:
{
"get
Src
PSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
list
"
"id"
:
"
Order
"
},
},
"topPos"
:
8
0
"topPos"
:
1
0
},
{
},
{
"codeName"
:
"
RENEWPARAM1
"
,
"codeName"
:
"
DEBUGPARAM2
"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Produc
t"
"id"
:
"
Defaul
t"
},
},
"leftPos"
:
1
77
,
"leftPos"
:
1
310
,
"logicNodeType"
:
"
RENEW
PARAM"
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM2
"
,
"name"
:
"
重新建立参数
"
,
"name"
:
"
大于200处理
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM2
"
,
"topPos"
:
129
"topPos"
:
-50
},
{
},
{
"codeName"
:
"APPENDPARAM1"
,
"codeName"
:
"APPENDPARAM1"
,
"leftPos"
:
439
,
"leftPos"
:
439
,
...
@@ -4482,27 +4414,91 @@
...
@@ -4482,27 +4414,91 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"topPos"
:
-10
"topPos"
:
-10
},
{
},
{
"codeName"
:
"Throwexception"
,
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"name"
:
"大于100处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
"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"
:
"DEDATASET1"
,
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"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"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorCode"
:
0
,
"errorInfo"
:
"获取
产品价格
异常"
,
"errorInfo"
:
"获取
订单信息
异常"
,
"leftPos"
:
595
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取产品价格异常"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
422
"topPos"
:
-248
}
],
},
{
"getPSDELogicParams"
:
[
{
"codeName"
:
"DEBUGPARAM3"
,
"codeName"
:
"Product"
,
"getDstPSDELogicParam"
:
{
"logicName"
:
"商品"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"name"
:
"商品"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json
"
"
id"
:
"Default
"
},
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"leftPos"
:
1210
,
"entityParam"
:
true
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Default"
,
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
"logicName"
:
"传入变量"
,
...
@@ -4515,13 +4511,6 @@
...
@@ -4515,13 +4511,6 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"default"
:
true
,
"default"
:
true
,
"entityParam"
:
true
"entityParam"
:
true
},
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Order"
,
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"logicName"
:
"订单"
,
...
@@ -4534,12 +4523,16 @@
...
@@ -4534,12 +4523,16 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
"entityParam"
:
true
},
{
},
{
"codeName"
:
"page"
,
"codeName"
:
"Product"
,
"logicName"
:
"page"
,
"logicName"
:
"商品"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"name"
:
"page"
,
"name"
:
"商品"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"getParamPSDataEntity"
:
{
"entityPageParam"
:
true
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"entityParam"
:
true
},
{
},
{
"codeName"
:
"filter"
,
"codeName"
:
"filter"
,
"logicName"
:
"filter"
,
"logicName"
:
"filter"
,
...
@@ -4547,6 +4540,20 @@
...
@@ -4547,6 +4540,20 @@
"name"
:
"filter"
,
"name"
:
"filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"filterParam"
:
true
"filterParam"
:
true
},
{
"codeName"
:
"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"
:
"page"
,
"logicName"
:
"page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"name"
:
"page"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"entityPageParam"
:
true
}
],
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
"getStartPSDELogicNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json
浏览文件 @
a83c6ff5
...
@@ -25,38 +25,6 @@
...
@@ -25,38 +25,6 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Begin"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Begin"
,
"topPos"
:
216
,
"topPos"
:
216
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
"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"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"name"
:
"大于200处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
},
{
"codeName"
:
"Prepareparam1"
,
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"leftPos"
:
313
,
...
@@ -93,48 +61,13 @@
...
@@ -93,48 +61,13 @@
"topPos"
:
224
,
"topPos"
:
224
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"Deaction1"
,
"codeName"
:
"DEBUGPARAM4"
,
"getDstPSDEAction"
:
{
"leftPos"
:
1280
,
"modelref"
:
true
,
"logicNodeType"
:
"DEBUGPARAM"
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct/PSDEACTIONS/Get.json"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
},
"name"
:
"调试逻辑参数"
,
"getDstPSDELogicParam"
:
{
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM4"
,
"modelref"
:
true
,
"topPos"
:
50
"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"
:
"DEACTION2"
,
"codeName"
:
"DEACTION2"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
...
@@ -289,45 +222,59 @@
...
@@ -289,45 +222,59 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION2"
,
"topPos"
:
-37
"topPos"
:
-37
},
{
},
{
"codeName"
:
"
COPY
PARAM1"
,
"codeName"
:
"
BIND
PARAM1"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"leftPos"
:
258
,
"leftPos"
:
41
,
"logicNodeType"
:
"
COPY
PARAM"
,
"logicNodeType"
:
"
BIND
PARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPY
PARAM1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
BIND
PARAM1"
,
"name"
:
"
拷贝
参数"
,
"name"
:
"
绑定
参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPY
PARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
BIND
PARAM1"
,
"getSrcPSDELogicParam"
:
{
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Order
"
"id"
:
"
Product
"
},
},
"topPos"
:
1
0
"topPos"
:
8
0
},
{
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"Throwexception"
,
"getDstPSDEDataSet"
:
{
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSDELogic"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
id"
:
"Default
"
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json
"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
filter
"
"id"
:
"
Default
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.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
"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"
:
"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
},
{
},
{
"codeName"
:
"Prepareparam2"
,
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -419,107 +366,84 @@
...
@@ -419,107 +366,84 @@
"topPos"
:
224
,
"topPos"
:
224
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"DE
BUGPARAM
1"
,
"codeName"
:
"DE
DATAQUERY
1"
,
"getDstPSDE
LogicParam
"
:
{
"getDstPSDE
DataQuery
"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Default"
"id"
:
"Default"
},
},
"leftPos"
:
1310
,
"getDstPSDELogicParam"
:
{
"logicNodeType"
:
"DEBUGPARAM"
,
"modelref"
:
true
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"id"
:
"filter"
"name"
:
"大于100处理"
,
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"getDstPSDataEntity"
:
{
"topPos"
:
-420
"modelref"
:
true
,
},
{
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
"codeName"
:
"RESETPARAM1"
,
},
"leftPos"
:
65
,
"leftPos"
:
1524
,
"logicNodeType"
:
"RESETPARAM"
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"name"
:
"重置参数"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEDATAQUERY1"
,
"topPos"
:
-60
"getRetPSDELogicParam"
:
{
},
{
"modelref"
:
true
,
"codeName"
:
"DEBUGPARAM4"
,
"id"
:
"list"
"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"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
"topPos"
:
80
},
{
},
{
"codeName"
:
"DEBUGPARAM5"
,
"codeName"
:
"Deaction1"
,
"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
},
{
"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"
:
"DEACTION3"
,
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
OrderDetail/PSDEACTIONS/CountMoney
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
UNIProduct/PSDEACTIONS/Get
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Defaul
t"
"id"
:
"
Produc
t"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
OrderDetail
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
UNIProduct
.json"
},
},
"leftPos"
:
1001
,
"leftPos"
:
555
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"name"
:
"实体行为"
,
"name"
:
"获取商品信息"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEACTION3"
,
"getPSDELogicLinks"
:
[
{
"topPos"
:
318
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
},
{
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicNode"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product
"
"id"
:
"Throwexception
"
},
},
"leftPos"
:
41
,
"name"
:
"异常"
,
"logicNodeType"
:
"BINDPARAM"
,
"getSrcPSDELogicNode"
:
{
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/BINDPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product
"
"id"
:
"Deaction1
"
},
},
"topPos"
:
80
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"
DEBUGPARAM3
"
,
"codeName"
:
"
RENEWPARAM1
"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Defaul
t"
"id"
:
"
Produc
t"
},
},
"leftPos"
:
1
210
,
"leftPos"
:
1
77
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"logicNodeType"
:
"
RENEW
PARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM3
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"name"
:
"
调试逻辑
参数"
,
"name"
:
"
重新建立
参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM3
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"topPos"
:
1
40
"topPos"
:
1
29
},
{
},
{
"codeName"
:
"PREPAREPARAM3"
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -574,41 +498,49 @@
...
@@ -574,41 +498,49 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"topPos"
:
-38
},
{
},
{
"codeName"
:
"DEDATAQUERY1"
,
"codeName"
:
"RESETPARAM1"
,
"getDstPSDEDataQuery"
:
{
"leftPos"
:
65
,
"modelref"
:
true
,
"logicNodeType"
:
"RESETPARAM"
,
"id"
:
"Default"
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
},
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"filter"
"id"
:
"Product"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
},
"leftPos"
:
1524
,
"leftPos"
:
258
,
"logicNodeType"
:
"
DEDATAQUERY
"
,
"logicNodeType"
:
"
COPYPARAM
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEDATAQUERY
1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPYPARAM
1"
,
"name"
:
"
实体数据查询
"
,
"name"
:
"
拷贝参数
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEDATAQUERY
1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
COPYPARAM
1"
,
"get
Ret
PSDELogicParam"
:
{
"get
Src
PSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
list
"
"id"
:
"
Order
"
},
},
"topPos"
:
8
0
"topPos"
:
1
0
},
{
},
{
"codeName"
:
"
RENEWPARAM1
"
,
"codeName"
:
"
DEBUGPARAM2
"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Produc
t"
"id"
:
"
Defaul
t"
},
},
"leftPos"
:
1
77
,
"leftPos"
:
1
310
,
"logicNodeType"
:
"
RENEW
PARAM"
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM2
"
,
"name"
:
"
重新建立参数
"
,
"name"
:
"
大于200处理
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
RENEWPARAM1
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/
DEBUGPARAM2
"
,
"topPos"
:
129
"topPos"
:
-50
},
{
},
{
"codeName"
:
"APPENDPARAM1"
,
"codeName"
:
"APPENDPARAM1"
,
"leftPos"
:
439
,
"leftPos"
:
439
,
...
@@ -618,27 +550,91 @@
...
@@ -618,27 +550,91 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/APPENDPARAM1"
,
"topPos"
:
-10
"topPos"
:
-10
},
{
},
{
"codeName"
:
"Throwexception"
,
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"name"
:
"大于100处理"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
"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"
:
"DEDATASET1"
,
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"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"
:
"THROWEXCEPTION2"
,
"errorCode"
:
0
,
"errorCode"
:
0
,
"errorInfo"
:
"获取
产品价格
异常"
,
"errorInfo"
:
"获取
订单信息
异常"
,
"leftPos"
:
595
,
"leftPos"
:
1011
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"name"
:
"获取产品价格异常"
,
"name"
:
"获取订单信息异常"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/Throwexception"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/THROWEXCEPTION2"
,
"topPos"
:
422
"topPos"
:
-248
}
],
},
{
"getPSDELogicParams"
:
[
{
"codeName"
:
"DEBUGPARAM3"
,
"codeName"
:
"Product"
,
"getDstPSDELogicParam"
:
{
"logicName"
:
"商品"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"name"
:
"商品"
,
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json
"
"
id"
:
"Default
"
},
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"leftPos"
:
1210
,
"entityParam"
:
true
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"name"
:
"调试逻辑参数"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicnodes/DEBUGPARAM3"
,
"topPos"
:
140
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Default"
,
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
"logicName"
:
"传入变量"
,
...
@@ -651,13 +647,6 @@
...
@@ -651,13 +647,6 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Default"
,
"default"
:
true
,
"default"
:
true
,
"entityParam"
:
true
"entityParam"
:
true
},
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Order"
,
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"logicName"
:
"订单"
,
...
@@ -670,12 +659,16 @@
...
@@ -670,12 +659,16 @@
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Order"
,
"entityParam"
:
true
"entityParam"
:
true
},
{
},
{
"codeName"
:
"page"
,
"codeName"
:
"Product"
,
"logicName"
:
"page"
,
"logicName"
:
"商品"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"name"
:
"page"
,
"name"
:
"商品"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"getParamPSDataEntity"
:
{
"entityPageParam"
:
true
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/Product"
,
"entityParam"
:
true
},
{
},
{
"codeName"
:
"filter"
,
"codeName"
:
"filter"
,
"logicName"
:
"filter"
,
"logicName"
:
"filter"
,
...
@@ -683,6 +676,20 @@
...
@@ -683,6 +676,20 @@
"name"
:
"filter"
,
"name"
:
"filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/filter"
,
"filterParam"
:
true
"filterParam"
:
true
},
{
"codeName"
:
"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"
:
"page"
,
"logicName"
:
"page"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"name"
:
"page"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice/psdelogicparams/page"
,
"entityPageParam"
:
true
}
],
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZORDERDETAIL/psdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
"getStartPSDELogicNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.bpmn
浏览文件 @
a83c6ff5
...
@@ -5,137 +5,138 @@
...
@@ -5,137 +5,138 @@
<tns:import
name=
"java.util.Map"
/>
<tns:import
name=
"java.util.Map"
/>
<tns:import
name=
"org.springframework.util.StringUtils"
/>
<tns:import
name=
"org.springframework.util.StringUtils"
/>
<tns:import
name=
"cn.ibizlab.util.helper.RuleUtils"
/>
<tns:import
name=
"cn.ibizlab.util.helper.RuleUtils"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZUNIProduct()"
name=
"ibizorderdetailgetunitandpriceproduct"
type=
"refentity"
/>
<tns:metaData
express=
""
name=
"ibizorderdetailgetunitandpricedefault"
type=
"entity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricelist"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricelist"
type=
"refentity"
/>
<tns:metaData
express=
""
name=
"ibizorderdetailgetunitandpricedefault"
type=
"entity"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZOrder()"
name=
"ibizorderdetailgetunitandpriceorder"
type=
"refentity"
/>
<tns:metaData
express=
"new cn.ibizlab.core.sample.domain.IBIZOrder()"
name=
"ibizorderdetailgetunitandpriceorder"
type=
"refentity"
/>
<tns:metaData
express=
"new
HashMap()"
name=
"ibizorderdetailgetunitandpricepage
"
type=
"refentity"
/>
<tns:metaData
express=
"new
cn.ibizlab.core.sample.domain.IBIZUNIProduct()"
name=
"ibizorderdetailgetunitandpriceproduct
"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricefilter"
type=
"refentity"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricefilter"
type=
"refentity"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"ibizorderdetailservice"
type=
"service
"
/>
<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.IIBIZUNIProductService))"
name=
"ibizuniproductservice"
type=
"service
"
/>
<tns:metaData
express=
"new HashMap()"
name=
"ibizorderdetailgetunitandpricepage"
type=
"refentity
"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderService))"
name=
"ibizorderservice"
type=
"service"
/>
<tns:metaData
express=
"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.IIBIZOrderDetailService))"
name=
"ibizorderdetailservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZBOOKService))"
name=
"ibizbookservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZBOOKService))"
name=
"ibizbookservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZUNIProductService))"
name=
"ibizuniproductservice"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"iBzSysIbizorderdetailDefaultService"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.SpringContextHolder).getBean(T(cn.ibizlab.core.sample.service.IIBIZOrderDetailService))"
name=
"iBzSysIbizorderdetailDefaultService"
type=
"service"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.AuthenticationUser).getAuthenticationUser()"
name=
"curuser"
type=
"session"
/>
<tns:metaData
express=
"T(cn.ibizlab.util.security.AuthenticationUser).getAuthenticationUser()"
name=
"curuser"
type=
"session"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceproduct"
type=
"cn.ibizlab.core.sample.domain.IBIZUNIProduct"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpricedefault"
type=
"cn.ibizlab.core.sample.domain.IBIZOrderDetail"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpricedefault"
type=
"cn.ibizlab.core.sample.domain.IBIZOrderDetail"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceorder"
type=
"cn.ibizlab.core.sample.domain.IBIZOrder"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceorder"
type=
"cn.ibizlab.core.sample.domain.IBIZOrder"
/>
<tns:global
identifier=
"ibizorderdetailgetunitandpriceproduct"
type=
"cn.ibizlab.core.sample.domain.IBIZUNIProduct"
/>
</extensionElements>
</extensionElements>
<startEvent
id=
"begin"
isInterrupting=
"true"
/>
<startEvent
id=
"begin"
isInterrupting=
"true"
/>
<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=
"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=
"ibizorderdetailgetunitandpriceprepareparam1"
id=
"prepareparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品ID"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceprepareparam1"
id=
"prepareparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品ID"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction1"
id=
"deaction1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品信息"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction2"
id=
"deaction2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息"
/>
<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=
"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=
"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=
"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=
"ibizorderdetailgetunitandpricedebugparam4"
id=
"debugparam4"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam4"
id=
"debugparam4"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam4_end"
name=
"end"
/>
<endEvent
id=
"debugparam4_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam4_end_line"
sourceRef=
"debugparam4"
targetRef=
"debugparam4_end"
/>
<sequenceFlow
id=
"debugparam4_end_line"
sourceRef=
"debugparam4"
targetRef=
"debugparam4_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricesortparam1"
id=
"sortparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"排序数组参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction2"
id=
"deaction2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取订单信息"
/>
<endEvent
id=
"sortparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"sortparam1_end_line"
sourceRef=
"sortparam1"
targetRef=
"sortparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam5"
id=
"debugparam5"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<endEvent
id=
"debugparam5_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam5_end_line"
sourceRef=
"debugparam5"
targetRef=
"debugparam5_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"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=
"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=
"ibizorderdetailgetunitandpricebindparam1"
id=
"bindparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"绑定参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricebindparam1"
id=
"bindparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"绑定参数"
/>
<endEvent
id=
"bindparam1_end"
name=
"end"
/>
<endEvent
id=
"bindparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"bindparam1_end_line"
sourceRef=
"bindparam1"
targetRef=
"bindparam1_end"
/>
<sequenceFlow
id=
"bindparam1_end_line"
sourceRef=
"bindparam1"
targetRef=
"bindparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam3"
id=
"debugparam3"
implementation=
"http://www.jboss.org/drools/rule"
name=
"调试逻辑参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception"
id=
"throwexception"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取产品价格异常"
/>
<endEvent
id=
"debugparam3_end"
name=
"end"
/>
<endEvent
id=
"throwexception_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam3_end_line"
sourceRef=
"debugparam3"
targetRef=
"debugparam3_end"
/>
<sequenceFlow
id=
"throwexception_end_line"
sourceRef=
"throwexception"
targetRef=
"throwexception_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=
"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=
"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=
"ibizorderdetailgetunitandpriceprepareparam2"
id=
"prepareparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"填充单位和单价"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataquery1"
id=
"dedataquery1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricededataquery1"
id=
"dedataquery1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"实体数据查询"
/>
<endEvent
id=
"dedataquery1_end"
name=
"end"
/>
<endEvent
id=
"dedataquery1_end"
name=
"end"
/>
<sequenceFlow
id=
"dedataquery1_end_line"
sourceRef=
"dedataquery1"
targetRef=
"dedataquery1_end"
/>
<sequenceFlow
id=
"dedataquery1_end_line"
sourceRef=
"dedataquery1"
targetRef=
"dedataquery1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedeaction1"
id=
"deaction1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取商品信息"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricerenewparam1"
id=
"renewparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重新建立参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricerenewparam1"
id=
"renewparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重新建立参数"
/>
<endEvent
id=
"renewparam1_end"
name=
"end"
/>
<endEvent
id=
"renewparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"renewparam1_end_line"
sourceRef=
"renewparam1"
targetRef=
"renewparam1_end"
/>
<sequenceFlow
id=
"renewparam1_end_line"
sourceRef=
"renewparam1"
targetRef=
"renewparam1_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=
"ibizorderdetailgetunitandpriceresetparam1"
id=
"resetparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"重置参数"
/>
<endEvent
id=
"resetparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"resetparam1_end_line"
sourceRef=
"resetparam1"
targetRef=
"resetparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricesortparam1"
id=
"sortparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"排序数组参数"
/>
<endEvent
id=
"sortparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"sortparam1_end_line"
sourceRef=
"sortparam1"
targetRef=
"sortparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricecopyparam1"
id=
"copyparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"拷贝参数"
/>
<endEvent
id=
"copyparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"copyparam1_end_line"
sourceRef=
"copyparam1"
targetRef=
"copyparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam2"
id=
"debugparam2"
implementation=
"http://www.jboss.org/drools/rule"
name=
"大于200处理"
/>
<endEvent
id=
"debugparam2_end"
name=
"end"
/>
<sequenceFlow
id=
"debugparam2_end_line"
sourceRef=
"debugparam2"
targetRef=
"debugparam2_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceappendparam1"
id=
"appendparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"附加到数组参数"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpriceappendparam1"
id=
"appendparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"附加到数组参数"
/>
<endEvent
id=
"appendparam1_end"
name=
"end"
/>
<endEvent
id=
"appendparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"appendparam1_end_line"
sourceRef=
"appendparam1"
targetRef=
"appendparam1_end"
/>
<sequenceFlow
id=
"appendparam1_end_line"
sourceRef=
"appendparam1"
targetRef=
"appendparam1_end"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricethrowexception"
id=
"throwexception"
implementation=
"http://www.jboss.org/drools/rule"
name=
"获取产品价格异常"
/>
<businessRuleTask
activiti:exclusive=
"true"
g:ruleFlowGroup=
"ibizorderdetailgetunitandpricedebugparam1"
id=
"debugparam1"
implementation=
"http://www.jboss.org/drools/rule"
name=
"大于100处理"
/>
<endEvent
id=
"throwexception_end"
name=
"end"
/>
<endEvent
id=
"debugparam1_end"
name=
"end"
/>
<sequenceFlow
id=
"throwexception_end_line"
sourceRef=
"throwexception"
targetRef=
"throwexception_end"
/>
<sequenceFlow
id=
"debugparam1_end_line"
sourceRef=
"debugparam1"
targetRef=
"debugparam1_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=
"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=
"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=
"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"
/>
<sequenceFlow
id=
"begin_prepareparam1"
sourceRef=
"begin"
targetRef=
"prepareparam1"
>
<sequenceFlow
id=
"begin_prepareparam1"
sourceRef=
"begin"
targetRef=
"prepareparam1"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam1_deaction1"
sourceRef=
"prepareparam1"
targetRef=
"deaction1"
>
<sequenceFlow
id=
"prepareparam1_deaction1"
sourceRef=
"prepareparam1"
targetRef=
"deaction1"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_prepareparam2"
sourceRef=
"deaction1"
targetRef=
"prepareparam2"
>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_throwexception"
sourceRef=
"deaction1"
targetRef=
"throwexception"
>
</sequenceFlow>
<sequenceFlow
id=
"deaction2_throwexception2"
sourceRef=
"deaction2"
targetRef=
"throwexception2"
>
<sequenceFlow
id=
"deaction2_throwexception2"
sourceRef=
"deaction2"
targetRef=
"throwexception2"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam1"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam1"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam1"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam1"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricep
age:Map
();
$ibizorderdetailgetunitandpricep
roduct:IBIZUNIProduct
();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
eval($ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","100")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","100")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam2"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam2"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam2"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam2"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricep
age:Map
();
$ibizorderdetailgetunitandpricep
roduct:IBIZUNIProduct
();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
eval($ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","PRICE")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("amount"),"GT","PRICE")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam4"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam4"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam4"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam4"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricep
age:Map
();
$ibizorderdetailgetunitandpricep
roduct:IBIZUNIProduct
();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
eval($ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("createdate"),"GTANDEQ","CREATEDATE")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("createdate"),"GTANDEQ","CREATEDATE")))
]]>
]]>
</conditionExpression>
</conditionExpression>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-deaction2_debugparam5"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam5"
>
<sequenceFlow
id=
"gateway-deaction2_debugparam5"
sourceRef=
"gateway-deaction2"
targetRef=
"debugparam5"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricep
age:Map
();
$ibizorderdetailgetunitandpricep
roduct:IBIZUNIProduct
();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
eval($ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("ordertime"),"LTANDEQ","")))
eval((RuleUtils.test($ibizorderdetailgetunitandpriceorder.get("ordertime"),"LTANDEQ","")))
]]>
]]>
</conditionExpression>
</conditionExpression>
...
@@ -144,13 +145,14 @@
...
@@ -144,13 +145,14 @@
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"gateway-prepareparam2_prepareparam3"
sourceRef=
"gateway-prepareparam2"
targetRef=
"prepareparam3"
>
<sequenceFlow
id=
"gateway-prepareparam2_prepareparam3"
sourceRef=
"gateway-prepareparam2"
targetRef=
"prepareparam3"
>
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
<conditionExpression
language=
"http://www.jboss.org/drools/rule"
>
<![CDATA[
$ibizorderdetailgetunitandpriceproduct:IBIZUNIProduct();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricelist:Map();
$ibizorderdetailgetunitandpricedefault:IBIZOrderDetail();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpriceorder:IBIZOrder();
$ibizorderdetailgetunitandpricep
age:Map
();
$ibizorderdetailgetunitandpricep
roduct:IBIZUNIProduct
();
$ibizorderdetailgetunitandpricefilter:Map();
$ibizorderdetailgetunitandpricefilter:Map();
eval($ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && $ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && );
$ibizorderdetailgetunitandpricesession:Map();
$ibizorderdetailgetunitandpricepage:Map();
eval($ibizorderdetailgetunitandpricedefault==ibizorderdetailgetunitandpricedefault && $ibizorderdetailgetunitandpriceorder==ibizorderdetailgetunitandpriceorder && $ibizorderdetailgetunitandpriceproduct==ibizorderdetailgetunitandpriceproduct && );
eval((RuleUtils.test($ibizorderdetailgetunitandpricedefault.get("unitprice"),"GT","Amount")))
eval((RuleUtils.test($ibizorderdetailgetunitandpricedefault.get("unitprice"),"GT","Amount")))
]]>
]]>
</conditionExpression>
</conditionExpression>
...
@@ -159,6 +161,10 @@
...
@@ -159,6 +161,10 @@
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam2_deaction3"
sourceRef=
"prepareparam2"
targetRef=
"deaction3"
>
<sequenceFlow
id=
"prepareparam2_deaction3"
sourceRef=
"prepareparam2"
targetRef=
"deaction3"
>
</sequenceFlow>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_prepareparam2"
sourceRef=
"deaction1"
targetRef=
"prepareparam2"
>
</sequenceFlow>
<sequenceFlow
id=
"deaction1_throwexception"
sourceRef=
"deaction1"
targetRef=
"throwexception"
>
</sequenceFlow>
<sequenceFlow
id=
"prepareparam3_deaction2"
sourceRef=
"prepareparam3"
targetRef=
"deaction2"
>
<sequenceFlow
id=
"prepareparam3_deaction2"
sourceRef=
"prepareparam3"
targetRef=
"deaction2"
>
</sequenceFlow>
</sequenceFlow>
<exclusiveGateway
id=
"gateway-deaction2"
name=
"Gateway"
gatewayDirection=
"Diverging"
default=
"gateway-deaction2_end_line"
></exclusiveGateway>
<exclusiveGateway
id=
"gateway-deaction2"
name=
"Gateway"
gatewayDirection=
"Diverging"
default=
"gateway-deaction2_end_line"
></exclusiveGateway>
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/GetUnitAndPrice.json.drl
浏览文件 @
a83c6ff5
...
@@ -5,16 +5,17 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -5,16 +5,17 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
import
org
.
springframework
.
util
.
StringUtils
;
import
org
.
springframework
.
util
.
StringUtils
;
import
org
.
springframework
.
util
.
ObjectUtils
;
import
org
.
springframework
.
util
.
ObjectUtils
;
import
cn
.
ibizlab
.
util
.
errors
.
BadRequestAlertException
;
import
cn
.
ibizlab
.
util
.
errors
.
BadRequestAlertException
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZUNIProduct
ibizorderdetailgetunitandpriceproduct
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrderDetail
ibizorderdetailgetunitandpricedefault
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricelist
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricelist
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrderDetail
ibizorderdetailgetunitandpricedefault
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrder
ibizorderdetailgetunitandpriceorder
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZOrder
ibizorderdetailgetunitandpriceorder
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricepage
;
global
cn
.
ibizlab
.
core
.
sample
.
domain
.
IBIZUNIProduct
ibizorderdetailgetunitandpriceproduct
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricefilter
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricefilter
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
ibizorderdetailservice
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricesession
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZUNIProductService
ibizuniproductservic
e
;
global
java
.
util
.
Map
ibizorderdetailgetunitandpricepag
e
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderService
ibizorderservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderService
ibizorderservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
ibizorderdetailservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZBOOKService
ibizbookservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZBOOKService
ibizbookservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZUNIProductService
ibizuniproductservice
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
iBzSysIbizorderdetailDefaultService
;
global
cn
.
ibizlab
.
core
.
sample
.
service
.
IIBIZOrderDetailService
iBzSysIbizorderdetailDefaultService
;
global
cn
.
ibizlab
.
util
.
security
.
AuthenticationUser
curuser
;
global
cn
.
ibizlab
.
util
.
security
.
AuthenticationUser
curuser
;
...
@@ -28,98 +29,104 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -28,98 +29,104 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
then
then
end
end
//
逻辑处理节点
[
统计金额
]
//
逻辑处理节点
[
获取商品
id
]
rule
"
delogic
1"
rule
"
prepareparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
delogic
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
ibizorderdetailgetunitandpriceproduct
.
set
(
"ibizuniproductid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizuniproductid"
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
大于
200
处理
]
//
逻辑处理节点
[
调试逻辑参数
]
rule
"debugparam
2
"
rule
"debugparam
4
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
2
"
ruleflow
-
group
"ibizorderdetailgetunitandpricedebugparam
4
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取
商品
id
]
//
逻辑处理节点
[
获取
订单信息
]
rule
"
prepareparam1
"
rule
"
deaction2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction2
"
when
when
then
then
ibizorderdetailgetunitandpriceproduct
.
set
(
"ibizuniproductid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizuniproductid"
));
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizorderservice
.
get
(
ibizorderdetailgetunitandpriceorder
.
getIbizorderid
()),
ibizorderdetailgetunitandpriceorder
);
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取商品信息
]
//
逻辑处理节点
[
绑定参数
]
rule
"
deaction
1"
rule
"
bindparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
bindparam
1"
when
when
then
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizuniproductservice
.
get
(
ibizorderdetailgetunitandpriceproduct
.
getIbizuniproductid
()),
ibizorderdetailgetunitandpriceproduct
);
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取
订单信息
]
//
逻辑处理节点
[
获取
产品价格异常
]
rule
"
deaction2
"
rule
"
throwexception
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception
"
when
when
then
then
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizorderservice
.
get
(
ibizorderdetailgetunitandpriceorder
.
getIbizorderid
()),
ibizorderdetailgetunitandpriceorder
);
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
拷贝参数
]
//
逻辑处理节点
[
统计金额
]
rule
"
copyparam
1"
rule
"
delogic
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
copyparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
delogic
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
实体数据集
]
//
逻辑处理节点
[
调试逻辑参数
]
rule
"de
dataset1
"
rule
"de
bugparam5
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
dataset1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
bugparam5
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
填充单位和单价
]
//
逻辑处理节点
[
填充单位和单价
]
...
@@ -129,195 +136,211 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
...
@@ -129,195 +136,211 @@ package cn.ibizlab.sample.logic.ibizorderdetaillogic.getunitandprice;
then
then
ibizorderdetailgetunitandpricedefault
.
set
(
"unit"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unit"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unit"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unit"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
ibizorderdetailgetunitandpricedefault
.
set
(
"unitprice"
,
ibizorderdetailgetunitandpriceproduct
.
get
(
"unitprice"
));
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
大于
100
处理
]
//
逻辑处理节点
[
实体数据查询
]
rule
"de
bugparam
1"
rule
"de
dataquery
1"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
bugparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
dataquery
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
重置参数
]
//
逻辑处理节点
[
获取商品信息
]
rule
"
resetparam
1"
rule
"
deaction
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
resetparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
cn
.
ibizlab
.
util
.
helper
.
CachedBeanCopier
.
copy
(
ibizuniproductservice
.
get
(
ibizorderdetailgetunitandpriceproduct
.
getIbizuniproductid
()),
ibizorderdetailgetunitandpriceproduct
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
调试逻辑
参数
]
//
逻辑处理节点
[
重新建立
参数
]
rule
"
debugparam4
"
rule
"
renewparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam4
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
renewparam1
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
排序数组参数
]
//
逻辑处理节点
[
设置
orderid
]
rule
"
sortparam1
"
rule
"
prepareparam3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
sortparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam3
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizorderid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizorderid"
));
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
ibizorderdetailgetunitandpriceorder
.
set
(
"createman"
,
"111"
);
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
调试逻辑
参数
]
//
逻辑处理节点
[
重置
参数
]
rule
"
debugparam5
"
rule
"
resetparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam5
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
resetparam1
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取订单信息异常
]
//
逻辑处理节点
[
排序数组参数
]
rule
"
throwexception2
"
rule
"
sortparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
sortparam1
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
实体行为
]
//
逻辑处理节点
[
拷贝参数
]
rule
"
deaction3
"
rule
"
copyparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
deaction3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
copyparam1
"
when
when
then
then
ibizorderdetailservice
.
countMoney
(
ibizorderdetailgetunitandpricedefault
);
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
绑定参数
]
//
逻辑处理节点
[
大于
200
处理
]
rule
"
bindparam1
"
rule
"
debugparam2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
bindparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam2
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
调试逻辑
参数
]
//
逻辑处理节点
[
附加到数组
参数
]
rule
"
debugparam3
"
rule
"
appendparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
appendparam1
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
设置
orderid
]
//
逻辑处理节点
[
大于
100
处理
]
rule
"
prepareparam3
"
rule
"
debugparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
prepareparam3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam1
"
when
when
then
then
ibizorderdetailgetunitandpriceorder
.
set
(
"ibizorderid"
,
ibizorderdetailgetunitandpricedefault
.
get
(
"ibizorderid"
));
ibizorderdetailgetunitandpriceorder
.
set
(
"createman"
,
"111"
);
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
实体
数据查询
]
//
逻辑处理节点
[
实体
行为
]
rule
"de
dataquery1
"
rule
"de
action3
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
dataquery1
"
ruleflow
-
group
"ibizorderdetailgetunitandpricede
action3
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
ibizorderdetailservice
.
countMoney
(
ibizorderdetailgetunitandpricedefault
);
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
重新建立参数
]
//
逻辑处理节点
[
实体数据集
]
rule
"
renewparam
1"
rule
"
dedataset
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
renewparam
1"
ruleflow
-
group
"ibizorderdetailgetunitandprice
dedataset
1"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
附加到数组参数
]
//
逻辑处理节点
[
获取订单信息异常
]
rule
"
appendparam1
"
rule
"
throwexception2
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
appendparam1
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception2
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
//
逻辑处理节点
[
获取产品价格异常
]
//
逻辑处理节点
[
调试逻辑参数
]
rule
"
throwexception
"
rule
"
debugparam3
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
throwexception
"
ruleflow
-
group
"ibizorderdetailgetunitandprice
debugparam3
"
when
when
then
then
update
(
ibizorderdetailgetunitandpriceproduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricelist
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricedefault
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpriceorder
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
age
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricep
roduct
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricefilter
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricesession
);//
更新
fact
中变量值
update
(
ibizorderdetailgetunitandpricepage
);//
更新
fact
中变量值
end
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
a83c6ff5
...
@@ -12,6 +12,30 @@
...
@@ -12,6 +12,30 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
},
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"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
},
{
"caption"
:
"归还日期"
,
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -47,30 +71,6 @@
...
@@ -47,30 +71,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
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"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
a83c6ff5
...
@@ -31,18 +31,6 @@
...
@@ -31,18 +31,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
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
},
{
},
{
"caption"
:
"图书描述"
,
"caption"
:
"图书描述"
,
"codeName"
:
"subtext"
,
"codeName"
:
"subtext"
,
...
@@ -55,6 +43,18 @@
...
@@ -55,6 +43,18 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
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"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail.json
浏览文件 @
a83c6ff5
...
@@ -2745,46 +2745,6 @@
...
@@ -2745,46 +2745,6 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Begin"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Begin"
,
"topPos"
:
216
,
"topPos"
:
216
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
"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"
:
"DEBUGPARAM2"
,
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM2"
,
"name"
:
"大于200处理"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM2"
,
"topPos"
:
-50
},
{
},
{
"codeName"
:
"Prepareparam1"
,
"codeName"
:
"Prepareparam1"
,
"leftPos"
:
313
,
"leftPos"
:
313
,
...
@@ -2821,56 +2781,13 @@
...
@@ -2821,56 +2781,13 @@
"topPos"
:
224
,
"topPos"
:
224
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"Deaction1"
,
"codeName"
:
"DEBUGPARAM4"
,
"getDstPSAppDEAction"
:
{
"leftPos"
:
1280
,
"modelref"
:
true
,
"logicNodeType"
:
"DEBUGPARAM"
,
"id"
:
"Get"
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM4"
,
},
"name"
:
"调试逻辑参数"
,
"getDstPSAppDataEntity"
:
{
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM4"
,
"modelref"
:
true
,
"topPos"
:
50
"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"
:
"DEACTION2"
,
"codeName"
:
"DEACTION2"
,
"getDstPSAppDEAction"
:
{
"getDstPSAppDEAction"
:
{
...
@@ -3033,53 +2950,67 @@
...
@@ -3033,53 +2950,67 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION2"
,
"topPos"
:
-37
"topPos"
:
-37
},
{
},
{
"codeName"
:
"
COPY
PARAM1"
,
"codeName"
:
"
BIND
PARAM1"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product"
"id"
:
"Product"
},
},
"leftPos"
:
258
,
"leftPos"
:
41
,
"logicNodeType"
:
"
COPY
PARAM"
,
"logicNodeType"
:
"
BIND
PARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
COPY
PARAM1"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
BIND
PARAM1"
,
"name"
:
"
拷贝
参数"
,
"name"
:
"
绑定
参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
COPY
PARAM1"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
BIND
PARAM1"
,
"getSrcPSDELogicParam"
:
{
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Order
"
"id"
:
"
Product
"
},
},
"topPos"
:
1
0
"topPos"
:
8
0
},
{
},
{
"codeName"
:
"DEDATASET1"
,
"codeName"
:
"Throwexception"
,
"getDstPSAppDEDataSet"
:
{
"errorCode"
:
0
,
"errorInfo"
:
"获取产品价格异常"
,
"leftPos"
:
595
,
"logicNodeType"
:
"THROWEXCEPTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Throwexception"
,
"name"
:
"获取产品价格异常"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Throwexception"
,
"topPos"
:
422
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSAppDELogic"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
FetchDefault
"
"id"
:
"
CountMoney
"
},
},
"getDstPSAppDataEntity"
:
{
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZ
BOOK
.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZ
OrderDetail
.json"
},
},
"getDstPSDE
DataSet
"
:
{
"getDstPSDE
Logic
"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
id"
:
"Default
"
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDELOGICS/CountMoney.json
"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
filter
"
"id"
:
"
Default
"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail.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
"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"
:
"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
},
{
},
{
"codeName"
:
"Prepareparam2"
,
"codeName"
:
"Prepareparam2"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -3171,115 +3102,92 @@
...
@@ -3171,115 +3102,92 @@
"topPos"
:
224
,
"topPos"
:
224
,
"parallelOutput"
:
true
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"DE
BUGPARAM
1"
,
"codeName"
:
"DE
DATAQUERY
1"
,
"getDstPSDE
LogicParam
"
:
{
"getDstPSDE
DataQuery
"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Default"
"id"
:
"Default"
},
},
"leftPos"
:
1310
,
"getDstPSDELogicParam"
:
{
"logicNodeType"
:
"DEBUGPARAM"
,
"modelref"
:
true
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"id"
:
"filter"
"name"
:
"大于100处理"
,
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"getDstPSDataEntity"
:
{
"topPos"
:
-420
"modelref"
:
true
,
},
{
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
"codeName"
:
"RESETPARAM1"
,
},
"leftPos"
:
65
,
"leftPos"
:
1524
,
"logicNodeType"
:
"RESETPARAM"
,
"logicNodeType"
:
"DEDATAQUERY"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY1"
,
"name"
:
"重置参数"
,
"name"
:
"实体数据查询"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEDATAQUERY1"
,
"topPos"
:
-60
"getRetPSDELogicParam"
:
{
},
{
"modelref"
:
true
,
"codeName"
:
"DEBUGPARAM4"
,
"id"
:
"list"
"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"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
"topPos"
:
80
},
{
},
{
"codeName"
:
"DEBUGPARAM5"
,
"codeName"
:
"Deaction1"
,
"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
},
{
"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"
:
"DEACTION3"
,
"getDstPSAppDEAction"
:
{
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
CountMoney
"
"id"
:
"
Get
"
},
},
"getDstPSAppDataEntity"
:
{
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZ
OrderDetail
.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZ
UNIProduct
.json"
},
},
"getDstPSDEAction"
:
{
"getDstPSDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
OrderDetail/PSDEACTIONS/CountMoney
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
UNIProduct/PSDEACTIONS/Get
.json"
},
},
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Defaul
t"
"id"
:
"
Produc
t"
},
},
"getDstPSDataEntity"
:
{
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
OrderDetail
.json"
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZ
UNIProduct
.json"
},
},
"leftPos"
:
1001
,
"leftPos"
:
555
,
"logicNodeType"
:
"DEACTION"
,
"logicNodeType"
:
"DEACTION"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"name"
:
"实体行为"
,
"name"
:
"获取商品信息"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEACTION3"
,
"getPSDELogicLinks"
:
[
{
"topPos"
:
318
"getDstPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Prepareparam2"
},
"name"
:
"连接"
,
"getSrcPSDELogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Deaction1"
}
},
{
},
{
"codeName"
:
"BINDPARAM1"
,
"getDstPSDELogicNode"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product
"
"id"
:
"Throwexception
"
},
},
"leftPos"
:
41
,
"name"
:
"异常"
,
"logicNodeType"
:
"BINDPARAM"
,
"getSrcPSDELogicNode"
:
{
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"name"
:
"绑定参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/BINDPARAM1"
,
"getSrcPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Product
"
"id"
:
"Deaction1
"
},
},
"topPos"
:
80
"catchLink"
:
true
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/Deaction1"
,
"topPos"
:
224
,
"parallelOutput"
:
true
},
{
},
{
"codeName"
:
"
DEBUGPARAM3
"
,
"codeName"
:
"
RENEWPARAM1
"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Defaul
t"
"id"
:
"
Produc
t"
},
},
"leftPos"
:
1
210
,
"leftPos"
:
1
77
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"logicNodeType"
:
"
RENEW
PARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
DEBUGPARAM3
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
RENEWPARAM1
"
,
"name"
:
"
调试逻辑
参数"
,
"name"
:
"
重新建立
参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
DEBUGPARAM3
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
RENEWPARAM1
"
,
"topPos"
:
1
40
"topPos"
:
1
29
},
{
},
{
"codeName"
:
"PREPAREPARAM3"
,
"codeName"
:
"PREPAREPARAM3"
,
"leftPos"
:
775
,
"leftPos"
:
775
,
...
@@ -3334,41 +3242,49 @@
...
@@ -3334,41 +3242,49 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/PREPAREPARAM3"
,
"topPos"
:
-38
"topPos"
:
-38
},
{
},
{
"codeName"
:
"DEDATAQUERY1"
,
"codeName"
:
"RESETPARAM1"
,
"getDstPSDEDataQuery"
:
{
"leftPos"
:
65
,
"modelref"
:
true
,
"logicNodeType"
:
"RESETPARAM"
,
"id"
:
"Default"
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
},
"name"
:
"重置参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/RESETPARAM1"
,
"topPos"
:
-60
},
{
"codeName"
:
"SORTPARAM1"
,
"leftPos"
:
384
,
"logicNodeType"
:
"SORTPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"name"
:
"排序数组参数"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/SORTPARAM1"
,
"topPos"
:
80
},
{
"codeName"
:
"COPYPARAM1"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"filter"
"id"
:
"Product"
},
"getDstPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZBOOK.json"
},
},
"leftPos"
:
1524
,
"leftPos"
:
258
,
"logicNodeType"
:
"
DEDATAQUERY
"
,
"logicNodeType"
:
"
COPYPARAM
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
DEDATAQUERY
1"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
COPYPARAM
1"
,
"name"
:
"
实体数据查询
"
,
"name"
:
"
拷贝参数
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
DEDATAQUERY
1"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
COPYPARAM
1"
,
"get
Ret
PSDELogicParam"
:
{
"get
Src
PSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
list
"
"id"
:
"
Order
"
},
},
"topPos"
:
8
0
"topPos"
:
1
0
},
{
},
{
"codeName"
:
"
RENEWPARAM1
"
,
"codeName"
:
"
DEBUGPARAM2
"
,
"getDstPSDELogicParam"
:
{
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
Produc
t"
"id"
:
"
Defaul
t"
},
},
"leftPos"
:
1
77
,
"leftPos"
:
1
310
,
"logicNodeType"
:
"
RENEW
PARAM"
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
RENEWPARAM1
"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
DEBUGPARAM2
"
,
"name"
:
"
重新建立参数
"
,
"name"
:
"
大于200处理
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
RENEWPARAM1
"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/
DEBUGPARAM2
"
,
"topPos"
:
129
"topPos"
:
-50
},
{
},
{
"codeName"
:
"APPENDPARAM1"
,
"codeName"
:
"APPENDPARAM1"
,
"leftPos"
:
439
,
"leftPos"
:
439
,
...
@@ -3378,31 +3294,107 @@
...
@@ -3378,31 +3294,107 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/APPENDPARAM1"
,
"topPos"
:
-10
"topPos"
:
-10
},
{
},
{
"codeName"
:
"Throwexception"
,
"codeName"
:
"DEBUGPARAM1"
,
"errorCode"
:
0
,
"getDstPSDELogicParam"
:
{
"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
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"Product"
,
"logicName"
:
"商品"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Product"
,
"name"
:
"商品"
,
"getParamPSAppDataEntity"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZUNIProduct.json
"
"
id"
:
"Default
"
},
},
"getParamPSDataEntity"
:
{
"leftPos"
:
1310
,
"logicNodeType"
:
"DEBUGPARAM"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"name"
:
"大于100处理"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicnodes/DEBUGPARAM1"
,
"topPos"
:
-420
},
{
"codeName"
:
"DEACTION3"
,
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"
path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json
"
"
id"
:
"CountMoney
"
},
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Product"
,
"getDstPSAppDataEntity"
:
{
"entityParam"
:
true
"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"
:
"DEDATASET1"
,
"getDstPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getDstPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getDstPSDELogicParam"
:
{
"modelref"
:
true
,
"id"
:
"filter"
},
"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"
:
"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"
:
"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
}
],
"getPSDELogicParams"
:
[
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Default"
,
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
"logicName"
:
"传入变量"
,
...
@@ -3419,13 +3411,6 @@
...
@@ -3419,13 +3411,6 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Default"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Default"
,
"default"
:
true
,
"default"
:
true
,
"entityParam"
:
true
"entityParam"
:
true
},
{
"codeName"
:
"list"
,
"logicName"
:
"list"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"name"
:
"list"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/list"
,
"entityListParam"
:
true
},
{
},
{
"codeName"
:
"Order"
,
"codeName"
:
"Order"
,
"logicName"
:
"订单"
,
"logicName"
:
"订单"
,
...
@@ -3442,12 +3427,20 @@
...
@@ -3442,12 +3427,20 @@
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Order"
,
"entityParam"
:
true
"entityParam"
:
true
},
{
},
{
"codeName"
:
"page"
,
"codeName"
:
"Product"
,
"logicName"
:
"page"
,
"logicName"
:
"商品"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Product"
,
"name"
:
"page"
,
"name"
:
"商品"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"getParamPSAppDataEntity"
:
{
"entityPageParam"
:
true
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZUNIProduct.json"
},
"getParamPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZUNIProduct.json"
},
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/Product"
,
"entityParam"
:
true
},
{
},
{
"codeName"
:
"filter"
,
"codeName"
:
"filter"
,
"logicName"
:
"filter"
,
"logicName"
:
"filter"
,
...
@@ -3455,6 +3448,20 @@
...
@@ -3455,6 +3448,20 @@
"name"
:
"filter"
,
"name"
:
"filter"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/filter"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/filter"
,
"filterParam"
:
true
"filterParam"
:
true
},
{
"codeName"
:
"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"
:
"page"
,
"logicName"
:
"page"
,
"mOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"name"
:
"page"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice/psappdelogicparams/page"
,
"entityPageParam"
:
true
}
],
}
],
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice"
,
"rTMOSFilePath"
:
"pssysapps/Web/psappdataentities/IBIZOrderDetail/psappdelogics/GetUnitAndPrice"
,
"getStartPSDELogicNode"
:
{
"getStartPSDELogicNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
a83c6ff5
...
@@ -46,6 +46,30 @@
...
@@ -46,6 +46,30 @@
"id"
:
"GANTT"
"id"
:
"GANTT"
},
},
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"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
},
{
"caption"
:
"归还日期"
,
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -81,30 +105,6 @@
...
@@ -81,30 +105,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
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"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
a83c6ff5
...
@@ -111,18 +111,6 @@
...
@@ -111,18 +111,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
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
},
{
},
{
"caption"
:
"图书描述"
,
"caption"
:
"图书描述"
,
"codeName"
:
"subtext"
,
"codeName"
:
"subtext"
,
...
@@ -135,6 +123,18 @@
...
@@ -135,6 +123,18 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
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"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
This diff is collapsed.
Click to expand it.
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
a83c6ff5
...
@@ -393,7 +393,7 @@
...
@@ -393,7 +393,7 @@
<!--输出实体[IBIZORDERDETAIL]数据结构 -->
<!--输出实体[IBIZORDERDETAIL]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-1
48
-14"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-1
50
-14"
>
<createTable
tableName=
"T_IBIZORDERDETAIL"
>
<createTable
tableName=
"T_IBIZORDERDETAIL"
>
<column
name=
"IBIZORDERDETAILNAME"
remarks=
""
type=
"VARCHAR(200)"
>
<column
name=
"IBIZORDERDETAILNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
</column>
...
...
This diff is collapsed.
Click to expand it.
demo-core/src/main/resources/liquibase/view.xml
浏览文件 @
a83c6ff5
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
</createView>
</createView>
</changeSet>
</changeSet>
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-1
48
-8"
runOnChange=
"true"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-1
50
-8"
runOnChange=
"true"
>
<createView
fullDefinition=
"false"
replaceIfExists=
"true"
viewName=
"V_IBIZORDERDETAIL"
>
<createView
fullDefinition=
"false"
replaceIfExists=
"true"
viewName=
"V_IBIZORDERDETAIL"
>
<![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]>
<![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]>
</createView>
</createView>
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录