forked from yoone/API
fix: 修正shopyy适配器中email字段的拼写错误
This commit is contained in:
parent
ca0b5e63a7
commit
eb5cb215a9
|
|
@ -239,7 +239,7 @@ export class ShopyyAdapter implements ISiteAdapter {
|
|||
last_name: billing.last_name || item.lastname || '',
|
||||
fullname: billing.name || `${item.firstname} ${item.lastname}`.trim(),
|
||||
company: billing.company || '',
|
||||
email: item.customer_email || item.email || '',√
|
||||
email: item.customer_email || item.email || '',
|
||||
phone: billing.phone || (item as any).telephone || '',
|
||||
address_1: billing.address1 || item.payment_address || '',
|
||||
address_2: billing.address2 || '',
|
||||
|
|
|
|||
Loading…
Reference in New Issue