Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
smart-rack-base
Project
Project
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
耿迪迪
smart-rack-base
Commits
67c98210
Commit
67c98210
authored
Oct 15, 2025
by
wanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 客户返回 数据 参数 大小写调整。
parent
a23e0b09
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
ITShelfApiServiceImpl.java
...hong/system/service/impl/shelf/ITShelfApiServiceImpl.java
+8
-8
No files found.
smart-rack-base-system/src/main/java/com/zehong/system/service/impl/shelf/ITShelfApiServiceImpl.java
View file @
67c98210
...
...
@@ -105,18 +105,18 @@ public class ITShelfApiServiceImpl implements ITShelfApiService{
log
.
info
(
"receiveFeedBackInfo...param=========="
+
request
.
toJSONString
());
try
{
JSONObject
result
=
new
JSONObject
();
TShelfInfo
shelfInfo
=
shelfInfoMapper
.
selectTShelfInfoByShelf
(
request
.
getString
(
"
SHELF
"
));
request
.
put
(
"
SHELFID
"
,
shelfInfo
.
getfShelfId
());
TShelfInfo
shelfInfo
=
shelfInfoMapper
.
selectTShelfInfoByShelf
(
request
.
getString
(
"
shelf
"
));
request
.
put
(
"
shelfId
"
,
shelfInfo
.
getfShelfId
());
//更新位置状态
TShelfStorageLocation
tShelfStorageLocation
=
new
TShelfStorageLocation
();
tShelfStorageLocation
.
setLocation
(
request
.
getString
(
"
LOCATION
"
));
tShelfStorageLocation
.
setLocation
(
request
.
getString
(
"
location
"
));
tShelfStorageLocation
.
setShelfId
(
shelfInfo
.
getfShelfId
());
if
(
"I"
.
equals
(
request
.
getString
(
"
OPTYPE
"
))){
tShelfStorageLocation
.
setInboundTime
(
new
SimpleDateFormat
(
"yyyy
-MM-dd HH:mm:ss"
).
parse
(
request
.
getString
(
"OPERATEDATE
"
)));
tShelfStorageLocation
.
setRid
(
request
.
getString
(
"
RID
"
));
if
(
"I"
.
equals
(
request
.
getString
(
"
optype
"
))){
tShelfStorageLocation
.
setInboundTime
(
new
SimpleDateFormat
(
"yyyy
/MM/dd HH:mm:ss"
).
parse
(
request
.
getString
(
"operateDate
"
)));
tShelfStorageLocation
.
setRid
(
request
.
getString
(
"
rid
"
));
}
if
(
"O"
.
equals
(
request
.
getString
(
"
OPTYPE
"
))){
tShelfStorageLocation
.
setOutboundTime
(
new
SimpleDateFormat
(
"yyyy
-MM-dd HH:mm:ss"
).
parse
(
request
.
getString
(
"OPERATEDATE
"
)));
if
(
"O"
.
equals
(
request
.
getString
(
"
optype
"
))){
tShelfStorageLocation
.
setOutboundTime
(
new
SimpleDateFormat
(
"yyyy
/MM/dd HH:mm:ss"
).
parse
(
request
.
getString
(
"operateDate
"
)));
}
shelfStorageLocationMapper
.
updateTShelfStorageLocationByLocationAndShelfId
(
tShelfStorageLocation
);
result
.
put
(
"FLAG"
,
"0"
);
...
...
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