mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
软件购买-创建购买记录,支付方式枚举值错误修正
This commit is contained in:
+5
-5
@@ -260,7 +260,7 @@ public class PayProductProcessor {
|
||||
.purchaseDurationUnit(productsDetailDO.getDurationUnit())
|
||||
.startTime(startTime)
|
||||
.endTime(endTime)
|
||||
.paymentMethod(PayProductChannelCodeEnum.BALANCE_ONLY.getCode())
|
||||
.paymentMethod(PayProductChannelCodeEnum.GIFT_ONLY.getCode())
|
||||
.totalAmount(price)
|
||||
.originalAmount(originalPrice)
|
||||
.monthAverageAmount(monthAverageAmount)
|
||||
@@ -315,7 +315,7 @@ public class PayProductProcessor {
|
||||
.purchaseDurationUnit(productsDetailDO.getDurationUnit())
|
||||
.startTime(startTime)
|
||||
.endTime(endTime)
|
||||
.paymentMethod(PayProductChannelCodeEnum.BALANCE_ONLY.getCode())
|
||||
.paymentMethod(PayProductChannelCodeEnum.ALIPAY_PC.getCode())
|
||||
.totalAmount(price)
|
||||
.originalAmount(originalPrice)
|
||||
.monthAverageAmount(monthAverageAmount)
|
||||
@@ -352,7 +352,7 @@ public class PayProductProcessor {
|
||||
.purchaseDurationUnit(productsDetailDO.getDurationUnit())
|
||||
.startTime(startTime)
|
||||
.endTime(endTime)
|
||||
.paymentMethod(PayProductChannelCodeEnum.BALANCE_ONLY.getCode())
|
||||
.paymentMethod(PayProductChannelCodeEnum.WECHAT_NATIVE.getCode())
|
||||
.totalAmount(price)
|
||||
.originalAmount(originalPrice)
|
||||
.monthAverageAmount(monthAverageAmount)
|
||||
@@ -472,7 +472,7 @@ public class PayProductProcessor {
|
||||
.purchaseDurationUnit(productsDetailDO.getDurationUnit())
|
||||
.startTime(startTime)
|
||||
.endTime(endTime)
|
||||
.paymentMethod(PayChannelCodeEnum.ALIPAY_PC.equals(payChannelCodeEnum) ? PayProductChannelCodeEnum.BALANCE_AND_GIFT_AND_ALIPAY.getCode() : PayProductChannelCodeEnum.BALANCE_AND_GIFT_AND_WECHAT.getCode())
|
||||
.paymentMethod(PayChannelCodeEnum.ALIPAY_PC.equals(payChannelCodeEnum) ? PayProductChannelCodeEnum.BALANCE_AND_ALIPAY.getCode() : PayProductChannelCodeEnum.BALANCE_AND_WECHAT.getCode())
|
||||
.totalAmount(price)
|
||||
.originalAmount(originalPrice)
|
||||
.monthAverageAmount(monthAverageAmount)
|
||||
@@ -628,7 +628,7 @@ public class PayProductProcessor {
|
||||
.purchaseDurationUnit(productsDetailDO.getDurationUnit())
|
||||
.startTime(startTime)
|
||||
.endTime(endTime)
|
||||
.paymentMethod(PayProductChannelCodeEnum.BALANCE_AND_GIFT.getCode())
|
||||
.paymentMethod(PayChannelCodeEnum.ALIPAY_PC.equals(payChannelCodeEnum) ? PayProductChannelCodeEnum.BALANCE_AND_GIFT_AND_ALIPAY.getCode() : PayProductChannelCodeEnum.BALANCE_AND_GIFT_AND_WECHAT.getCode())
|
||||
.totalAmount(price)
|
||||
.originalAmount(originalPrice)
|
||||
.monthAverageAmount(monthAverageAmount)
|
||||
|
||||
Reference in New Issue
Block a user