Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zry
performance
Commits
99921a57
Commit
99921a57
authored
Jul 27, 2022
by
纪旭 韦
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加载上月费用类别及系数配置bug修复
parent
876c38d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
performance/Performance.Services/ConfigService.cs
+1
-1
performance/Performance.Services/CopyService.cs
+2
-0
No files found.
performance/Performance.Services/ConfigService.cs
View file @
99921a57
...
...
@@ -764,7 +764,7 @@ public void NewCopy(CopyRequest request)
{
{
"personnels"
,
(
allot
,
prevAllotId
)
=>
_personService
.
CreateAllotPersons
(
allot
.
HospitalId
,
allot
.
ID
,
prevAllotId
)
},
{
"workItems"
,
(
allot
,
prevAllotId
)
=>
_copyService
.
Copy_WorkItems
(
allot
,
prevAllotId
,
delHistotyData
:
true
)
},
{
"drugTypes"
,
(
allot
,
prevAllotId
)
=>
_copyService
.
Copy_DrugTypes
(
allot
,
prevAllotId
,
delHistotyData
:
true
)
},
//
{ "drugTypes", (allot, prevAllotId) =>_copyService.Copy_DrugTypes(allot, prevAllotId, delHistotyData:true) },
{
"drugTypeDisburses"
,
(
allot
,
prevAllotId
)
=>
_copyService
.
Copy_DrugTypeDisburses
(
allot
,
prevAllotId
,
delHistotyData
:
true
)
},
{
"drugTypeFactors"
,
(
allot
,
prevAllotId
)
=>
_copyService
.
Copy_DrugTypeFactors
(
allot
,
prevAllotId
,
delHistotyData
:
true
)
},
{
"deptTypes"
,
(
allot
,
prevAllotId
)
=>
_copyService
.
Copy_DeptTypes
(
allot
,
prevAllotId
,
delHistotyData
:
true
)
},
...
...
performance/Performance.Services/CopyService.cs
View file @
99921a57
...
...
@@ -102,6 +102,8 @@ public void Copy_DrugTypeDisburses(per_allot allot, int prevAllotId, bool delHis
public
void
Copy_DrugTypeFactors
(
per_allot
allot
,
int
prevAllotId
,
bool
delHistotyData
=
false
)
{
Copy_DrugTypes
(
allot
,
prevAllotId
,
delHistotyData
);
var
flag
=
delHistotyData
;
_logger
.
LogInformation
(
$"copy drugTypeFactors"
);
var
drugTypeFactors
=
_cofdrugtypefactorRepository
.
GetEntities
(
t
=>
t
.
AllotID
==
allot
.
ID
&&
t
.
HospitalId
==
allot
.
HospitalId
);
...
...
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