Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
305d761a
提交
305d761a
编写于
12月 12, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ShineKOT 发布系统代码 [后台服务,演示应用]
上级
e2c03ef6
变更
19
隐藏空白字符变更
内嵌
并排
正在显示
19 个修改的文件
包含
223 行增加
和
91 行删除
+223
-91
app-menu-item.scss
app_Web/src/components/app-menu-item/app-menu-item.scss
+16
-0
app-menu-item.vue
app_Web/src/components/app-menu-item/app-menu-item.vue
+4
-1
ibizcustomer-intfpickup-grid-view-base.vue
...ckup-grid-view/ibizcustomer-intfpickup-grid-view-base.vue
+13
-0
ibizcustomer-pickup-grid-view-base.vue
...r-pickup-grid-view/ibizcustomer-pickup-grid-view-base.vue
+13
-0
ibizorder-pickup-grid-view-base.vue
...rder-pickup-grid-view/ibizorder-pickup-grid-view-base.vue
+13
-0
ibizsample0002-pickup-grid-view-base.vue
...pickup-grid-view/ibizsample0002-pickup-grid-view-base.vue
+13
-0
ibizsample0003-pickup-grid-view-base.vue
...pickup-grid-view/ibizsample0003-pickup-grid-view-base.vue
+13
-0
ibizuniproduct-pickup-grid-view-base.vue
...pickup-grid-view/ibizuniproduct-pickup-grid-view-base.vue
+13
-0
menu.scss
app_Web/src/styles/element/menu.scss
+40
-0
default-searchform-base.vue
...s/ibizbook/default-searchform/default-searchform-base.vue
+2
-2
main-multieditviewpanel-base.vue
.../main-multieditviewpanel/main-multieditviewpanel-base.vue
+2
-2
usr4-dataview-base.vue
...src/widgets/ibizbook/usr4-dataview/usr4-dataview-base.vue
+4
-4
usr4-dataview-model.ts
...src/widgets/ibizbook/usr4-dataview/usr4-dataview-model.ts
+0
-5
list-exp-list-base.vue
...rc/widgets/ibizorder/list-exp-list/list-exp-list-base.vue
+4
-4
Usr.json
...SSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
+24
-24
TreeTable.json
.../PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
+12
-12
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
未找到文件。
app_Web/src/components/app-menu-item/app-menu-item.scss
0 → 100644
浏览文件 @
305d761a
.app-menu-item
{
.app-menu-circle
{
display
:
inline-block
;
border-radius
:
50%
;
width
:
20px
;
height
:
20px
;
line-height
:
36px
;
vertical-align
:
middle
;
border
:
1px
solid
#fff
;
text-align
:
center
;
font
:
12px
Arial
,
sans-serif
;
position
:
relative
;
left
:
-5px
;
}
}
\ No newline at end of file
app_Web/src/components/app-menu-item/app-menu-item.vue
浏览文件 @
305d761a
...
@@ -140,4 +140,7 @@ export default class AppMenuItem extends Vue {
...
@@ -140,4 +140,7 @@ export default class AppMenuItem extends Vue {
}
}
<
/script>
<
/script
>
\ No newline at end of file
<
style
lang
=
'scss'
>
@
import
'./app-menu-item.scss'
;
<
/style>
\ No newline at end of file
app_Web/src/pages/sample/ibizcustomer-intfpickup-grid-view/ibizcustomer-intfpickup-grid-view-base.vue
浏览文件 @
305d761a
...
@@ -844,6 +844,19 @@ export default class IBIZCustomer_INTFPickupGridViewBase extends Vue {
...
@@ -844,6 +844,19 @@ export default class IBIZCustomer_INTFPickupGridViewBase extends Vue {
refs
.
grid
.
load
({});
refs
.
grid
.
load
({});
}
}
}
}
/**
* 重置搜索表单
*
* @param {*} $event
* @memberof IBIZCustomer_INTFPickupGridViewBase
*/
public
onReset
(
$event
:
any
)
:
void
{
const
refs
:
any
=
this
.
$refs
;
if
(
refs
.
searchform
){
refs
.
searchform
.
onReset
();
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/pages/sample/ibizcustomer-pickup-grid-view/ibizcustomer-pickup-grid-view-base.vue
浏览文件 @
305d761a
...
@@ -844,6 +844,19 @@ export default class IBIZCustomerPickupGridViewBase extends Vue {
...
@@ -844,6 +844,19 @@ export default class IBIZCustomerPickupGridViewBase extends Vue {
refs
.
grid
.
load
({});
refs
.
grid
.
load
({});
}
}
}
}
/**
* 重置搜索表单
*
* @param {*} $event
* @memberof IBIZCustomerPickupGridViewBase
*/
public
onReset
(
$event
:
any
)
:
void
{
const
refs
:
any
=
this
.
$refs
;
if
(
refs
.
searchform
){
refs
.
searchform
.
onReset
();
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/pages/sample/ibizorder-pickup-grid-view/ibizorder-pickup-grid-view-base.vue
浏览文件 @
305d761a
...
@@ -845,6 +845,19 @@ export default class IBIZOrderPickupGridViewBase extends Vue {
...
@@ -845,6 +845,19 @@ export default class IBIZOrderPickupGridViewBase extends Vue {
refs
.
grid
.
load
({});
refs
.
grid
.
load
({});
}
}
}
}
/**
* 重置搜索表单
*
* @param {*} $event
* @memberof IBIZOrderPickupGridViewBase
*/
public
onReset
(
$event
:
any
)
:
void
{
const
refs
:
any
=
this
.
$refs
;
if
(
refs
.
searchform
){
refs
.
searchform
.
onReset
();
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/pages/sample/ibizsample0002-pickup-grid-view/ibizsample0002-pickup-grid-view-base.vue
浏览文件 @
305d761a
...
@@ -844,6 +844,19 @@ export default class IBIZSample0002PickupGridViewBase extends Vue {
...
@@ -844,6 +844,19 @@ export default class IBIZSample0002PickupGridViewBase extends Vue {
refs
.
grid
.
load
({});
refs
.
grid
.
load
({});
}
}
}
}
/**
* 重置搜索表单
*
* @param {*} $event
* @memberof IBIZSample0002PickupGridViewBase
*/
public
onReset
(
$event
:
any
)
:
void
{
const
refs
:
any
=
this
.
$refs
;
if
(
refs
.
searchform
){
refs
.
searchform
.
onReset
();
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/pages/sample/ibizsample0003-pickup-grid-view/ibizsample0003-pickup-grid-view-base.vue
浏览文件 @
305d761a
...
@@ -844,6 +844,19 @@ export default class IBIZSample0003PickupGridViewBase extends Vue {
...
@@ -844,6 +844,19 @@ export default class IBIZSample0003PickupGridViewBase extends Vue {
refs
.
grid
.
load
({});
refs
.
grid
.
load
({});
}
}
}
}
/**
* 重置搜索表单
*
* @param {*} $event
* @memberof IBIZSample0003PickupGridViewBase
*/
public
onReset
(
$event
:
any
)
:
void
{
const
refs
:
any
=
this
.
$refs
;
if
(
refs
.
searchform
){
refs
.
searchform
.
onReset
();
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/pages/sample/ibizuniproduct-pickup-grid-view/ibizuniproduct-pickup-grid-view-base.vue
浏览文件 @
305d761a
...
@@ -844,6 +844,19 @@ export default class IBIZUNIProductPickupGridViewBase extends Vue {
...
@@ -844,6 +844,19 @@ export default class IBIZUNIProductPickupGridViewBase extends Vue {
refs
.
grid
.
load
({});
refs
.
grid
.
load
({});
}
}
}
}
/**
* 重置搜索表单
*
* @param {*} $event
* @memberof IBIZUNIProductPickupGridViewBase
*/
public
onReset
(
$event
:
any
)
:
void
{
const
refs
:
any
=
this
.
$refs
;
if
(
refs
.
searchform
){
refs
.
searchform
.
onReset
();
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/styles/element/menu.scss
浏览文件 @
305d761a
...
@@ -63,6 +63,8 @@
...
@@ -63,6 +63,8 @@
.el-menu-item
,
.el-menu-item
,
.el-submenu__title
{
.el-submenu__title
{
height
:
40px
;
line-height
:
40px
;
color
:
var
(
--
app-color-white
)
!
important
;
color
:
var
(
--
app-color-white
)
!
important
;
.fa
,
.fa
,
...
@@ -84,4 +86,42 @@
...
@@ -84,4 +86,42 @@
}
}
}
}
}
}
&
.el-menu--collapse
{
.el-menu--vertical
{
.el-submenu__title
{
.el-submenu__icon-arrow
{
display
:
none
;
}
}
}
}
}
.el-menu--vertical.app-popper-menu
{
.el-menu-item
,
.el-submenu__title
{
height
:
40px
;
line-height
:
40px
;
color
:
var
(
--
app-color-white
)
!
important
;
.fa
,
.el-submenu__icon-arrow
{
color
:
var
(
--
app-color-white
)
!
important
;
}
&
:hover
,
&
.is-active
{
background-color
:
var
(
--
app-color-blue
);
}
}
.el-submenu
{
&
.is-active
{
>
.el-submenu__title
{
background-color
:
var
(
--
app-color-blue
);
}
}
}
}
}
\ No newline at end of file
app_Web/src/widgets/ibizbook/default-searchform/default-searchform-base.vue
浏览文件 @
305d761a
...
@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
...
@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
*/
public
load
(
opt
:
any
=
{}):
void
{
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
};
const
arg
:
any
=
{
...
opt
};
...
@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
...
@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
}
;
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/main-multieditviewpanel/main-multieditviewpanel-base.vue
浏览文件 @
305d761a
...
@@ -541,7 +541,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -541,7 +541,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
async
load
(
data
:
any
)
{
public
async
load
(
data
:
any
)
{
if
(
!
this
.
fetchAction
){
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
MEditView9
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2MEditView9_layout
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
let
arg
:
any
=
{};
let
arg
:
any
=
{};
...
@@ -590,7 +590,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -590,7 +590,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
handleAdd
(){
public
handleAdd
(){
if
(
!
this
.
loaddraftAction
){
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
MEditView9
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2MEditView9_layout
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.loaddraftAction'
)
as
string
)
});
return
;
return
;
}
}
const
promice
:
Promise
<
any
>
=
this
.
service
.
loadDraft
(
this
.
loaddraftAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),{
viewparams
:
this
.
viewparams
},
this
.
showBusyIndicator
);
const
promice
:
Promise
<
any
>
=
this
.
service
.
loadDraft
(
this
.
loaddraftAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),{
viewparams
:
this
.
viewparams
},
this
.
showBusyIndicator
);
...
...
app_Web/src/widgets/ibizbook/usr4-dataview/usr4-dataview-base.vue
浏览文件 @
305d761a
...
@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
...
@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
*/
public
async
load
(
opt
:
any
=
{},
isReset
:
boolean
=
false
):
Promise
<
any
>
{
public
async
load
(
opt
:
any
=
{},
isReset
:
boolean
=
false
):
Promise
<
any
>
{
if
(
!
this
.
fetchAction
){
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr4
DataView'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
TestCL
DataView'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{...
opt
};
const
arg
:
any
=
{...
opt
};
...
@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
...
@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
*/
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
if
(
!
this
.
removeAction
){
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr4
DataView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
TestCL
DataView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
return
;
return
;
}
}
let
_datas
:
any
[]
=
[];
let
_datas
:
any
[]
=
[];
...
@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
...
@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try
{
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
!
this
.
createAction
){
if
(
!
this
.
createAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr4
DataView'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
TestCL
DataView'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
...
@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
...
@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
}
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
){
if
(
!
this
.
updateAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr4
DataView'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
TestCL
DataView'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
if
(
item
.
ibizbook
){
if
(
item
.
ibizbook
){
...
...
app_Web/src/widgets/ibizbook/usr4-dataview/usr4-dataview-model.ts
浏览文件 @
305d761a
...
@@ -70,11 +70,6 @@ export default class Usr4Model {
...
@@ -70,11 +70,6 @@ export default class Usr4Model {
prop
:
'n_ibizbookname_like'
,
prop
:
'n_ibizbookname_like'
,
dataType
:
'QUERYPARAM'
dataType
:
'QUERYPARAM'
},
},
{
name
:
'n_price_gtandeq'
,
prop
:
'n_price_gtandeq'
,
dataType
:
'QUERYPARAM'
},
{
{
...
...
app_Web/src/widgets/ibizorder/list-exp-list/list-exp-list-base.vue
浏览文件 @
305d761a
...
@@ -601,7 +601,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
...
@@ -601,7 +601,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
*/
public
async
load
(
opt
:
any
=
{}):
Promise
<
any
>
{
public
async
load
(
opt
:
any
=
{}):
Promise
<
any
>
{
if
(
!
this
.
fetchAction
){
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{...
opt
};
const
arg
:
any
=
{...
opt
};
...
@@ -731,7 +731,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
...
@@ -731,7 +731,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
*/
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
if
(
!
this
.
removeAction
){
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.removeAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.removeAction'
)
as
string
)
});
return
;
return
;
}
}
if
(
datas
.
length
===
0
)
{
if
(
datas
.
length
===
0
)
{
...
@@ -836,7 +836,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
...
@@ -836,7 +836,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
try
{
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
!
this
.
createAction
){
if
(
!
this
.
createAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
...
@@ -844,7 +844,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
...
@@ -844,7 +844,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
}
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
){
if
(
!
this
.
updateAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.warning'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.warning'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
if
(
item
.
ibizorder
){
if
(
item
.
ibizorder
){
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
305d761a
...
@@ -12,6 +12,18 @@
...
@@ -12,6 +12,18 @@
"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"
:
"归还日期"
,
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -35,30 +47,6 @@
...
@@ -35,30 +47,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
},
{
"caption"
:
"图书名称"
,
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"codeName"
:
"ibizbookname"
,
...
@@ -71,6 +59,18 @@
...
@@ -71,6 +59,18 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
}
],
"getPSDETreeNodeRSs"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
305d761a
...
@@ -20,18 +20,6 @@
...
@@ -20,18 +20,6 @@
}
}
}
],
}
],
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书描述"
,
"caption"
:
"图书描述"
,
"codeName"
:
"subtext"
,
"codeName"
:
"subtext"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -43,6 +31,18 @@
...
@@ -43,6 +31,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
},
{
},
{
"caption"
:
"图书名称"
,
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"codeName"
:
"ibizbookname"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
305d761a
...
@@ -42,6 +42,18 @@
...
@@ -42,6 +42,18 @@
"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"
:
"归还日期"
,
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -65,30 +77,6 @@
...
@@ -65,30 +77,6 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
},
{
"caption"
:
"图书名称"
,
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"codeName"
:
"ibizbookname"
,
...
@@ -101,6 +89,18 @@
...
@@ -101,6 +89,18 @@
"widthUnit"
:
"px"
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableExpand"
:
false
,
"enableSort"
:
false
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"lendouttime"
,
"mOSFilePath"
:
"psdetreecols/lendouttime"
,
"name"
:
"lendouttime"
,
"rTMOSFilePath"
:
"psdetreecols/lendouttime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
}
],
"getPSDETreeNodeRSs"
:
[
{
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
305d761a
...
@@ -88,18 +88,6 @@
...
@@ -88,18 +88,6 @@
"id"
:
"TREEGRIDEX"
"id"
:
"TREEGRIDEX"
},
},
"getPSDETreeColumns"
:
[
{
"getPSDETreeColumns"
:
[
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书描述"
,
"caption"
:
"图书描述"
,
"codeName"
:
"subtext"
,
"codeName"
:
"subtext"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
@@ -111,6 +99,18 @@
...
@@ -111,6 +99,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
},
{
},
{
"caption"
:
"图书名称"
,
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"codeName"
:
"ibizbookname"
,
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
305d761a
...
@@ -172,7 +172,7 @@
...
@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-123
1
-7"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-123
2
-7"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
</column>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录