You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/WeeeGraphQl/etc/schema.graphqls
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@ type FixedProductTax @doc(description: "A single FPT that can be applied to a pr
16
16
}
17
17
18
18
typeStoreConfig {
19
-
product_fixed_product_tax_display_setting : FixedProductTaxDisplaySettings @doc(description: "The product page display setting for the fixed product tax") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\StoreConfig")
20
-
category_fixed_product_tax_display_setting : FixedProductTaxDisplaySettings @doc(description: "The category page display setting for the fixed product tax") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\StoreConfig")
21
-
sales_fixed_product_tax_display_setting : FixedProductTaxDisplaySettings @doc(description: "The sales modules pages display setting for the fixed product tax") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\StoreConfig")
19
+
product_fixed_product_tax_display_setting : FixedProductTaxDisplaySettings @doc(description: "Corresponds to the **Display Prices On Product View Page** field. It indicates how FPT information is displayed on product pages") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\StoreConfig")
20
+
category_fixed_product_tax_display_setting : FixedProductTaxDisplaySettings @doc(description: "Corresponds to the **Display Prices In Product Lists** field. It indicates how FPT information is displayed on category pages") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\StoreConfig")
21
+
sales_fixed_product_tax_display_setting : FixedProductTaxDisplaySettings @doc(description: "Corresponds to the **Display Prices In Sales Modules** field. It indicates how FPT information is displayed on cart, checkout, and order pages") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\StoreConfig")
22
22
}
23
23
24
24
enumFixedProductTaxDisplaySettings@doc(description: "This enumeration display settings for the fixed product tax") {
25
-
INCLUDING_FPT@doc(description: "Fixed product tax amount(s) is included into the price and details from fixed_product_taxes should not be displayed")
26
-
INCLUDING_FPT_AND_FPT_DESCRIPTION@doc(description: "Fixed product tax amount(s) is included into the price and the details from fixed_product_taxes should be displayed")
27
-
EXCLUDING_FPT_INCLUDING_FPT_AND_FPT_DESCRIPTION@doc(description: "Fixed product tax amount(s) is included into the price and the details from fixed_product_taxes should be shown, also price without the amount(s) of fixed_product_taxes should be displayed")
28
-
EXCLUDING_FPT@doc(description: "Fixed product tax amount(s) is excluded from the price and details from fixed_product_taxes should not be displayed")
29
-
NONE@doc(description: "Fixed product tax feature is disabled and we should not show or query fixed_product_taxes field")
25
+
INCLUDE_FPT_WITHOUT_DETAILS@doc(description: "The displayed price includes the FPT amount without displaying the ProductPrice.fixed_product_taxes values. This value corresponds to **Including FPT only**")
26
+
INCLUDE_FPT_WITH_DETAILS@doc(description: "The displayed price includes the FPT amount while displaying the values of ProductPrice.fixed_product_taxes separately. This value corresponds to **Including FPT and FPT description**")
27
+
EXCLUDE_FPT_WITH_DETAILS@doc(description: "The displayed price does not include the FPT amount. The values of ProductPrice.fixed_product_taxes are displayed separately. This value corresponds to **Excluding FPT, Including FPT description and final price**")
28
+
EXCLUDE_FPT_WITHOUT_DETAILS@doc(description: "The displayed price does not include the FPT amount. The values from ProductPrice.fixed_product_taxes are not displayed. This value corresponds to **Excluding FPT**")
29
+
FPT_DISABLED@doc(description: "The FPT feature is not enabled. You can omit ProductPrice.fixed_product_taxes from your query")
0 commit comments