on ‎2018 May 02 3:27 PM
ERROR [hybrisHTTP31] [SummaryCheckoutStepController] Cart 00003001 does not have any tax values, which means the tax cacluation was not properly done, placement of order can't continue
Getting this error while final checkout. Pls suggest me how can I remove this ?
Request clarification before answering.
Please give the ProductTaxCode or else If your country don't have tax defined or tax free, then override validate order form and remove this check:
if (!getCheckoutFacade().containsTaxValues() )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I faced the same inconvenience, import in hAC this impEx structure
INSERT_UPDATE ProductTaxCode;productCode[unique=true];taxCode;taxArea[unique=true] Where:
productCode: Product identifier
taxCode: Tax identifier
taxArea: ISO code for country
Example ;Product1;P0000000;US
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your products should have a taxGroup assigned; I'm assuming that you're working on the electronics store, which would imply that one of the ootb impexes should just do that. If so: search for an ootb impex assiging a Europe1PriceFactory_PTG to your products and check if there are any errors when importing this/these file(s).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.