當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Payment::getId方法代碼示例

本文整理匯總了PHP中Magento\Sales\Model\Order\Payment::getId方法的典型用法代碼示例。如果您正苦於以下問題:PHP Payment::getId方法的具體用法?PHP Payment::getId怎麽用?PHP Payment::getId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Magento\Sales\Model\Order\Payment的用法示例。


在下文中一共展示了Payment::getId方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: beforeSave

 /**
  * Verify data required for saving
  *
  * @return $this
  */
 public function beforeSave()
 {
     // set parent id
     $this->_verifyPaymentObject();
     if (!$this->getId()) {
         // We need to set order and payment ids only for new transactions
         if (null !== $this->_paymentObject) {
             $this->setPaymentId($this->_paymentObject->getId());
         }
         if (null !== $this->_order) {
             $this->setOrderId($this->_order->getId());
         }
         $this->setCreatedAt($this->_dateFactory->create()->gmtDate());
     }
     return parent::beforeSave();
 }
開發者ID:opexsw,項目名稱:magento2,代碼行數:21,代碼來源:Transaction.php

示例2: addPayment

 /**
  * @param Payment $payment
  * @return $this
  */
 public function addPayment(Payment $payment)
 {
     $payment->setOrder($this)->setParentId($this->getId());
     if (!$payment->getId()) {
         $this->setPayments(array_merge($this->getPayments(), [$payment]));
         $this->setDataChanges(true);
     }
     return $this;
 }
開發者ID:niranjanssiet,項目名稱:magento2,代碼行數:13,代碼來源:Order.php

示例3: getRealParentTransactionId

 /**
  * Return additional information`s transaction_id value of parent transaction model
  *
  * @param \Magento\Sales\Model\Order\Payment $payment
  * @return string
  */
 protected function getRealParentTransactionId($payment)
 {
     $transaction = $this->transactionRepository->getByTransactionId($payment->getParentTransactionId(), $payment->getId(), $payment->getOrder()->getId());
     return $transaction->getAdditionalInformation(self::REAL_TRANSACTION_ID_KEY);
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:11,代碼來源:Directpost.php

示例4: addPayment

 /**
  * @param Payment $payment
  * @return $this
  */
 public function addPayment(Payment $payment)
 {
     $payment->setOrder($this)->setParentId($this->getId());
     if (!$payment->getId()) {
         $this->getPaymentsCollection()->addItem($payment);
         $this->setDataChanges(true);
     }
     return $this;
 }
開發者ID:zhangjiachao,項目名稱:magento2,代碼行數:13,代碼來源:Order.php

示例5: getId

 /**
  * {@inheritdoc}
  */
 public function getId()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId');
     if (!$pluginInfo) {
         return parent::getId();
     } else {
         return $this->___callPlugins('getId', func_get_args(), $pluginInfo);
     }
 }
開發者ID:CSYE6225,項目名稱:UnixSysProgramming,代碼行數:12,代碼來源:Interceptor.php


注:本文中的Magento\Sales\Model\Order\Payment::getId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。