質問編集履歴
3
一部変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -146,7 +146,7 @@
|
|
146
146
|
|
147
147
|
<%while((rec!=null) && (rec.next())) { %>
|
148
148
|
|
149
|
-
<% if (rec.getString("co_id")
|
149
|
+
<% if (Objects.equals(rec.getString("co_id"), String.valueOf(Co_id))) {%>
|
150
150
|
|
151
151
|
<option value="<%=rec.getString("co_id")%> selected"><%=rec.getString("company")%></option>
|
152
152
|
|
2
質問追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -162,4 +162,48 @@
|
|
162
162
|
|
163
163
|
```
|
164
164
|
|
165
|
+
```java
|
166
|
+
|
167
|
+
[DBから(一覧)のデータソース部分]
|
168
|
+
|
169
|
+
<%
|
170
|
+
|
171
|
+
List<Production_daily_report> list=(List<Production_daily_report>)request.getAttribute("list");
|
172
|
+
|
173
|
+
Production_daily_report production_daily_report_model=(Production_daily_report)request.getAttribute("production_daily_report");
|
174
|
+
|
175
|
+
String Pdr_id=production_daily_report_model==null ? "":String.valueOf(production_daily_report_model.getPdr_id());
|
176
|
+
|
177
|
+
String Record_date=production_daily_report_model == null ? "":production_daily_report_model.getRecord_date();
|
178
|
+
|
179
|
+
String Co_id=production_daily_report_model == null ? "":String.valueOf(production_daily_report_model.getCo_id());
|
180
|
+
|
181
|
+
String Fi_id=production_daily_report_model == null ? "":String.valueOf(production_daily_report_model.getFi_id());
|
182
|
+
|
183
|
+
String St_id=production_daily_report_model == null ? "":String.valueOf(production_daily_report_model.getSt_id());
|
184
|
+
|
185
|
+
String Ag_id=production_daily_report_model == null ? "":String.valueOf(production_daily_report_model.getAg_id());
|
186
|
+
|
187
|
+
String Sl_id=production_daily_report_model == null ? "":String.valueOf(production_daily_report_model.getSl_id());
|
188
|
+
|
189
|
+
String Quantity=production_daily_report_model == null ? "":production_daily_report_model.getQuantity();
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
String title=(String)request.getAttribute("title");
|
194
|
+
|
195
|
+
title=title==null? "登録してください。":title;
|
196
|
+
|
197
|
+
String err=(String)request.getAttribute("err");
|
198
|
+
|
199
|
+
String msg=(String)request.getAttribute("msg");
|
200
|
+
|
201
|
+
%>
|
202
|
+
|
203
|
+
```
|
204
|
+
|
205
|
+
本やWebで調べながらですがよくわからないことが多く
|
206
|
+
|
207
|
+
意味不明なことがあればすいません
|
208
|
+
|
165
209
|
よろしくご指導お願いいたします。
|
1
コード全体を掲載します。
test
CHANGED
File without changes
|
test
CHANGED
@@ -138,10 +138,6 @@
|
|
138
138
|
|
139
139
|
```
|
140
140
|
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
141
|
```html
|
146
142
|
|
147
143
|
<label for="co_id">会社名:</label>
|