Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
267e31ca
Commit
267e31ca
authored
Jun 28, 2021
by
zhiheng.zhang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/20210617-集点活动改造-张志恒'
parents
a195b28a
5e2b72a7
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
0 deletions
+12
-0
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/request/order/BaseCreateOrderRequest.java
+1
-0
order-application-service/src/main/java/cn/freemud/entities/dto/shoppingCart/ShoppingCartGoodsDto.java
+1
-0
order-application-service/src/main/java/cn/freemud/service/impl/OrderServiceImpl.java
+1
-0
order-application-service/src/main/java/cn/freemud/service/universal/UniversalOrderService.java
+1
-0
ordercenter-sdk/src/main/java/com/freemud/application/sdk/api/ordercenter/request/OrderExtInfoDto.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/demo/entities/bo/goods/CalculationDiscountBO.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/demo/service/impl/AbstractApportionService.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/entities/dto/ActivityCalculationDiscountResponseDto.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/entities/dto/calculate/CalculationSharingDiscountResponseDto.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/entities/dto/shoppingCart/SendPoint.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/ShoppingCartNewServiceImpl.java
+1
-0
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/calculate/CalculationSharingDiscountService.java
+1
-0
No files found.
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/request/order/BaseCreateOrderRequest.java
View file @
267e31ca
...
@@ -241,6 +241,7 @@ public class BaseCreateOrderRequest extends BaseConfig {
...
@@ -241,6 +241,7 @@ public class BaseCreateOrderRequest extends BaseConfig {
private
Integer
maxNum
;
private
Integer
maxNum
;
private
Integer
validityDateDays
;
private
Integer
validityDateDays
;
private
Boolean
storeLevel
;
private
Boolean
storeLevel
;
private
Integer
isContinueExchange
;
}
}
...
...
order-application-service/src/main/java/cn/freemud/entities/dto/shoppingCart/ShoppingCartGoodsDto.java
View file @
267e31ca
...
@@ -360,6 +360,7 @@ public class ShoppingCartGoodsDto {
...
@@ -360,6 +360,7 @@ public class ShoppingCartGoodsDto {
private
Integer
maxNum
;
private
Integer
maxNum
;
private
Integer
validityDateDays
;
private
Integer
validityDateDays
;
private
Boolean
storeLevel
;
private
Boolean
storeLevel
;
private
Integer
isContinueExchange
;
}
}
...
...
order-application-service/src/main/java/cn/freemud/service/impl/OrderServiceImpl.java
View file @
267e31ca
...
@@ -2987,6 +2987,7 @@ public class OrderServiceImpl implements Orderservice {
...
@@ -2987,6 +2987,7 @@ public class OrderServiceImpl implements Orderservice {
orderExtInfoDto
.
setSendPointEndTime
(
sendPoint
.
getEndTime
().
getTime
()
+
""
);
orderExtInfoDto
.
setSendPointEndTime
(
sendPoint
.
getEndTime
().
getTime
()
+
""
);
orderExtInfoDto
.
setSendPointSendPoint
(
sendPoint
.
getSendPoint
());
orderExtInfoDto
.
setSendPointSendPoint
(
sendPoint
.
getSendPoint
());
orderExtInfoDto
.
setSendPointStoreLevel
(
sendPoint
.
getStoreLevel
());
orderExtInfoDto
.
setSendPointStoreLevel
(
sendPoint
.
getStoreLevel
());
orderExtInfoDto
.
setIsContinueExchange
(
sendPoint
.
getIsContinueExchange
());
}
}
return
orderExtInfoDto
;
return
orderExtInfoDto
;
}
}
...
...
order-application-service/src/main/java/cn/freemud/service/universal/UniversalOrderService.java
View file @
267e31ca
...
@@ -683,6 +683,7 @@ public abstract class UniversalOrderService {
...
@@ -683,6 +683,7 @@ public abstract class UniversalOrderService {
orderExtInfoDto
.
setSendPointEndTime
(
sendPoint
.
getEndTime
().
getTime
()
+
""
);
orderExtInfoDto
.
setSendPointEndTime
(
sendPoint
.
getEndTime
().
getTime
()
+
""
);
orderExtInfoDto
.
setSendPointSendPoint
(
sendPoint
.
getSendPoint
());
orderExtInfoDto
.
setSendPointSendPoint
(
sendPoint
.
getSendPoint
());
orderExtInfoDto
.
setSendPointStoreLevel
(
sendPoint
.
getStoreLevel
());
orderExtInfoDto
.
setSendPointStoreLevel
(
sendPoint
.
getStoreLevel
());
orderExtInfoDto
.
setIsContinueExchange
(
sendPoint
.
getIsContinueExchange
());
}
}
return
orderExtInfoDto
;
return
orderExtInfoDto
;
...
...
ordercenter-sdk/src/main/java/com/freemud/application/sdk/api/ordercenter/request/OrderExtInfoDto.java
View file @
267e31ca
...
@@ -183,6 +183,7 @@ public class OrderExtInfoDto {
...
@@ -183,6 +183,7 @@ public class OrderExtInfoDto {
private
Integer
sendPointMaxNum
;
private
Integer
sendPointMaxNum
;
private
Integer
sendPointValidityDateDays
;
private
Integer
sendPointValidityDateDays
;
private
Boolean
sendPointStoreLevel
;
private
Boolean
sendPointStoreLevel
;
private
Integer
isContinueExchange
;
/**
/**
* 唤起预支付设备号
* 唤起预支付设备号
...
...
shopping-cart-application-service/src/main/java/cn/freemud/demo/entities/bo/goods/CalculationDiscountBO.java
View file @
267e31ca
...
@@ -171,6 +171,7 @@ public class CalculationDiscountBO {
...
@@ -171,6 +171,7 @@ public class CalculationDiscountBO {
private
Integer
validityDateDays
;
private
Integer
validityDateDays
;
private
Date
endTime
;
private
Date
endTime
;
private
Boolean
storeLevel
;
private
Boolean
storeLevel
;
private
Integer
isContinueExchange
;
}
}
@Data
@Data
...
...
shopping-cart-application-service/src/main/java/cn/freemud/demo/service/impl/AbstractApportionService.java
View file @
267e31ca
...
@@ -584,6 +584,7 @@ public class AbstractApportionService implements GetShoppingCartGoodsApportionSe
...
@@ -584,6 +584,7 @@ public class AbstractApportionService implements GetShoppingCartGoodsApportionSe
sendPointNew
.
setActivityCode
(
discountDTO
.
getActivityCode
());
sendPointNew
.
setActivityCode
(
discountDTO
.
getActivityCode
());
sendPointNew
.
setEndTime
(
discountDTO
.
getEndTime
());
sendPointNew
.
setEndTime
(
discountDTO
.
getEndTime
());
sendPointNew
.
setStoreLevel
(
sendPointVo
.
getStoreLevel
());
sendPointNew
.
setStoreLevel
(
sendPointVo
.
getStoreLevel
());
sendPointNew
.
setIsContinueExchange
(
sendPointVo
.
getIsContinueExchange
());
return
sendPointNew
;
return
sendPointNew
;
}
}
return
null
;
return
null
;
...
...
shopping-cart-application-service/src/main/java/cn/freemud/entities/dto/ActivityCalculationDiscountResponseDto.java
View file @
267e31ca
...
@@ -243,6 +243,7 @@ public class ActivityCalculationDiscountResponseDto {
...
@@ -243,6 +243,7 @@ public class ActivityCalculationDiscountResponseDto {
private
Integer
exchangeNum
;
private
Integer
exchangeNum
;
private
Integer
validityDateDays
;
private
Integer
validityDateDays
;
private
Boolean
storeLevel
;
private
Boolean
storeLevel
;
private
Integer
isContinueExchange
;
}
}
@Data
@Data
...
...
shopping-cart-application-service/src/main/java/cn/freemud/entities/dto/calculate/CalculationSharingDiscountResponseDto.java
View file @
267e31ca
...
@@ -185,6 +185,7 @@ public class CalculationSharingDiscountResponseDto {
...
@@ -185,6 +185,7 @@ public class CalculationSharingDiscountResponseDto {
private
Integer
validityDateDays
;
private
Integer
validityDateDays
;
private
Date
endTime
;
private
Date
endTime
;
private
Boolean
storeLevel
;
private
Boolean
storeLevel
;
private
Integer
isContinueExchange
;
}
}
@Data
@Data
...
...
shopping-cart-application-service/src/main/java/cn/freemud/entities/dto/shoppingCart/SendPoint.java
View file @
267e31ca
...
@@ -13,5 +13,6 @@ public class SendPoint {
...
@@ -13,5 +13,6 @@ public class SendPoint {
private
Integer
maxNum
;
private
Integer
maxNum
;
private
Integer
validityDateDays
;
private
Integer
validityDateDays
;
private
Boolean
storeLevel
;
private
Boolean
storeLevel
;
private
Integer
isContinueExchange
;
}
}
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/ShoppingCartNewServiceImpl.java
View file @
267e31ca
...
@@ -1465,6 +1465,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
...
@@ -1465,6 +1465,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
sendPointNew
.
setActivityCode
(
discountDTO
.
getActivityCode
());
sendPointNew
.
setActivityCode
(
discountDTO
.
getActivityCode
());
sendPointNew
.
setEndTime
(
discountDTO
.
getEndTime
());
sendPointNew
.
setEndTime
(
discountDTO
.
getEndTime
());
sendPointNew
.
setStoreLevel
(
sendPointVo
.
getStoreLevel
());
sendPointNew
.
setStoreLevel
(
sendPointVo
.
getStoreLevel
());
sendPointNew
.
setIsContinueExchange
(
sendPointVo
.
getIsContinueExchange
());
result
.
setSendPointVo
(
sendPointNew
);
result
.
setSendPointVo
(
sendPointNew
);
}
}
...
...
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/calculate/CalculationSharingDiscountService.java
View file @
267e31ca
...
@@ -248,6 +248,7 @@ public class CalculationSharingDiscountService {
...
@@ -248,6 +248,7 @@ public class CalculationSharingDiscountService {
sendPointNew
.
setActivityCode
(
discountDTO
.
getActivityCode
());
sendPointNew
.
setActivityCode
(
discountDTO
.
getActivityCode
());
sendPointNew
.
setEndTime
(
discountDTO
.
getEndTime
());
sendPointNew
.
setEndTime
(
discountDTO
.
getEndTime
());
sendPointNew
.
setStoreLevel
(
sendPointVo
.
getStoreLevel
());
sendPointNew
.
setStoreLevel
(
sendPointVo
.
getStoreLevel
());
sendPointNew
.
setIsContinueExchange
(
sendPointVo
.
getIsContinueExchange
());
result
.
setSendPointVo
(
sendPointNew
);
result
.
setSendPointVo
(
sendPointNew
);
}
}
...
...
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