Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
K
kwell-mes
Project
Project
Details
Activity
Releases
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
gavelinfo
kwell-mes
Commits
224e8594
Commit
224e8594
authored
Mar 28, 2022
by
李苏
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.gavelinfo.com:gavelinfo/kwell-mes
parents
5fe56f5d
6775cc9d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
64 deletions
+62
-64
GpfkDaoImpl.java
...l/src/main/java/com/gavel/kwell/dao/impl/GpfkDaoImpl.java
+16
-16
GpfkServiceImpl.java
...in/java/com/gavel/kwell/service/impl/GpfkServiceImpl.java
+43
-43
module.xml
gavel/src/main/resources/module.xml
+3
-5
No files found.
gavel/src/main/java/com/gavel/kwell/dao/impl/GpfkDaoImpl.java
View file @
224e8594
...
...
@@ -900,9 +900,9 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
return
sqlMap
.
getRecordSet
();
}
@Override
public
GpfkVO
queryDailyFkInfo
(
GpfkCondition
condition
){
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1084,7 +1084,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
return
sqlMap
.
queryEntity
(
GpfkVO
.
class
);
}
@Override
public
WosngzVO
queryKwellWoBySnid
(
String
snid
){
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1174,7 +1174,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
}
return
sqlMap
.
queryEntity
(
GylxVO
.
class
);
}
@Override
public
FkVO
queryKwellGpfkByWosnAndGxid
(
FkCondition
condition
){
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1251,7 +1251,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
setParamValue
(
" pBZGXID "
,
bzgx
);
return
sqlMap
.
queryEntity
(
FkVO
.
class
);
}
...
...
@@ -1287,7 +1287,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
}
return
sqlMap
.
queryDouble
();
}
@Override
public
List
<
WobomVO
>
queryWobomByFkidAndWlid
(
String
fkid
,
String
wlid
,
String
bzlx
)
{
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1376,7 +1376,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
append
(
"LEFT JOIN WLXX ON WLXX_ID = GPHY_WLID "
);
sqlMap
.
append
(
"where 1 = 1 "
);
if
(
StringUtils
.
isNotEmpty
(
condition
.
getSnid
())){
sqlMap
.
append
(
" and (
WLXX_CODE
= :pSnid) "
);
sqlMap
.
append
(
" and (
GPHY_WLSNID
= :pSnid) "
);
sqlMap
.
setParamValue
(
"pSnid"
,
condition
.
getSnid
());
}
if
(
StringUtils
.
isNotEmpty
(
condition
.
getMid
())){
...
...
@@ -1447,7 +1447,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
append
(
"order by GPFK_FKSJ desc "
);
return
sqlMap
.
query
(
FkVO
.
class
);
}
@Override
public
FkVO
queryKwellWoBySnidUptoDate
(
String
wosnid
,
String
bzgx
)
{
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1468,7 +1468,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
append
(
" order by GPFK_FKSJ DESC "
);
return
sqlMap
.
queryEntity
(
FkVO
.
class
);
}
@Override
public
List
<
FkVO
>
queryKwellAllGpfkByWosnAndGxid
(
FkCondition
condition
){
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1530,7 +1530,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
return
sqlMap
.
queryEntity
(
GpfkVO
.
class
);
}
@Override
public
Wogylx
getLastGx
(
Wogylx
wogylx
)
{
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1558,8 +1558,8 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
setParamValue
(
"pXH"
,
wogylx
.
getXh
());
return
sqlMap
.
queryEntity
(
Wogylx
.
class
);
}
@Override
public
Wogylx
getNextGxUpdate
(
Wogylx
wogylx
)
{
SqlMap
sqlMap
=
new
SqlMap
();
...
...
@@ -1731,7 +1731,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
setParamValue
(
"WOBOM_WLID"
,
wlid
);
}
sqlMap
.
append
(
" group by WOSN_CODE,bzgx_id,wobom_wlid "
);
return
sqlMap
.
queryDouble
();
}
...
...
@@ -1761,7 +1761,7 @@ public class GpfkDaoImpl extends BaseDaoImpl implements GpfkDao {
sqlMap
.
append
(
"order by GPFK_FKSJ desc, GPFK_FKGX "
);
return
sqlMap
.
queryEntity
(
GpfkVO
.
class
);
}
}
gavel/src/main/java/com/gavel/kwell/service/impl/GpfkServiceImpl.java
View file @
224e8594
This diff is collapsed.
Click to expand it.
gavel/src/main/resources/module.xml
View file @
224e8594
...
...
@@ -43,11 +43,9 @@
<menu
mkid=
"1901000600"
mkmc=
"维修反馈"
url=
"kmes/gpwx/index"
gnlx=
"M"
>
</menu>
</menu>
<menu
mkid=
"510020000"
mkmc=
"排产计划"
>
<menu
mkid=
"510020100"
mkmc=
"排产计划维护"
url=
"kmes/pcjhk/index"
>
<print
entity=
"com.gavel.kwell.vo.PcjhkVO"
type=
"M"
/>
<print
entity=
"com.gavel.kwell.vo.PcjhmxkVO"
type=
"D"
/>
</menu>
<menu
fmkid=
"510020000"
mkid=
"510020300"
mkmc=
"排产计划维护"
url=
"kmes/pcjhk/index"
>
<print
entity=
"com.gavel.kwell.vo.PcjhkVO"
type=
"M"
/>
<print
entity=
"com.gavel.kwell.vo.PcjhmxkVO"
type=
"D"
/>
</menu>
<disableMenus>
<menu
mkid=
"510050000"
mkmc=
"生产入库"
/>
...
...
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