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
4d929d3d
Commit
4d929d3d
authored
Aug 19, 2019
by
guanzhenshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复资产负债表按月统计数据显示不对的问题
parent
3514cd8d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
WarehouseController.cs
...n.DC.Web/Areas/Reports/Controllers/WarehouseController.cs
+1
-1
AdministrativeCost.cshtml
...Web/Areas/Reports/Views/Finance/AdministrativeCost.cshtml
+2
-2
PlatformProfitCount.cshtml
...Web/Areas/Reports/Views/Orders/PlatformProfitCount.cshtml
+0
-1
No files found.
Bailun.DC.Web/Areas/Reports/Controllers/WarehouseController.cs
View file @
4d929d3d
...
...
@@ -645,7 +645,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
var
DayOfWeek
=
first
.
day
.
DayOfWeek
;
var
startDay
=
first
.
day
;
var
endDay
=
first
.
day
.
AddDays
((
6
-
(
int
)
DayOfWeek
));
var
endDay
=
first
.
day
.
AddDays
((
7
-
(
int
)
DayOfWeek
));
var
weekIndex
=
0
;
foreach
(
var
item
in
obj
)
...
...
Bailun.DC.Web/Areas/Reports/Views/Finance/AdministrativeCost.cshtml
View file @
4d929d3d
...
...
@@ -98,13 +98,13 @@
return false;
}
layer.load(2, { shade: [0.1, '#fff'], time: 30000 });
var lindex = layer.load(1, { shade: false }); //0代表加载的风格,支持0-2
$.submit({
url: '@Url.Content("~/Reports/Finance/AdministrativeCostJson")',
type: 'POST',
paramData: 't=' + type + '&start=' + start+'&end='+end,
func: function (result) {
layer.close
All('loading'
);
layer.close
(lindex
);
if (result.success) {
var dt = result.list;
tbhead_ = result.col;
...
...
Bailun.DC.Web/Areas/Reports/Views/Orders/PlatformProfitCount.cshtml
View file @
4d929d3d
...
...
@@ -309,7 +309,6 @@
var end = $('#end').val();
layer_show(platform + ' 按站点统计', '@Url.Content("~/Reports/Orders/PlatformProfitCountByWebSite?platform=")' + platform + '&start=' + start + '&end=' + end, '90%', '90%');
}
function ShowDetail(platform, coltitle, colval, single) {
...
...
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