Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
Jst.Client.Report.Download
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
陶然
Jst.Client.Report.Download
Commits
204c82f0
Commit
204c82f0
authored
Nov 14, 2022
by
任天宇
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://git.kivii.org/neoturing/Jst.Client.Report.Download
parents
39ea0664
5e5eb433
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
ReportRequest.cs
Src/Entities/ReportRequest.cs
+6
-6
FrmMain.Designer.cs
Src/FrmMain.Designer.cs
+1
-1
FrmMain.cs
Src/FrmMain.cs
+6
-6
AssemblyInfo.cs
Src/Properties/AssemblyInfo.cs
+2
-2
No files found.
Src/Entities/ReportRequest.cs
View file @
204c82f0
...
@@ -678,37 +678,37 @@ namespace Jst.Report.Download
...
@@ -678,37 +678,37 @@ namespace Jst.Report.Download
set
;
set
;
}
}
public
DateTime
?
DealDateGreaterThan
public
DateTime
?
DealDateGreaterThan
OrEqualTo
{
{
get
;
get
;
set
;
set
;
}
}
public
DateTime
?
DealDateLessThan
public
DateTime
?
DealDateLessThan
OrEqualTo
{
{
get
;
get
;
set
;
set
;
}
}
public
DateTime
?
DeadDateGreaterThan
public
DateTime
?
DeadDateGreaterThan
OrEqualTo
{
{
get
;
get
;
set
;
set
;
}
}
public
DateTime
?
DeadDateLessThan
public
DateTime
?
DeadDateLessThan
OrEqualTo
{
{
get
;
get
;
set
;
set
;
}
}
public
DateTime
?
IssueDateGreaterThan
public
DateTime
?
IssueDateGreaterThan
OrEqualTo
{
{
get
;
get
;
set
;
set
;
}
}
public
DateTime
?
IssueDateLessThan
public
DateTime
?
IssueDateLessThan
OrEqualTo
{
{
get
;
get
;
set
;
set
;
...
...
Src/FrmMain.Designer.cs
View file @
204c82f0
...
@@ -816,7 +816,7 @@ namespace Jst.Report.Download
...
@@ -816,7 +816,7 @@ namespace Jst.Report.Download
this
.
Controls
.
Add
(
this
.
pnlLeft
);
this
.
Controls
.
Add
(
this
.
pnlLeft
);
this
.
Icon
=
((
System
.
Drawing
.
Icon
)(
resources
.
GetObject
(
"$this.Icon"
)));
this
.
Icon
=
((
System
.
Drawing
.
Icon
)(
resources
.
GetObject
(
"$this.Icon"
)));
this
.
Name
=
"FrmMain"
;
this
.
Name
=
"FrmMain"
;
this
.
Text
=
"江苏纺检院电子报告下载客户端V2.0
1
"
;
this
.
Text
=
"江苏纺检院电子报告下载客户端V2.0
2
"
;
this
.
Load
+=
new
System
.
EventHandler
(
this
.
FrmMain_Load
);
this
.
Load
+=
new
System
.
EventHandler
(
this
.
FrmMain_Load
);
this
.
pnlLeft
.
ResumeLayout
(
false
);
this
.
pnlLeft
.
ResumeLayout
(
false
);
this
.
gbQuery
.
ResumeLayout
(
false
);
this
.
gbQuery
.
ResumeLayout
(
false
);
...
...
Src/FrmMain.cs
View file @
204c82f0
...
@@ -235,27 +235,27 @@ namespace Jst.Report.Download
...
@@ -235,27 +235,27 @@ namespace Jst.Report.Download
}
}
if
(
dtpDealDateBegin
.
Text
!=
" "
)
if
(
dtpDealDateBegin
.
Text
!=
" "
)
{
{
contractQuery
.
DealDateGreaterThan
=
DateTime
.
Parse
(
dtpDealDateBegin
.
Value
.
ToShortDateString
().
ToString
());
contractQuery
.
DealDateGreaterThan
OrEqualTo
=
DateTime
.
Parse
(
dtpDealDateBegin
.
Value
.
ToShortDateString
().
ToString
());
}
}
if
(
dtpDealDateFinish
.
Text
!=
" "
)
if
(
dtpDealDateFinish
.
Text
!=
" "
)
{
{
contractQuery
.
DealDateLessThan
=
DateTime
.
Parse
(
dtpDealDateFinish
.
Value
.
AddDays
(
1.0
).
ToShortDateString
().
ToString
());
contractQuery
.
DealDateLessThan
OrEqualTo
=
DateTime
.
Parse
(
dtpDealDateFinish
.
Value
.
AddDays
(
1.0
).
ToShortDateString
().
ToString
());
}
}
if
(
dtpDeadDateBegin
.
Text
!=
" "
)
if
(
dtpDeadDateBegin
.
Text
!=
" "
)
{
{
contractQuery
.
DeadDateGreaterThan
=
DateTime
.
Parse
(
dtpDeadDateBegin
.
Value
.
ToShortDateString
().
ToString
());
contractQuery
.
DeadDateGreaterThan
OrEqualTo
=
DateTime
.
Parse
(
dtpDeadDateBegin
.
Value
.
ToShortDateString
().
ToString
());
}
}
if
(
dtpDeadDateFinish
.
Text
!=
" "
)
if
(
dtpDeadDateFinish
.
Text
!=
" "
)
{
{
contractQuery
.
DeadDateLessThan
=
DateTime
.
Parse
(
dtpDeadDateFinish
.
Value
.
AddDays
(
1.0
).
ToShortDateString
().
ToString
());
contractQuery
.
DeadDateLessThan
OrEqualTo
=
DateTime
.
Parse
(
dtpDeadDateFinish
.
Value
.
AddDays
(
1.0
).
ToShortDateString
().
ToString
());
}
}
if
(
dtpReportIssueDateBegin
.
Text
!=
" "
)
if
(
dtpReportIssueDateBegin
.
Text
!=
" "
)
{
{
contractQuery
.
IssueDateGreaterThan
=
DateTime
.
Parse
(
dtpReportIssueDateBegin
.
Value
.
ToShortDateString
().
ToString
());
contractQuery
.
IssueDateGreaterThan
OrEqualTo
=
DateTime
.
Parse
(
dtpReportIssueDateBegin
.
Value
.
ToShortDateString
().
ToString
());
}
}
if
(
dtpReportIssueDateFinish
.
Text
!=
" "
)
if
(
dtpReportIssueDateFinish
.
Text
!=
" "
)
{
{
contractQuery
.
IssueDateLessThan
=
DateTime
.
Parse
(
dtpReportIssueDateFinish
.
Value
.
AddDays
(
1.0
).
ToShortDateString
().
ToString
());
contractQuery
.
IssueDateLessThan
OrEqualTo
=
DateTime
.
Parse
(
dtpReportIssueDateFinish
.
Value
.
AddDays
(
1.0
).
ToShortDateString
().
ToString
());
}
}
//contractQuery.DealDateGreaterThan = dtpDealDateBegin.Value;
//contractQuery.DealDateGreaterThan = dtpDealDateBegin.Value;
//contractQuery.DealDateLessThan = dtpDealDateFinish.Value.AddDays(1.0);
//contractQuery.DealDateLessThan = dtpDealDateFinish.Value.AddDays(1.0);
...
...
Src/Properties/AssemblyInfo.cs
View file @
204c82f0
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.4.202
1.09
270")]
[assembly: AssemblyVersion("5.4.202
2.04
270")]
[assembly: AssemblyFileVersion("5.4.202
1.09
270")]
[assembly: AssemblyFileVersion("5.4.202
2.04
270")]
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