Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
b23e5bcc
提交
b23e5bcc
编写于
12月 14, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
d6acd751
变更
17
显示空白字符变更
内嵌
并排
正在显示
17 个修改的文件
包含
251 行增加
和
37 行删除
+251
-37
ibizorder_BO_CN_base.ts
.../locale/lanres/entities/ibizorder/ibizorder_BO_CN_base.ts
+2
-0
ibizorder_en_US_base.ts
.../locale/lanres/entities/ibizorder/ibizorder_en_US_base.ts
+2
-0
ibizorder_zh_CN_base.ts
.../locale/lanres/entities/ibizorder/ibizorder_zh_CN_base.ts
+2
-0
page-register.ts
app_Web/src/pages/sample/index/page-register.ts
+1
-1
router.ts
app_Web/src/pages/sample/index/router.ts
+8
-8
state.ts
app_Web/src/store/modules/view-action/state.ts
+1
-1
default-searchform-base.vue
...s/ibizbook/default-searchform/default-searchform-base.vue
+2
-2
quicksearchform-searchform-base.vue
...searchform-searchform/quicksearchform-searchform-base.vue
+2
-2
add-data-form-form-base.vue
...izcustomer/add-data-form-form/add-data-form-form-base.vue
+5
-5
main-grid-base.vue
...src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
+6
-6
main-form-base.vue
app_Web/src/widgets/ibizorder/main-form/main-form-base.vue
+34
-2
main-form-model.ts
app_Web/src/widgets/ibizorder/main-form/main-form-model.ts
+6
-0
Main.json
...SYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSFORMS/Main.json
+36
-2
Main3.json
.../Web/PSAPPDATAENTITIES/IBIZOrderDetail/PSFORMS/Main3.json
+36
-2
IBIZOrderDetailSF2EditView.json
...SSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSF2EditView.json
+36
-2
IBIZOrderEditView.json
...temodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderEditView.json
+36
-2
IBIZOrderWFDynaActionView.json
...PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderWFDynaActionView.json
+36
-2
未找到文件。
app_Web/src/locale/lanres/entities/ibizorder/ibizorder_BO_CN_base.ts
浏览文件 @
b23e5bcc
...
...
@@ -492,7 +492,9 @@ function getLocaleResourceBase(){
memo
:
commonLogic
.
appcommonhandle
(
"备注"
,
null
),
formitem
:
commonLogic
.
appcommonhandle
(
"文件上传"
,
null
),
formitem1
:
commonLogic
.
appcommonhandle
(
"安永多选"
,
null
),
formitem2
:
commonLogic
.
appcommonhandle
(
""
,
null
),
ibizcustomerid
:
commonLogic
.
appcommonhandle
(
"客户标识"
,
null
),
formitem2
:
commonLogic
.
appcommonhandle
(
""
,
null
),
ibizorderid
:
commonLogic
.
appcommonhandle
(
"订单标识"
,
null
),
},
uiactions
:
{
...
...
app_Web/src/locale/lanres/entities/ibizorder/ibizorder_en_US_base.ts
浏览文件 @
b23e5bcc
...
...
@@ -492,7 +492,9 @@ function getLocaleResourceBase(){
memo
:
commonLogic
.
appcommonhandle
(
"备注"
,
null
),
formitem
:
commonLogic
.
appcommonhandle
(
"文件上传"
,
null
),
formitem1
:
commonLogic
.
appcommonhandle
(
"安永多选"
,
null
),
formitem2
:
commonLogic
.
appcommonhandle
(
""
,
null
),
ibizcustomerid
:
commonLogic
.
appcommonhandle
(
"客户标识"
,
null
),
formitem2
:
commonLogic
.
appcommonhandle
(
""
,
null
),
ibizorderid
:
commonLogic
.
appcommonhandle
(
"订单标识"
,
null
),
},
uiactions
:
{
...
...
app_Web/src/locale/lanres/entities/ibizorder/ibizorder_zh_CN_base.ts
浏览文件 @
b23e5bcc
...
...
@@ -492,7 +492,9 @@ function getLocaleResourceBase(){
memo
:
commonLogic
.
appcommonhandle
(
"备注"
,
null
),
formitem
:
commonLogic
.
appcommonhandle
(
"文件上传"
,
null
),
formitem1
:
commonLogic
.
appcommonhandle
(
"安永多选"
,
null
),
formitem2
:
commonLogic
.
appcommonhandle
(
""
,
null
),
ibizcustomerid
:
commonLogic
.
appcommonhandle
(
"客户标识"
,
null
),
formitem2
:
commonLogic
.
appcommonhandle
(
""
,
null
),
ibizorderid
:
commonLogic
.
appcommonhandle
(
"订单标识"
,
null
),
},
uiactions
:
{
...
...
app_Web/src/pages/sample/index/page-register.ts
浏览文件 @
b23e5bcc
...
...
@@ -240,8 +240,8 @@ export const PageComponents = {
Vue
.
component
(
'ibizappeditoredit-view'
,
()
=>
import
(
'@pages/sample/ibizappeditoredit-view/ibizappeditoredit-view.vue'
));
Vue
.
component
(
'ibizappextendeditoredit-view'
,
()
=>
import
(
'@pages/sample/ibizappextendeditoredit-view/ibizappextendeditoredit-view.vue'
));
Vue
.
component
(
'ibizsample0002-pickup-grid-view'
,
()
=>
import
(
'@pages/sample/ibizsample0002-pickup-grid-view/ibizsample0002-pickup-grid-view.vue'
));
Vue
.
component
(
'ibizorder-pickup-grid-view'
,
()
=>
import
(
'@pages/sample/ibizorder-pickup-grid-view/ibizorder-pickup-grid-view.vue'
));
Vue
.
component
(
'ibizcustomer-pickup-grid-view'
,
()
=>
import
(
'@pages/sample/ibizcustomer-pickup-grid-view/ibizcustomer-pickup-grid-view.vue'
));
Vue
.
component
(
'ibizorder-pickup-grid-view'
,
()
=>
import
(
'@pages/sample/ibizorder-pickup-grid-view/ibizorder-pickup-grid-view.vue'
));
Vue
.
component
(
'ibizuniproduct-pickup-grid-view'
,
()
=>
import
(
'@pages/sample/ibizuniproduct-pickup-grid-view/ibizuniproduct-pickup-grid-view.vue'
));
Vue
.
component
(
'ibizorder-detail-edit-view'
,
()
=>
import
(
'@pages/sample/ibizorder-detail-edit-view/ibizorder-detail-edit-view.vue'
));
Vue
.
component
(
'ibizorder-detail-sedit-view9'
,
()
=>
import
(
'@pages/sample/ibizorder-detail-sedit-view9/ibizorder-detail-sedit-view9.vue'
));
...
...
app_Web/src/pages/sample/index/router.ts
浏览文件 @
b23e5bcc
...
...
@@ -3600,32 +3600,32 @@ const router = new Router({
component
:
()
=>
import
(
'@pages/sample/ibizsample0002-pickup-grid-view/ibizsample0002-pickup-grid-view.vue'
),
},
{
path
:
'ibiz
orders/:ibizord
er?/pickupgridview/:pickupgridview?'
,
path
:
'ibiz
customers/:ibizcustom
er?/pickupgridview/:pickupgridview?'
,
meta
:
{
caption
:
'entities.ibiz
ord
er.views.pickupgridview.caption'
,
caption
:
'entities.ibiz
custom
er.views.pickupgridview.caption'
,
info
:
''
,
parameters
:
[
{
pathName
:
'index'
,
parameterName
:
'index'
},
{
pathName
:
'ibiz
orders'
,
parameterName
:
'ibizord
er'
},
{
pathName
:
'ibiz
customers'
,
parameterName
:
'ibizcustom
er'
},
{
pathName
:
'pickupgridview'
,
parameterName
:
'pickupgridview'
},
],
requireAuth
:
true
,
},
component
:
()
=>
import
(
'@pages/sample/ibiz
order-pickup-grid-view/ibizord
er-pickup-grid-view.vue'
),
component
:
()
=>
import
(
'@pages/sample/ibiz
customer-pickup-grid-view/ibizcustom
er-pickup-grid-view.vue'
),
},
{
path
:
'ibiz
customers/:ibizcustom
er?/pickupgridview/:pickupgridview?'
,
path
:
'ibiz
orders/:ibizord
er?/pickupgridview/:pickupgridview?'
,
meta
:
{
caption
:
'entities.ibiz
custom
er.views.pickupgridview.caption'
,
caption
:
'entities.ibiz
ord
er.views.pickupgridview.caption'
,
info
:
''
,
parameters
:
[
{
pathName
:
'index'
,
parameterName
:
'index'
},
{
pathName
:
'ibiz
customers'
,
parameterName
:
'ibizcustom
er'
},
{
pathName
:
'ibiz
orders'
,
parameterName
:
'ibizord
er'
},
{
pathName
:
'pickupgridview'
,
parameterName
:
'pickupgridview'
},
],
requireAuth
:
true
,
},
component
:
()
=>
import
(
'@pages/sample/ibiz
customer-pickup-grid-view/ibizcustom
er-pickup-grid-view.vue'
),
component
:
()
=>
import
(
'@pages/sample/ibiz
order-pickup-grid-view/ibizord
er-pickup-grid-view.vue'
),
},
{
path
:
'ibizuniproducts/:ibizuniproduct?/pickupgridview/:pickupgridview?'
,
...
...
app_Web/src/store/modules/view-action/state.ts
浏览文件 @
b23e5bcc
...
...
@@ -1510,7 +1510,7 @@ export const viewstate: any = {
viewdatachange
:
false
,
refviews
:
[
'f083dd992abed44bf15a9930b45c3895'
,
'
cb616d70c0b3978802b768cb6c7a67b4
'
,
'
efefe92eef97af14a35603f0324861cb
'
,
'aa59a7578f3da5d69d6e28ab021d867c'
,
'6bc6e690dc5abfc6d89703e4459c785c'
,
],
...
...
app_Web/src/widgets/ibizbook/default-searchform/default-searchform-base.vue
浏览文件 @
b23e5bcc
...
...
@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/quicksearchform-searchform/quicksearchform-searchform-base.vue
浏览文件 @
b23e5bcc
...
...
@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Calendar
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Calendar
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizcustomer/add-data-form-form/add-data-form-form-base.vue
浏览文件 @
b23e5bcc
...
...
@@ -1314,7 +1314,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
*/
public
async
load
(
opt
:
any
=
{}):
Promise
<
any
>
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
Usr3
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loadaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
MediaTest
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loadaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -1366,7 +1366,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
*/
public
async
loadDraft
(
opt
:
any
=
{}):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
Usr3
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loaddraftaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
MediaTest
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loaddraftaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
@@ -1436,7 +1436,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
const
action
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)
?
this
.
updateAction
:
this
.
createAction
;
if
(
!
action
){
let
actionName
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)?
"updateAction"
:
"createAction"
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
Usr3
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
MediaTest
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
return
;
}
Object
.
assign
(
arg
,{
viewparams
:
this
.
viewparams
});
...
...
@@ -1544,7 +1544,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
const
action
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)
?
this
.
updateAction
:
this
.
createAction
;
if
(
!
action
){
let
actionName
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)?
"updateAction"
:
"createAction"
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
Usr3
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
MediaTest
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
return
;
}
Object
.
assign
(
arg
,
{
viewparams
:
this
.
viewparams
});
...
...
@@ -1742,7 +1742,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
public
remove
(
opt
:
Array
<
any
>
=
[],
showResultInfo
?:
boolean
):
Promise
<
any
>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
Usr3
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.removeaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZCustomer
MediaTest
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.removeaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
opt
[
0
];
...
...
app_Web/src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
浏览文件 @
b23e5bcc
...
...
@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
fetchAction
)
{
this
.
$Notice
.
error
({
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
desc
:
"IBIZOrderDetail
SGridView
"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
desc
:
"IBIZOrderDetail
GridView9
"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
});
return
;
}
...
...
@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
removeAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
return
;
}
...
...
@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
addBatch
(
arg
:
any
=
{}):
void
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
return
;
}
if
(
!
arg
){
...
...
@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface {
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
!
this
.
createAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
...
@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
...
@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
SGridView
'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
desc
:
'IBIZOrderDetail
GridView9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
...
...
app_Web/src/widgets/ibizorder/main-form/main-form-base.vue
浏览文件 @
b23e5bcc
...
...
@@ -208,9 +208,9 @@
:localContext =
'
{ }'
:localParam ='{ }'
:service="service"
valueitem=''
valueitem='
formitem2
'
:acParams="{ }"
:pickupView="{ viewname: 'ibizorder-pickup-
grid-view', title: $t('entities.ibizorder.views.pickupgridview.title'), deResParameters: [], parameters: [{ pathName: 'ibizorders', parameterName: 'ibizorder' }, { pathName: 'pickupgridview', parameterName: 'pickupgrid
view' } ], placement:'' }"
:pickupView="{ viewname: 'ibizorder-pickup-
view', title: $t('entities.ibizorder.views.pickupview.title'), deResParameters: [], parameters: [{ pathName: 'ibizorders', parameterName: 'ibizorder' }, { pathName: 'pickupview', parameterName: 'pickup
view' } ], placement:'' }"
@formitemvaluechange="onFormItemValueChange"
style="">
</app-ey-mpicker>
...
...
@@ -724,7 +724,9 @@ export default class MainBase extends Vue implements ControlInterface {
memo
:
null
,
formitem
:
null
,
formitem1
:
null
,
formitem2
:
null
,
ibizcustomerid
:
null
,
formitem2
:
null
,
ibizorderid
:
null
,
ibizorder
:
null
,
};
...
...
@@ -991,8 +993,12 @@ export default class MainBase extends Vue implements ControlInterface {
formitem
:
new
FormItemModel
({
caption
:
'文件上传'
,
detailType
:
'FORMITEM'
,
name
:
'formitem'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
formitem1
:
new
FormItemModel
({
caption
:
'安永多选'
,
detailType
:
'FORMITEM'
,
name
:
'formitem1'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
formitem2
:
new
FormItemModel
({
caption
:
''
,
detailType
:
'FORMITEM'
,
name
:
'formitem2'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
ibizcustomerid
:
new
FormItemModel
({
caption
:
'客户标识'
,
detailType
:
'FORMITEM'
,
name
:
'ibizcustomerid'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
formitem2
:
new
FormItemModel
({
caption
:
''
,
detailType
:
'FORMITEM'
,
name
:
' formitem2'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
ibizorderid
:
new
FormItemModel
({
caption
:
'订单标识'
,
detailType
:
'FORMITEM'
,
name
:
'ibizorderid'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
...
...
@@ -1262,6 +1268,18 @@ export default class MainBase extends Vue implements ControlInterface {
this
.
formDataChange
({
name
:
'formitem1'
,
newVal
:
newVal
,
oldVal
:
oldVal
});
}
/**
* 监控表单属性 formitem2 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@
Watch
(
'data.formitem2'
)
onFormitem2Change
(
newVal
:
any
,
oldVal
:
any
)
{
this
.
formDataChange
({
name
:
'formitem2'
,
newVal
:
newVal
,
oldVal
:
oldVal
});
}
/**
* 监控表单属性 ibizcustomerid 值
*
...
...
@@ -1274,6 +1292,18 @@ export default class MainBase extends Vue implements ControlInterface {
this
.
formDataChange
({
name
:
'ibizcustomerid'
,
newVal
:
newVal
,
oldVal
:
oldVal
});
}
/**
* 监控表单属性 formitem2 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@
Watch
(
'data. formitem2'
)
on
formitem2Change
(
newVal
:
any
,
oldVal
:
any
)
{
this
.
formDataChange
({
name
:
' formitem2'
,
newVal
:
newVal
,
oldVal
:
oldVal
});
}
/**
* 监控表单属性 ibizorderid 值
*
...
...
@@ -1367,6 +1397,8 @@ export default class MainBase extends Vue implements ControlInterface {
...
...
app_Web/src/widgets/ibizorder/main-form/main-form-model.ts
浏览文件 @
b23e5bcc
...
...
@@ -123,11 +123,17 @@ export default class MainModel {
name
:
'formitem1'
,
dataType
:
'FORMITEM'
,
},
{
name
:
'formitem2'
,
},
{
name
:
'ibizcustomerid'
,
prop
:
'ibizcustomerid'
,
dataType
:
'PICKUP'
,
},
{
name
:
' formitem2'
,
},
{
name
:
'ibizorderid'
,
prop
:
'ibizorderid'
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSFORMS/Main.json
浏览文件 @
b23e5bcc
...
...
@@ -172,6 +172,10 @@
},
{
"id"
:
"formitem1"
,
"dataType"
:
25
},
{
"id"
:
"formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizcustomerid"
,
"hidden"
:
true
,
...
...
@@ -180,6 +184,10 @@
"name"
:
"IBIZCUSTOMERID"
,
"codeName"
:
"IBIZCustomerId"
}
},
{
"id"
:
" formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizorderid"
,
"hidden"
:
true
,
...
...
@@ -780,9 +788,10 @@
"name"
:
"formitem1"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickup
Grid
View.json"
,
"viewType"
:
"DEPICKUP
GRID
VIEW"
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json"
,
"viewType"
:
"DEPICKUPVIEW"
},
"valueItemName"
:
" formitem2"
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
...
...
@@ -794,7 +803,32 @@
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem1"
,
"valueItemName"
:
" formitem2"
,
"allowEmpty"
:
true
,
"showCaption"
:
true
},
{
"codeName"
:
"formitem2"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"mOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"formitem2"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
}
],
"getPSLayout"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrderDetail/PSFORMS/Main3.json
浏览文件 @
b23e5bcc
...
...
@@ -1154,6 +1154,10 @@
},
{
"id"
:
"formitem1"
,
"dataType"
:
25
},
{
"id"
:
"formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizcustomerid"
,
"hidden"
:
true
,
...
...
@@ -1162,6 +1166,10 @@
"name"
:
"IBIZCUSTOMERID"
,
"codeName"
:
"IBIZCustomerId"
}
},
{
"id"
:
" formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizorderid"
,
"hidden"
:
true
,
...
...
@@ -1762,9 +1770,10 @@
"name"
:
"formitem1"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickup
Grid
View.json"
,
"viewType"
:
"DEPICKUP
GRID
VIEW"
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json"
,
"viewType"
:
"DEPICKUPVIEW"
},
"valueItemName"
:
" formitem2"
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
...
...
@@ -1776,8 +1785,33 @@
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem1"
,
"valueItemName"
:
" formitem2"
,
"allowEmpty"
:
true
,
"showCaption"
:
true
},
{
"codeName"
:
"formitem2"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"mOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"formitem2"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
}
],
"getPSLayout"
:
{
"childColLG"
:
-1
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSF2EditView.json
浏览文件 @
b23e5bcc
...
...
@@ -1603,6 +1603,10 @@
},
{
"id"
:
"formitem1"
,
"dataType"
:
25
},
{
"id"
:
"formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizcustomerid"
,
"hidden"
:
true
,
...
...
@@ -1611,6 +1615,10 @@
"name"
:
"IBIZCUSTOMERID"
,
"codeName"
:
"IBIZCustomerId"
}
},
{
"id"
:
" formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizorderid"
,
"hidden"
:
true
,
...
...
@@ -2211,9 +2219,10 @@
"name"
:
"formitem1"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickup
Grid
View.json"
,
"viewType"
:
"DEPICKUP
GRID
VIEW"
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json"
,
"viewType"
:
"DEPICKUPVIEW"
},
"valueItemName"
:
" formitem2"
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
...
...
@@ -2225,8 +2234,33 @@
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem1"
,
"valueItemName"
:
" formitem2"
,
"allowEmpty"
:
true
,
"showCaption"
:
true
},
{
"codeName"
:
"formitem2"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"mOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"formitem2"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
}
],
"getPSLayout"
:
{
"childColLG"
:
-1
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderEditView.json
浏览文件 @
b23e5bcc
...
...
@@ -747,6 +747,10 @@
},
{
"id"
:
"formitem1"
,
"dataType"
:
25
},
{
"id"
:
"formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizcustomerid"
,
"hidden"
:
true
,
...
...
@@ -755,6 +759,10 @@
"name"
:
"IBIZCUSTOMERID"
,
"codeName"
:
"IBIZCustomerId"
}
},
{
"id"
:
" formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizorderid"
,
"hidden"
:
true
,
...
...
@@ -1355,9 +1363,10 @@
"name"
:
"formitem1"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickup
Grid
View.json"
,
"viewType"
:
"DEPICKUP
GRID
VIEW"
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json"
,
"viewType"
:
"DEPICKUPVIEW"
},
"valueItemName"
:
" formitem2"
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
...
...
@@ -1369,7 +1378,32 @@
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem1"
,
"valueItemName"
:
" formitem2"
,
"allowEmpty"
:
true
,
"showCaption"
:
true
},
{
"codeName"
:
"formitem2"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"mOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"formitem2"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
}
],
"getPSLayout"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderWFDynaActionView.json
浏览文件 @
b23e5bcc
...
...
@@ -282,6 +282,10 @@
},
{
"id"
:
"formitem1"
,
"dataType"
:
25
},
{
"id"
:
"formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizcustomerid"
,
"hidden"
:
true
,
...
...
@@ -290,6 +294,10 @@
"name"
:
"IBIZCUSTOMERID"
,
"codeName"
:
"IBIZCustomerId"
}
},
{
"id"
:
" formitem2"
,
"hidden"
:
true
,
"dataType"
:
25
},
{
"id"
:
"ibizorderid"
,
"hidden"
:
true
,
...
...
@@ -890,9 +898,10 @@
"name"
:
"formitem1"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickup
Grid
View.json"
,
"viewType"
:
"DEPICKUP
GRID
VIEW"
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json"
,
"viewType"
:
"DEPICKUPVIEW"
},
"valueItemName"
:
" formitem2"
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
...
...
@@ -904,7 +913,32 @@
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem1"
,
"valueItemName"
:
" formitem2"
,
"allowEmpty"
:
true
,
"showCaption"
:
true
},
{
"codeName"
:
"formitem2"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"mOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"formitem2"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"rTMOSFilePath"
:
"psdeformdetail_formitems/formitem2"
,
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
}
],
"getPSLayout"
:
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录