You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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(); }
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: