Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-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
hp-smart
Commits
7d596068
Commit
7d596068
authored
Apr 25, 2024
by
宋祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.已提交的计划可生成二维码
parent
22c24ff8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
5 deletions
+47
-5
ServiceHPSC003.java
.../java/com/baosight/hpjx/hp/sc/service/ServiceHPSC003.java
+23
-0
HPSC003.js
src/main/webapp/HP/SC/HPSC003.js
+24
-5
No files found.
src/main/java/com/baosight/hpjx/hp/sc/service/ServiceHPSC003.java
View file @
7d596068
...
...
@@ -291,6 +291,29 @@ public class ServiceHPSC003 extends ServiceBase {
}
/**
* 生成二维码
*
* @param inInfo
* @return
*/
public
EiInfo
generateQrcode
(
EiInfo
inInfo
)
{
try
{
String
planInfoNo
=
inInfo
.
getString
(
HPSC003
.
FIELD_PLAN_INFO_NO
);
// 已经生成过,不在重复生产
HPSC003
dbSc003
=
HPSCTools
.
HpSc003
.
getByNo
(
planInfoNo
);
AssertUtils
.
isNotEmpty
(
dbSc003
.
getQrcodeDocId
(),
"该计划已存在二维码,请勿重复生成"
);
// 生成新的二维码
HPSCTools
.
HpSc003
.
createQrCode
(
planInfoNo
);
// 刷新页面数据
inInfo
=
this
.
query
(
inInfo
);
inInfo
.
setMsg
(
"生成二维码成功"
);
}
catch
(
Exception
e
)
{
LogUtils
.
setMsg
(
inInfo
,
e
,
"生成二维码失败"
);
}
return
inInfo
;
}
/**
* 扫码显示计划明细
*
* @param inInfo
...
...
src/main/webapp/HP/SC/HPSC003.js
View file @
7d596068
...
...
@@ -20,8 +20,8 @@ $(function () {
}
if
(
auditStatus
==
0
)
{
template
+=
'<a style="cursor: pointer;display: inline-flex;justify-content: center;" '
+
'onclick="check('
+
item
.
id
+
',1,
\'
'
+
item
.
planInfoNo
+
'
\'
,
\'
'
+
item
.
factoryCode
+
'
\'
)" >提交</a>'
;
+
'onclick="check('
+
item
.
id
+
',1,
\'
'
+
item
.
planInfoNo
+
'
\'
,
\'
'
+
item
.
factoryCode
+
'
\'
)" >提交</a>'
;
}
/*else {
template += '<a hidden="hidden" style="cursor: pointer;display: inline-flex;justify-content: center;" ' +
...
...
@@ -42,12 +42,16 @@ $(function () {
},
{
field
:
"qrcodeDocId"
,
template
:
function
(
item
)
{
if
(
isBlank
(
item
.
qrcodeDocId
))
{
return
""
;
}
else
{
let
auditStatus
=
item
.
status
;
if
(
!
isBlank
(
item
.
qrcodeDocId
))
{
return
'<img src="'
+
downloadHref
(
item
.
qrcodeDocId
)
+
'" width="20px" height="20px"'
+
' onclick="imgClick(
\'
'
+
item
.
qrcodeDocId
+
'
\'
)" />'
;
}
if
(
auditStatus
!=
0
)
{
return
'<a style="cursor: pointer;display: inline-flex;justify-content: center;" '
+
'onclick="generateQrcode(
\'
'
+
item
.
planInfoNo
+
'
\'
)" >生成</a>'
;
}
return
""
;
}
}],
/**
...
...
@@ -422,6 +426,21 @@ function saveDetail(btn) {
}
/**
* 生成二维码
*
* @param planInfoNo
*/
let
generateQrcode
=
function
(
planInfoNo
)
{
let
inInfo
=
__eiInfo
;
inInfo
.
set
(
"planInfoNo"
,
planInfoNo
);
JSUtils
.
submitGridsData
(
"result"
,
"HPSC003"
,
"generateQrcode"
,
true
,
function
(
res
)
{
message
(
res
.
msg
);
},
inInfo
);
}
/**
* 图片放大
*/
let
imgClick
=
function
(
docId
)
{
...
...
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