Zdrojový kód wiki TQL - metody (funkce)

Naposledy změněno Jan Šimeček 2026/03/26 09:49

Show last authors
1 {{{ String workTypeName();
2
3 String workMedium();
4
5 Integer workMediumNumeric();
6
7 String workLocMark();
8
9 Long workTypeId();
10
11 Long workId();
12
13 Long itemThematicGroupId();
14
15 Long itemBorrowCategoryId();
16
17 Long itemBookBindingId();
18
19 Boolean itemProposalToWriteOff();
20
21 String workTitleShow();
22
23 String workAuthorShow();
24
25 Date workExternalVersion();
26
27 Date workDateCreated();
28
29 Date workDateModified();
30
31 String workPublisherPlaceShow();
32
33 Long workHarvestedSourceId();
34
35 String workSpecialString1();
36 String workSpecialString2();
37 String workSpecialString3();
38 String workSpecialString4();
39 String workSpecialString5();
40 String workSpecialString6();
41
42 String workRules();
43
44 Boolean workIsPeriodical();
45
46 boolean workHasSubfieldValueInSubfieldIds(String value, Integer... ids);
47
48 boolean workHasSubfieldNameWithValue(String subfield, String value);
49
50 boolean workHasAnyLabelIds(Integer... ids);
51
52 boolean workHasNotAnyLabelIds(Integer... ids);
53
54 boolean workHasAllLabelIds(Integer... ids);
55
56 boolean userHasSubfieldValueInSubfieldId(String value, int id);
57
58 Integer userElectronicBorrowingsCount(int dayCount, Integer... harvestedSourceId);
59
60 String itemBorrowCategoryExternalId();
61
62 boolean itemHasSubfieldNameWithValue(String subfield, String value);
63
64 boolean itemHasAnyLabelIds(Integer... ids);
65
66 boolean itemHasAllLabelIds(Integer... ids);
67
68 String itemIncrementalNumberValueShow();
69
70 String itemIncrementalNumberRoot();
71
72 String itemSpecialString1();
73 String itemSpecialString2();
74 String itemSpecialString3();
75
76 Long itemIncrementalNumberValue();
77
78 String itemType();
79
80 Date itemDateCreated();
81
82 Date itemDateWriteOffList();
83
84 Boolean itemActive();
85
86 Boolean itemCompound();
87
88 String itemBarcode();
89
90 Long itemLocationId();
91
92 String itemLocationName();
93
94 String itemLocationCode();
95
96 String itemLocationExternalId();
97
98 String itemLocationOwnerExternalId();
99
100 Long itemSublocationId();
101
102 Long itemSupplierId();
103
104 Long itemLocationOwnerId();
105
106 String itemPeriodicalYear();
107
108 String itemPeriodicalRow();
109
110 String itemLocMarkValueShow();
111
112 String itemStoreMarkValueShow();
113
114 Long itemAcquisitionTypeId();
115
116 Long itemLibraryId();
117
118 String itemImportId();
119
120 String itemReceiptNumber();
121
122 Long itemId();
123
124 Long itemLibraryOwnerId();
125
126 Long itemWriteOffListId();
127
128 Long itemWriteOffReasonId();
129
130 Double userAge();
131
132 Double userAgeInCurrentYear();
133
134 Long userCategoryId();
135
136 Long userId();
137
138 String userIdentityCardNumber();
139 Date userIdentityCardNumberValidityDate();
140 Long userDefaultDepartmentId();
141 Long userProfessionId();
142
143 Long userEducationLevelId();
144
145 String userEducationLevelCode();
146
147 Long userLocationForExchangesId();
148
149 Long userReaderNumberValue();
150 String userDefaultDepartmentShortcut();
151
152 boolean userIsSingle();
153
154 boolean userIsLibrary();
155
156 boolean userIsPartnerWithValidRegistration();
157
158 boolean userIsPartner();
159
160 boolean userIsFamily();
161
162 boolean userIsFamilyWithValidRegistration();
163
164 Integer userElectronicBorrowingsCurrentMonthCount(Integer... harvestedSourceId);
165
166 String userCategoryCode();
167
168 String userFullname();
169
170 String userLastname();
171
172 String userUsername();
173
174 String userFirstname();
175
176 String authorityHeadingType();
177
178 Date nowAddMonths(int count);
179
180 Date currentDate();
181
182 Date currentTime();
183
184 Long linkageRelationId();
185
186 Long orderItemThematicGroupId();
187
188 Long orderItemAcquisitionTypeId();
189
190 Long orderItemInLocationLocationId();
191
192 Double itemPrice();
193
194 String userProfessionKey();
195
196 String itemBorrowCategoryName();
197
198 Long userSchoolId();
199
200 String userEmail();
201
202 String userPhone();
203
204 String userNote();
205
206 String workLanguage();
207
208 Long userDefaultGroupId();
209
210 String userBeforeAddressPermanent();
211
212 String userStreetNumberPermanent();
213
214 String userCityPermanent();
215
216 String userPostNumberPermanent();
217
218 String itemNote();
219
220 String userCategoryType();
221
222 String userCautionNote();
223
224 Integer workSpecialInt1();
225
226 Integer workSpecialInt2();
227
228 Integer workSpecialInt3();
229
230 Long itemWorkId();
231
232 String userProfessionCode();
233
234 String itemThematicGroupExternalId();
235
236 Long itemUserDeletedId();
237
238 Long itemUserCreatedId();
239
240 Long loggedUserId();
241
242 boolean isUserVisitCountLimitExceed();
243
244 boolean hasUserNoActiveRegistrationInHisDefaultDepartment(int departmentId);
245
246 boolean isFamilyOrPartnerOfSizeWithChildCount(boolean isFamily, boolean isPartner, int minFamilySize, int maxFamilySize, int minAdultCount, int maxAdultCount);
247
248 boolean isShowUserVisitCountWarning();
249
250 boolean existsReservation();
251
252 boolean existsReservationOnRelatedDepartments();
253
254 boolean hasWaitingWemiRequest(Integer... departmentIds);
255
256 boolean hasUserActiveRegistrationInCurrentDepartment();
257
258 boolean isAfterInCurrentYear(int day, int month);
259
260 boolean isBeforeInCurrentYear(int day, int month);
261
262 boolean isAfter(int day, int month, int year);
263
264 boolean isBefore(int day, int month, int year);
265
266 Long periodicalSheetId();
267
268 Long invoiceItemId();
269
270 Long invoiceItemDefinitionId();
271
272 Double userDebt(long departmentId);
273 }}}
274
275