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
9ed3e144
Commit
9ed3e144
authored
Dec 23, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
流程测试修改
parent
0a2d86e2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
7 deletions
+20
-7
OrderModule2.cs
Edu.Module.Course/OrderModule2.cs
+0
-2
StudentBillModule.cs
Edu.Module.Course/StudentBillModule.cs
+13
-2
BasicFlowModule.cs
Edu.Module.System/BasicFlowModule.cs
+5
-3
StuController.cs
Edu.WebApi/Controllers/Course/StuController.cs
+2
-0
No files found.
Edu.Module.Course/OrderModule2.cs
View file @
9ed3e144
...
@@ -140,7 +140,6 @@ namespace Edu.Module.Course
...
@@ -140,7 +140,6 @@ namespace Edu.Module.Course
int
index
=
0
;
int
index
=
0
;
foreach
(
var
item
in
flowModel
.
FlowNodeList
)
foreach
(
var
item
in
flowModel
.
FlowNodeList
)
{
{
if
(
item
.
FlowAduitList
!=
null
&&
item
.
FlowAduitList
.
Count
>
0
)
if
(
item
.
FlowAduitList
!=
null
&&
item
.
FlowAduitList
.
Count
>
0
)
{
{
string
AuditedId
=
""
;
//审核人
string
AuditedId
=
""
;
//审核人
...
@@ -206,7 +205,6 @@ namespace Edu.Module.Course
...
@@ -206,7 +205,6 @@ namespace Edu.Module.Course
SpecialNode
=
item
.
FlowAduitList
[
0
].
IsSpecNode
,
SpecialNode
=
item
.
FlowAduitList
[
0
].
IsSpecNode
,
Stauts
=
Common
.
Enum
.
User
.
WFRrocessStatus
.
NotAudit
,
Stauts
=
Common
.
Enum
.
User
.
WFRrocessStatus
.
NotAudit
,
WorkFlowId
=
Common
.
Config
.
BackClassFlowId
,
WorkFlowId
=
Common
.
Config
.
BackClassFlowId
,
};
};
var
backLevanceId
=
student_BackRelevanceRepository
.
Insert
(
backLevance
);
var
backLevanceId
=
student_BackRelevanceRepository
.
Insert
(
backLevance
);
backLevance
.
Id
=
backLevanceId
;
backLevance
.
Id
=
backLevanceId
;
...
...
Edu.Module.Course/StudentBillModule.cs
View file @
9ed3e144
...
@@ -582,6 +582,7 @@ namespace Edu.Module.Course
...
@@ -582,6 +582,7 @@ namespace Edu.Module.Course
if
(
auditRelevance
!=
null
)
if
(
auditRelevance
!=
null
)
{
{
List
<
int
>
empList
=
new
List
<
int
>();
List
<
int
>
empList
=
new
List
<
int
>();
//添加角色对应的人员
if
(!
string
.
IsNullOrEmpty
(
auditRelevance
.
PostIds
))
if
(!
string
.
IsNullOrEmpty
(
auditRelevance
.
PostIds
))
{
{
var
postList
=
Common
.
ConvertHelper
.
StringToList
(
auditRelevance
.
PostIds
);
var
postList
=
Common
.
ConvertHelper
.
StringToList
(
auditRelevance
.
PostIds
);
...
@@ -628,8 +629,18 @@ namespace Edu.Module.Course
...
@@ -628,8 +629,18 @@ namespace Edu.Module.Course
}
}
}
}
}
}
//以前的存入的数据
//添加指定用户
//empList = Common.ConvertHelper.StringToList(auditRelevance.ToAuditId);
if
(!
string
.
IsNullOrEmpty
(
auditRelevance
.
UserIds
))
{
var
userList
=
Common
.
ConvertHelper
.
StringToList
(
auditRelevance
.
UserIds
);
foreach
(
var
item
in
userList
)
{
if
(
item
>
0
)
{
empList
.
Add
(
item
);
}
}
}
InsertBatcheAuditRecord
(
empList
,
backModel
.
BackId
,
auditRelevance
);
InsertBatcheAuditRecord
(
empList
,
backModel
.
BackId
,
auditRelevance
);
}
}
}
}
...
...
Edu.Module.System/BasicFlowModule.cs
View file @
9ed3e144
...
@@ -69,18 +69,20 @@ namespace Edu.Module.System
...
@@ -69,18 +69,20 @@ namespace Edu.Module.System
bool
flag
=
false
;
bool
flag
=
false
;
string
logContent
=
""
;
string
logContent
=
""
;
RB_Flow_ViewModel
oldModel
=
null
;
RB_Flow_ViewModel
oldModel
=
null
;
oldModel
=
GetFlowModule
(
extModel
.
FlowId
);
extModel
.
FlowId
=
oldModel
?.
FlowId
??
0
;
if
(
extModel
.
FlowId
>
0
)
if
(
extModel
.
FlowId
>
0
)
{
{
oldModel
=
GetFlowModule
(
extModel
.
FlowId
);
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
{
nameof
(
RB_Flow_ViewModel
.
FlowName
),
extModel
.
FlowName
},
{
nameof
(
RB_Flow_ViewModel
.
FlowName
),
extModel
.
FlowName
},
{
nameof
(
RB_Flow_ViewModel
.
UpdateBy
),
extModel
.
UpdateBy
},
{
nameof
(
RB_Flow_ViewModel
.
UpdateBy
),
extModel
.
UpdateBy
},
{
nameof
(
RB_Flow_ViewModel
.
UpdateTime
),
extModel
.
UpdateTime
},
{
nameof
(
RB_Flow_ViewModel
.
UpdateTime
),
extModel
.
UpdateTime
},
};
};
if
(
oldModel
.
FlowName
!=
extModel
.
FlowName
)
if
(
(
oldModel
?.
FlowName
??
""
)
!=
extModel
.
FlowName
)
{
{
logContent
+=
string
.
Format
(
",流程名称由【{0}】修改为【{1}】"
,
oldModel
.
FlowName
,
extModel
.
FlowName
);
logContent
+=
string
.
Format
(
",流程名称由【{0}】修改为【{1}】"
,
(
oldModel
?.
FlowName
??
""
)
,
extModel
.
FlowName
);
}
}
flag
=
flowRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Flow_ViewModel
.
FlowId
),
extModel
.
FlowId
));
flag
=
flowRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Flow_ViewModel
.
FlowId
),
extModel
.
FlowId
));
}
}
...
...
Edu.WebApi/Controllers/Course/StuController.cs
View file @
9ed3e144
...
@@ -87,6 +87,7 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -87,6 +87,7 @@ namespace Edu.WebApi.Controllers.Course
item
.
ApplyReason
,
item
.
ApplyReason
,
item
.
OrderId
,
item
.
OrderId
,
AuditStatusName
=
item
.
AuditStatus
.
ToName
(),
AuditStatusName
=
item
.
AuditStatus
.
ToName
(),
item
.
SpecialNode
});
});
}
}
pageModel
.
Count
=
rowsCount
;
pageModel
.
Count
=
rowsCount
;
...
@@ -98,6 +99,7 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -98,6 +99,7 @@ namespace Edu.WebApi.Controllers.Course
/// 获取退款单据审核信息
/// 获取退款单据审核信息
/// </summary>
/// </summary>
/// <returns></returns>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
SetBackBillAduit
()
public
ApiResult
SetBackBillAduit
()
{
{
//退课单据号
//退课单据号
...
...
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