«quoteitem» 태그된 질문

2
마 젠토 2 : 견적 항목 업데이트
magento2에서 견적 항목을 업데이트하려고합니다. 그러나 매번 항목을 저장할 때마다 업데이트하지 않고 동일한 견적 ID로 새 항목을 만듭니다. 여기 내 코드가 있습니다 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(); } } 그러나 항목을 저장할 때마다 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.