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
f66a40fb
Commit
f66a40fb
authored
Jul 18, 2024
by
wuwenlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
签证单可以选劳务合同
parent
49930265
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
ServiceHGCW002.java
.../java/com/baosight/hggp/hg/cw/service/ServiceHGCW002.java
+6
-6
HGCW004.js
src/main/webapp/HG/CW/HGCW004.js
+1
-1
No files found.
src/main/java/com/baosight/hggp/hg/cw/service/ServiceHGCW002.java
View file @
f66a40fb
...
...
@@ -239,14 +239,14 @@ public class ServiceHGCW002 extends ServiceBase {
public
EiInfo
projectComboBox
(
EiInfo
inInfo
){
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
List
<
String
>
contractTypArray
=
new
ArrayList
<>();
if
(
StringUtils
.
isNotEmpty
(
inInfo
.
getString
(
"reviewStatus"
)))
{
map
.
put
(
"reviewStatus"
,
inInfo
.
get
String
(
"reviewStatus"
));
if
(
Objects
.
nonNull
(
inInfo
.
getAttr
().
get
(
"reviewStatus"
)))
{
map
.
put
(
"reviewStatus"
,
inInfo
.
get
Attr
().
get
(
"reviewStatus"
));
}
if
(
StringUtils
.
isNotEmpty
(
inInfo
.
getString
(
"contractType"
)))
{
map
.
put
(
"contractType"
,
inInfo
.
get
String
(
"contractType"
));
if
(
Objects
.
nonNull
(
inInfo
.
getAttr
().
get
(
"contractType"
)))
{
map
.
put
(
"contractType"
,
inInfo
.
get
Attr
().
get
(
"contractType"
));
}
if
(
StringUtils
.
isNotEmpty
(
inInfo
.
getString
(
"contractTyp
s"
)))
{
String
[]
contractTyps
=
inInfo
.
get
String
(
"contractTyps"
).
split
(
","
);
if
(
Objects
.
nonNull
(
inInfo
.
getAttr
().
get
(
"contractType
s"
)))
{
String
[]
contractTyps
=
inInfo
.
get
Attr
().
get
(
"contractTypes"
).
toString
(
).
split
(
","
);
for
(
String
c
:
contractTyps
)
{
contractTypArray
.
add
(
c
);
}
...
...
src/main/webapp/HG/CW/HGCW004.js
View file @
f66a40fb
...
...
@@ -37,7 +37,7 @@ $(function() {
query
:
function
(
container
,
params
)
{
var
queryInfo
=
new
EiInfo
();
// info.set("reviewStatus","3")
queryInfo
.
set
(
"contractType
"
,
"1
"
)
queryInfo
.
set
(
"contractType
s"
,
"1,2
"
)
return
queryInfo
;
},
init
:
function
(
e
,
options
)
{
...
...
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