Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DataCenter_Core2.1_20190520
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bltdc
DataCenter_Core2.1_20190520
Commits
fbde1fd4
Commit
fbde1fd4
authored
Sep 18, 2021
by
zhouminghui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
易可达转负数展示
parent
b71aa40e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
FinanceService.cs
Bailun.DC.Services/WebApiService/FinanceService.cs
+10
-0
No files found.
Bailun.DC.Services/WebApiService/FinanceService.cs
View file @
fbde1fd4
...
...
@@ -873,6 +873,11 @@ or (is_lend=2 and cost_form=1)) and pay_time>= @start and pay_time< @end ");
x
.
original_amount
=
Math
.
Abs
(
x
.
original_amount
);
x
.
total_amount_sales
=
Math
.
Abs
(
x
.
total_amount_sales
);
}
if
(
x
.
platform_type
.
Contains
(
"易可达"
)
&&
x
.
website
.
Contains
(
"其他收入"
))
{
x
.
original_amount
=
Math
.
Abs
(
x
.
original_amount
)
*
-
1
;
x
.
total_amount_sales
=
Math
.
Abs
(
x
.
total_amount_sales
)
*
-
1
;
}
return
x
;
}).
ToList
();
//RedisHelper.Add<List<PlatformTypeMonthlyStatisticsDto>>($"{input.FeeName}_{input.Month.Replace("月份", "")}", data, new TimeSpan(1, 0, 0, 0));
...
...
@@ -967,6 +972,11 @@ ON s2.id = s1.order_fee_config_id WHERE s1.month = @month ");
x
.
AmountVal
=
Math
.
Abs
(
x
.
AmountVal
.
Value
);
x
.
AmountValRmb
=
Math
.
Abs
(
x
.
AmountValRmb
.
Value
);
}
if
(
x
.
PlatForm
.
Contains
(
"易可达"
)
&&
x
.
WebSite
.
Contains
(
"其他收入"
))
{
x
.
AmountVal
=
Math
.
Abs
(
x
.
AmountVal
.
Value
)
*
-
1
;
x
.
AmountValRmb
=
Math
.
Abs
(
x
.
AmountValRmb
.
Value
)
*
-
1
;
}
return
x
;
}).
ToList
();
return
data
;
...
...
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