|
@ -42,7 +42,7 @@ public class CompanyService {
|
42
|
42
|
|
43
|
43
|
@Path("/insert")
|
44
|
44
|
@Post
|
45
|
|
public String insert(@JdbcConn(true) Connection con, CompanyInfo companyInfo, @LoginUser SessionManager manager)throws SQLException {
|
|
45
|
public String insert(@JdbcConn(true) Connection con, CompanyInfo companyInfo, @LoginUser SessionManager manager) throws SQLException {
|
46
|
46
|
String id = StringUtil.buildUUID();
|
47
|
47
|
companyInfo.setId(id);
|
48
|
48
|
companyInfo.setCreator(manager.getId());
|
|
@ -50,63 +50,73 @@ public class CompanyService {
|
50
|
50
|
companyInfo.setActived(false);
|
51
|
51
|
|
52
|
52
|
String indstr = companyInfo.getIndustry();
|
53
|
|
List<String> industrys = ListUtil.splitTrimExcludeEmpty(indstr, ',');
|
54
|
|
int i = 1;
|
55
|
|
for (String ind : industrys) {
|
56
|
|
CompKeyWord ckw = new CompKeyWord();
|
57
|
|
ckw.setId(id);
|
58
|
|
ckw.setType(1);
|
59
|
|
ckw.setNum(i++);
|
60
|
|
ckw.setValue(ind);
|
61
|
|
companyDao.insert(con, ckw);
|
|
53
|
if (indstr != null) {
|
|
54
|
List<String> industrys = ListUtil.splitTrimExcludeEmpty(indstr, ',');
|
|
55
|
int i = 1;
|
|
56
|
for (String ind : industrys) {
|
|
57
|
CompKeyWord ckw = new CompKeyWord();
|
|
58
|
ckw.setId(id);
|
|
59
|
ckw.setType(1);
|
|
60
|
ckw.setNum(i++);
|
|
61
|
ckw.setValue(ind);
|
|
62
|
companyDao.insert(con, ckw);
|
|
63
|
}
|
62
|
64
|
}
|
63
|
65
|
|
64
|
66
|
String substr = companyInfo.getSubject();
|
65
|
|
List<String> subjects = ListUtil.splitTrimExcludeEmpty(substr, ',');
|
66
|
|
int j = 1;
|
67
|
|
for (String sub : subjects) {
|
68
|
|
CompKeyWord ckw = new CompKeyWord();
|
69
|
|
ckw.setId(id);
|
70
|
|
ckw.setType(2);
|
71
|
|
ckw.setNum(j++);
|
72
|
|
ckw.setValue(sub);
|
73
|
|
companyDao.insert(con, ckw);
|
|
67
|
if (substr != null) {
|
|
68
|
List<String> subjects = ListUtil.splitTrimExcludeEmpty(substr, ',');
|
|
69
|
int j = 1;
|
|
70
|
for (String sub : subjects) {
|
|
71
|
CompKeyWord ckw = new CompKeyWord();
|
|
72
|
ckw.setId(id);
|
|
73
|
ckw.setType(2);
|
|
74
|
ckw.setNum(j++);
|
|
75
|
ckw.setValue(sub);
|
|
76
|
companyDao.insert(con, ckw);
|
|
77
|
}
|
74
|
78
|
}
|
75
|
79
|
|
76
|
80
|
String fos = companyInfo.getFieldOfSupplier();
|
77
|
|
List<String> fieldOfSuppliers = ListUtil.splitTrimExcludeEmpty(fos, ',');
|
78
|
|
int m = 1;
|
79
|
|
for (String fieldOfSupplier : fieldOfSuppliers) {
|
80
|
|
CompKeyWord ckw = new CompKeyWord();
|
81
|
|
ckw.setId(id);
|
82
|
|
ckw.setType(3);
|
83
|
|
ckw.setNum(m++);
|
84
|
|
ckw.setValue(fieldOfSupplier);
|
85
|
|
companyDao.insert(con, ckw);
|
|
81
|
if (fos != null) {
|
|
82
|
List<String> fieldOfSuppliers = ListUtil.splitTrimExcludeEmpty(fos, ',');
|
|
83
|
int m = 1;
|
|
84
|
for (String fieldOfSupplier : fieldOfSuppliers) {
|
|
85
|
CompKeyWord ckw = new CompKeyWord();
|
|
86
|
ckw.setId(id);
|
|
87
|
ckw.setType(3);
|
|
88
|
ckw.setNum(m++);
|
|
89
|
ckw.setValue(fieldOfSupplier);
|
|
90
|
companyDao.insert(con, ckw);
|
|
91
|
}
|
86
|
92
|
}
|
87
|
93
|
|
88
|
94
|
String foc = companyInfo.getFieldOfCustomer();
|
89
|
|
List<String> fieldOfCustomers = ListUtil.splitTrimExcludeEmpty(foc, ',');
|
90
|
|
int n = 1;
|
91
|
|
for (String fieldOfCustomer : fieldOfCustomers) {
|
92
|
|
CompKeyWord ckw = new CompKeyWord();
|
93
|
|
ckw.setId(id);
|
94
|
|
ckw.setType(4);
|
95
|
|
ckw.setNum(n++);
|
96
|
|
ckw.setValue(fieldOfCustomer);
|
97
|
|
companyDao.insert(con, ckw);
|
|
95
|
if (foc != null) {
|
|
96
|
List<String> fieldOfCustomers = ListUtil.splitTrimExcludeEmpty(foc, ',');
|
|
97
|
int n = 1;
|
|
98
|
for (String fieldOfCustomer : fieldOfCustomers) {
|
|
99
|
CompKeyWord ckw = new CompKeyWord();
|
|
100
|
ckw.setId(id);
|
|
101
|
ckw.setType(4);
|
|
102
|
ckw.setNum(n++);
|
|
103
|
ckw.setValue(fieldOfCustomer);
|
|
104
|
companyDao.insert(con, ckw);
|
|
105
|
}
|
98
|
106
|
}
|
99
|
107
|
|
100
|
108
|
String qua = companyInfo.getQualification();
|
101
|
|
List<String> qualifications = ListUtil.splitTrimExcludeEmpty(qua, ',');
|
102
|
|
int z = 1;
|
103
|
|
for (String qualification : qualifications) {
|
104
|
|
CompKeyWord ckw = new CompKeyWord();
|
105
|
|
ckw.setId(id);
|
106
|
|
ckw.setType(5);
|
107
|
|
ckw.setNum(z++);
|
108
|
|
ckw.setValue(qualification);
|
109
|
|
companyDao.insert(con, ckw);
|
|
109
|
if (qua != null) {
|
|
110
|
List<String> qualifications = ListUtil.splitTrimExcludeEmpty(qua, ',');
|
|
111
|
int z = 1;
|
|
112
|
for (String qualification : qualifications) {
|
|
113
|
CompKeyWord ckw = new CompKeyWord();
|
|
114
|
ckw.setId(id);
|
|
115
|
ckw.setType(5);
|
|
116
|
ckw.setNum(z++);
|
|
117
|
ckw.setValue(qualification);
|
|
118
|
companyDao.insert(con, ckw);
|
|
119
|
}
|
110
|
120
|
}
|
111
|
121
|
companyDao.insert(con, companyInfo);
|
112
|
122
|
return id;
|
|
@ -114,68 +124,78 @@ public class CompanyService {
|
114
|
124
|
|
115
|
125
|
@Path("/update")
|
116
|
126
|
@Put
|
117
|
|
public int update(@JdbcConn(true)Connection con,@LoginUser SessionManager manager,@RequestBody CompanyInfo companyInfo)throws SQLException {
|
|
127
|
public int update(@JdbcConn(true) Connection con, @LoginUser SessionManager manager, @RequestBody CompanyInfo companyInfo) throws SQLException {
|
118
|
128
|
String id = companyInfo.getId();
|
119
|
129
|
companyInfo.setModifier(manager.getId());
|
120
|
130
|
companyDao.deleteKeyWord(con, id);
|
121
|
131
|
String indstr = companyInfo.getIndustry();
|
122
|
|
List<String> industrys = ListUtil.splitTrimExcludeEmpty(indstr, ',');
|
123
|
|
int i = 1;
|
124
|
|
for (String ind : industrys) {
|
125
|
|
CompKeyWord ckw = new CompKeyWord();
|
126
|
|
ckw.setId(id);
|
127
|
|
ckw.setType(1);
|
128
|
|
ckw.setNum(i++);
|
129
|
|
ckw.setValue(ind);
|
130
|
|
companyDao.insert(con, ckw);
|
|
132
|
if (indstr != null) {
|
|
133
|
List<String> industrys = ListUtil.splitTrimExcludeEmpty(indstr, ',');
|
|
134
|
int i = 1;
|
|
135
|
for (String ind : industrys) {
|
|
136
|
CompKeyWord ckw = new CompKeyWord();
|
|
137
|
ckw.setId(id);
|
|
138
|
ckw.setType(1);
|
|
139
|
ckw.setNum(i++);
|
|
140
|
ckw.setValue(ind);
|
|
141
|
companyDao.insert(con, ckw);
|
|
142
|
}
|
131
|
143
|
}
|
132
|
144
|
|
133
|
145
|
String substr = companyInfo.getSubject();
|
134
|
|
List<String> subjects = ListUtil.splitTrimExcludeEmpty(substr, ',');
|
135
|
|
int j = 1;
|
136
|
|
for (String sub : subjects) {
|
137
|
|
CompKeyWord ckw = new CompKeyWord();
|
138
|
|
ckw.setId(id);
|
139
|
|
ckw.setType(2);
|
140
|
|
ckw.setNum(j++);
|
141
|
|
ckw.setValue(sub);
|
142
|
|
companyDao.insert(con, ckw);
|
|
146
|
if (substr != null) {
|
|
147
|
List<String> subjects = ListUtil.splitTrimExcludeEmpty(substr, ',');
|
|
148
|
int j = 1;
|
|
149
|
for (String sub : subjects) {
|
|
150
|
CompKeyWord ckw = new CompKeyWord();
|
|
151
|
ckw.setId(id);
|
|
152
|
ckw.setType(2);
|
|
153
|
ckw.setNum(j++);
|
|
154
|
ckw.setValue(sub);
|
|
155
|
companyDao.insert(con, ckw);
|
|
156
|
}
|
143
|
157
|
}
|
144
|
158
|
|
145
|
159
|
String fos = companyInfo.getFieldOfSupplier();
|
146
|
|
List<String> fieldOfSuppliers = ListUtil.splitTrimExcludeEmpty(fos, ',');
|
147
|
|
int m = 1;
|
148
|
|
for (String fieldOfSupplier : fieldOfSuppliers) {
|
149
|
|
CompKeyWord ckw = new CompKeyWord();
|
150
|
|
ckw.setId(id);
|
151
|
|
ckw.setType(3);
|
152
|
|
ckw.setNum(m++);
|
153
|
|
ckw.setValue(fieldOfSupplier);
|
154
|
|
companyDao.insert(con, ckw);
|
|
160
|
if (fos != null) {
|
|
161
|
List<String> fieldOfSuppliers = ListUtil.splitTrimExcludeEmpty(fos, ',');
|
|
162
|
int m = 1;
|
|
163
|
for (String fieldOfSupplier : fieldOfSuppliers) {
|
|
164
|
CompKeyWord ckw = new CompKeyWord();
|
|
165
|
ckw.setId(id);
|
|
166
|
ckw.setType(3);
|
|
167
|
ckw.setNum(m++);
|
|
168
|
ckw.setValue(fieldOfSupplier);
|
|
169
|
companyDao.insert(con, ckw);
|
|
170
|
}
|
155
|
171
|
}
|
156
|
172
|
|
157
|
173
|
String foc = companyInfo.getFieldOfCustomer();
|
158
|
|
List<String> fieldOfCustomers = ListUtil.splitTrimExcludeEmpty(foc, ',');
|
159
|
|
int n = 1;
|
160
|
|
for (String fieldOfCustomer : fieldOfCustomers) {
|
161
|
|
CompKeyWord ckw = new CompKeyWord();
|
162
|
|
ckw.setId(id);
|
163
|
|
ckw.setType(4);
|
164
|
|
ckw.setNum(n++);
|
165
|
|
ckw.setValue(fieldOfCustomer);
|
166
|
|
companyDao.insert(con, ckw);
|
|
174
|
if (foc != null) {
|
|
175
|
List<String> fieldOfCustomers = ListUtil.splitTrimExcludeEmpty(foc, ',');
|
|
176
|
int n = 1;
|
|
177
|
for (String fieldOfCustomer : fieldOfCustomers) {
|
|
178
|
CompKeyWord ckw = new CompKeyWord();
|
|
179
|
ckw.setId(id);
|
|
180
|
ckw.setType(4);
|
|
181
|
ckw.setNum(n++);
|
|
182
|
ckw.setValue(fieldOfCustomer);
|
|
183
|
companyDao.insert(con, ckw);
|
|
184
|
}
|
167
|
185
|
}
|
168
|
186
|
|
169
|
187
|
String qua = companyInfo.getQualification();
|
170
|
|
List<String> qualifications = ListUtil.splitTrimExcludeEmpty(qua, ',');
|
171
|
|
int z = 1;
|
172
|
|
for (String qualification : qualifications) {
|
173
|
|
CompKeyWord ckw = new CompKeyWord();
|
174
|
|
ckw.setId(id);
|
175
|
|
ckw.setType(5);
|
176
|
|
ckw.setNum(z++);
|
177
|
|
ckw.setValue(qualification);
|
178
|
|
companyDao.insert(con, ckw);
|
|
188
|
if(qua!=null) {
|
|
189
|
List<String> qualifications = ListUtil.splitTrimExcludeEmpty(qua, ',');
|
|
190
|
int z = 1;
|
|
191
|
for (String qualification : qualifications) {
|
|
192
|
CompKeyWord ckw = new CompKeyWord();
|
|
193
|
ckw.setId(id);
|
|
194
|
ckw.setType(5);
|
|
195
|
ckw.setNum(z++);
|
|
196
|
ckw.setValue(qualification);
|
|
197
|
companyDao.insert(con, ckw);
|
|
198
|
}
|
179
|
199
|
}
|
180
|
200
|
return companyDao.update(con, companyInfo);
|
181
|
201
|
}
|
|
@ -183,28 +203,28 @@ public class CompanyService {
|
183
|
203
|
@LoginUser
|
184
|
204
|
@Path("/qo")
|
185
|
205
|
@Get
|
186
|
|
public Company query(@JdbcConn Connection con,String id)throws SQLException {
|
|
206
|
public Company query(@JdbcConn Connection con, String id) throws SQLException {
|
187
|
207
|
return companyDao.query(con, id);
|
188
|
208
|
}
|
189
|
209
|
|
190
|
210
|
@LoginUser
|
191
|
211
|
@Path("/qo/keyword")
|
192
|
212
|
@Get
|
193
|
|
public List<CompKeyWord> queryKeyWord(@JdbcConn Connection con, String id, @Nullable Integer type)throws SQLException {
|
194
|
|
return companyDao.queryKeyWord(con, id,type);
|
|
213
|
public List<CompKeyWord> queryKeyWord(@JdbcConn Connection con, String id, @Nullable Integer type) throws SQLException {
|
|
214
|
return companyDao.queryKeyWord(con, id, type);
|
195
|
215
|
}
|
196
|
216
|
|
197
|
217
|
@LoginUser
|
198
|
218
|
@Path("/pq")
|
199
|
219
|
@Get
|
200
|
|
public PageQueryResult<Company> pageQuery(@JdbcConn Connection con,boolean actived,@Nullable String name,int pageSize,int pageNo)throws SQLException {
|
201
|
|
return companyDao.pageQuery(con, actived, name==null?null:"%"+name+"%", pageSize, pageNo);
|
|
220
|
public PageQueryResult<Company> pageQuery(@JdbcConn Connection con, boolean actived, @Nullable String name, int pageSize, int pageNo) throws SQLException {
|
|
221
|
return companyDao.pageQuery(con, actived, name == null ? null : "%" + name + "%", pageSize, pageNo);
|
202
|
222
|
}
|
203
|
223
|
|
204
|
224
|
@LoginUser
|
205
|
225
|
@Path("/name")
|
206
|
226
|
@Get
|
207
|
|
public List<TypeaheadItem> queryName(@JdbcConn Connection con,String name,int size)throws SQLException {
|
|
227
|
public List<TypeaheadItem> queryName(@JdbcConn Connection con, String name, int size) throws SQLException {
|
208
|
228
|
if (name != null) {
|
209
|
229
|
name = "%" + name + "%";
|
210
|
230
|
}
|
|
@ -227,18 +247,22 @@ public class CompanyService {
|
227
|
247
|
}
|
228
|
248
|
|
229
|
249
|
|
230
|
|
public static class TypeaheadItem{
|
|
250
|
public static class TypeaheadItem {
|
231
|
251
|
private String id;
|
232
|
252
|
private String name;
|
|
253
|
|
233
|
254
|
public String getId() {
|
234
|
255
|
return id;
|
235
|
256
|
}
|
|
257
|
|
236
|
258
|
public void setId(String id) {
|
237
|
259
|
this.id = id;
|
238
|
260
|
}
|
|
261
|
|
239
|
262
|
public String getName() {
|
240
|
263
|
return name;
|
241
|
264
|
}
|
|
265
|
|
242
|
266
|
public void setName(String name) {
|
243
|
267
|
this.name = name;
|
244
|
268
|
}
|