123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Tax\Model\TaxDetails;
- use Magento\Framework\Model\AbstractExtensibleModel;
- use Magento\Tax\Api\Data\TaxDetailsItemInterface;
- /**
- * @codeCoverageIgnore
- */
- class ItemDetails extends AbstractExtensibleModel implements TaxDetailsItemInterface
- {
- /**#@+
- * Constants defined for keys of array, makes typos less likely
- */
- const KEY_CODE = 'code';
- const KEY_TYPE = 'type';
- const KEY_TAX_PERCENT = 'tax_percent';
- const KEY_PRICE = 'price';
- const KEY_PRICE_INCL_TAX = 'price_incl_tax';
- const KEY_ROW_TOTAL = 'row_total';
- const KEY_ROW_TOTAL_INCL_TAX = 'row_total_incl_tax';
- const KEY_ROW_TAX = 'row_tax';
- const KEY_TAXABLE_AMOUNT = 'taxable_amount';
- const KEY_DISCOUNT_AMOUNT = 'discount_amount';
- const KEY_APPLIED_TAXES = 'applied_taxes';
- const KEY_ASSOCIATED_ITEM_CODE = 'associated_item_code';
- const KEY_DISCOUNT_TAX_COMPENSATION_AMOUNT = 'discount_tax_compensation_amount';
- /**#@-*/
- /**
- * {@inheritdoc}
- */
- public function getCode()
- {
- return $this->getData(self::KEY_CODE);
- }
- /**
- * {@inheritdoc}
- */
- public function getType()
- {
- return $this->getData(self::KEY_TYPE);
- }
- /**
- * {@inheritdoc}
- */
- public function getTaxPercent()
- {
- return $this->getData(self::KEY_TAX_PERCENT);
- }
- /**
- * {@inheritdoc}
- */
- public function getPrice()
- {
- return $this->getData(self::KEY_PRICE);
- }
- /**
- * {@inheritdoc}
- */
- public function getPriceInclTax()
- {
- return $this->getData(self::KEY_PRICE_INCL_TAX);
- }
- /**
- * {@inheritdoc}
- */
- public function getRowTotal()
- {
- return $this->getData(self::KEY_ROW_TOTAL);
- }
- /**
- * {@inheritdoc}
- */
- public function getRowTotalInclTax()
- {
- return $this->getData(self::KEY_ROW_TOTAL_INCL_TAX);
- }
- /**
- * {@inheritdoc}
- */
- public function getRowTax()
- {
- return $this->getData(self::KEY_ROW_TAX);
- }
- /**
- * {@inheritdoc}
- */
- public function getTaxableAmount()
- {
- return $this->getData(self::KEY_TAXABLE_AMOUNT);
- }
- /**
- * {@inheritdoc}
- */
- public function getDiscountAmount()
- {
- return $this->getData(self::KEY_DISCOUNT_AMOUNT);
- }
- /**
- * {@inheritdoc}
- */
- public function getDiscountTaxCompensationAmount()
- {
- return $this->getData(self::KEY_DISCOUNT_TAX_COMPENSATION_AMOUNT);
- }
- /**
- * {@inheritdoc}
- */
- public function getAppliedTaxes()
- {
- return $this->getData(self::KEY_APPLIED_TAXES);
- }
- /**
- * {@inheritdoc}
- */
- public function getAssociatedItemCode()
- {
- return $this->getData(self::KEY_ASSOCIATED_ITEM_CODE);
- }
- /**
- * Set code (sku or shipping code)
- *
- * @param string $code
- * @return $this
- */
- public function setCode($code)
- {
- return $this->setData(self::KEY_CODE, $code);
- }
- /**
- * Set type (shipping, product, weee, gift wrapping, etc
- *
- * @param string $type
- * @return $this
- */
- public function setType($type)
- {
- return $this->setData(self::KEY_TYPE, $type);
- }
- /**
- * Set tax_percent
- *
- * @param float $taxPercent
- * @return $this
- */
- public function setTaxPercent($taxPercent)
- {
- return $this->setData(self::KEY_TAX_PERCENT, $taxPercent);
- }
- /**
- * Set price
- *
- * @param float $price
- * @return $this
- */
- public function setPrice($price)
- {
- return $this->setData(self::KEY_PRICE, $price);
- }
- /**
- * Set price including tax
- *
- * @param float $priceInclTax
- * @return $this
- */
- public function setPriceInclTax($priceInclTax)
- {
- return $this->setData(self::KEY_PRICE_INCL_TAX, $priceInclTax);
- }
- /**
- * Set row total
- *
- * @param float $rowTotal
- * @return $this
- */
- public function setRowTotal($rowTotal)
- {
- return $this->setData(self::KEY_ROW_TOTAL, $rowTotal);
- }
- /**
- * Set row total including tax
- *
- * @param float $rowTotalInclTax
- * @return $this
- */
- public function setRowTotalInclTax($rowTotalInclTax)
- {
- return $this->setData(self::KEY_ROW_TOTAL_INCL_TAX, $rowTotalInclTax);
- }
- /**
- * Set row tax amount
- *
- * @param float $rowTax
- * @return $this
- */
- public function setRowTax($rowTax)
- {
- return $this->setData(self::KEY_ROW_TAX, $rowTax);
- }
- /**
- * Set taxable amount
- *
- * @param float $taxableAmount
- * @return $this
- */
- public function setTaxableAmount($taxableAmount)
- {
- return $this->setData(self::KEY_TAXABLE_AMOUNT, $taxableAmount);
- }
- /**
- * Set discount amount
- *
- * @param float $discountAmount
- * @return $this
- */
- public function setDiscountAmount($discountAmount)
- {
- return $this->setData(self::KEY_DISCOUNT_AMOUNT, $discountAmount);
- }
- /**
- * Set discount tax compensation amount
- *
- * @param float $discountTaxCompensationAmount
- * @return $this
- */
- public function setDiscountTaxCompensationAmount($discountTaxCompensationAmount)
- {
- return $this->setData(
- self::KEY_DISCOUNT_TAX_COMPENSATION_AMOUNT,
- $discountTaxCompensationAmount
- );
- }
- /**
- * Set applied taxes
- *
- * @param \Magento\Tax\Api\Data\AppliedTaxInterface[] $appliedTaxes
- * @return $this
- */
- public function setAppliedTaxes(array $appliedTaxes = null)
- {
- return $this->setData(self::KEY_APPLIED_TAXES, $appliedTaxes);
- }
- /**
- * Set associated item code
- *
- * @param int $associatedItemCode
- * @return $this
- */
- public function setAssociatedItemCode($associatedItemCode)
- {
- return $this->setData(self::KEY_ASSOCIATED_ITEM_CODE, $associatedItemCode);
- }
- /**
- * {@inheritdoc}
- *
- * @return \Magento\Tax\Api\Data\TaxDetailsItemExtensionInterface|null
- */
- public function getExtensionAttributes()
- {
- return $this->_getExtensionAttributes();
- }
- /**
- * {@inheritdoc}
- *
- * @param \Magento\Tax\Api\Data\TaxDetailsItemExtensionInterface $extensionAttributes
- * @return $this
- */
- public function setExtensionAttributes(\Magento\Tax\Api\Data\TaxDetailsItemExtensionInterface $extensionAttributes)
- {
- return $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|