From f341df23b0a024c8dc7f2bcff36f11b71cb19fd9 Mon Sep 17 00:00:00 2001 From: gdlcf88 Date: Fri, 8 Apr 2022 18:05:41 +0800 Subject: [PATCH] Add the missing extra properties mapping. --- .../EasyAbp/EShop/Payments/Payments/PaymentAppService.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.Application/EasyAbp/EShop/Payments/Payments/PaymentAppService.cs b/modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.Application/EasyAbp/EShop/Payments/Payments/PaymentAppService.cs index a2156ac0..736dbeb1 100644 --- a/modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.Application/EasyAbp/EShop/Payments/Payments/PaymentAppService.cs +++ b/modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.Application/EasyAbp/EShop/Payments/Payments/PaymentAppService.cs @@ -12,6 +12,7 @@ using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Volo.Abp.Data; using Volo.Abp.EventBus.Distributed; +using Volo.Abp.ObjectExtending; using Volo.Abp.Users; namespace EasyAbp.EShop.Payments.Payments @@ -116,6 +117,8 @@ namespace EasyAbp.EShop.Payments.Payments orders.First().Currency, paymentItems ); + + input.MapExtraPropertiesTo(createPaymentEto); await _distributedEventBus.PublishAsync(createPaymentEto); }