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
9309eafc
Commit
9309eafc
authored
Dec 03, 2019
by
tank.li@mushiny.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
拣货任务完善,出库单与系统绑定 完成后反馈
parent
50933994
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
CommonUtils.java
src/main/java/com/mushiny/heli/xnr/comm/CommonUtils.java
+1
-1
InboundService.java
...ain/java/com/mushiny/heli/xnr/service/InboundService.java
+1
-1
Sql_Table.java
src/main/java/com/mushiny/heli/xnr/service/Sql_Table.java
+1
-1
WMSRespService.java
...ain/java/com/mushiny/heli/xnr/service/WMSRespService.java
+1
-1
No files found.
src/main/java/com/mushiny/heli/xnr/comm/CommonUtils.java
View file @
9309eafc
...
...
@@ -240,7 +240,7 @@ public class CommonUtils {
public
static
void
modifyUselessInfo
(
Map
record
)
{
record
.
put
(
"MODIFIED_BY"
,
"SYSTEM"
);
Date
date
=
DateUtils
.
asDate
(
LocalDateTime
.
now
());
record
.
put
(
"MODIFIED_DATE"
,
new
Timestamp
(
date
.
getTime
()));
record
.
put
(
"MODIFIED_DATE"
,
new
Timestamp
(
System
.
currentTimeMillis
()));
}
public
static
Long
parseLong
(
String
key
,
Map
data
)
{
...
...
src/main/java/com/mushiny/heli/xnr/service/InboundService.java
View file @
9309eafc
...
...
@@ -183,7 +183,7 @@ public class InboundService {
Map
newValue
=
new
HashMap
();
newValue
.
put
(
"STATE"
,
state
);
newValue
.
put
(
"MSG"
,
msg
);
newValue
.
put
(
"STORED"
,
stored
);
newValue
.
put
(
"
ITEM_
STORED"
,
stored
);
CommonUtils
.
modifyUselessInfo
(
newValue
);
Map
con
=
new
HashMap
();
...
...
src/main/java/com/mushiny/heli/xnr/service/Sql_Table.java
View file @
9309eafc
...
...
@@ -124,7 +124,7 @@ public interface Sql_Table {
String
SQL_SEARCHINBOUND_FACTORY
=
" AND WAREHOUSE_ID=? "
;
String
SQL_SEARCHINBOUND_SECTION
=
" AND SECTION_ID=? "
;
String
SQL_SEARCHINBOUNDINFO
=
"SELECT SKUID,AMOUNT,IFNULL(STORED,0) AS STORED,STATE FROM WMS_INBOUND_ORDERPOSITION WHERE ENTRYID = ?"
;
"SELECT SKUID,AMOUNT,IFNULL(
ITEM_
STORED,0) AS STORED,STATE FROM WMS_INBOUND_ORDERPOSITION WHERE ENTRYID = ?"
;
String
SQL_SEARCHINBOUND_ENTRYID
=
" AND ENTRYID like ? "
;
String
SQL_SEARCHINBOUND
=
"SELECT ENTRYID,STATE,DATE_FORMAT(CREATED_DATE,'%Y-%m-%d %H:%i:%s') as CREATED_DATE"
+
...
...
src/main/java/com/mushiny/heli/xnr/service/WMSRespService.java
View file @
9309eafc
...
...
@@ -240,7 +240,7 @@ public class WMSRespService {
inboundOrderPosition
.
setAMOUNT
(
CommonUtils
.
parseInteger
(
"AMOUNT"
,
map
));
inboundOrderPosition
.
setMSG
(
CommonUtils
.
parseString
(
"MSG"
,
map
));
inboundOrderPosition
.
setSTATE
(
CommonUtils
.
parseString
(
"STATE"
,
map
));
inboundOrderPosition
.
setSTORED
(
CommonUtils
.
parseInteger
(
"STORED"
,
map
));
inboundOrderPosition
.
setSTORED
(
CommonUtils
.
parseInteger
(
"
ITEM_
STORED"
,
map
));
inboundOrderDTO
.
getDATA
().
add
(
inboundOrderPosition
);
}
...
...
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