Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1-office-web-sit
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴迪
gs1-office-web-sit
Commits
387cef02
Commit
387cef02
authored
Mar 27, 2022
by
吴迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【新增】修改文件
parent
80e80716
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
118 additions
and
0 deletions
+118
-0
GTINController.java
...a/io/office/modules/manage/controller/GTINController.java
+118
-0
No files found.
src/main/java/io/office/modules/manage/controller/GTINController.java
0 → 100644
View file @
387cef02
package
io
.
office
.
modules
.
manage
.
controller
;
import
cn.hutool.json.JSONUtil
;
import
io.office.common.utils.IPUtils
;
import
io.office.common.utils.R
;
import
io.office.modules.app.annotation.Login
;
import
io.office.modules.manage.entity.SearchgtinlogEntity
;
import
io.office.modules.manage.service.FirmService
;
import
io.office.modules.manage.service.SearchgtinlogService
;
import
io.office.modules.manage.utils.GLNSearchUtils
;
import
io.office.modules.manage.utils.SearchLimitUtil
;
import
io.office.modules.manage.vo.request.GLNRequestBo
;
import
io.office.modules.sys.service.SysCaptchaService
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.IOException
;
import
java.io.PrintWriter
;
import
java.util.Date
;
/**
* @description:
*
* @author wudi
* @date 14:11 2022/3/27
*/
@Controller
@RequestMapping
(
"/gTinSearch"
)
public
class
GTINController
{
@Autowired
private
SysCaptchaService
sysCaptchaService
;
@Autowired
private
SearchgtinlogService
searchgtinlogService
;
@Autowired
private
FirmService
firmService
;
@Autowired
private
SearchLimitUtil
searchLimitUtil
;
@Login
@PostMapping
(
"/api/gtin"
)
public
void
uploadFile
(
@RequestBody
GLNRequestBo
glnRequestBo
,
HttpServletRequest
request
,
HttpServletResponse
response
)
{
PrintWriter
printWriter
=
null
;
try
{
response
.
setCharacterEncoding
(
"utf-8"
);
response
.
setHeader
(
"contentType"
,
"text/html; charset=utf-8"
);
printWriter
=
response
.
getWriter
();
String
typeKey
=
""
;
boolean
captcha
=
sysCaptchaService
.
validate
(
glnRequestBo
.
getUuid
(),
glnRequestBo
.
getCaptcha
());
if
(!
captcha
)
{
R
r
=
new
R
();
r
.
put
(
"code"
,
"500"
);
r
.
put
(
"msg"
,
"验证码不正确!"
);
printWriter
.
write
(
JSONUtil
.
toJsonStr
(
r
));
return
;
}
SearchgtinlogEntity
searchgtinlogEntity
=
new
SearchgtinlogEntity
();
searchgtinlogEntity
.
setCreatedate
(
new
Date
());
searchgtinlogEntity
.
setIp
(
IPUtils
.
getIpAddr
(
request
));
if
(
glnRequestBo
.
getCode
().
length
()
<
12
)
{
R
r
=
new
R
();
r
.
put
(
"code"
,
"500"
);
r
.
put
(
"msg"
,
"GTIN不能少于12位!"
);
printWriter
.
write
(
JSONUtil
.
toJsonStr
(
r
));
return
;
}
if
(
glnRequestBo
.
getCode
().
length
()
==
12
)
{
glnRequestBo
.
setCode
(
"00"
+
glnRequestBo
.
getCode
());
}
if
(
glnRequestBo
.
getCode
().
length
()
==
13
)
{
glnRequestBo
.
setCode
(
"0"
+
glnRequestBo
.
getCode
());
}
searchgtinlogEntity
.
setClassStr
(
"境外条码查询:厂商信息查询"
);
typeKey
=
"境外条码查询:厂商信息查询"
;
//校验是否开启
String
searchLimitStr
=
searchLimitUtil
.
checkSearchLimit
(
request
,
typeKey
);
if
(
StringUtils
.
isNotBlank
(
searchLimitStr
))
{
R
r
=
new
R
();
r
.
put
(
"code"
,
"500"
);
r
.
put
(
"msg"
,
searchLimitStr
);
printWriter
.
write
(
JSONUtil
.
toJsonStr
(
r
));
return
;
}
searchgtinlogEntity
.
setKeyword
(
glnRequestBo
.
getCode
());
searchgtinlogEntity
.
setSearchsource
(
0
);
//新增查询日志
searchgtinlogService
.
save
(
searchgtinlogEntity
);
R
r
=
new
R
();
r
.
put
(
"code"
,
"0"
);
r
.
put
(
"msg"
,
""
);
printWriter
.
write
(
JSONUtil
.
toJsonStr
(
r
));
return
;
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
finally
{
printWriter
.
flush
();;
printWriter
.
close
();
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment