質問編集履歴

1

状況説明を追記

2017/03/22 02:48

投稿

yadrop
yadrop

スコア57

test CHANGED
File without changes
test CHANGED
@@ -131,3 +131,195 @@
131
131
 
132
132
 
133
133
  何卒、宜しくお願い致します。
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+ 追記:変更点については以下になります。
144
+
145
+ 都合上、名称やサイズなどは代用しています。
146
+
147
+
148
+
149
+
150
+
151
+ ①SELECT文に追記
152
+
153
+
154
+
155
+ ```ここに言語を入力
156
+
157
+ SELECT
158
+
159
+
160
+
161
+ ,flg AS flg
162
+
163
+ ,IF(
164
+
165
+ flg = 1
166
+
167
+ ,'○'
168
+
169
+ ,'×'
170
+
171
+ ) AS hoge
172
+
173
+
174
+
175
+ ```
176
+
177
+
178
+
179
+ ②宣言
180
+
181
+
182
+
183
+ ```ここに言語を入力
184
+
185
+ <field name="flg" class="java.lang.Boolean"/>
186
+
187
+ <field name="hoge" class="java.lang.String"/>
188
+
189
+ ```
190
+
191
+
192
+
193
+
194
+
195
+ ③コンテンツ追加 1
196
+
197
+
198
+
199
+ ```ここに言語を入力
200
+
201
+ <line>
202
+
203
+ <reportElement x="0" y="250" width="400" height="1" forecolor="#DA0023" uuid="hoge1">
204
+
205
+ <property name="com.jaspersoft.studio.unit.height" value="pixel"/>
206
+
207
+ <property name="com.jaspersoft.studio.unit.width" value="pixel"/>
208
+
209
+ <property name="com.jaspersoft.studio.unit.y" value="pixel"/>
210
+
211
+ </reportElement>
212
+
213
+ </line>
214
+
215
+ ```
216
+
217
+
218
+
219
+ ④コンテンツ追加 2
220
+
221
+
222
+
223
+ ```ここに言語を入力
224
+
225
+ <line>
226
+
227
+ <reportElement x="60" y="250" width="1" height="15" forecolor="#DA0023" uuid="hoge2">
228
+
229
+ <property name="com.jaspersoft.studio.unit.width" value="pixel"/>
230
+
231
+ <property name="com.jaspersoft.studio.unit.height" value="pixel"/>
232
+
233
+ </reportElement>
234
+
235
+ </line>
236
+
237
+ ```
238
+
239
+
240
+
241
+ ⑤コンテンツ追加 3 (ここで①のAS hogeを表示しています)
242
+
243
+ ```ここに言語を入力
244
+
245
+ <staticText>
246
+
247
+ <reportElement x="0" y="250" width="50" height="15" uuid="hoge3">
248
+
249
+ <property name="com.jaspersoft.studio.unit.height" value="pixel"/>
250
+
251
+ </reportElement>
252
+
253
+ <textElement>
254
+
255
+ <font fontName="Meiryo" size="7"/>
256
+
257
+ </textElement>
258
+
259
+ <text><![CDATA[サンプルテキスト]]></text>
260
+
261
+ </staticText>
262
+
263
+ <textField isStretchWithOverflow="true" isBlankWhenNull="true">
264
+
265
+ <reportElement x="60" y="250" width="125" height="15" uuid="hoge4"/>
266
+
267
+ <textElement>
268
+
269
+ <font fontName="Meiryo" size="7"/>
270
+
271
+ </textElement>
272
+
273
+ <textFieldExpression><![CDATA[$F{hoge}]]></textFieldExpression>
274
+
275
+ </textField>
276
+
277
+ ```
278
+
279
+
280
+
281
+ ⑥コンテンツ追加 4
282
+
283
+
284
+
285
+ ```ここに言語を入力
286
+
287
+ <rectangle>
288
+
289
+ <reportElement key="" x="0" y="300" width="400" height="30" forecolor="#FFCC00" backcolor="rgba(255, 255, 255, 0.0)" uuid="hoge5">
290
+
291
+ <property name="com.jaspersoft.studio.unit.height" value="pixel"/>
292
+
293
+ <printWhenExpression><![CDATA[$F{flg} == false]]></printWhenExpression>
294
+
295
+ </reportElement>
296
+
297
+ </rectangle>
298
+
299
+ <staticText>
300
+
301
+ <reportElement x="3" y="280" width="400" height="25" uuid="hoge6">
302
+
303
+ <property name="com.jaspersoft.studio.unit.width" value="pixel"/>
304
+
305
+ <printWhenExpression><![CDATA[$F{flg} == false]]></printWhenExpression>
306
+
307
+ </reportElement>
308
+
309
+ <textElement>
310
+
311
+ <font size="6"/>
312
+
313
+ </textElement>
314
+
315
+ <text><![CDATA[フラグが0の時に表示する]]></text>
316
+
317
+ </staticText>
318
+
319
+ ```
320
+
321
+
322
+
323
+ その他の差分としては編集日時が変わったという程度のものなので記載はしておりません。
324
+
325
+ 宜しくお願い致します。