fix: 修正shopyy适配器中email字段的拼写错误

This commit is contained in:
tikkhun 2026-01-10 15:50:06 +08:00
parent ca0b5e63a7
commit eb5cb215a9
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ export class ShopyyAdapter implements ISiteAdapter {
last_name: billing.last_name || item.lastname || '', last_name: billing.last_name || item.lastname || '',
fullname: billing.name || `${item.firstname} ${item.lastname}`.trim(), fullname: billing.name || `${item.firstname} ${item.lastname}`.trim(),
company: billing.company || '', company: billing.company || '',
email: item.customer_email || item.email || '', email: item.customer_email || item.email || '',
phone: billing.phone || (item as any).telephone || '', phone: billing.phone || (item as any).telephone || '',
address_1: billing.address1 || item.payment_address || '', address_1: billing.address1 || item.payment_address || '',
address_2: billing.address2 || '', address_2: billing.address2 || '',