@steedos/standard-object-database 2.2.55-beta.16
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/main/default/applications/.gitkeep +0 -0
- package/main/default/client/datasources.client.js +7 -0
- package/main/default/client/object_fields.client.js +212 -0
- package/main/default/client/object_layouts.client.js +86 -0
- package/main/default/objectTranslations/_object_reload_logs.en/_object_reload_logs.en.objectTranslation.yml +16 -0
- package/main/default/objectTranslations/_object_reload_logs.zh-CN/_object_reload_logs.zh-CN.objectTranslation.yml +16 -0
- package/main/default/objectTranslations/datasources.en/datasources.en.objectTranslation.yml +121 -0
- package/main/default/objectTranslations/datasources.zh-CN/datasources.zh-CN.objectTranslation.yml +105 -0
- package/main/default/objectTranslations/object_actions.en/object_actions.en.objectTranslation.yml +55 -0
- package/main/default/objectTranslations/object_actions.zh-CN/object_actions.zh-CN.objectTranslation.yml +50 -0
- package/main/default/objectTranslations/object_fields.en/object_fields.en.objectTranslation.yml +335 -0
- package/main/default/objectTranslations/object_fields.zh-CN/object_fields.zh-CN.objectTranslation.yml +312 -0
- package/main/default/objectTranslations/object_layouts.en/object_layouts.en.objectTranslation.yml +72 -0
- package/main/default/objectTranslations/object_layouts.zh-CN/object_layouts.zh-CN.objectTranslation.yml +116 -0
- package/main/default/objectTranslations/object_listviews.en/object_listviews.en.objectTranslation.yml +153 -0
- package/main/default/objectTranslations/object_listviews.zh-CN/object_listviews.zh-CN.objectTranslation.yml +146 -0
- package/main/default/objectTranslations/object_related_list.en/object_related_list.en.objectTranslation.yml +82 -0
- package/main/default/objectTranslations/object_related_list.zh-CN/object_related_list.zh-CN.objectTranslation.yml +82 -0
- package/main/default/objectTranslations/object_triggers.en/object_triggers.en.objectTranslation.yml +30 -0
- package/main/default/objectTranslations/object_triggers.zh-CN/object_triggers.zh-CN.objectTranslation.yml +29 -0
- package/main/default/objectTranslations/object_validation_rules.en/object_validation_rules.en.objectTranslation.yml +40 -0
- package/main/default/objectTranslations/object_validation_rules.zh-CN/object_validation_rules.zh-CN.objectTranslation.yml +38 -0
- package/main/default/objectTranslations/objects.en/objects.en.objectTranslation.yml +219 -0
- package/main/default/objectTranslations/objects.zh-CN/objects.zh-CN.objectTranslation.yml +218 -0
- package/main/default/objects/0.datasources.observe.object.js +83 -0
- package/main/default/objects/0.objects_reload.object.js +26 -0
- package/main/default/objects/1.objects.observe.object.js +61 -0
- package/main/default/objects/10.tabs.observe.object.js +36 -0
- package/main/default/objects/11.restriction_rules.observe.object.js +37 -0
- package/main/default/objects/12.share_rules.observe.object.js +37 -0
- package/main/default/objects/13.permission_fields.observe.object.js +37 -0
- package/main/default/objects/14.object_fields.observe.object.js +44 -0
- package/main/default/objects/15.permission_objects.observe.object.js +44 -0
- package/main/default/objects/2.object_triggers.observe.object.js +35 -0
- package/main/default/objects/3.permission_objects.observe.object.js +29 -0
- package/main/default/objects/4.permission_set.observe.object.js +39 -0
- package/main/default/objects/5.holidays.observe.object.js +30 -0
- package/main/default/objects/6.business_hours.observe.object.js +33 -0
- package/main/default/objects/7.object_actions.observe.object.js +43 -0
- package/main/default/objects/7.object_layouts.observe.object.js +33 -0
- package/main/default/objects/9.apps.observe.object.js +33 -0
- package/main/default/objects/_object_reload_logs.object.yml +10 -0
- package/main/default/objects/datasources.action.js +51 -0
- package/main/default/objects/datasources.core.js +34 -0
- package/main/default/objects/datasources.object.js +168 -0
- package/main/default/objects/datasources.object.yml +113 -0
- package/main/default/objects/object_actions.object.js +152 -0
- package/main/default/objects/object_actions.object.yml +142 -0
- package/main/default/objects/object_fields.action.js +128 -0
- package/main/default/objects/object_fields.function.js +104 -0
- package/main/default/objects/object_fields.object.js +501 -0
- package/main/default/objects/object_fields.object.yml +690 -0
- package/main/default/objects/object_layouts.action.js +31 -0
- package/main/default/objects/object_layouts.layouts.action.js +19 -0
- package/main/default/objects/object_layouts.object.yml +356 -0
- package/main/default/objects/object_listviews.action.js +93 -0
- package/main/default/objects/object_listviews.object.js +100 -0
- package/main/default/objects/object_listviews.object.yml +309 -0
- package/main/default/objects/object_manager.app.todo.yml +11 -0
- package/main/default/objects/object_related_list.object.js +110 -0
- package/main/default/objects/object_related_list.object.yml +208 -0
- package/main/default/objects/object_triggers.core.js +58 -0
- package/main/default/objects/object_triggers.object.js +65 -0
- package/main/default/objects/object_triggers.object.yml +124 -0
- package/main/default/objects/object_validation_rules.action.js +33 -0
- package/main/default/objects/object_validation_rules.object.yml +100 -0
- package/main/default/objects/objects.action.js +157 -0
- package/main/default/objects/objects.core.js +398 -0
- package/main/default/objects/objects.erd.data.function.js +85 -0
- package/main/default/objects/objects.lib.js +42 -0
- package/main/default/objects/objects.object.js +543 -0
- package/main/default/objects/objects.object.yml +512 -0
- package/main/default/objects/objects.tree.js +58 -0
- package/main/default/objects/permission_objects.core.js +75 -0
- package/main/default/permissionsets/.gitkeep +0 -0
- package/main/default/profiles/.gitkeep +0 -0
- package/main/default/tabs/.gitkeep +0 -0
- package/main/default/triggers/datasources.trigger.js +93 -0
- package/main/default/triggers/object_actions.trigger.js +98 -0
- package/main/default/triggers/object_fields.trigger.js +376 -0
- package/main/default/triggers/object_layouts.trigger.js +153 -0
- package/main/default/triggers/object_listviews.trigger.js +139 -0
- package/main/default/triggers/object_triggers.trigger.js +50 -0
- package/main/default/triggers/object_validation_rules.trigger.js +80 -0
- package/main/default/triggers/objects.trigger.js +136 -0
- package/package.json +16 -0
- package/package.service.js +75 -0
- package/public/.md +3 -0
- package/src/.md +3 -0
- package/webapp/.md +1 -0
package/main/default/objectTranslations/object_fields.en/object_fields.en.objectTranslation.yml
ADDED
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
name: object_fields
|
|
2
|
+
label: Object Fields
|
|
3
|
+
description:
|
|
4
|
+
fields:
|
|
5
|
+
object:
|
|
6
|
+
label: Object
|
|
7
|
+
help:
|
|
8
|
+
description:
|
|
9
|
+
label:
|
|
10
|
+
label: Label
|
|
11
|
+
help:
|
|
12
|
+
description:
|
|
13
|
+
_name:
|
|
14
|
+
label: Field Name
|
|
15
|
+
help:
|
|
16
|
+
description:
|
|
17
|
+
name:
|
|
18
|
+
label: API Name
|
|
19
|
+
help: >-
|
|
20
|
+
Can only contain lowercase letters and numbers, must start with a letter,
|
|
21
|
+
cannot end with an underscore character or contain two consecutive
|
|
22
|
+
underscore characters
|
|
23
|
+
description:
|
|
24
|
+
type:
|
|
25
|
+
label: Type
|
|
26
|
+
help:
|
|
27
|
+
options:
|
|
28
|
+
- label: Text
|
|
29
|
+
value: text
|
|
30
|
+
- label: Textarea
|
|
31
|
+
value: textarea
|
|
32
|
+
- label: Html
|
|
33
|
+
value: html
|
|
34
|
+
- label: Code
|
|
35
|
+
value: code
|
|
36
|
+
- label: Select
|
|
37
|
+
value: select
|
|
38
|
+
- label: Checkbox
|
|
39
|
+
value: boolean
|
|
40
|
+
- label: Toggle
|
|
41
|
+
value: toggle
|
|
42
|
+
- label: Date
|
|
43
|
+
value: date
|
|
44
|
+
- label: Datetime
|
|
45
|
+
value: datetime
|
|
46
|
+
- label: Time
|
|
47
|
+
value: time
|
|
48
|
+
- label: Number
|
|
49
|
+
value: number
|
|
50
|
+
- label: Currency
|
|
51
|
+
value: currency
|
|
52
|
+
- label: Percent
|
|
53
|
+
value: percent
|
|
54
|
+
- label: Password
|
|
55
|
+
value: password
|
|
56
|
+
- label: Lookup
|
|
57
|
+
value: lookup
|
|
58
|
+
- label: Master Detail
|
|
59
|
+
value: master_detail
|
|
60
|
+
- label: Autonumber
|
|
61
|
+
value: autonumber
|
|
62
|
+
- label: Url
|
|
63
|
+
value: url
|
|
64
|
+
- label: Email
|
|
65
|
+
value: email
|
|
66
|
+
- label: Image
|
|
67
|
+
value: image
|
|
68
|
+
- label: File
|
|
69
|
+
value: file
|
|
70
|
+
- label: Formula
|
|
71
|
+
value: formula
|
|
72
|
+
- label: Roll-Up Summary
|
|
73
|
+
value: summary
|
|
74
|
+
description:
|
|
75
|
+
defaultValue:
|
|
76
|
+
label: Default Value
|
|
77
|
+
help:
|
|
78
|
+
description:
|
|
79
|
+
group:
|
|
80
|
+
label: Group
|
|
81
|
+
help:
|
|
82
|
+
description:
|
|
83
|
+
reference_to:
|
|
84
|
+
label: Reference to
|
|
85
|
+
help:
|
|
86
|
+
description:
|
|
87
|
+
# reference_to_field:
|
|
88
|
+
# label: Reference to field
|
|
89
|
+
# help:
|
|
90
|
+
# description:
|
|
91
|
+
filtersFunction:
|
|
92
|
+
label: filters Function
|
|
93
|
+
help:
|
|
94
|
+
description:
|
|
95
|
+
optionsFunction:
|
|
96
|
+
label: options Function
|
|
97
|
+
help:
|
|
98
|
+
description:
|
|
99
|
+
precision:
|
|
100
|
+
label: Precision
|
|
101
|
+
help:
|
|
102
|
+
description:
|
|
103
|
+
scale:
|
|
104
|
+
label: Scale
|
|
105
|
+
help: >-
|
|
106
|
+
If the field type is a Percent, this indicates the number of decimal
|
|
107
|
+
places the field will display, for example, two decimal places will
|
|
108
|
+
display as 10.20%.
|
|
109
|
+
description:
|
|
110
|
+
rows:
|
|
111
|
+
label: Rows
|
|
112
|
+
help:
|
|
113
|
+
description:
|
|
114
|
+
multiple:
|
|
115
|
+
label: Multiple
|
|
116
|
+
help: Single choice and multiple choice switch to each other. Please resubmit the existing records or modify the saving format of this field in the database.
|
|
117
|
+
description:
|
|
118
|
+
options:
|
|
119
|
+
label: Options
|
|
120
|
+
help: >-
|
|
121
|
+
The label and value of each option cannot be empty. Set the background
|
|
122
|
+
color to FFFFFF in hexadecimal format.
|
|
123
|
+
description:
|
|
124
|
+
options.$:
|
|
125
|
+
label: Options
|
|
126
|
+
help:
|
|
127
|
+
description:
|
|
128
|
+
options.$.label:
|
|
129
|
+
label: Label
|
|
130
|
+
help:
|
|
131
|
+
description:
|
|
132
|
+
options.$.value:
|
|
133
|
+
label: Value
|
|
134
|
+
help:
|
|
135
|
+
description:
|
|
136
|
+
options.$.color:
|
|
137
|
+
label: Color
|
|
138
|
+
help:
|
|
139
|
+
description:
|
|
140
|
+
options.$.description:
|
|
141
|
+
label: Description
|
|
142
|
+
help:
|
|
143
|
+
description:
|
|
144
|
+
formula:
|
|
145
|
+
label: Formula
|
|
146
|
+
help: This field must be filled when the field type is 'Autonumber' or 'Formula'
|
|
147
|
+
description:
|
|
148
|
+
data_type:
|
|
149
|
+
label: Data Type
|
|
150
|
+
help: This field must be filled when the field type is 'Formula'
|
|
151
|
+
options:
|
|
152
|
+
- label: Checkbox
|
|
153
|
+
value: boolean
|
|
154
|
+
- label: Number
|
|
155
|
+
value: number
|
|
156
|
+
- label: Currency
|
|
157
|
+
value: currency
|
|
158
|
+
- label: Percent
|
|
159
|
+
value: percent
|
|
160
|
+
- label: Text
|
|
161
|
+
value: text
|
|
162
|
+
- label: Date
|
|
163
|
+
value: date
|
|
164
|
+
- label: Datetime
|
|
165
|
+
value: datetime
|
|
166
|
+
description:
|
|
167
|
+
formula_blank_value:
|
|
168
|
+
label: Blank Field Handling
|
|
169
|
+
help: >-
|
|
170
|
+
If your formula references any number or currency fields, specify what
|
|
171
|
+
happens to the formula output when their values are blank.
|
|
172
|
+
options:
|
|
173
|
+
- label: Treat blank fields as zeroes
|
|
174
|
+
value: zeroes
|
|
175
|
+
- label: Treat blank fields as blanks
|
|
176
|
+
value: blanks
|
|
177
|
+
description:
|
|
178
|
+
summary_object:
|
|
179
|
+
label: Object to Summarize
|
|
180
|
+
help: This field must be filled in when the field type is 'Roll-Up Summary'.
|
|
181
|
+
description:
|
|
182
|
+
summary_type:
|
|
183
|
+
label: Roll-Up Type
|
|
184
|
+
help: This field must be filled in when the field type is 'Roll-Up Summary'.
|
|
185
|
+
options:
|
|
186
|
+
- label: COUNT
|
|
187
|
+
value: count
|
|
188
|
+
- label: SUM
|
|
189
|
+
value: sum
|
|
190
|
+
- label: MIN
|
|
191
|
+
value: min
|
|
192
|
+
- label: MAX
|
|
193
|
+
value: max
|
|
194
|
+
- label: AVG
|
|
195
|
+
value: avg
|
|
196
|
+
description:
|
|
197
|
+
summary_field:
|
|
198
|
+
label: Field to Aggregate
|
|
199
|
+
help: >-
|
|
200
|
+
If the field type is a 'Roll-Up Summary' and the 'Roll-Up Type' is not
|
|
201
|
+
COUNT, this field must be filled in, Only fields that aggregate number,
|
|
202
|
+
currency, date, and datetime types are supported.
|
|
203
|
+
description:
|
|
204
|
+
summary_filters:
|
|
205
|
+
label: Filter Criteria
|
|
206
|
+
help: >-
|
|
207
|
+
Only records meeting certain criteria should be included in the
|
|
208
|
+
calculation, all records should be included in the calculation while the
|
|
209
|
+
criteria is empty.
|
|
210
|
+
description:
|
|
211
|
+
summary_filters.$:
|
|
212
|
+
label: Filter Criteria
|
|
213
|
+
help:
|
|
214
|
+
description:
|
|
215
|
+
summary_filters.$.field:
|
|
216
|
+
label: Field
|
|
217
|
+
help:
|
|
218
|
+
description:
|
|
219
|
+
summary_filters.$.operation:
|
|
220
|
+
label: Operator
|
|
221
|
+
help:
|
|
222
|
+
description:
|
|
223
|
+
summary_filters.$.value:
|
|
224
|
+
label: Value
|
|
225
|
+
help:
|
|
226
|
+
description:
|
|
227
|
+
column_name:
|
|
228
|
+
label: Database column name
|
|
229
|
+
help: Only supports relational databases.
|
|
230
|
+
description:
|
|
231
|
+
primary:
|
|
232
|
+
label: Primary Key
|
|
233
|
+
help:
|
|
234
|
+
description:
|
|
235
|
+
generated:
|
|
236
|
+
label: Generated
|
|
237
|
+
help:
|
|
238
|
+
description:
|
|
239
|
+
sort_no:
|
|
240
|
+
label: Sort Number
|
|
241
|
+
help:
|
|
242
|
+
description:
|
|
243
|
+
is_name:
|
|
244
|
+
label: Is Name
|
|
245
|
+
help:
|
|
246
|
+
description:
|
|
247
|
+
required:
|
|
248
|
+
label: Required
|
|
249
|
+
help:
|
|
250
|
+
description:
|
|
251
|
+
is_wide:
|
|
252
|
+
label: Is Wide
|
|
253
|
+
help:
|
|
254
|
+
description:
|
|
255
|
+
readonly:
|
|
256
|
+
label: Readonly
|
|
257
|
+
help:
|
|
258
|
+
description:
|
|
259
|
+
hidden:
|
|
260
|
+
label: Hidden
|
|
261
|
+
help:
|
|
262
|
+
description:
|
|
263
|
+
omit:
|
|
264
|
+
label: Omit
|
|
265
|
+
help:
|
|
266
|
+
description:
|
|
267
|
+
index:
|
|
268
|
+
label: Is Index Field
|
|
269
|
+
help:
|
|
270
|
+
description:
|
|
271
|
+
sortable:
|
|
272
|
+
label: Sortable
|
|
273
|
+
help:
|
|
274
|
+
description:
|
|
275
|
+
searchable:
|
|
276
|
+
label: Searchable
|
|
277
|
+
help:
|
|
278
|
+
description:
|
|
279
|
+
filterable:
|
|
280
|
+
label: Filterable
|
|
281
|
+
help:
|
|
282
|
+
description:
|
|
283
|
+
show_as_qr:
|
|
284
|
+
label: Show as QR
|
|
285
|
+
help:
|
|
286
|
+
description:
|
|
287
|
+
visible_on:
|
|
288
|
+
label: Visible On
|
|
289
|
+
help:
|
|
290
|
+
description:
|
|
291
|
+
inlineHelpText:
|
|
292
|
+
label: Prompt text
|
|
293
|
+
help:
|
|
294
|
+
description:
|
|
295
|
+
description:
|
|
296
|
+
label: Description
|
|
297
|
+
help:
|
|
298
|
+
description:
|
|
299
|
+
write_requires_master_read:
|
|
300
|
+
label: Write requires master read
|
|
301
|
+
help: >-
|
|
302
|
+
Sets the minimum sharing access level required on the master record to
|
|
303
|
+
create, edit, or delete child records. This field applies only to
|
|
304
|
+
master-detail or junction object custom field types. true—Allows users
|
|
305
|
+
with “Read” access to the master record permission to create, edit, or
|
|
306
|
+
delete child records. This setting makes sharing less restrictive.
|
|
307
|
+
false—Allows users with “Read/Write” access to the master record
|
|
308
|
+
permission to create, edit, or delete child records. This setting is more
|
|
309
|
+
restrictive than true, and is the default value.
|
|
310
|
+
description:
|
|
311
|
+
groups:
|
|
312
|
+
external_data_source: External data source
|
|
313
|
+
advanced: Advanced
|
|
314
|
+
listviews:
|
|
315
|
+
all:
|
|
316
|
+
label: All
|
|
317
|
+
actions:
|
|
318
|
+
recomputeFormulaValues:
|
|
319
|
+
label: Recompute Formula Values
|
|
320
|
+
recomputeSummaryValues:
|
|
321
|
+
label: Batch Recompute Summary Values
|
|
322
|
+
CustomLabels:
|
|
323
|
+
object_fields_field_allowedValues:
|
|
324
|
+
object_fields_field_filters:
|
|
325
|
+
object_fields_field_filters.$:
|
|
326
|
+
object_fields_field_filters_$_field:
|
|
327
|
+
object_fields_field_filters_$_operation:
|
|
328
|
+
object_fields_field_filters_$_value:
|
|
329
|
+
object_fields_field_summary_filters.$:
|
|
330
|
+
object_fields_group_reference:
|
|
331
|
+
object_fields_group_number:
|
|
332
|
+
object_fields_group_formula:
|
|
333
|
+
object_fields_group_summary:
|
|
334
|
+
object_fields__error_name_invalid_format:
|
|
335
|
+
object_fields__error_name_max_length:
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
name: object_fields
|
|
2
|
+
label: 对象字段
|
|
3
|
+
description:
|
|
4
|
+
fields:
|
|
5
|
+
object:
|
|
6
|
+
label: 所属对象
|
|
7
|
+
help:
|
|
8
|
+
description:
|
|
9
|
+
label:
|
|
10
|
+
label: 显示名称
|
|
11
|
+
help:
|
|
12
|
+
description:
|
|
13
|
+
_name:
|
|
14
|
+
label: 字段名
|
|
15
|
+
help:
|
|
16
|
+
description:
|
|
17
|
+
name:
|
|
18
|
+
label: API 名称
|
|
19
|
+
help: API 名称只能包含小写字母、数字,必须以字母开头,不能以下划线字符结尾或包含两个连续的下划线字符
|
|
20
|
+
description:
|
|
21
|
+
type:
|
|
22
|
+
label: 字段类型
|
|
23
|
+
help:
|
|
24
|
+
options:
|
|
25
|
+
- label: 文本
|
|
26
|
+
value: text
|
|
27
|
+
- label: 长文本
|
|
28
|
+
value: textarea
|
|
29
|
+
- label: Html文本
|
|
30
|
+
value: html
|
|
31
|
+
- label: 代码
|
|
32
|
+
value: code
|
|
33
|
+
- label: 选择框
|
|
34
|
+
value: select
|
|
35
|
+
- label: 复选框
|
|
36
|
+
value: boolean
|
|
37
|
+
- label: 开关
|
|
38
|
+
value: toggle
|
|
39
|
+
- label: 日期
|
|
40
|
+
value: date
|
|
41
|
+
- label: 日期时间
|
|
42
|
+
value: datetime
|
|
43
|
+
- label: 时间
|
|
44
|
+
value: time
|
|
45
|
+
- label: 数值
|
|
46
|
+
value: number
|
|
47
|
+
- label: 金额
|
|
48
|
+
value: currency
|
|
49
|
+
- label: 百分比
|
|
50
|
+
value: percent
|
|
51
|
+
- label: 密码
|
|
52
|
+
value: password
|
|
53
|
+
- label: 相关表
|
|
54
|
+
value: lookup
|
|
55
|
+
- label: 主表/子表
|
|
56
|
+
value: master_detail
|
|
57
|
+
- label: 自动编号
|
|
58
|
+
value: autonumber
|
|
59
|
+
- label: 网址
|
|
60
|
+
value: url
|
|
61
|
+
- label: 邮件地址
|
|
62
|
+
value: email
|
|
63
|
+
- label: 图片
|
|
64
|
+
value: image
|
|
65
|
+
- label: 附件
|
|
66
|
+
value: file
|
|
67
|
+
- label: 公式
|
|
68
|
+
value: formula
|
|
69
|
+
- label: 累计汇总
|
|
70
|
+
value: summary
|
|
71
|
+
description:
|
|
72
|
+
defaultValue:
|
|
73
|
+
label: 默认值
|
|
74
|
+
help:
|
|
75
|
+
description:
|
|
76
|
+
group:
|
|
77
|
+
label: 字段分组
|
|
78
|
+
help:
|
|
79
|
+
description:
|
|
80
|
+
reference_to:
|
|
81
|
+
label: 引用对象
|
|
82
|
+
help:
|
|
83
|
+
description:
|
|
84
|
+
# reference_to_field:
|
|
85
|
+
# label: 关联字段
|
|
86
|
+
# help:
|
|
87
|
+
# description:
|
|
88
|
+
filtersFunction:
|
|
89
|
+
label: 过滤器函数
|
|
90
|
+
help:
|
|
91
|
+
description:
|
|
92
|
+
optionsFunction:
|
|
93
|
+
label: 选择项函数
|
|
94
|
+
help:
|
|
95
|
+
description:
|
|
96
|
+
precision:
|
|
97
|
+
label: 精度(数字长度)
|
|
98
|
+
help:
|
|
99
|
+
description:
|
|
100
|
+
scale:
|
|
101
|
+
label: 小数位数
|
|
102
|
+
help: 如果字段类型为百分比,此处表示字段显示时的小数位数,比如2位小数会显示为10.20%。
|
|
103
|
+
description:
|
|
104
|
+
rows:
|
|
105
|
+
label: 多行文本行数
|
|
106
|
+
help:
|
|
107
|
+
description:
|
|
108
|
+
multiple:
|
|
109
|
+
label: 多选
|
|
110
|
+
help: 单选<==>多选 相互切换,请自行重新提交已有记录或在数据库中统一修改此字段的保存格式。
|
|
111
|
+
description:
|
|
112
|
+
options:
|
|
113
|
+
label: 选择项
|
|
114
|
+
help: 选择项的每个选项显示名及选项值不能为空,背景颜色请设置为ffffff这种格式的16进制数值。
|
|
115
|
+
description:
|
|
116
|
+
options.$:
|
|
117
|
+
label: Options
|
|
118
|
+
help:
|
|
119
|
+
description:
|
|
120
|
+
options.$.label:
|
|
121
|
+
label: 显示名
|
|
122
|
+
help:
|
|
123
|
+
description:
|
|
124
|
+
options.$.value:
|
|
125
|
+
label: 选项值
|
|
126
|
+
help:
|
|
127
|
+
description:
|
|
128
|
+
options.$.color:
|
|
129
|
+
label: 背景颜色
|
|
130
|
+
help:
|
|
131
|
+
description:
|
|
132
|
+
options.$.description:
|
|
133
|
+
label: 描述
|
|
134
|
+
help:
|
|
135
|
+
description:
|
|
136
|
+
formula:
|
|
137
|
+
label: 公式
|
|
138
|
+
help: 字段类型为自动编号或公式时,必须填写此字段。
|
|
139
|
+
description:
|
|
140
|
+
data_type:
|
|
141
|
+
label: 数据类型
|
|
142
|
+
help: 字段类型为公式时,必须填写此字段。
|
|
143
|
+
options:
|
|
144
|
+
- label: 复选框
|
|
145
|
+
value: boolean
|
|
146
|
+
- label: 数值
|
|
147
|
+
value: number
|
|
148
|
+
- label: 金额
|
|
149
|
+
value: currency
|
|
150
|
+
- label: 百分比
|
|
151
|
+
value: percent
|
|
152
|
+
- label: 文本
|
|
153
|
+
value: text
|
|
154
|
+
- label: 日期
|
|
155
|
+
value: date
|
|
156
|
+
- label: 日期时间
|
|
157
|
+
value: datetime
|
|
158
|
+
description:
|
|
159
|
+
formula_blank_value:
|
|
160
|
+
label: 空白字段处理
|
|
161
|
+
help: 如果您的公式引用了任何数字和货币字段,请指定当这些字段值为空时如何处理公式输出。
|
|
162
|
+
options:
|
|
163
|
+
- label: 将空白字段视为零
|
|
164
|
+
value: zeroes
|
|
165
|
+
- label: 将空白字段视为空白
|
|
166
|
+
value: blanks
|
|
167
|
+
description:
|
|
168
|
+
summary_object:
|
|
169
|
+
label: 要汇总的对象
|
|
170
|
+
help: 字段类型为累计汇总时,必须填写此字段。
|
|
171
|
+
description:
|
|
172
|
+
summary_type:
|
|
173
|
+
label: 汇总类型
|
|
174
|
+
help: 字段类型为累计汇总时,必须填写此字段。
|
|
175
|
+
options:
|
|
176
|
+
- label: COUNT
|
|
177
|
+
value: count
|
|
178
|
+
- label: SUM
|
|
179
|
+
value: sum
|
|
180
|
+
- label: MIN
|
|
181
|
+
value: min
|
|
182
|
+
- label: MAX
|
|
183
|
+
value: max
|
|
184
|
+
- label: AVG
|
|
185
|
+
value: avg
|
|
186
|
+
description:
|
|
187
|
+
summary_field:
|
|
188
|
+
label: 要聚合的字段
|
|
189
|
+
help: 字段类型为累计汇总且汇总类型不是COUNT时,必须填写此字段,只支持聚合数值、金额、日期、日期时间类型的字段。
|
|
190
|
+
description:
|
|
191
|
+
summary_filters:
|
|
192
|
+
label: 过滤条件
|
|
193
|
+
help: 此计算仅应包括符合特定条件的记录,当过滤条件为空时,所有记录都应包括在计算中。
|
|
194
|
+
description:
|
|
195
|
+
summary_filters.$:
|
|
196
|
+
label: Filter Criteria
|
|
197
|
+
help:
|
|
198
|
+
description:
|
|
199
|
+
summary_filters.$.field:
|
|
200
|
+
label: 字段
|
|
201
|
+
help:
|
|
202
|
+
description:
|
|
203
|
+
summary_filters.$.operation:
|
|
204
|
+
label: 运算符
|
|
205
|
+
help:
|
|
206
|
+
description:
|
|
207
|
+
summary_filters.$.value:
|
|
208
|
+
label: 值
|
|
209
|
+
help:
|
|
210
|
+
description:
|
|
211
|
+
column_name:
|
|
212
|
+
label: 数据库字段名
|
|
213
|
+
help: 仅支持关系型数据库
|
|
214
|
+
description:
|
|
215
|
+
primary:
|
|
216
|
+
label: 主键
|
|
217
|
+
help:
|
|
218
|
+
description:
|
|
219
|
+
generated:
|
|
220
|
+
label: 自增
|
|
221
|
+
help:
|
|
222
|
+
description:
|
|
223
|
+
sort_no:
|
|
224
|
+
label: 排序号
|
|
225
|
+
help:
|
|
226
|
+
description:
|
|
227
|
+
is_name:
|
|
228
|
+
label: 名称字段
|
|
229
|
+
help:
|
|
230
|
+
description:
|
|
231
|
+
required:
|
|
232
|
+
label: 必填
|
|
233
|
+
help:
|
|
234
|
+
description:
|
|
235
|
+
is_wide:
|
|
236
|
+
label: 宽字段
|
|
237
|
+
help:
|
|
238
|
+
description:
|
|
239
|
+
readonly:
|
|
240
|
+
label: 只读
|
|
241
|
+
help:
|
|
242
|
+
description:
|
|
243
|
+
hidden:
|
|
244
|
+
label: 隐藏
|
|
245
|
+
help:
|
|
246
|
+
description:
|
|
247
|
+
omit:
|
|
248
|
+
label: 新建、编辑时隐藏
|
|
249
|
+
help:
|
|
250
|
+
description:
|
|
251
|
+
index:
|
|
252
|
+
label: 创建索引
|
|
253
|
+
help:
|
|
254
|
+
description:
|
|
255
|
+
sortable:
|
|
256
|
+
label: 可排序
|
|
257
|
+
help:
|
|
258
|
+
description:
|
|
259
|
+
searchable:
|
|
260
|
+
label: 可搜索
|
|
261
|
+
help:
|
|
262
|
+
description:
|
|
263
|
+
filterable:
|
|
264
|
+
label: 过滤器默认字段
|
|
265
|
+
help:
|
|
266
|
+
description:
|
|
267
|
+
show_as_qr:
|
|
268
|
+
label: 显示为二维码
|
|
269
|
+
help:
|
|
270
|
+
description:
|
|
271
|
+
visible_on:
|
|
272
|
+
label: 字段显示公式
|
|
273
|
+
help:
|
|
274
|
+
description:
|
|
275
|
+
inlineHelpText:
|
|
276
|
+
label: 提示文本
|
|
277
|
+
help:
|
|
278
|
+
description:
|
|
279
|
+
description:
|
|
280
|
+
label: 描述
|
|
281
|
+
help:
|
|
282
|
+
description:
|
|
283
|
+
write_requires_master_read:
|
|
284
|
+
label: 当用户对主表记录有读取权限时对子表记录可以增删改
|
|
285
|
+
help: >-
|
|
286
|
+
设置主记录上创建、编辑或删除子记录所需的最低访问级别。此字段仅适用于·主表/子表·字段类型。勾选表示允许具有'读取'访问权限的用户创建、编辑或删除子记录。反之表示允许具有'读取/写入'访问权限的用户创建、编辑或删除子记录的权限。
|
|
287
|
+
description:
|
|
288
|
+
groups:
|
|
289
|
+
external_data_source: 外部数据源
|
|
290
|
+
advanced: 高级
|
|
291
|
+
listviews:
|
|
292
|
+
all:
|
|
293
|
+
label: 所有
|
|
294
|
+
actions:
|
|
295
|
+
recomputeFormulaValues:
|
|
296
|
+
label: 重算公式值
|
|
297
|
+
recomputeSummaryValues:
|
|
298
|
+
label: 批量重算汇总值
|
|
299
|
+
CustomLabels:
|
|
300
|
+
object_fields_field_allowedValues: 允许的值
|
|
301
|
+
object_fields_field_filters: 过滤器
|
|
302
|
+
object_fields_field_filters.$:
|
|
303
|
+
object_fields_field_filters_$_field: 字段
|
|
304
|
+
object_fields_field_filters_$_operation: 运算符
|
|
305
|
+
object_fields_field_filters_$_value: 值
|
|
306
|
+
object_fields_field_summary_filters.$:
|
|
307
|
+
object_fields_group_reference: 相关表、主表/子表
|
|
308
|
+
object_fields_group_number: 金额、数值
|
|
309
|
+
object_fields_group_formula: 公式
|
|
310
|
+
object_fields_group_summary: 累计汇总
|
|
311
|
+
object_fields__error_name_invalid_format: API 名称只能包含小写字母、数字,必须以字母开头,不能以下划线字符结尾或包含两个连续的下划线字符
|
|
312
|
+
object_fields__error_name_max_length: API 名称长度不能大于20个字符
|
package/main/default/objectTranslations/object_layouts.en/object_layouts.en.objectTranslation.yml
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
name: object_layouts
|
|
2
|
+
label: Object Layouts
|
|
3
|
+
description:
|
|
4
|
+
fields:
|
|
5
|
+
label:
|
|
6
|
+
label: Label
|
|
7
|
+
help:
|
|
8
|
+
description:
|
|
9
|
+
name:
|
|
10
|
+
label: API Name
|
|
11
|
+
help: >-
|
|
12
|
+
Can only contain lowercase letters and numbers, must start with a letter,
|
|
13
|
+
cannot end with an underscore character or contain two consecutive
|
|
14
|
+
underscore characters
|
|
15
|
+
description:
|
|
16
|
+
object_name:
|
|
17
|
+
label: Object
|
|
18
|
+
help:
|
|
19
|
+
description:
|
|
20
|
+
profiles:
|
|
21
|
+
label: Profile
|
|
22
|
+
help:
|
|
23
|
+
description:
|
|
24
|
+
exclude_actions:
|
|
25
|
+
label: Exclude Standard Actions
|
|
26
|
+
help:
|
|
27
|
+
description:
|
|
28
|
+
custom_actions:
|
|
29
|
+
label: Custom Actions
|
|
30
|
+
help:
|
|
31
|
+
description:
|
|
32
|
+
relatedList:
|
|
33
|
+
label: Related list
|
|
34
|
+
help:
|
|
35
|
+
description:
|
|
36
|
+
fields:
|
|
37
|
+
label:
|
|
38
|
+
help:
|
|
39
|
+
description:
|
|
40
|
+
fields.$:
|
|
41
|
+
label: Field
|
|
42
|
+
help:
|
|
43
|
+
description:
|
|
44
|
+
fields.$.field:
|
|
45
|
+
label: Field
|
|
46
|
+
help:
|
|
47
|
+
description:
|
|
48
|
+
fields.$.readonly:
|
|
49
|
+
label: Readonly
|
|
50
|
+
help:
|
|
51
|
+
description:
|
|
52
|
+
fields.$.required:
|
|
53
|
+
label: Required
|
|
54
|
+
help:
|
|
55
|
+
description:
|
|
56
|
+
fields.$.group:
|
|
57
|
+
label: Group
|
|
58
|
+
help:
|
|
59
|
+
description:
|
|
60
|
+
listviews:
|
|
61
|
+
all:
|
|
62
|
+
label: All
|
|
63
|
+
actions:
|
|
64
|
+
customize:
|
|
65
|
+
label: Customize
|
|
66
|
+
CustomLabels:
|
|
67
|
+
object_layouts_group_field_info: Field Info
|
|
68
|
+
object_layouts__object: Object Layouts
|
|
69
|
+
object_layouts_group_appendToLayouts: >-
|
|
70
|
+
Select the page layout that should contain the field (if you don’t select a
|
|
71
|
+
layout, the field will not be displayed on any page)
|
|
72
|
+
object_layouts_title_appendField: Add fields to the page layout
|