«quoteitem» etiketlenmiş sorular

2
Magento 2: Teklif öğesini güncelleme
Magento2 alıntı öğe güncellemeye çalışıyorum. Ama her zaman ben öğeyi kaydetmek onun yerine güncelleme yerine aynı teklif kimliği ile yeni bir öğe oluşturma. İşte kodum public function __construct( \Magento\Quote\Model\QuoteRepository $quoteRepo ){ $this->_quoteRepo = $quoteRepo; } public function updateItem(){ $quote = $this->_quoteRepo->get('id here'); foreach($quote->getAllVisibleItems() as $itemq){ $itemq->setQty(5); $itemq->setPrice(20); $itemq->save(); } } …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.