1 - Tôi thêm một thuộc tính eav cho customer_address
$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 - Tôi đã thêm thuộc tính mở rộng trong mô-đun của mình
<extension_attributes for="Magento\Quote\Api\Data\AddressInterface">
<attribute code="reference" type="string"/>
</extension_attributes>
Trong Requjs-config.js của tôi, tôi ghi đè một số tệp javascript để thêm trường tham chiếu
var config = {
"map": {
"*": {
"Magento_Checkout/js/model/shipping-save-processor/default" : "Agr_Checkout/js/shipping-save-processor-default-override",
"Magento_Customer/js/model/customer/address" : "Agr_Checkout/js/model/customer/address",
"Magento_Checkout/js/model/address-converter" : "Agr_Checkout/js/model/address-converter",
"Magento_Checkout/js/model/new-customer-address" : "Agr_Checkout/js/model/new-customer-address"
}
}
3 - Tôi xác nhận rằng trường tham chiếu đang gửi trong địa chỉ
4 - Khi tôi gửi thông tin giao hàng của mình (Nhấp vào Tiếp theo) Tôi gặp lỗi này: "Thuộc tính" Tham chiếu "không có trình thiết lập tương ứng trong lớp" Magento \ Trích dẫn \ Api \ Data \ addressInterface "."
Tôi đã làm: - Làm sạch và xóa bộ nhớ cache magento - Chạy thiết lập: nâng cấp - Chạy thiết lập: di: biên dịch
Tôi đang làm gì sai?