Wiki source code of TQL - metody (funkce)

Last modified by Jiří Gazárek on 2025/02/04 09:44

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 Boolean workIsPeriodical();
43
44 boolean workHasSubfieldValueInSubfieldIds(String value, Integer... ids);
45
46 boolean workHasSubfieldNameWithValue(String subfield, String value);
47
48 boolean userHasSubfieldValueInSubfieldId(String value, int id);
49
50 Integer userElectronicBorrowingsCount(int dayCount, int harvestedSourceId);
51
52 String itemBorrowCategoryExternalId();
53 boolean itemHasSubfieldNameWithValue(String subfield, String value);
54 String itemIncrementalNumberValueShow();
55
56 String itemIncrementalNumberRoot();
57
58 Long itemIncrementalNumberValue();
59
60 String itemType();
61
62 Date itemDateCreated();
63
64 Date itemDateWriteOffList();
65
66 Boolean itemActive();
67
68 Boolean itemCompound();
69
70 String itemBarcode();
71
72 Long itemLocationId();
73
74 String itemLocationName();
75
76 String itemLocationCode();
77
78 String itemLocationExternalId();
79
80 String itemLocationOwnerExternalId();
81
82 Long itemSublocationId();
83
84 Long itemLocationOwnerId();
85
86 String itemPeriodicalYear();
87
88 String itemPeriodicalRow();
89
90 String itemLocMarkValueShow();
91
92 String itemStoreMarkValueShow();
93
94 Long itemAcquisitionTypeId();
95
96 Long itemLibraryId();
97
98 String itemImportId();
99
100 String itemReceiptNumber();
101
102 Long itemId();
103
104 Long itemLibraryOwnerId();
105
106 Long itemWriteOffListId();
107
108 Long itemWriteOffReasonId();
109
110 Double userAge();
111
112 Double userAgeInCurrentYear();
113
114 Long userCategoryId();
115
116 Long userId();
117
118 String userIdentityCardNumber();
119 Long userDefaultDepartmentId();
120 Long userProfessionId();
121
122 String userEducationLevelCode();
123
124 Long userLocationForExchangesId();
125
126 Long userReaderNumberValue();
127 String userDefaultDepartmentShortcut();
128
129 boolean userIsSingle();
130
131 boolean userIsLibrary();
132
133 boolean userIsPartnerWithValidRegistration();
134
135 boolean userIsPartner();
136
137 boolean userIsFamily();
138
139 boolean userIsFamilyWithValidRegistration();
140
141 Integer userElectronicBorrowingsCurrentMonthCount(int harvestedSourceId);
142 String userCategoryCode();
143 String userFullname();
144
145 String userLastname();
146
147 String userUsername();
148
149 String userFirstname();
150
151 String authorityHeadingType();
152
153 Date nowAddMonths(int count);
154
155 Date currentDate();
156
157 Date currentTime();
158
159 Long linkageRelationId();
160
161 Long orderItemThematicGroupId();
162
163 Long orderItemAcquisitionTypeId();
164
165 Long orderItemInLocationLocationId();
166
167 Double itemPrice();
168
169 String userProfessionKey();
170
171 String itemBorrowCategoryName();
172
173 Long userSchoolId();
174
175 String userEmail();
176
177 String userPhone();
178
179 String userNote();
180
181 String workLanguage();
182
183 Long userDefaultGroupId();
184
185 String userBeforeAddressPermanent();
186
187 String userStreetNumberPermanent();
188
189 String userCityPermanent();
190
191 String userPostNumberPermanent();
192
193 String itemNote();
194
195 String userCategoryType();
196
197 String userCautionNote();
198
199 Integer workSpecialInt1();
200
201 Integer workSpecialInt2();
202
203 Integer workSpecialInt3();
204
205 Long itemWorkId();
206
207 String userProfessionCode();
208
209 String itemThematicGroupExternalId();
210
211 Long itemUserDeletedId();
212
213 Long loggedUserId();
214
215 boolean isUserVisitCountLimitExceed();
216
217 boolean hasUserNoActiveRegistrationInHisDefaultDepartment(int departmentId);
218
219 boolean isFamilyOrPartnerOfSizeWithChildCount(boolean orPartner, int minFamilySize, int maxFamilySize, int maxChildCount);
220
221 boolean isShowUserVisitCountWarning();
222
223 boolean existsReservation();
224
225 boolean hasUserActiveRegistrationInCurrentDepartment();
226
227 boolean isAfterInCurrentYear(int day, int month);
228
229 boolean isBeforeInCurrentYear(int day, int month);
230
231 boolean isAfter(int day, int month, int year);
232
233 boolean isBefore(int day, int month, int year);
234
235 Long periodicalSheetId();
236
237 Long invoiceItemId();
238
239 Long invoiceItemDefinitionId();
240
241   boolean workHasAnyLabelIds(int ... labelIds);
242
243   boolean workHasNotAnyLabelIds(int ... labelIds);
244
245 Double userDebt(long departmentId);
246 }}}
247
248
249