-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
Kayıt olmadan müşteriler ödeme yapmak isteyebilir.
Mevcut kodlarda Guset Customer ad, soyad ve eposta adresleri boş geliyor ve ödeme yapılamıyor.
Misafir müşteri ad, soyad ve eposta bilgileri Fatura bilgilerinden çekilebilir.
var customerName = _genericAttributeService.GetAttribute<string>(customer, NopCustomerDefaults.FirstNameAttribute);
+ if (customerName == null)
+ { customerName = billingAddress.FirstName.ToString(); }
var customerSurName = _genericAttributeService.GetAttribute<string>(customer, NopCustomerDefaults.LastNameAttribute);
+ if (customerSurName == null)
+ { customerSurName = billingAddress.LastName.ToString(); }
Metadata
Metadata
Assignees
Labels
No labels