Browse Source

Add the missing extra properties mapping.

pull/143/head
gdlcf88 4 years ago
parent
commit
f341df23b0
  1. 3
      modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.Application/EasyAbp/EShop/Payments/Payments/PaymentAppService.cs

3
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);
}

Loading…
Cancel
Save