123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Tax\Model\Sales\Order;
- /**
- * @method int getOrderId()
- * @method \Magento\Tax\Model\Sales\Order\Tax setOrderId(int $value)
- * @method int getPriority()
- * @method \Magento\Tax\Model\Sales\Order\Tax setPriority(int $value)
- * @method int getPosition()
- * @method \Magento\Tax\Model\Sales\Order\Tax setPosition(int $value)
- * @method int getProcess()
- * @method \Magento\Tax\Model\Sales\Order\Tax setProcess(int $value)
- * @method float getBaseRealAmount()
- * @method \Magento\Tax\Model\Sales\Order\Tax setBaseRealAmount(float $value)
- * @codeCoverageIgnore
- */
- class Tax extends \Magento\Framework\Model\AbstractExtensibleModel implements
- \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxInterface
- {
- /**#@+
- * Constants defined for keys of array, makes typos less likely
- */
- const KEY_CODE = 'code';
- const KEY_TITLE = 'title';
- const KEY_PERCENT = 'percent';
- const KEY_AMOUNT = 'amount';
- const KEY_BASE_AMOUNT = 'base_amount';
- const KEY_RATES = 'rates';
- /**#@-*/
- /**
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Tax\Model\ResourceModel\Sales\Order\Tax::class);
- }
- /**
- * {@inheritdoc}
- */
- public function getCode()
- {
- return $this->getData(self::KEY_CODE);
- }
- /**
- * {@inheritdoc}
- */
- public function getTitle()
- {
- return $this->getData(self::KEY_TITLE);
- }
- /**
- * {@inheritdoc}
- */
- public function getPercent()
- {
- return $this->getData(self::KEY_PERCENT);
- }
- /**
- * {@inheritdoc}
- */
- public function getAmount()
- {
- return $this->getData(self::KEY_AMOUNT);
- }
- /**
- * {@inheritdoc}
- */
- public function getBaseAmount()
- {
- return $this->getData(self::KEY_BASE_AMOUNT);
- }
- /**
- * Set code
- *
- * @param string $code
- * @return $this
- */
- public function setCode($code)
- {
- return $this->setData(self::KEY_CODE, $code);
- }
- /**
- * Set Title
- *
- * @param string $title
- * @return $this
- */
- public function setTitle($title)
- {
- return $this->setData(self::KEY_TITLE, $title);
- }
- /**
- * Set Tax Percent
- *
- * @param float $percent
- * @return $this
- */
- public function setPercent($percent)
- {
- return $this->setData(self::KEY_PERCENT, $percent);
- }
- /**
- * Set tax amount
- *
- * @param float $amount
- * @return $this
- */
- public function setAmount($amount)
- {
- return $this->setData(self::KEY_AMOUNT, $amount);
- }
- /**
- * Set tax amount in base currency
- *
- * @param float $baseAmount
- * @return $this
- */
- public function setBaseAmount($baseAmount)
- {
- return $this->setData(self::KEY_BASE_AMOUNT, $baseAmount);
- }
- /**
- *
- * @return \Magento\Tax\Api\Data\AppliedTaxRateInterface[]
- */
- public function getRates()
- {
- return $this->getData(self::KEY_RATES);
- }
- /**
- *
- * @param \Magento\Tax\Api\Data\AppliedTaxRateInterface[] $rates
- * @return $this
- */
- public function setRates($rates)
- {
- return $this->setData(self::KEY_RATES, $rates);
- }
- /**
- * {@inheritdoc}
- *
- * @return \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxExtensionInterface|null
- */
- public function getExtensionAttributes()
- {
- return $this->_getExtensionAttributes();
- }
- /**
- * {@inheritdoc}
- *
- * @param \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxExtensionInterface $extensionAttributes
- * @return $this
- */
- public function setExtensionAttributes(
- \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxExtensionInterface $extensionAttributes
- ) {
- return $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|