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
612bb2c6
Commit
612bb2c6
authored
Mar 30, 2022
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复BUG:同步FBA发货
parent
d8ad4f63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
FinanceReportServices.cs
Bailun.DC.Services/FinanceReportServices.cs
+4
-2
No files found.
Bailun.DC.Services/FinanceReportServices.cs
View file @
612bb2c6
...
...
@@ -8041,11 +8041,12 @@ group by currency";
,t1.data_json AS data_json
FROM amazon_fba_summary t1
LEFT JOIN (
SELECT DISTINCT ShopName,AccountName FROM amazon_account_map
SELECT DISTINCT ShopName,AccountName
,Site
FROM amazon_account_map
)
AS t2
ON 1 = 1
AND t1.account_name = t2.shopname
AND t1.market = t2.Site
WHERE 1 = 1
AND t1.account_name in @accountName
AND t1.report_month >= @startReportMonth
...
...
@@ -8130,15 +8131,16 @@ group by currency";
count
=
db
.
Execute
(
sql
,
list
);
transaction
.
Commit
();
result
.
Result
=
true
;
}
catch
(
Exception
ex
)
{
transaction
.
Rollback
();
result
.
Message
=
ex
.
Message
;
}
}
}
result
.
Result
=
true
;
}
else
{
...
...
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