Commit 88383d97 by guanzhenshan

增加Ebay站点销售统计报表

parent 63c140a9
...@@ -1852,6 +1852,109 @@ namespace Bailun.DC.Services ...@@ -1852,6 +1852,109 @@ namespace Bailun.DC.Services
} }
/// <summary> /// <summary>
/// 按站点显示Ebay的统计记录
/// </summary>
/// <param name="request"></param>
/// <param name="website"></param>
/// <param name="account"></param>
/// <param name="start"></param>
/// <param name="end"></param>
/// <param name="warehousetype"></param>
/// <param name="warehousecode"></param>
/// <param name=""></param>
/// <returns></returns>
public List<dc_base_oms_order> ListEbayStatisticsByWebsite(BtTableParameter request, string website, string account, DateTime? start, DateTime? end, string warehousetype, string warehousecode,ref int total)
{
var sqlparam = new DynamicParameters();
var sql = @"select platform_type,website,sum(amount_sales*seller_order_exchange_rate) 'amount_sales',sum(cost_product) 'cost_product',sum(cost_platform_fee*seller_other_exchange_rate) 'cost_platform_fee',sum(cost_paypal_fee*seller_order_exchange_rate) as cost_paypal_fee,sum(cost_first) 'cost_first',count(t1.bailun_order_id) 'order_count',sum(cost_total) 'cost_total',sum(cost_tail) 'cost_tail',sum(profit_total) 'profit_total',(sum(profit_total)/sum(amount_sales*seller_order_exchange_rate)) 'profit_rate',sum(amount_prepaid) amount_prepaid,sum(amount_refund*seller_order_exchange_rate) amount_refund,sum(cost_handle_bailun) cost_handle_bailun,sum(cost_handle_platform) cost_handle_platform from dc_base_oms_order t1";
var presql = "select platform_type,website,sum(amount_prepaid) as amount_prepaid from dc_base_oms_sku t1 ";
if (!string.IsNullOrEmpty(warehousetype))
{
sql += " join dc_base_warehouse t2 on t1.warehouse_code=t2.warehouse_code and t2.warehouse_type_ex=@warehoursetype";
presql += " join dc_base_warehouse t2 on t1.warehouse_code=t2.warehouse_code and t2.warehouse_type_ex=@warehoursetype";
sqlparam.Add("warehoursetype", warehousetype);
}
if (!string.IsNullOrEmpty(warehousecode))
{
if (!string.IsNullOrEmpty(warehousetype))
{
sql += " and t2.warehouse_code=@warehouse_code";
presql += " and t2.warehouse_code=@warehouse_code";
sqlparam.Add("warehouse_code", warehousecode);
}
else
{
sql += " join dc_base_warehouse t2 on t1.warehouse_code=t2.warehouse_code and t2.warehouse_code=@warehouse_code";
presql += " join dc_base_warehouse t2 on t1.warehouse_code=t2.warehouse_code and t2.warehouse_code=@warehouse_code";
sqlparam.Add("warehouse_code", warehousecode);
}
}
var fromsql = " where platform_type='Ebay' and bailun_order_status!='Canceled' ";
if (!string.IsNullOrWhiteSpace(account))
{
fromsql += " and t1.seller_account=@seller_account";
sqlparam.Add("seller_account", account);
}
if (!string.IsNullOrWhiteSpace(website))
{
fromsql += " and t1.website=@website";
sqlparam.Add("website", website);
}
if (start.HasValue)
{
fromsql += " and t1.paid_time>='" + start.Value.ToString("yyyy-MM-dd") + "'";
}
if (end.HasValue)
{
fromsql += " and t1.paid_time<'" + end.Value.AddDays(1).ToString("yyyy-MM-dd") + "'";
}
var prefromsql = fromsql;
fromsql += " group by website,platform_type";
if (!string.IsNullOrWhiteSpace(request.sort))
{
fromsql += " order by " + request.sort + " " + request.order;
}
using (var cn = new MySqlConnection(Common.GlobalConfig.ConnectionString))
{
if (cn.State == System.Data.ConnectionState.Closed)
{
cn.Open();
}
var obj = cn.Page<Models.Orders.dc_base_oms_order>(request.pageIndex, request.limit, sql + fromsql, ref total, sqlparam);
//另外计算预收款金额
var list = obj.AsList();
prefromsql += " and bailun_sku_quantity_shipped<=0";
prefromsql += " and seller_account in ('" + string.Join("','", list.Select(a => a.seller_account)) + "') and website in ('" + string.Join("','", list.Select(a => a.website)) + "') and order_currency in ('" + string.Join("','", list.Select(a => a.order_currency)) + "')";
prefromsql += " group by seller_account,website,order_currency,platform_type";
var obj1 = cn.Query<Models.Orders.dc_base_oms_order>(presql + prefromsql, sqlparam);
foreach (var item in list)
{
var temp = obj1.Where(a => a.seller_account == item.seller_account && a.website == item.website && a.order_currency == item.order_currency && a.platform_type == item.platform_type).FirstOrDefault();
if (temp != null)
{
item.amount_prepaid = temp.amount_prepaid;
}
}
return list;
}
}
/// <summary>
/// 获取Ebay UK站点 平邮发货名字 /// 获取Ebay UK站点 平邮发货名字
/// </summary> /// </summary>
/// <param name="start"></param> /// <param name="start"></param>
...@@ -1905,6 +2008,8 @@ namespace Bailun.DC.Services ...@@ -1905,6 +2008,8 @@ namespace Bailun.DC.Services
} }
} }
#endregion #endregion
#region 退款单 #region 退款单
......
...@@ -484,7 +484,7 @@ namespace Bailun.DC.Services ...@@ -484,7 +484,7 @@ namespace Bailun.DC.Services
var objSkuDevelopTime = new SkuInfoServices().GetSkuDevelopTime(item.Item2); var objSkuDevelopTime = new SkuInfoServices().GetSkuDevelopTime(item.Item2);
if (!objSkuDevelopTime.HasValue) if (!objSkuDevelopTime.HasValue)
{ {
return "找不到该SKU"; return "找不到该SKU【"+item.Item2+"】";
} }
var insertsql = @"insert dc_sku_monitor(sku,warehousecode,warehousename,monitorstatus,clearancestatus,tortstatus,str_skutag,createtime,developmenttime,stockcount,groupname,groupupdatetime,groupupdateuser) values(@sku,@warehousecode,@warehousename,@monitorstatus,@clearancestatus,@tortstatus,@str_skutag,@createtime,@developmenttime,@stockcount,@groupname,@groupupdatetime,@groupupdateuser)"; var insertsql = @"insert dc_sku_monitor(sku,warehousecode,warehousename,monitorstatus,clearancestatus,tortstatus,str_skutag,createtime,developmenttime,stockcount,groupname,groupupdatetime,groupupdateuser) values(@sku,@warehousecode,@warehousename,@monitorstatus,@clearancestatus,@tortstatus,@str_skutag,@createtime,@developmenttime,@stockcount,@groupname,@groupupdatetime,@groupupdateuser)";
......
...@@ -988,6 +988,113 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers ...@@ -988,6 +988,113 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
}); });
} }
/// <summary>
/// 按站点显示Ebay统计报表
/// </summary>
/// <returns></returns>
public ActionResult EbayStatisticsByWebsite()
{
return View();
}
/// <summary>
/// 按站点显示Ebay统计报表
/// </summary>
/// <param name="request">分页信息</param>
/// <param name="website">站点</param>
/// <param name="selleraccount">销售帐号</param>
/// <param name="start">付款开始时间</param>
/// <param name="end">付款结束时间</param>
/// <param name="warehousetype">仓库类型</param>
/// <param name="warehousecode">仓库编码</param>
/// <returns></returns>
public string EbayStatisticsByWebsiteJson(BtTableParameter request, string website, string selleraccount, DateTime start, DateTime end, string warehousetype, string warehousecode)
{
var total = 0;
var _services = new Services.OrdersServices();
var objwithdraw = new Services.PlatformSiteServices().GetPlatformLossWithdraw().Where(a => a.english_name == "Ebay").FirstOrDefault();
var withdrawpercent = 0.0000M;
if (objwithdraw != null && objwithdraw.Loss_withdrawal_percent.HasValue)
{
withdrawpercent = objwithdraw.Loss_withdrawal_percent.Value;
}
var obj = _services.ListEbayStatisticsByWebsite(request,website,selleraccount,start,end,warehousetype,warehousecode,ref total);
var countM = _services.ListEbayStatisticsCount(website, selleraccount, start, end, warehousetype, warehousecode);
countM.website = "总计:";
countM.amount_sales = Math.Round(countM.amount_sales, 2, MidpointRounding.AwayFromZero);
countM.amount_product = Math.Round(countM.amount_product, 2, MidpointRounding.AwayFromZero);
countM.cost_product = Math.Round(countM.cost_product, 2, MidpointRounding.AwayFromZero);
countM.cost_platform_fee = Math.Round(countM.cost_platform_fee, 2, MidpointRounding.AwayFromZero);
countM.cost_package = Math.Round(countM.cost_package, 2, MidpointRounding.AwayFromZero);
countM.cost_paypal_fee = Math.Round(countM.cost_paypal_fee, 2, MidpointRounding.AwayFromZero);
countM.cost_first = Math.Round(countM.cost_first, 2, MidpointRounding.AwayFromZero);
countM.loss_withdrawal = countM.amount_sales * (withdrawpercent);
countM.cost_total = Math.Round(countM.cost_total, 2, MidpointRounding.AwayFromZero);
countM.cost_shipping = Math.Round(countM.cost_shipping, 2, MidpointRounding.AwayFromZero);
countM.amount_refund = Math.Round(countM.amount_refund, 2, MidpointRounding.AwayFromZero);
countM.amount_prepaid = Math.Round(countM.amount_prepaid, 2, MidpointRounding.AwayFromZero);
countM.profit_total = Math.Round(countM.profit_total, 2, MidpointRounding.AwayFromZero);
countM.profit_rate = countM.amount_product > 0 ? Math.Round((countM.profit_total / countM.amount_product), 2, MidpointRounding.AwayFromZero) : 0;
countM.cost_tail = Math.Round(countM.cost_tail, 2, MidpointRounding.AwayFromZero);
countM.cost_handle_bailun = Math.Round(countM.cost_handle_bailun, 2, MidpointRounding.AwayFromZero);
var list = obj.Select(p => new
{
p.platform_type,
p.seller_account,
p.website,
amount_sales = p.amount_sales.ToString("N2"),
amount_product = p.amount_product.ToString("N2"),
cost_product = p.cost_product.ToString("N2"),
cost_platform_fee = p.cost_platform_fee.ToString("N2"),
cost_package = p.cost_package.ToString("N2"),
cost_paypal_fee = p.cost_paypal_fee.ToString("N2"),
cost_first = p.cost_first.ToString("N2"),
p.order_count,
loss_withdrawal = (p.amount_sales * withdrawpercent).ToString("N2"),
cost_total = p.cost_total.ToString("N2"),
cost_shipping = p.cost_shipping.ToString("N2"),
amount_refund = p.amount_refund.ToString("N2"),
amount_prepaid = p.amount_prepaid.ToString("N2"),
profit_total = p.profit_total.ToString("N2"),
profit_rate = (100 * p.profit_rate).ToString("N2"),
cost_tail = p.cost_tail.ToString("N2"),
cost_handle_bailun = p.cost_handle_bailun.ToString("N2"),
});
return JsonConvert.SerializeObject(new
{
total = total,
rows = list,
count_row = new
{
countM.platform_type,
countM.seller_account,
countM.website,
amount_sales = countM.amount_sales.ToString("N2"),
amount_product = countM.amount_product.ToString("N2"),
cost_product = countM.cost_product.ToString("N2"),
cost_platform_fee = countM.cost_platform_fee.ToString("N2"),
cost_package = countM.cost_package.ToString("N2"),
cost_paypal_fee = countM.cost_paypal_fee.ToString("N2"),
cost_first = countM.cost_first.ToString("N2"),
countM.order_count,
loss_withdrawal = countM.loss_withdrawal.ToString("N2"),
cost_total = countM.cost_total.ToString("N2"),
cost_shipping = countM.cost_shipping.ToString("N2"),
amount_refund = countM.amount_refund.ToString("N2"),
amount_prepaid = countM.amount_prepaid.ToString("N2"),
profit_total = countM.profit_total.ToString("N2"),
profit_rate = (100 * countM.profit_rate).ToString("N2"),
cost_tail = countM.cost_tail.ToString("N2"),
cost_handle_bailun = countM.cost_handle_bailun.ToString("N2"),
}
});
}
#endregion #endregion
......
...@@ -442,10 +442,6 @@ ...@@ -442,10 +442,6 @@
} }
function uploadfile() {
layer.msg('导入文件');
}
function getChkNode() { function getChkNode() {
var s = ''; var s = '';
var o = $.fn.zTree.getZTreeObj("ztree"); var o = $.fn.zTree.getZTreeObj("ztree");
...@@ -472,6 +468,7 @@ ...@@ -472,6 +468,7 @@
} }
} }
var uindex;
function uploadfile(id,url,callback) function uploadfile(id,url,callback)
{ {
var uploader = new WebUploader.Uploader({ var uploader = new WebUploader.Uploader({
...@@ -484,14 +481,21 @@ ...@@ -484,14 +481,21 @@
pick: '#'+id, pick: '#'+id,
// 不压缩image, 默认如果是jpeg,文件上传前会压缩一把再上传! // 不压缩image, 默认如果是jpeg,文件上传前会压缩一把再上传!
resize: false, resize: false,
auto:true auto: true
}); });
uploader.on('startUpload', function () {
uindex = layer.load();
})
uploader.on('uploadSuccess', function (file, response) { uploader.on('uploadSuccess', function (file, response) {
if(callback!=undefined) layer.close(uindex);
if (callback != undefined)
{ {
callback(response); callback(response);
} }
}); });
uploader.on('uploadError', function (file) { uploader.on('uploadError', function (file) {
......

@{
ViewData["Title"] = "Ebay站点销售统计";
Layout = "~/Pages/Shared/_MainLayout.cshtml";
ViewBag.Nav = new string[] { "统计", "Ebay", "Ebay站点销售统计" };
}
<div class="row">
<div class="col-sm-12">
<div class="ibox-content m-b-sm border-bottom">
<form id="toolbar">
<div class="form-inline" style="line-height:40px;">
<div class="form-group">
<label>销售帐号:</label>
<select id="selleraccount" name="selleraccount" class="form-control" style="width:160px;">
<option value="">选择帐号</option>
</select>
</div>
<div class="form-group">
<label>站点:</label>
<select id="website" name="website" class="form-control">
<option value="">选择站点</option>
</select>
</div>
<div class="form-group">
<label>仓库类型:</label>
<select id="warehousetype" name="warehousetype" class="form-control">
<option value="">选择仓库类型</option>
<option value="自发货仓">自发货仓</option>
<option value="第三方仓">第三方仓</option>
</select>
</div>
<div class="form-group">
<label>&nbsp;</label>
<select id="warehousecode" name="warehousecode" class="form-control">
<option value="">选择仓库</option>
</select>
</div>
<div class="form-group">
<label>付款时间</label>
<input id="start" name="start" type="text" class="form-control" style="width:130px;" value="@(DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd"))" />
<span>至</span>
<input id="end" name="end" type="text" class="form-control" style="width:130px;" value="@(DateTime.Now.ToString("yyyy-MM-dd"))" />
</div>
<div class="form-group">
<label>&nbsp;</label>
<button type="button" class="btn btn-primary" onclick="list();"><i class="fa fa-search"></i>&nbsp;查询</button>
</div>
</div>
</form>
</div>
<div class="ibox-content m-b-sm border-bottom">
<table id="roletable" style="table-layout:fixed;"></table>
</div>
</div>
</div>
@section css{
<style>
.mules {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.alink {
color: cornflowerblue;
cursor: pointer;
}
</style>
}
@section scripts{
<script type="text/javascript">
var tb;
$(document).ready(function () {
laydate.render({ elem: '#start' });
laydate.render({ elem: '#end' });
var height = document.body.clientHeight;
$("#roletable").attr("data-height", (height - 160));
list();
listAccount();
listWebsite();
//listwarehousetype();
listwarehouse();
$('#warehousetype').change(function () {
listwarehouse();
})
})
function list() {
var columns = [
{ field: 'platform_type', title: '平台', width: '100', sortable: false },
//{
// field: 'seller_account', title: '销售帐号', width: '130', sortable: false, iscount: true, formatter: function (idx, data) {
// var str = '<p class="mules" title="' + data.seller_account + '">' + data.seller_account + '</p>';
// return str;
// }
//},
{ field: 'website', title: '站点', width: '80', sortable: false, iscount: true },
{
field: 'order_count', title: '订单数量', width: '100', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'订单数量\',\'\',0)">' + data.order_count + '</span>';
}
},
{
field: 'amount_sales', title: '销售额', width: '100', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'销售额\',\'amount_sales\',1)">' + data.amount_sales + '</span>';
}
},
{
field: 'cost_product', title: '产品成本', width: '100', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'产品成本\',\'cost_product\',1)">' + data.cost_product + '</span>';
}
},
{
field: 'cost_platform_fee', title: '平台费', width: '110', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'平台费\',\'cost_platform_fee\',1)">' + data.cost_platform_fee + '</span>';
}
},
{
field: 'cost_paypal_fee', title: 'paypal费用', width: '110', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'paypal费用\',\'cost_paypal_fee\',1)">' + data.cost_paypal_fee + '</span>';
}
},
{
field: 'cost_first', title: '头程费', width: '100', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'头程费\',\'cost_first\',1)">' + data.cost_first + '</span>';
}
},
{
field: 'cost_tail', title: '尾程费', width: '100', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'尾程费\',\'cost_tail\',1)">' + data.cost_tail + '</span>';
}
},
{
field: 'cost_handle_bailun', title: '处理费', width: '100', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'处理费\',\'cost_first\',1)">' + data.cost_handle_bailun + '</span>';
}
},
{ field: 'loss_withdrawal', title: '提现损耗', width: '100', sortable: false, iscount: true },
{
field: 'cost_total', title: '总支出', width: '110', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'总支出\',\'cost_total\',1)">' + data.cost_total + '</span>';
}
},
{
field: 'amount_refund', title: '退款金额', width: '110', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'退款金额\',\'amount_refund\',1)">' + data.amount_refund + '</span>';
}
},
{
field: 'amount_prepaid', title: '预收金额', width: '120', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'预收金额\',\'amount_prepaid\',1)">' + data.amount_prepaid + '</span>';
}
},
//{ field: 'forecast_profit_rate', title: '预测利润率%', width: '120', sortable: true },
{
field: 'profit_total', title: '实际利润', width: '120', sortable: true, iscount: true, formatter: function (idx, data) {
return '<span class="alink" onclick="ShowDetail(\'' + data.platform_type + '\',\'' + data.website + '\',\'' + data.seller_account + '\',\'实际利润\',\'profit_total\',1)">' + data.profit_total + '</span>';
}
},
{ field: 'profit_rate', title: '总实际利润率%', width: '130', sortable: true, iscount: true },
];
var url = '@Url.Content("~/Reports/Orders/EbayStatisticsByWebsiteJson")' + '?' + $("#toolbar").serialize();
if (tb == undefined) {
tb = OnlyTable("roletable", columns, url, "", { showfooter: true, showCount: true });
}
else {
tb.bootstrapTable('refresh', { url: url });
}
}
function listAccount() {
$.submit({
url: '@Url.Content("~/Reports/Orders/ListAccount")',
type:'POST',
paramData: 'platform=Ebay',
func: function (result) {
if (result != null && result != undefined) {
$('#selleraccount').html('<option value="">选择帐号</option>');
for (var i = 0; i < result.length; i++) {
if (result[i] != '') {
$('#selleraccount').append('<option value="' + result[i] + '">' + result[i] + '</option>');
}
}
}
}
})
}
function listWebsite() {
$.submit({
url: '@Url.Content("~/Reports/Orders/ListWebSite")',
type:'POST',
paramData: 'platform=Ebay',
func: function (result) {
if (result != null && result != undefined) {
$('#website').html('<option value="">选择站点</option>');
for (var i = 0; i < result.length; i++) {
$('#website').append('<option value="' + result[i] + '">' + result[i]+'</option>');
}
}
}
})
}
function listwarehousetype() {
$.submit({
url: '@Url.Content("~/Home/ListWarehouseType")',
type: 'POST',
paramData: '',
func: function (result) {
if (result != null && result != undefined) {
$('#warehousetype').html('<option value="">选择仓库类型</option>');
for (var i in result) {
if (result[i].indexOf('FBA') < 0) {
$('#warehousetype').append('<option value="' + result[i] + '">' + result[i] + '</option>');
}
}
}
}
})
}
function listwarehouse() {
var type = $('#warehousetype').val();
if (type == '') {
$('#warehousecode').html('<option value="">请选择仓库</option>');
return false;
}
$.submit({
url: '@Url.Content("~/Home/ListWarehouseByExtType")',
type: 'POST',
paramData: 'type=' + type,
func: function (result) {
if (result != null && result != undefined) {
$('#warehousecode').html('<option value="">请选择仓库</option>');
for (var i = 0; i < result.length; i++) {
$('#warehousecode').append('<option value="' + result[i].code + '">' + result[i].name + '</option>');
}
}
}
})
}
function ShowDetail(platform, website, account, coltitle, colval, single) {
layer_show(platform + " " + website + " " + $('#start').val() + "至" + $('#end').val() + ' 订单明细', '@Url.Content("~/Reports/Orders/ListOrderDetail?platform=")' + platform + '&website=' + website + '&account=' + account + '&start=' + $('#start').val() + '&end=' + $('#end').val() + '&col=' + colval + '&coltitle=' + coltitle + '&showsingle=' + single, '90%', '90%');
}
</script>
}
...@@ -205,6 +205,11 @@ ...@@ -205,6 +205,11 @@
</a> </a>
</li> </li>
<li> <li>
<a class="J_menuItem" href="@Url.Content("~/Reports/Orders/EbayStatisticsByWebsite")" data-index="0" style="padding-left:74px;">
<span>Ebay站点销售统计</span>
</a>
</li>
<li>
<a class="J_menuItem" href="@Url.Content("~/Reports/Orders/ListOrder?platform=Ebay")" data-index="0" style="padding-left:74px;"> <a class="J_menuItem" href="@Url.Content("~/Reports/Orders/ListOrder?platform=Ebay")" data-index="0" style="padding-left:74px;">
<span>订单流水</span> <span>订单流水</span>
</a> </a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment