Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
Kivii.Client.Lims.ExcelToPdf.V4.5
Project
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
陶然
Kivii.Client.Lims.ExcelToPdf.V4.5
Commits
846f8ab2
Commit
846f8ab2
authored
Jul 15, 2024
by
Neo Turing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
c87b76d5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
+15
-5
FrmServer.cs
Src/FrmServer.cs
+2
-2
AssemblyInfo.cs
Src/Properties/AssemblyInfo.cs
+2
-2
ReportMqRequest.cs
Src/Requests/ReportMqRequest.cs
+11
-1
No files found.
Src/FrmServer.cs
View file @
846f8ab2
...
...
@@ -597,8 +597,8 @@ namespace Kivii.Lims.ExcelToPdf
printPool
.
Item
.
Result
=
"标记为已打印"
;
}
printPool
.
Item
.
OperateTime
=
reportMqRequest
.
IssueDate
==
null
?
DateTime
.
Now
:
reportMqRequest
.
IssueDate
.
Value
;
//签发日期
printPool
.
Item
.
OperatorName
=
reportMqRequest
.
IssuerName
;
//签发人
printPool
.
Item
.
OperatorKvid
=
reportMqRequest
.
Issu
erKvid
;
printPool
.
Item
.
OperatorName
=
reportMqRequest
.
PreparerName
;
printPool
.
Item
.
OperatorKvid
=
reportMqRequest
.
Prepar
erKvid
;
printPool
.
Item
.
FilePath
=
$"
{
_config
.
QrCodeUrl
}
/Lims/Report/
{
internalCode
}
"
;
printPool
.
Item
.
Summary
=
reportMqRequest
.
TestJudgement
;
//判定
printPool
.
Item
.
Remark
=
reportMqRequest
.
Conclusion
;
//新lims 中检验结论
...
...
Src/Properties/AssemblyInfo.cs
View file @
846f8ab2
...
...
@@ -33,5 +33,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.4.2024.
402
0")]
[assembly: AssemblyFileVersion("5.4.2024.
402
0")]
[assembly: AssemblyVersion("5.4.2024.
715
0")]
[assembly: AssemblyFileVersion("5.4.2024.
715
0")]
Src/Requests/ReportMqRequest.cs
View file @
846f8ab2
...
...
@@ -71,6 +71,17 @@ namespace Kivii.Lims.RabbitMq.Entities
public
DateTime
DeadDate
{
get
;
set
;
}
/// <summary>
/// 编制人Kvid
/// </summary>
public
Guid
PreparerKvid
{
get
;
set
;
}
/// <summary>
/// 编制人姓名
/// </summary>
[
ApiMember
(
Description
=
"编制人"
)]
public
string
PreparerName
{
get
;
set
;
}
/// <summary>
/// 签发人Kvid
/// </summary>
public
Guid
IssuerKvid
{
get
;
set
;
}
...
...
@@ -80,7 +91,6 @@ namespace Kivii.Lims.RabbitMq.Entities
/// </summary>
[
ApiMember
(
Description
=
"签发人"
)]
public
string
IssuerName
{
get
;
set
;
}
/// <summary>
/// 产品质量综合判定
/// </summary>
...
...
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