Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-smart
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
platform
hg-smart
Commits
5cfe7691
Commit
5cfe7691
authored
Jun 11, 2024
by
江和松
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
生产入库逻辑功能提交,bug修改
parent
d717cbb1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
15 deletions
+44
-15
ServiceHGKC003.java
.../java/com/baosight/hggp/hg/kc/service/ServiceHGKC003.java
+1
-0
HGKC003.js
src/main/webapp/HG/KC/HGKC003.js
+43
-15
No files found.
src/main/java/com/baosight/hggp/hg/kc/service/ServiceHGKC003.java
View file @
5cfe7691
...
@@ -143,6 +143,7 @@ public class ServiceHGKC003 extends ServiceBase {
...
@@ -143,6 +143,7 @@ public class ServiceHGKC003 extends ServiceBase {
Map
<?,
?>
map
=
eiBlock
.
getRow
(
i
);
Map
<?,
?>
map
=
eiBlock
.
getRow
(
i
);
hgkc003
.
fromMap
(
map
);
hgkc003
.
fromMap
(
map
);
hgkc003
=
HGKCTools
.
HgKc003
.
getId
(
hgkc003
.
getId
());
hgkc003
=
HGKCTools
.
HgKc003
.
getId
(
hgkc003
.
getId
());
hgkc003
.
setSubmitStatus
(
HGConstant
.
ProductStatus
.
YTJ
);
// 校验数据
// 校验数据
this
.
checkSubmitData
(
hgkc003
);
this
.
checkSubmitData
(
hgkc003
);
...
...
src/main/webapp/HG/KC/HGKC003.js
View file @
5cfe7691
...
@@ -17,7 +17,7 @@ $(function () {
...
@@ -17,7 +17,7 @@ $(function () {
if
(
item
.
id
){
if
(
item
.
id
){
if
(
status
==
0
)
{
if
(
status
==
0
)
{
template
+=
'<a style="cursor: pointer;display: inline-flex;justify-content: center;margin:auto 5px" '
template
+=
'<a style="cursor: pointer;display: inline-flex;justify-content: center;margin:auto 5px" '
+
'onclick="updateSubmitStatus('
+
item
.
id
+
'
,1
)" >提交</a>'
;
+
'onclick="updateSubmitStatus('
+
item
.
id
+
')" >提交</a>'
;
template
+=
'<a style="cursor: pointer;display: inline-flex;justify-content: center;margin:auto 5px" '
template
+=
'<a style="cursor: pointer;display: inline-flex;justify-content: center;margin:auto 5px" '
+
'onclick="sendBack('
+
item
.
id
+
')" >退回</a>'
;
+
'onclick="sendBack('
+
item
.
id
+
')" >退回</a>'
;
}
}
...
@@ -132,22 +132,36 @@ function showDetail(id) {
...
@@ -132,22 +132,36 @@ function showDetail(id) {
* @param id
* @param id
* @param status
* @param status
*/
*/
function
updateSubmitStatus
(
id
,
status
)
{
function
updateSubmitStatus
(
id
)
{
let
inEiInfo
=
new
EiInfo
();
let
inEiInfo
=
new
EiInfo
();
inEiInfo
.
set
(
"result-0-id"
,
id
);
inEiInfo
.
set
(
"result-0-id"
,
id
);
inEiInfo
.
set
(
"result-0-submitStatus"
,
status
);
JSUtils
.
confirm
(
"确定提交此生产入库单吗? "
,
{
ok
:
function
()
{
EiCommunicator
.
send
(
'HGKC003'
,
'updateSubmitStatus'
,
inEiInfo
,
{
EiCommunicator
.
send
(
'HGKC003'
,
'updateSubmitStatus'
,
inEiInfo
,
{
onSuccess
(
response
)
{
onSuccess
:
function
(
ei
)
{
NotificationUtil
(
response
.
msg
);
if
(
ei
.
getStatus
()
>=
0
)
{
try
{
query
();
query
();
}
catch
(
e
)
{
}
if
(
ei
.
getStatus
()
==
0
)
{
NotificationUtil
(
ei
,
'warning'
);
}
else
{
NotificationUtil
(
ei
);
}
}
else
{
NotificationUtil
(
ei
,
"error"
);
}
},
},
onFail
(
errorMessage
,
status
,
e
)
{
onFail
:
function
(
ei
)
{
NotificationUtil
(
"执行失败!"
,
"error"
);
// 发生异常
NotificationUtil
(
"操作失败,原因["
+
ei
+
"]"
,
"error"
);
}
}
},
{
async
:
false
}
}
);
);
}
});
}
}
/**
/**
...
@@ -197,16 +211,30 @@ let save = function () {
...
@@ -197,16 +211,30 @@ let save = function () {
function
sendBack
(
id
)
{
function
sendBack
(
id
)
{
let
inEiInfo
=
new
EiInfo
();
let
inEiInfo
=
new
EiInfo
();
inEiInfo
.
set
(
"result-0-id"
,
id
);
inEiInfo
.
set
(
"result-0-id"
,
id
);
JSUtils
.
confirm
(
"确定对此生产入库单进行退回操作吗? "
,
{
ok
:
function
()
{
EiCommunicator
.
send
(
'HGKC003'
,
'sendBack'
,
inEiInfo
,
{
EiCommunicator
.
send
(
'HGKC003'
,
'sendBack'
,
inEiInfo
,
{
onSuccess
(
response
)
{
onSuccess
:
function
(
ei
)
{
NotificationUtil
(
response
.
msg
);
if
(
ei
.
getStatus
()
>=
0
)
{
try
{
query
();
query
();
}
catch
(
e
)
{
}
if
(
ei
.
getStatus
()
==
0
)
{
NotificationUtil
(
ei
,
'warning'
);
}
else
{
NotificationUtil
(
ei
);
}
}
else
{
NotificationUtil
(
ei
,
"error"
);
}
},
},
onFail
(
errorMessage
,
status
,
e
)
{
onFail
:
function
(
ei
)
{
NotificationUtil
(
"执行失败!"
,
"error"
);
// 发生异常
NotificationUtil
(
"操作失败,原因["
+
ei
+
"]"
,
"error"
);
}
}
},
{
async
:
false
}
}
);
);
}
});
}
}
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