Sorunuza dayanarak, uzantı özelliklerinizin önceden ayarlanmış olduğu varsayımındayım. Benzer bir değişiklik yaptım ve umarım cevabım yardımcı olur.
Özel modülünüzde, varsayılan gönderim işlemcisini / varsayılanı genişletmek için bir requirjs-config dosyası oluşturun
Ad / CustomModule / görünüşüdür / ön / requirejs-config.js
var config = {
"harita": {
"*": {
'Magento_Checkout / js / model / shipping-save-işlemci / varsayılan': 'Namespace_CustomModule / js / model / shipping-save-işlemci / varsayılan'
}
}
};
Eklenti niteliğinizi yüke ekleyin.
/ * global tanımla, uyar * *
tanımlamak(
[
'Jquery',
'Ko',
'Magento_Checkout / js / model / quote',
'Magento_Checkout / js / model / kaynak-url-manager'
'Mage / depolama',
'Magento_Checkout / js / model / ödeme hizmeti',
'Magento_Checkout / js / modeli / ödeme / yönteme dönüştürücü',
'Magento_Checkout / js / modeli / hata işlemcisinin,
'Magento_Checkout / js / modeli / tam ekran yükleyici',
'Magento_Checkout / js / aksiyon / select-fatura adresi'
],
işlevi (
$,
ko,
alıntı,
resourceUrlManager,
depolama,
paymentService,
methodConverter,
errorProcessor,
fullScreenLoader,
selectBillingAddressAction
) {
'katı kullanın';
dönüş {
saveShippingInformation: function () {
var yük;
if (! quote.billingAddress ()) {
selectBillingAddressAction (quote.shippingAddress ());
}
// Gönderim adresinize uzantı özelliklerini ekleme
yük = {
adres bilgisi: {
shipping_address: quote.shippingAdresi (),
billing_address: quote.billingAddress (),
shipping_method_code: quote.shippingMethod (). yöntem_kodu,
shipping_carrier_code: quote.shippingMethod (). taşıyıcı_kodu,
extension_attributes: {
custom_field: $ ('# custom_field'). val (),
}
}
};
fullScreenLoader.startLoader ();
depoyu iade et. posta (
resourceUrlManager.getUrlForSetShippingInformation (alıntı),
JSON.stringify (payload)
) .Done (
işlev (yanıt) {
quote.setTotals (response.totals);
paymentService.setPaymentMethods (methodConverter (response.payment_methods));
fullScreenLoader.stopLoader ();
}
).başarısız(
işlev (yanıt) {
errorProcessor.process (yanıt);
fullScreenLoader.stopLoader ();
}
);
}
};
}
);
Öznitelik bir eklenti ile Alıntı için Kaydet (burada bir gözlemci kullanabilirsiniz emin değilim emin değilim).
di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Checkout\Model\ShippingInformationManagement">
<plugin name="Namespace_CustomModule_save_delivery_date_in_quote" type="Namespace\CustomModule\Plugin\Checkout\SaveAddressInformation" />
</type>
</config>
SaveAddressInformation.php
sınıf SaveAddressInformation
{
korumalı $ quoteRepository;
kamu işlevi __construct (
\ Magento \ Quote \ Model \ QuoteRepository $ quoteRepository
) {
$ this-> quoteRepository = $ quoteRepository;
}
/ **
* @param \ Magento \ Checkout \ Model \ ShippingInformationManagement $ konu
* @param $ cartId
* @param \ Magento \ Checkout \ Api \ Data \ ShippingInformationInterface $ addressInformation
* /
kamu fonksiyonu önceSaveAddressInformation (
\ Magento \ Checkout \ Model \ ShippingInformationManagement $ konu,
$ CartId,
\ Magento \ Checkout \ Api \ Data \ ShippingInformationInterface $ addressInformation
) {
$ extensionAttributes = $ addressInformation-> getExtensionAttributes ();
$ customField = $ extensionAttributes-> getCustomField ();
$ quote = $ this-> quoteRepository-> getActive ($ cartId);
$ Quote-> setCustomField ($ customField);
}
}
Özniteliği bir Observer events.xml ile siparişinize kaydedin
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="sales_model_service_quote_submit_before">
<observer name="unique_observer_name" instance="Namespace\CustomModule\Observer\SaveCustomFieldToOrder"/>
</event>
</config>
SaveCustomFieldToOrder.php
sınıf SaveCustomFieldToOrder ObserverInterface uygular
{
/ **
* @var \ Magento \ Framework \ ObjectManagerInterface
* /
korumalı $ _objectManager;
/ **
* @param \ Magento \ Framework \ ObjectManagerInterface $ objectmanager
* /
public function __construct (\ Magento \ Framework \ ObjectManagerInterface $ objectmanager)
{
$ this -> _ objectManager = $ objectmanager;
}
ortak işlev yürütme (EventObserver $ observer)
{
$ order = $ observer-> getOrder ();
$ quoteRepository = $ this -> _ objectManager-> create ('Magento \ Quote \ Model \ QuoteRepository');
/ ** @var \ Magento \ Quote \ Model \ Quote $ quote * /
$ quote = $ quoteRepository-> get ($ order-> getQuoteId ());
$ order-> setCustomField ($ quote-> getCustomField ());
$ $ döndür;
}
}