@steedos-labs/content-compliance 0.7.2 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/lib/actions/index.d.ts +2 -0
- package/lib/actions/index.js +2 -0
- package/lib/actions/index.js.map +1 -1
- package/lib/actions/postponeReview.d.ts +7 -0
- package/lib/actions/postponeReview.js +30 -0
- package/lib/actions/postponeReview.js.map +1 -0
- package/lib/actions/urgentApproval.d.ts +14 -0
- package/lib/actions/urgentApproval.js +51 -0
- package/lib/actions/urgentApproval.js.map +1 -0
- package/lib/index.js +100 -52
- package/lib/index.js.map +1 -1
- package/lib/methods/approval_engine.d.ts +1 -0
- package/lib/methods/approval_engine.js +363 -100
- package/lib/methods/approval_engine.js.map +1 -1
- package/lib/methods/consts.d.ts +4 -0
- package/lib/methods/consts.js.map +1 -1
- package/lib/methods/index.d.ts +1 -0
- package/lib/methods/index.js +1 -0
- package/lib/methods/index.js.map +1 -1
- package/lib/methods/notification.d.ts +1 -0
- package/lib/methods/notification.js +109 -6
- package/lib/methods/notification.js.map +1 -1
- package/lib/methods/urgent.d.ts +19 -0
- package/lib/methods/urgent.js +253 -0
- package/lib/methods/urgent.js.map +1 -0
- package/main/default/applications/pepsico_content_review.app.yml +24 -102
- package/main/default/objects/pepsico_approval_process/fields/approved.field.yml +3 -0
- package/main/default/objects/pepsico_material_approval/buttons/pepsico_postpone_review.button.yml +145 -0
- package/main/default/objects/pepsico_material_approval/buttons/pepsico_urgent_review.button.yml +156 -0
- package/main/default/objects/pepsico_material_approval/fields/is_urgent.field.yml +9 -0
- package/main/default/objects/pepsico_material_approval/fields/review_postponed_users.field.yml +15 -0
- package/main/default/objects/pepsico_material_approval/fields/urgent_at.field.yml +8 -0
- package/main/default/objects/pepsico_material_approval/fields/urgent_name_tag.field.yml +8 -0
- package/main/default/objects/pepsico_material_approval/fields/urgent_times.field.yml +9 -0
- package/main/default/objects/pepsico_material_approval/listviews/all.listview.yml +4 -0
- package/main/default/objects/pepsico_material_approval/listviews/collaboration.listview.yml +4 -0
- package/main/default/objects/pepsico_material_approval/listviews/handle.listview.yml +8 -0
- package/main/default/objects/pepsico_material_approval/listviews/handle_postpone.listview.yml +89 -0
- package/main/default/objects/pepsico_review_postpone/fields/department_type.field.yml +29 -0
- package/main/default/objects/pepsico_review_postpone/fields/is_marker.field.yml +7 -0
- package/main/default/objects/pepsico_review_postpone/fields/notification_sent.field.yml +6 -0
- package/main/default/objects/pepsico_review_postpone/fields/pepsico_material_approval.field.yml +10 -0
- package/main/default/objects/pepsico_review_postpone/fields/postpone_by.field.yml +7 -0
- package/main/default/objects/pepsico_review_postpone/fields/postpone_date.field.yml +6 -0
- package/main/default/objects/pepsico_review_postpone/fields/postpone_reason.field.yml +6 -0
- package/main/default/objects/pepsico_review_postpone/fields/postponed_user_ids.field.yml +6 -0
- package/main/default/objects/pepsico_review_postpone/fields/visible_after.field.yml +6 -0
- package/main/default/objects/pepsico_review_postpone/listviews/all.listview.yml +21 -0
- package/main/default/objects/pepsico_review_postpone/listviews/mine.listview.yml +16 -0
- package/main/default/objects/pepsico_review_postpone/pepsico_review_postpone.object.yml +16 -0
- package/main/default/objects/pepsico_review_postpone/permissions/admin.permission.yml +9 -0
- package/main/default/objects/pepsico_review_postpone/permissions/pepsico_submit.permission.yml +10 -0
- package/main/default/objects/pepsico_review_postpone/permissions/user.permission.yml +9 -0
- package/main/default/objects/pepsico_urgent_log/fields/approval.field.yml +7 -0
- package/main/default/objects/pepsico_urgent_log/fields/approval_name.field.yml +6 -0
- package/main/default/objects/pepsico_urgent_log/fields/half.field.yml +7 -0
- package/main/default/objects/pepsico_urgent_log/fields/operator.field.yml +7 -0
- package/main/default/objects/pepsico_urgent_log/fields/space.field.yml +6 -0
- package/main/default/objects/pepsico_urgent_log/fields/year.field.yml +6 -0
- package/main/default/objects/pepsico_urgent_log/pepsico_urgent_log.object.yml +16 -0
- package/main/default/objects/pepsico_urgent_quota/fields/h1_used.field.yml +7 -0
- package/main/default/objects/pepsico_urgent_quota/fields/h2_used.field.yml +7 -0
- package/main/default/objects/pepsico_urgent_quota/fields/space.field.yml +6 -0
- package/main/default/objects/pepsico_urgent_quota/fields/user.field.yml +7 -0
- package/main/default/objects/pepsico_urgent_quota/fields/year.field.yml +6 -0
- package/main/default/objects/pepsico_urgent_quota/pepsico_urgent_quota.object.yml +16 -0
- package/main/default/pages/pepsico_content_review_detail.page.amis.json +14 -6
- package/main/default/restrictionRules/pepsico_material_approval.restrictionRule.yml +1 -1
- package/main/default/tabs/object_pepsico_urgent_log.tab.yml +14 -0
- package/main/default/tabs/object_pepsico_urgent_quota.tab.yml +14 -0
- package/package.json +1 -1
package/main/default/objects/pepsico_material_approval/buttons/pepsico_urgent_review.button.yml
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
name: pepsico_urgent_review
|
|
2
|
+
amis_schema: |-
|
|
3
|
+
{
|
|
4
|
+
"type": "service",
|
|
5
|
+
"api": {
|
|
6
|
+
"url": "/api/pepsico-content/approve/urgent-quota/${recordId}",
|
|
7
|
+
"method": "get",
|
|
8
|
+
"messages": {},
|
|
9
|
+
"silent": true
|
|
10
|
+
},
|
|
11
|
+
"body": [
|
|
12
|
+
{
|
|
13
|
+
"type": "button",
|
|
14
|
+
"label": "加急审核",
|
|
15
|
+
"id": "u:pepsico_urgent_review",
|
|
16
|
+
"editorState": "default",
|
|
17
|
+
"visibleOn": "${(current_step == 'departmental_review' || current_step == 'personnel_review') && !is_urgent && context.user.user == owner && formFactor != 'SMALL'}",
|
|
18
|
+
"disabledOn": "${quota && quota.available === 0}",
|
|
19
|
+
"disabledTip": "${quota && quota.available === 0 ? '暂无加急次数' : ''}",
|
|
20
|
+
"onEvent": {
|
|
21
|
+
"click": {
|
|
22
|
+
"weight": 0,
|
|
23
|
+
"actions": [
|
|
24
|
+
{
|
|
25
|
+
"ignoreError": false,
|
|
26
|
+
"actionType": "ajax",
|
|
27
|
+
"outputVar": "quotaResult",
|
|
28
|
+
"options": {},
|
|
29
|
+
"api": {
|
|
30
|
+
"url": "/api/pepsico-content/approve/urgent-quota/${recordId}",
|
|
31
|
+
"method": "get",
|
|
32
|
+
"messages": {}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"ignoreError": false,
|
|
37
|
+
"actionType": "custom",
|
|
38
|
+
"script": "if (event.data.quotaResult && event.data.quotaResult.quota && event.data.quotaResult.quota.available === 0) { doAction({ actionType: 'toast', args: { msgType: 'warning', msg: '暂无加急次数' } }); return false; } if (event.data.quotaResult && !event.data.quotaResult.canUrgent) { doAction({ actionType: 'toast', args: { msgType: 'warning', msg: event.data.quotaResult.reason || '不满足加急条件' } }); return false; }"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"ignoreError": false,
|
|
42
|
+
"actionType": "dialog",
|
|
43
|
+
"dialog": {
|
|
44
|
+
"type": "dialog",
|
|
45
|
+
"title": "加急审核",
|
|
46
|
+
"body": [
|
|
47
|
+
{
|
|
48
|
+
"type": "alert",
|
|
49
|
+
"body": "${quotaResult.canUrgent ? '当前已使用 ' + quotaResult.quota.used + ' 次,剩余 ' + quotaResult.quota.available + ' 次。确认要对此审批单发起加急审核吗?加急后将强制通知所有待审核人优先处理。' : quotaResult.reason}",
|
|
50
|
+
"level": "info",
|
|
51
|
+
"id": "u:urgent_review_alert"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"id": "u:urgent_review_dialog",
|
|
55
|
+
"actions": [
|
|
56
|
+
{
|
|
57
|
+
"type": "button",
|
|
58
|
+
"actionType": "cancel",
|
|
59
|
+
"label": "取消",
|
|
60
|
+
"id": "u:urgent_review_cancel"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "button",
|
|
64
|
+
"actionType": "confirm",
|
|
65
|
+
"label": "确认加急",
|
|
66
|
+
"primary": true,
|
|
67
|
+
"id": "u:urgent_review_confirm",
|
|
68
|
+
"editorState": "default",
|
|
69
|
+
"onEvent": {
|
|
70
|
+
"click": {
|
|
71
|
+
"weight": 0,
|
|
72
|
+
"actions": [
|
|
73
|
+
{
|
|
74
|
+
"ignoreError": false,
|
|
75
|
+
"actionType": "disabled",
|
|
76
|
+
"componentId": "u:urgent_review_confirm"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"ignoreError": false,
|
|
80
|
+
"actionType": "ajax",
|
|
81
|
+
"outputVar": "urgentResult",
|
|
82
|
+
"options": {},
|
|
83
|
+
"api": {
|
|
84
|
+
"url": "/api/pepsico-content/approve/urgent/${recordId}",
|
|
85
|
+
"method": "post",
|
|
86
|
+
"messages": { "success": "", "failed": "" }
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"ignoreError": false,
|
|
91
|
+
"actionType": "toast",
|
|
92
|
+
"args": {
|
|
93
|
+
"msgType": "success",
|
|
94
|
+
"msg": "${urgentResult.message}"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"actionType": "broadcast",
|
|
99
|
+
"args": {
|
|
100
|
+
"eventName": "@data.changed.pepsico_material_approval"
|
|
101
|
+
},
|
|
102
|
+
"data": {
|
|
103
|
+
"objectName": "pepsico_material_approval"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"ignoreError": false,
|
|
108
|
+
"actionType": "enabled",
|
|
109
|
+
"componentId": "u:urgent_review_confirm"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"showCloseButton": true,
|
|
117
|
+
"closeOnOutside": false,
|
|
118
|
+
"closeOnEsc": false,
|
|
119
|
+
"showErrorMsg": true,
|
|
120
|
+
"showLoading": true,
|
|
121
|
+
"draggable": false,
|
|
122
|
+
"actionType": "dialog",
|
|
123
|
+
"size": "md"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"regions": [
|
|
132
|
+
"body"
|
|
133
|
+
],
|
|
134
|
+
"data": {
|
|
135
|
+
"context": {},
|
|
136
|
+
"dataComponentId": "",
|
|
137
|
+
"record_id": "",
|
|
138
|
+
"record": {},
|
|
139
|
+
"permissions": {}
|
|
140
|
+
},
|
|
141
|
+
"id": "u:pepsico_urgent_review_service",
|
|
142
|
+
"bodyClassName": "p-0",
|
|
143
|
+
"dsType": "api",
|
|
144
|
+
"asideResizor": false,
|
|
145
|
+
"editorState": "default",
|
|
146
|
+
"pullRefresh": {
|
|
147
|
+
"disabled": true
|
|
148
|
+
},
|
|
149
|
+
"definitions": {}
|
|
150
|
+
}
|
|
151
|
+
is_enable: true
|
|
152
|
+
label: 加急审核
|
|
153
|
+
locked: false
|
|
154
|
+
'on': record_only
|
|
155
|
+
type: amis_button
|
|
156
|
+
visible: true
|
package/main/default/objects/pepsico_material_approval/fields/review_postponed_users.field.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
name: review_postponed_users
|
|
2
|
+
description: 当前处于延后审核状态的审核人ID列表
|
|
3
|
+
filters: []
|
|
4
|
+
group: 审核人员
|
|
5
|
+
hidden: false
|
|
6
|
+
is_wide: false
|
|
7
|
+
label: 延后审核人员
|
|
8
|
+
multiple: true
|
|
9
|
+
readonly: false
|
|
10
|
+
reference_to: space_users
|
|
11
|
+
reference_to_field: user
|
|
12
|
+
required: false
|
|
13
|
+
sort_no: 3200
|
|
14
|
+
type: lookup
|
|
15
|
+
visible_on: '{{false}}'
|
|
@@ -3,6 +3,8 @@ columns:
|
|
|
3
3
|
- field: name
|
|
4
4
|
width: '400'
|
|
5
5
|
wrap: true
|
|
6
|
+
amis:
|
|
7
|
+
classNameExpr: "${is_urgent ? 'color-priority-danger' : ''}"
|
|
6
8
|
- field: owner
|
|
7
9
|
wrap: false
|
|
8
10
|
- field: owner_department
|
|
@@ -56,3 +58,5 @@ sort:
|
|
|
56
58
|
order: desc
|
|
57
59
|
sort_no: 60
|
|
58
60
|
type: grid
|
|
61
|
+
extra_columns:
|
|
62
|
+
- is_urgent
|
|
@@ -3,6 +3,8 @@ columns:
|
|
|
3
3
|
- field: name
|
|
4
4
|
wrap: true
|
|
5
5
|
width: '400'
|
|
6
|
+
amis:
|
|
7
|
+
classNameExpr: "${is_urgent ? 'color-priority-danger' : ''}"
|
|
6
8
|
- field: current_step
|
|
7
9
|
- field: person_pending_approve
|
|
8
10
|
- field: draft_submitted
|
|
@@ -71,3 +73,5 @@ sort:
|
|
|
71
73
|
order: asc
|
|
72
74
|
sort_no: 20
|
|
73
75
|
type: grid
|
|
76
|
+
extra_columns:
|
|
77
|
+
- is_urgent
|
|
@@ -3,6 +3,8 @@ columns:
|
|
|
3
3
|
- field: name
|
|
4
4
|
wrap: true
|
|
5
5
|
width: '400'
|
|
6
|
+
amis:
|
|
7
|
+
classNameExpr: "${is_urgent ? 'color-priority-danger' : ''}"
|
|
6
8
|
- field: current_step
|
|
7
9
|
- field: person_pending_approve
|
|
8
10
|
- field: draft_submitted
|
|
@@ -27,6 +29,10 @@ filters:
|
|
|
27
29
|
- - person_pending_approve
|
|
28
30
|
- '='
|
|
29
31
|
- '{userId}'
|
|
32
|
+
- and
|
|
33
|
+
- - review_postponed_users
|
|
34
|
+
- '!='
|
|
35
|
+
- '{userId}'
|
|
30
36
|
- or
|
|
31
37
|
- - - owner
|
|
32
38
|
- '='
|
|
@@ -79,3 +85,5 @@ sort:
|
|
|
79
85
|
order: asc
|
|
80
86
|
sort_no: 5
|
|
81
87
|
type: grid
|
|
88
|
+
extra_columns:
|
|
89
|
+
- is_urgent
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
name: handle_postpone
|
|
2
|
+
columns:
|
|
3
|
+
- field: name
|
|
4
|
+
wrap: true
|
|
5
|
+
width: '400'
|
|
6
|
+
amis:
|
|
7
|
+
classNameExpr: "${is_urgent ? 'color-priority-danger' : ''}"
|
|
8
|
+
- field: current_step
|
|
9
|
+
- field: person_pending_approve
|
|
10
|
+
- field: draft_submitted
|
|
11
|
+
- field: created_by
|
|
12
|
+
- field: internal_collaborator
|
|
13
|
+
- field: owner_department
|
|
14
|
+
- field: materials_quantity
|
|
15
|
+
- field: launch
|
|
16
|
+
- field: material_owner
|
|
17
|
+
- field: created
|
|
18
|
+
crud_mode: table
|
|
19
|
+
enable_amis_schema: false
|
|
20
|
+
filter_scope: space
|
|
21
|
+
filters:
|
|
22
|
+
- - - current_step
|
|
23
|
+
- in
|
|
24
|
+
- - ai_review
|
|
25
|
+
- departmental_review
|
|
26
|
+
- personnel_review
|
|
27
|
+
- awaiting_deployment
|
|
28
|
+
- and
|
|
29
|
+
- - person_pending_approve
|
|
30
|
+
- '='
|
|
31
|
+
- '{userId}'
|
|
32
|
+
- and
|
|
33
|
+
- - review_postponed_users
|
|
34
|
+
- '='
|
|
35
|
+
- '{userId}'
|
|
36
|
+
- or
|
|
37
|
+
- - - owner
|
|
38
|
+
- '='
|
|
39
|
+
- '{userId}'
|
|
40
|
+
- and
|
|
41
|
+
- - - current_step
|
|
42
|
+
- in
|
|
43
|
+
- - submitter_revisions
|
|
44
|
+
- or
|
|
45
|
+
- - - current_step
|
|
46
|
+
- in
|
|
47
|
+
- - draft
|
|
48
|
+
- and
|
|
49
|
+
- - review_status
|
|
50
|
+
- in
|
|
51
|
+
- - rejected
|
|
52
|
+
- or
|
|
53
|
+
- - - current_step
|
|
54
|
+
- '='
|
|
55
|
+
- draft
|
|
56
|
+
- and
|
|
57
|
+
- - review_status
|
|
58
|
+
- '='
|
|
59
|
+
- draft
|
|
60
|
+
- and
|
|
61
|
+
- - owner
|
|
62
|
+
- '='
|
|
63
|
+
- '{userId}'
|
|
64
|
+
is_enable: true
|
|
65
|
+
label: 延后审核
|
|
66
|
+
locked: false
|
|
67
|
+
mobile_columns:
|
|
68
|
+
- field: name
|
|
69
|
+
- field: owner
|
|
70
|
+
- field: owner_department
|
|
71
|
+
- field: current_step
|
|
72
|
+
- field: review_status
|
|
73
|
+
scrolling_mode: standard
|
|
74
|
+
searchable_fields:
|
|
75
|
+
- field: name
|
|
76
|
+
- field: owner
|
|
77
|
+
- field: current_step
|
|
78
|
+
- field: review_status
|
|
79
|
+
shared_to: space
|
|
80
|
+
show_count: true
|
|
81
|
+
sort:
|
|
82
|
+
- field_name: draft_submitted
|
|
83
|
+
order: asc
|
|
84
|
+
- field_name: created
|
|
85
|
+
order: asc
|
|
86
|
+
sort_no: 5
|
|
87
|
+
type: grid
|
|
88
|
+
extra_columns:
|
|
89
|
+
- is_urgent
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: department_type
|
|
2
|
+
group: 通用
|
|
3
|
+
label: 部门类型
|
|
4
|
+
options:
|
|
5
|
+
- label: NS
|
|
6
|
+
value: NS
|
|
7
|
+
- label: Legal
|
|
8
|
+
value: Legal
|
|
9
|
+
- label: SRA
|
|
10
|
+
value: SRA
|
|
11
|
+
- label: CA
|
|
12
|
+
value: CA
|
|
13
|
+
- label: 固定
|
|
14
|
+
value: guding
|
|
15
|
+
- label: NS预审
|
|
16
|
+
value: PreNS
|
|
17
|
+
- label: Legal预审
|
|
18
|
+
value: PreLegal
|
|
19
|
+
- label: SRA预审
|
|
20
|
+
value: PreSRA
|
|
21
|
+
- label: CA预审
|
|
22
|
+
value: PreCA
|
|
23
|
+
- label: 固定预审
|
|
24
|
+
value: Preguding
|
|
25
|
+
- label: Kids
|
|
26
|
+
value: Kids
|
|
27
|
+
required: true
|
|
28
|
+
sort_no: 200
|
|
29
|
+
type: select
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: all
|
|
2
|
+
label: 所有延后记录
|
|
3
|
+
is_enable: true
|
|
4
|
+
shared: true
|
|
5
|
+
shared_to: space
|
|
6
|
+
filter_scope: space
|
|
7
|
+
crud_mode: table
|
|
8
|
+
columns:
|
|
9
|
+
- field: pepsico_material_approval
|
|
10
|
+
- field: department_type
|
|
11
|
+
- field: postpone_by
|
|
12
|
+
- field: postpone_date
|
|
13
|
+
- field: postpone_reason
|
|
14
|
+
- field: visible_after
|
|
15
|
+
- field: notification_sent
|
|
16
|
+
sort:
|
|
17
|
+
- field_name: postpone_date
|
|
18
|
+
order: desc
|
|
19
|
+
searchable_fields:
|
|
20
|
+
- field: pepsico_material_approval
|
|
21
|
+
- field: postpone_by
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: mine
|
|
2
|
+
label: 我的延后记录
|
|
3
|
+
is_enable: true
|
|
4
|
+
shared: true
|
|
5
|
+
filter_scope: mine
|
|
6
|
+
crud_mode: table
|
|
7
|
+
columns:
|
|
8
|
+
- field: pepsico_material_approval
|
|
9
|
+
- field: department_type
|
|
10
|
+
- field: postpone_date
|
|
11
|
+
- field: postpone_reason
|
|
12
|
+
- field: visible_after
|
|
13
|
+
- field: notification_sent
|
|
14
|
+
sort:
|
|
15
|
+
- field_name: postpone_date
|
|
16
|
+
order: desc
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: pepsico_review_postpone
|
|
2
|
+
custom: true
|
|
3
|
+
enable_api: true
|
|
4
|
+
enable_dataloader: true
|
|
5
|
+
enable_enhanced_lookup: true
|
|
6
|
+
enable_inline_edit: false
|
|
7
|
+
enable_lock_detail: true
|
|
8
|
+
enable_workflow: false
|
|
9
|
+
enable_trash: false
|
|
10
|
+
enable_audit: false
|
|
11
|
+
field_groups:
|
|
12
|
+
- group_name: 通用
|
|
13
|
+
icon: action_list_component
|
|
14
|
+
is_enable: true
|
|
15
|
+
label: 延后审核记录
|
|
16
|
+
version: 2
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: pepsico_urgent_log
|
|
2
|
+
custom: true
|
|
3
|
+
enable_api: true
|
|
4
|
+
enable_dataloader: true
|
|
5
|
+
enable_enhanced_lookup: true
|
|
6
|
+
enable_inline_edit: false
|
|
7
|
+
enable_lock_detail: true
|
|
8
|
+
enable_workflow: false
|
|
9
|
+
enable_trash: false
|
|
10
|
+
enable_audit: false
|
|
11
|
+
field_groups:
|
|
12
|
+
- group_name: 通用
|
|
13
|
+
icon: action_list_component
|
|
14
|
+
is_enable: true
|
|
15
|
+
label: 加急操作审计日志
|
|
16
|
+
version: 2
|