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
0b878be5
Commit
0b878be5
authored
Dec 10, 2021
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复BUG:月售销利润 成本其他费用数据
parent
5ce797a9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
FinanceService.cs
Bailun.DC.Services/WebApiService/FinanceService.cs
+2
-2
Control.cshtml
Bailun.DC.Web/Areas/Component/Views/Table/Control.cshtml
+2
-1
el-table-query.css
Bailun.DC.Web/wwwroot/css/component/el-table-query.css
+4
-0
No files found.
Bailun.DC.Services/WebApiService/FinanceService.cs
View file @
0b878be5
...
...
@@ -570,11 +570,11 @@ SUM(t1.amount_sales * (IFNULL(t3.exchange_rate,t1.seller_order_exchange_rate)) *
sqlText
.
Append
(
" AND t1.platform_type = @PlatformType "
);
parameters
.
Add
(
"PlatformType"
,
input
.
PlatformType
);
}
if
(!
string
.
IsNullOrWhiteSpace
(
input
.
FinanceCategory
)
&&
(
input
.
FinanceCategory
!=
"其他"
||
input
.
FinanceCategory
!=
"其它"
))
if
(!
string
.
IsNullOrWhiteSpace
(
input
.
FinanceCategory
)
&&
(
input
.
FinanceCategory
!=
"其他"
&&
input
.
FinanceCategory
!=
"其它"
))
{
sqlText
.
Append
(
$" AND t1.financecategoryname like '
{
input
.
FinanceCategory
.
Replace
(
"产品"
,
""
)}
%' "
);
}
else
if
(
input
.
FinanceCategory
==
"其他"
||
input
.
FinanceCategory
!
=
"其它"
)
else
if
(
input
.
FinanceCategory
==
"其他"
||
input
.
FinanceCategory
=
=
"其它"
)
{
sqlText
.
Append
(
" and t1.financecategoryname = '' "
);
}
...
...
Bailun.DC.Web/Areas/Component/Views/Table/Control.cshtml
View file @
0b878be5
...
...
@@ -10,7 +10,8 @@
v-on:select="(selection, row)=> onRowClick(row)"
v-on:select-all="(selection)=> onRowClick()"
v-on:row-click="onRowClick"
v-on:current-change="setting.selectRowMethod == 1 && onCurrentChange">
v-on:current-change="setting.selectRowMethod == 1 && onCurrentChange"
v-bind:class="{search:setting.isShowColumnSearch}">
<el-table-column v-if="setting.selectRowMethod == 2"
header-align="center"
type="selection"
...
...
Bailun.DC.Web/wwwroot/css/component/el-table-query.css
View file @
0b878be5
...
...
@@ -3,6 +3,10 @@
height
:
calc
(
100%
-
40px
);
}
.el-table-query
.el-main
.el-table.search
.el-table__body-wrapper
{
height
:
calc
(
100%
-
65px
);
}
#app
,
#app
.el-container.is-vertical
{
height
:
100%
;
}
...
...
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