3
체크 아웃 단계 변경 중에 특성에 Magento \ Quote \ Api \ Data \ AddressInterface 클래스에 해당 설정자가 없습니다.
1-customer_address에 eav 속성을 추가합니다 $attributesInfo = [ 'reference' => [ 'label' => 'Reference', 'type' => 'varchar', 'input' => 'text', 'position' => 100, 'visible' => true, 'required' => false, ], ]; foreach ($attributesInfo as $attributeCode => $attributeParams) { $customerSetup->addAttribute('customer_address', $attributeCode, $attributeParams); } 2-모듈에 확장 속성을 추가했습니다 <extension_attributes for="Magento\Quote\Api\Data\AddressInterface"> <attribute code="reference" type="string"/> …