Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xnr-interface
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
heli_wms
xnr-interface
Commits
a7038cc8
Commit
a7038cc8
authored
Dec 02, 2019
by
tank.li@mushiny.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
拣货任务完善,出库单与系统绑定 完成后反馈
parent
d558f9ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
ICQAService.java
src/main/java/com/mushiny/heli/xnr/service/ICQAService.java
+3
-1
InboundService.java
...ain/java/com/mushiny/heli/xnr/service/InboundService.java
+3
-1
No files found.
src/main/java/com/mushiny/heli/xnr/service/ICQAService.java
View file @
a7038cc8
...
...
@@ -193,10 +193,12 @@ public class ICQAService {
stringBuilder
.
append
(
Sql_Table
.
SQL_QUERY_ICQA
);
List
params
=
new
ArrayList
();
if
(!
CommonUtils
.
isEmpty
(
taskId
))
{
stringBuilder
.
append
(
" AND TASKID
=
? "
);
stringBuilder
.
append
(
" AND TASKID
like
? "
);
params
.
add
(
taskId
);
}
stringBuilder
.
append
(
" ORDER BY CREATED_DATE DESC"
);
List
<
Map
>
rows
=
this
.
jdbcRepository
.
queryBySql
(
stringBuilder
.
toString
(),
params
);
data
.
put
(
"tasks"
,
rows
);
...
...
src/main/java/com/mushiny/heli/xnr/service/InboundService.java
View file @
a7038cc8
...
...
@@ -48,6 +48,7 @@ public class InboundService {
sql
.
append
(
Sql_Table
.
SQL_SEARCHINBOUND_SECTION
);
params
.
add
(
warehouseId
);
}
sql
.
append
(
" ORDER BY CREATED_DATE DESC"
);
return
this
.
jdbcRepository
.
queryBySql
(
sql
.
toString
(),
params
);
}
...
...
@@ -128,6 +129,7 @@ public class InboundService {
Integer
amount
=
CommonUtils
.
parseInteger
(
"AMOUNT"
,
inv
);
Map
newValue
=
new
HashMap
();
newValue
.
put
(
"AMOUNT"
,
amount
+
stored
);
//增加的库存数
CommonUtils
.
modifyUselessInfo
(
newValue
);
Map
con
=
new
HashMap
();
con
.
put
(
"ITEMDATA_ID"
,
mID
);
...
...
@@ -267,7 +269,7 @@ public class InboundService {
baseBpo
.
addKV
(
"POD_ID"
,
storageLocation
.
getPodId
());
baseBpo
.
addKV
(
"SKUID"
,
skuId
);
baseBpo
.
addKV
(
"POD_FACE"
,
storageLocation
.
getPodFace
());
baseBpo
.
addKV
(
"STORAGENAME"
,
storageLocation
.
get
Locat
e
());
baseBpo
.
addKV
(
"STORAGENAME"
,
storageLocation
.
get
StorageNam
e
());
baseBpo
.
addKV
(
"POD_LOCATE"
,
storageLocation
.
getLocate
());
baseBpo
.
addKV
(
"WORKSTATION_ID"
,
stationName
);
baseBpo
.
addKV
(
"PODINDEX"
,
storageLocation
.
getPodIndex
());
...
...
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