Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
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
黄奎
Education
Commits
0b76aaf8
Commit
0b76aaf8
authored
Aug 05, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
8884582e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
WeChatHelper.cs
Edu.Common/Plugin/WeChatHelper.cs
+1
-1
RB_BackClass_Protocol_ViewModel.cs
...del/ViewModel/Contract/RB_BackClass_Protocol_ViewModel.cs
+15
-0
OrderModule2.cs
Edu.Module.Course/OrderModule2.cs
+3
-2
No files found.
Edu.Common/Plugin/WeChatHelper.cs
View file @
0b76aaf8
...
...
@@ -76,7 +76,7 @@ namespace Edu.Common.Plugin
width
};
var
Robj
=
HttpHelper
.
HttpPostImageToBase64
(
apiurl
,
JsonHelper
.
Serialize
(
postData
),
path
:
basepath
+
fileName
,
resultType
:
0
);
result
=
tempPath
+
fileName
;
result
=
"/upfile/temporary/"
+
DateTime
.
Now
.
ToString
(
"yyyyMMdd"
)
+
"/"
+
fileName
;
}
return
result
;
}
...
...
Edu.Model/ViewModel/Contract/RB_BackClass_Protocol_ViewModel.cs
View file @
0b76aaf8
...
...
@@ -49,6 +49,21 @@ namespace Edu.Model.ViewModel.Contract
case
2
:
str
=
"审核通过"
;
break
;
case
3
:
str
=
"驳回"
;
break
;
}
if
(
this
.
AuditStatus
==
2
)
{
if
(
string
.
IsNullOrEmpty
(
this
.
PartyASign
))
{
str
=
"待签字"
;
}
if
(
this
.
IsSure
==
0
&&!
string
.
IsNullOrEmpty
(
this
.
PartyASign
))
{
str
=
"待确认"
;
}
if
(
this
.
IsSure
==
1
&&!
string
.
IsNullOrEmpty
(
this
.
PartyASign
))
{
str
=
"生效"
;
}
}
return
str
;
}
}
...
...
Edu.Module.Course/OrderModule2.cs
View file @
0b76aaf8
...
...
@@ -206,7 +206,7 @@ namespace Edu.Module.Course
{
BackProtocol
=
totalBackProtocolCount
.
ToString
();
}
string
ProtocolNum
=
"TX"
+
backNum
;
string
ProtocolNum
=
"TX"
+
BackProtocol
;
RB_BackClass_Protocol
model
=
new
RB_BackClass_Protocol
()
{
Id
=
0
,
...
...
@@ -231,8 +231,9 @@ namespace Edu.Module.Course
AuditStatus
=(
int
)
Common
.
Enum
.
EduTask
.
EduTaskRrocessStatus
.
NotAudit
,
CreateBy
=
orderModel
.
EnterID
,
CreateTime
=
DateTime
.
Now
,
Group_Id
=
orderModel
.
School
_Id
,
Group_Id
=
classModel
.
Group
_Id
,
School_Id
=
classModel
.
School_Id
,
StateMent
=
StateMent
};
flag
=
backClass_ProtocolRepository
.
Insert
(
model
)
>
0
;
}
...
...
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