Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dc-java
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
huluobin
dc-java
Commits
d5bdc1d1
Commit
d5bdc1d1
authored
Mar 25, 2022
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改逻辑:WFS的发货数不用从配货单信息拿, WFS只要下单walmart就发货
parent
8a272c69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
OrderSyncJob.java
...s-order/src/main/java/com/bailuntec/job/OrderSyncJob.java
+3
-0
PlatformType.java
...ain/java/com/bailuntec/domain/enumerate/PlatformType.java
+2
-1
No files found.
data-base/base-sync-oms-order/src/main/java/com/bailuntec/job/OrderSyncJob.java
View file @
d5bdc1d1
...
...
@@ -254,6 +254,9 @@ public class OrderSyncJob extends PointJob {
//FBA的发货数不用从配货单信息拿, FBA只要下单亚马逊就发货
dcBaseOmsSku
.
setBailunSkuQuantityShipped
(
bailunSkuObj
.
getBailunSkuQuantityOrdered
());
checkFbaFee
(
dcBaseOmsSku
,
dcBaseOmsOrder
);
}
else
if
(
PlatformType
.
WFS
.
value
().
equals
(
omsResult
.
getPlatformType
().
toUpperCase
()))
{
//WFS的发货数不用从配货单信息拿, WFS只要下单walmart就发货
dcBaseOmsSku
.
setBailunSkuQuantityShipped
(
bailunSkuObj
.
getBailunSkuQuantityOrdered
());
}
//ebay的平台费直接改为读取oms的
...
...
data-common/src/main/java/com/bailuntec/domain/enumerate/PlatformType.java
View file @
d5bdc1d1
...
...
@@ -21,7 +21,8 @@ public enum PlatformType {
PriceMinister
(
14
,
"PRICEMINISTER"
),
wwFnac
(
15
,
"WWFNAC"
),
Marketing
(
16
,
"MARKETING"
),
Shopify
(
21
,
"SHOPIFY"
);
Shopify
(
21
,
"SHOPIFY"
),
WFS
(
34
,
"WFS"
);
private
final
int
code
;
private
final
String
value
;
...
...
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