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
88101e12
Commit
88101e12
authored
Aug 08, 2024
by
江和松
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
存货档案批量关联工艺流程
parent
caceecc1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
20 deletions
+40
-20
HGPZ005.js
src/main/webapp/HG/PZ/HGPZ005.js
+40
-20
No files found.
src/main/webapp/HG/PZ/HGPZ005.js
View file @
88101e12
...
@@ -6,7 +6,7 @@ $(function() {
...
@@ -6,7 +6,7 @@ $(function() {
$
(
"#QUERY"
).
on
(
"click"
,
query
);
$
(
"#QUERY"
).
on
(
"click"
,
query
);
$
(
"#BATCH_FLOW"
).
on
(
"click"
,
function
()
{
$
(
"#BATCH_FLOW"
).
on
(
"click"
,
function
()
{
showFlowDetail
();
batchFlow
();
});
});
IPLATUI
.
EFGrid
.
result
=
{
IPLATUI
.
EFGrid
.
result
=
{
...
@@ -281,25 +281,45 @@ function showFlowDetail(id,inventCode,flowId) {
...
@@ -281,25 +281,45 @@ function showFlowDetail(id,inventCode,flowId) {
});
});
}
}
// function showFlowDetail() {
function
batchFlow
()
{
// let rows = resultGrid.getCheckedRows();
let
rows
=
resultGrid
.
getCheckedRows
();
// let selectIds = [];
let
selectIds
=
[];
// //selectIds.push(rows[i]['id']);
if
(
rows
.
length
<
1
)
{
// if (rows.length < 1) {
message
(
"请选择数据"
)
// message("请选择数据")
return
;
// return;
}
// }
let
inventType
;
// $.each(rows, function(index, item) {
let
flag
=
true
;
// selectIds.push(item.get("id"));
$
.
each
(
rows
,
function
(
index
,
item
)
{
// });
selectIds
.
push
(
item
.
get
(
"id"
));
// JSColorbox.open({
//不存在就直接赋值
// href: "HGPZ005B?methodName=initLoad&inqu_status-0-parentIds=" + selectIds,
if
(
!
inventType
){
// title: "<div style='text-align: center;'>工艺流程</div>",
inventType
=
item
.
get
(
"inventType"
)
// width: "75%",
}
else
{
// height: "80%",
//存在就与当前类型对比
// callbackName: cllback2
if
(
inventType
!=
item
.
get
(
"inventType"
)){
// });
message
(
"只能选择同一个类型存货"
)
// }
flag
=
false
;
return
false
;
}
}
if
(
item
.
get
(
"flowId"
)
>
0
){
message
(
"只能选择未分配的存货"
)
flag
=
false
;
return
false
;
}
});
if
(
flag
){
JSColorbox
.
open
({
href
:
"HGPZ005B?methodName=initLoad&inqu_status-0-parentIds="
+
selectIds
,
title
:
"<div style='text-align: center;'>工艺流程</div>"
,
width
:
"75%"
,
height
:
"80%"
,
callbackName
:
cllback2
});
}
}
/**
/**
* 回调
* 回调
...
...
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