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
7f654c5f
Commit
7f654c5f
authored
May 23, 2024
by
liuyang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://git.pseer.com:8800/platform/hg-smart
into dev-ly
parents
7e930d83
41f58779
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
7 deletions
+42
-7
HGPZ005.xml
src/main/java/com/baosight/hggp/hg/pz/sql/HGPZ005.xml
+2
-2
HGSCTools.java
src/main/java/com/baosight/hggp/hg/sc/tools/HGSCTools.java
+1
-0
HGSC004A.js
src/main/webapp/HG/SC/HGSC004A.js
+39
-5
No files found.
src/main/java/com/baosight/hggp/hg/pz/sql/HGPZ005.xml
View file @
7f654c5f
...
@@ -359,8 +359,8 @@
...
@@ -359,8 +359,8 @@
<isNotEmpty
prepend=
" AND "
property=
"parInventType"
>
<isNotEmpty
prepend=
" AND "
property=
"parInventType"
>
b.PAR_INVENT_TYPE = #parInventType#
b.PAR_INVENT_TYPE = #parInventType#
</isNotEmpty>
</isNotEmpty>
<isNotEmpty
prepend=
" AND "
property=
"invent
Name
"
>
<isNotEmpty
prepend=
" AND "
property=
"invent
TypeDetail
"
>
a.INVENT_NAME = #inventName
#
b.INVENT_TYPE_DETAIL = #inventTypeDetail
#
</isNotEmpty>
</isNotEmpty>
ORDER BY INVENT_CODE
ORDER BY INVENT_CODE
</select>
</select>
...
...
src/main/java/com/baosight/hggp/hg/sc/tools/HGSCTools.java
View file @
7f654c5f
...
@@ -488,6 +488,7 @@ public class HGSCTools {
...
@@ -488,6 +488,7 @@ public class HGSCTools {
hgsc006a
.
setTechFlowName
(
o
.
getTechFlowName
());
hgsc006a
.
setTechFlowName
(
o
.
getTechFlowName
());
hgsc006a
.
setProcessCode
(
o
.
getProcessCode
());
hgsc006a
.
setProcessCode
(
o
.
getProcessCode
());
hgsc006a
.
setProcessName
(
o
.
getProcessName
());
hgsc006a
.
setProcessName
(
o
.
getProcessName
());
hgsc006a
.
setProcessOrder
(
o
.
getProcessOrder
());
hgsc006a
.
setProductType
(
o
.
getProductType
());
hgsc006a
.
setProductType
(
o
.
getProductType
());
hgsc006a
.
setProductCode
(
o
.
getProductCode
());
hgsc006a
.
setProductCode
(
o
.
getProductCode
());
hgsc006a
.
setProductName
(
o
.
getProductName
());
hgsc006a
.
setProductName
(
o
.
getProductName
());
...
...
src/main/webapp/HG/SC/HGSC004A.js
View file @
7f654c5f
let
projCode
=
''
;
let
projCode
=
''
;
var
companyCode
=
''
;
var
companyCode
=
''
;
var
rowNum
=
0
;
$
(
function
()
{
$
(
function
()
{
var
productCodeBox
=
__eiInfo
.
getBlock
(
"product_block_id"
).
getMappedRows
();
var
productCodeBox
=
__eiInfo
.
getBlock
(
"product_block_id"
).
getMappedRows
();
...
@@ -61,8 +62,17 @@ $(function () {
...
@@ -61,8 +62,17 @@ $(function () {
let
eiInfo
=
new
EiInfo
();
let
eiInfo
=
new
EiInfo
();
if
(
nodeData
.
lv
==
2
)
{
if
(
nodeData
.
lv
==
2
)
{
eiInfo
.
set
(
"inqu_status-0-parInventType"
,
"root"
);
eiInfo
.
set
(
"inqu_status-0-parInventType"
,
"root"
);
//3级节点选择只能是构建
eiInfo
.
set
(
"inqu_status-0-inventTypeDetail"
,
"1"
);
}
else
if
(
nodeData
.
lv
==
3
)
{
}
else
if
(
nodeData
.
lv
==
3
)
{
eiInfo
.
set
(
"inqu_status-0-parInventType"
,
nodeData
.
inventType
);
//4级节点选择只能是构建
eiInfo
.
set
(
"inqu_status-0-inventTypeDetail"
,
"2"
);
// inInfo.set("inqu_status-0-parInventType", nodeData.inventType);
}
else
if
(
nodeData
.
lv
==
4
)
{
//上方刷新过树结构了
//4级节点选择只能是构建
eiInfo
.
set
(
"inqu_status-0-inventTypeDetail"
,
"2"
);
// inInfo.set("inqu_status-0-parInventType", nodeData.inventType);
}
}
var
dataSource
;
var
dataSource
;
EiCommunicator
.
send
(
"HGSC004A"
,
"queryProductComboBox"
,
eiInfo
,
{
EiCommunicator
.
send
(
"HGSC004A"
,
"queryProductComboBox"
,
eiInfo
,
{
...
@@ -116,7 +126,8 @@ $(function () {
...
@@ -116,7 +126,8 @@ $(function () {
}
}
return
template
;
return
template
;
}
}
},
{
},
{
field
:
"productCode"
,
field
:
"productCode"
,
template
:
function
(
item
)
{
template
:
function
(
item
)
{
let
template
=
""
;
let
template
=
""
;
...
@@ -128,6 +139,8 @@ $(function () {
...
@@ -128,6 +139,8 @@ $(function () {
item
[
'inventType'
]
=
productCodeBox
[
i
][
'param2Field'
];
item
[
'inventType'
]
=
productCodeBox
[
i
][
'param2Field'
];
console
.
log
(
item
)
console
.
log
(
item
)
template
=
productCodeBox
[
i
][
'valueField'
];
template
=
productCodeBox
[
i
][
'valueField'
];
}
else
{
template
=
item
.
productCode
;
}
}
}
}
}
}
...
@@ -139,11 +152,17 @@ $(function () {
...
@@ -139,11 +152,17 @@ $(function () {
var
nodeData
=
IPLATUI
.
EFTree
.
materialTree
.
selectTreeNode
;
var
nodeData
=
IPLATUI
.
EFTree
.
materialTree
.
selectTreeNode
;
if
(
nodeData
.
lv
==
2
)
{
if
(
nodeData
.
lv
==
2
)
{
inInfo
.
set
(
"inqu_status-0-parInventType"
,
"root"
);
inInfo
.
set
(
"inqu_status-0-parInventType"
,
"root"
);
//3级节点选择只能是构建
inInfo
.
set
(
"inqu_status-0-inventTypeDetail"
,
"1"
);
}
else
if
(
nodeData
.
lv
==
3
)
{
}
else
if
(
nodeData
.
lv
==
3
)
{
inInfo
.
set
(
"inqu_status-0-parInventType"
,
nodeData
.
inventType
);
//4级节点选择只能是构建
inInfo
.
set
(
"inqu_status-0-inventTypeDetail"
,
"2"
);
// inInfo.set("inqu_status-0-parInventType", nodeData.inventType);
}
else
if
(
nodeData
.
lv
==
4
)
{
}
else
if
(
nodeData
.
lv
==
4
)
{
//上方刷新过树结构了
//上方刷新过树结构了
inInfo
.
set
(
"inqu_status-0-parInventType"
,
nodeData
.
inventType
);
//4级节点选择只能是构建
inInfo
.
set
(
"inqu_status-0-inventTypeDetail"
,
"2"
);
// inInfo.set("inqu_status-0-parInventType", nodeData.inventType);
}
}
inInfo
.
set
(
"field"
,
options
.
field
);
inInfo
.
set
(
"field"
,
options
.
field
);
let
dataSource
=
inventNameGlobalData
;
let
dataSource
=
inventNameGlobalData
;
...
@@ -181,9 +200,24 @@ $(function () {
...
@@ -181,9 +200,24 @@ $(function () {
title
:
'提示'
title
:
'提示'
});
});
}
else
{
}
else
{
console
.
log
(
grid
.
getCheckedBlockData
()
.
rows
[
0
][
10
]
);
console
.
log
(
grid
.
getCheckedBlockData
());
}
}
});
});
//给变更类型的颜色处理
let
rows
=
grid
.
eiBlock
.
rows
;
for
(
let
i
=
0
;
i
<
rows
.
length
;
i
++
)
{
var
tdId
=
"datacell_"
+
i
+
"_8"
;
if
(
rows
[
i
][
19
]
===
"1"
)
{
//新增
document
.
getElementById
(
tdId
).
style
.
backgroundColor
=
"green"
;
}
else
if
(
rows
[
i
][
19
]
===
"2"
){
//替换
document
.
getElementById
(
tdId
).
style
.
backgroundColor
=
"yellow"
;
}
else
if
(
rows
[
i
][
19
]
===
"3"
){
//删除
document
.
getElementById
(
tdId
).
style
.
backgroundColor
=
"red"
;
}
}
// 此 grid 对象
// 此 grid 对象
// 处理父子级联动,通过监听 change 事件,判断父级节点是否发生变化
// 处理父子级联动,通过监听 change 事件,判断父级节点是否发生变化
...
...
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