Closed
Description
Preconditions (*)
1.Magento 2.3.4
Steps to reproduce (*)
-
Set the tax class for product and customer
-
Set the tax configurations from Sales->Tax->Calculation Settings, Sales->Tax->Price Display Settings
-
Get the product data from products Graphql using this query
query{
products(
filter:{
sku:{eq:"Ammdent-RustOC"}
}
){
items{
special_price
price{
minimalPrice{
amount{
value
}
}
maximalPrice{
amount{
value
}
}
regularPrice{
amount{
value
}
}
}
price_range{
minimum_price{
regular_price{
value
currency
}
final_price{
value
}
discount{
percent_off
amount_off
}
}
maximum_price{
regular_price{
value
currency
}
final_price{
value
currency
}
}
}
}
}
Expected result (*)
- Graphql response contains product prices having tax (including/excluding) (excl. tax=21000, incl tax=23520 )according to Sales->Tax configurations
Actual result (*)
- Response contains the price(in image,21000 ) values without the calculation of tax which was saved in the tax configurations
Please provide Severity assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes.
- Severity: S0 - Affects critical data or functionality and leaves users without workaround.
- Severity: S1 - Affects critical data or functionality and forces users to employ a workaround.
- Severity: S2 - Affects non-critical data or functionality and forces users to employ a workaround.
- Severity: S3 - Affects non-critical data or functionality and does not force users to employ a workaround.
- Severity: S4 - Affects aesthetics, professional look and feel, “quality” or “usability”.