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
c8b8b104
Commit
c8b8b104
authored
Jul 18, 2019
by
guanzhenshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a68509ea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
Program.cs
Bailun.DC.LogicWareHouse/Program.cs
+0
-2
OrdersController.cs
Bailun.DC.Web/Areas/Reports/Controllers/OrdersController.cs
+2
-1
AmazonSaleStatistics.cshtml
...eb/Areas/Reports/Views/Orders/AmazonSaleStatistics.cshtml
+7
-0
ListReturn.cshtml
Bailun.DC.Web/Areas/Reports/Views/Orders/ListReturn.cshtml
+6
-1
No files found.
Bailun.DC.LogicWareHouse/Program.cs
View file @
c8b8b104
...
...
@@ -20,8 +20,6 @@ namespace Bailun.DC.LogicWareHouse
//static void Main(string[] args)
//{
// //Console.WriteLine("Hello World!");
// new Services().Save();
//}
}
...
...
Bailun.DC.Web/Areas/Reports/Controllers/OrdersController.cs
View file @
c8b8b104
...
...
@@ -196,9 +196,10 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
/// <param name="website">站点</param>
/// <param name="start">付款开始时间</param>
/// <param name="end">付款结束时间</param>
/// <param name="currency">币种</param>
/// <returns></returns>
[
BailunAuthentication
(
LoginMode
.
Enforce
)]
public
string
ListAmazonSaleStatisticsJson
(
BtTableParameter
parameter
,
string
sellaccount
,
string
website
,
DateTime
start
,
DateTime
end
,
string
warehousetype
,
string
warehousecode
,
string
skucategoryids
)
public
string
ListAmazonSaleStatisticsJson
(
BtTableParameter
parameter
,
string
sellaccount
,
string
website
,
DateTime
start
,
DateTime
end
,
string
warehousetype
,
string
warehousecode
,
string
skucategoryids
,
string
currency
)
{
var
companyid
=
HttpContextHelper
.
Current
?.
User
?.
GetCompanyId
().
ToInt32
();
...
...
Bailun.DC.Web/Areas/Reports/Views/Orders/AmazonSaleStatistics.cshtml
View file @
c8b8b104
...
...
@@ -22,6 +22,13 @@
<button type="button" class="btn btn-success" onclick="showleft();">分类筛选</button>
</div>
<div class="form-group">
<label>币种</label>
<select id="currency" name="currency" class="form-control">
<option value="CNY">人民币</option>
<option value="USD">美元</option>
</select>
</div>
<div class="form-group">
<label> </label>
<select id="warehousetype" name="warehousetype" class="form-control">
<option value="">请选择仓库类型</option>
...
...
Bailun.DC.Web/Areas/Reports/Views/Orders/ListReturn.cshtml
View file @
c8b8b104
...
...
@@ -79,7 +79,9 @@
var height = document.body.clientHeight;
$("#roletable").attr("data-height", (height - 170));
list();
listPlatform();
$('#platform').change(function () {
...
...
@@ -149,6 +151,9 @@
for (var i = 0; i < result.length; i++) {
$('#platform').append('<option value="' + result[i] + '">' + result[i]+'</option>');
}
$('#platform').val('@ViewBag.platform');
}
}
})
...
...
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