388 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			388 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Magento\GraphQl\Quote\Guest;
 | 
						|
 | 
						|
use Magento\Catalog\Test\Fixture\Product as ProductFixture;
 | 
						|
use Magento\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId;
 | 
						|
use Magento\Quote\Model\QuoteIdToMaskedQuoteIdInterface;
 | 
						|
use Magento\Quote\Test\Fixture\AddProductToCart as AddProductToCartFixture;
 | 
						|
use Magento\Quote\Test\Fixture\GuestCart as GuestCartFixture;
 | 
						|
use Magento\Checkout\Test\Fixture\SetBillingAddress as SetBillingAddressFixture;
 | 
						|
use Magento\Checkout\Test\Fixture\SetShippingAddress as SetShippingAddressFixture;
 | 
						|
use Magento\TestFramework\Fixture\DataFixture;
 | 
						|
use Magento\TestFramework\Fixture\DataFixtureStorage;
 | 
						|
use Magento\TestFramework\Fixture\DataFixtureStorageManager;
 | 
						|
use Magento\TestFramework\Helper\Bootstrap;
 | 
						|
use Magento\TestFramework\TestCase\GraphQlAbstract;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test getting cart totals for guest
 | 
						|
 */
 | 
						|
class CartTotalsTest extends GraphQlAbstract
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var GetMaskedQuoteIdByReservedOrderId
 | 
						|
     */
 | 
						|
    private $getMaskedQuoteIdByReservedOrderId;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var QuoteIdToMaskedQuoteIdInterface
 | 
						|
     */
 | 
						|
    private $quoteIdToMaskedQuoteIdInterface;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var DataFixtureStorage
 | 
						|
     */
 | 
						|
    private $fixtures;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $objectManager = Bootstrap::getObjectManager();
 | 
						|
        $this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
 | 
						|
        $this->quoteIdToMaskedQuoteIdInterface = $objectManager->get(QuoteIdToMaskedQuoteIdInterface::class);
 | 
						|
        $this->fixtures = $objectManager->get(DataFixtureStorageManager::class)->getStorage();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Tax/_files/tax_rule_for_region_1.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/apply_tax_for_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithTaxApplied()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(10, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(10.75, $cartItem['prices']['price_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(21.5, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('prices', $response['cart']);
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(21.5, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(21.5, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
 | 
						|
        $appliedTaxesResponse = $pricesResponse['applied_taxes'];
 | 
						|
 | 
						|
        self::assertEquals('US-TEST-*-Rate-1', $appliedTaxesResponse[0]['label']);
 | 
						|
        self::assertEquals(1.5, $appliedTaxesResponse[0]['amount']['value']);
 | 
						|
        self::assertEquals('USD', $appliedTaxesResponse[0]['amount']['currency']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Tax/_files/tax_rule_for_region_with_translated_titles.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/apply_tax_for_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithTranslatedTaxTitles()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(10, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(20, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(21.5, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('prices', $response['cart']);
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(21.5, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(21.5, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
 | 
						|
        $appliedTaxesResponse = $pricesResponse['applied_taxes'];
 | 
						|
 | 
						|
        self::assertEquals('Rate Title on storeview 1', $appliedTaxesResponse[0]['label']);
 | 
						|
        self::assertEquals(1.5, $appliedTaxesResponse[0]['amount']['value']);
 | 
						|
        self::assertEquals('USD', $appliedTaxesResponse[0]['amount']['currency']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/CatalogRule/_files/catalog_rule_10_off_not_logged.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithCatalogRuleApplied()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(9, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(9, $cartItem['prices']['price_including_tax']['value']);
 | 
						|
        self::assertEquals(18, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(18, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('prices', $response['cart']);
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(18, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Tax/_files/tax_rule_for_region_1.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/CatalogRule/_files/catalog_rule_10_off_not_logged.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithCatalogRuleAndTaxApplied()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(9, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(9.68, $cartItem['prices']['price_including_tax']['value']);
 | 
						|
        self::assertEquals(18, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(19.35, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('prices', $response['cart']);
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(19.35, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(19.35, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/cart_rule_discount_no_coupon.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/CatalogRule/_files/catalog_rule_10_off_not_logged.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithCatalogRuleAndCartRuleApplied()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(9, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(9, $cartItem['prices']['price_including_tax']['value']);
 | 
						|
        self::assertEquals(18, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(18, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
        self::assertEquals(9, $cartItem['prices']['total_item_discount']['value']);
 | 
						|
 | 
						|
        $discount = $cartItem['prices']['discounts'][0];
 | 
						|
        self::assertEquals("50% Off for all orders", $discount['label']);
 | 
						|
        self::assertEquals(9, $discount['amount']['value']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('prices', $response['cart']);
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(9, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(18, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(9, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Tax/_files/tax_rule_for_region_1.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/apply_tax_for_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithEmptyCart()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        self::assertArrayHasKey('prices', $response['cart']);
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(0, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(0, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(0, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(0, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
 | 
						|
        $appliedTaxesResponse = $pricesResponse['applied_taxes'];
 | 
						|
 | 
						|
        self::assertCount(0, $appliedTaxesResponse);
 | 
						|
    }
 | 
						|
 | 
						|
    #[
 | 
						|
        DataFixture(ProductFixture::class, as: 'p'),
 | 
						|
        DataFixture(GuestCartFixture::class, as: 'cart'),
 | 
						|
        DataFixture(AddProductToCartFixture::class, ['cart_id' => '$cart.id$', 'product_id' => '$p.id$', 'qty' => 2]),
 | 
						|
        DataFixture(SetBillingAddressFixture::class, ['cart_id' => '$cart.id$']),
 | 
						|
        DataFixture(SetShippingAddressFixture::class, ['cart_id' => '$cart.id$']),
 | 
						|
    ]
 | 
						|
    public function testGetTotalsWithNoTaxApplied()
 | 
						|
    {
 | 
						|
        $cart = $this->fixtures->get('cart');
 | 
						|
        $maskedQuoteId = $this->quoteIdToMaskedQuoteIdInterface->execute((int) $cart->getId());
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(10, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(10, $cartItem['prices']['price_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(20, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(20, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
        self::assertEmpty($pricesResponse['applied_taxes']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * The totals calculation is based on quote address.
 | 
						|
     * But the totals should be calculated even if no address is set
 | 
						|
     *
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     */
 | 
						|
    public function testGetCartTotalsWithNoAddressSet()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlQuery($query);
 | 
						|
 | 
						|
        $cartItem = $response['cart']['items'][0];
 | 
						|
        self::assertEquals(10, $cartItem['prices']['price']['value']);
 | 
						|
        self::assertEquals(10, $cartItem['prices']['price_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $cartItem['prices']['row_total']['value']);
 | 
						|
        self::assertEquals(20, $cartItem['prices']['row_total_including_tax']['value']);
 | 
						|
 | 
						|
        $pricesResponse = $response['cart']['prices'];
 | 
						|
        self::assertEquals(20, $pricesResponse['grand_total']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_including_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_excluding_tax']['value']);
 | 
						|
        self::assertEquals(20, $pricesResponse['subtotal_with_discount_excluding_tax']['value']);
 | 
						|
        self::assertEmpty($pricesResponse['applied_taxes']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * _security
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Tax/_files/tax_rule_for_region_1.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/apply_tax_for_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     */
 | 
						|
    public function testGetSelectedShippingMethodFromCustomerCart()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        $this->expectExceptionMessage(
 | 
						|
            "The current user cannot perform operations on cart \"$maskedQuoteId\""
 | 
						|
        );
 | 
						|
        $this->graphQlQuery($query);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Generates GraphQl query for retrieving cart totals
 | 
						|
     *
 | 
						|
     * @param string $maskedQuoteId
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    private function getQuery(string $maskedQuoteId): string
 | 
						|
    {
 | 
						|
        return <<<QUERY
 | 
						|
{
 | 
						|
  cart(cart_id: "$maskedQuoteId") {
 | 
						|
    items {
 | 
						|
      prices {
 | 
						|
        price {
 | 
						|
          value
 | 
						|
          currency
 | 
						|
        }
 | 
						|
        price_including_tax {
 | 
						|
          value
 | 
						|
          currency
 | 
						|
        }
 | 
						|
        row_total {
 | 
						|
          value
 | 
						|
          currency
 | 
						|
        }
 | 
						|
        row_total_including_tax {
 | 
						|
          value
 | 
						|
          currency
 | 
						|
        }
 | 
						|
        total_item_discount {
 | 
						|
            value
 | 
						|
        }
 | 
						|
        discounts {
 | 
						|
            label
 | 
						|
            amount {
 | 
						|
                value
 | 
						|
            }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
    prices {
 | 
						|
      grand_total {
 | 
						|
        value
 | 
						|
        currency
 | 
						|
      }
 | 
						|
      subtotal_including_tax {
 | 
						|
        value
 | 
						|
        currency
 | 
						|
      }
 | 
						|
      subtotal_excluding_tax {
 | 
						|
        value
 | 
						|
        currency
 | 
						|
      }
 | 
						|
      subtotal_with_discount_excluding_tax {
 | 
						|
        value
 | 
						|
        currency
 | 
						|
      }
 | 
						|
      applied_taxes {
 | 
						|
        label
 | 
						|
        amount {
 | 
						|
          value
 | 
						|
          currency
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
QUERY;
 | 
						|
    }
 | 
						|
}
 |