Code Integration
Templates
There are four templates that must be integrated into your storefront templates:
int_changeup_sfra/cartridge/templates/default/changeUp/checkout/checkout.isml
int_changeup_sfra/cartridge/templates/default/changeUp/checkout/confirmation.isml
int_changeup_sfra/cartridge/templates/default/changeUp/checkout/donationPrice.isml
int_changeup_sfra/cartridge/templates/default/changeUp/product/productDetail.isml
int_changeup_sfra/cartridge/templates/default/changeUp/checkout/ donationLineSummary.isml
These files need to be included in these existing SFRA files, respectively:
[app_storefront_overlay]/cartridge/templates/[locale]/checkout/checkout.isml
[app_storefront_overlay]/cartridge/templates/[locale]/checkout/confirmation/confirmation.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/components/pricing/main.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/productDetails.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/bundleDetails.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/components/setItems.isml
[app_storefront_overlay]/cartridge/templates/default/checkout/orderTotalSummary.isml
checkout.isml
[app_storefront_overlay]/cartridge/templates/[locale]/checkout/checkout.isml
confirmation.isml
[app_storefront_overlay]/cartridge/templates/[locale]/checkout/confirmation/confirmation.isml
pricing/main.isml
[app_storefront_overlay]/cartridge/templates/default/product/components/pricing/main.isml
productDetails.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/productDetails.isml
bundleDetails.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/bundleDetails.isml
setItems.isml
[app_storefront_overlay]/cartridge/templates/[locale]/product/components/setItems.isml
donationLineSummary.isml
int_changeup_sfra/cartridge/templates/default/changeUp/checkout/donationLineSummary.isml
Some templates need to be modified to avoid changes in the quantity for changeup donation product; you need to add a condition:
Templates to be modified:
[app_storefront_overlay]/cartridge/templates/[locale]/cart/productCard/cartProductCardProductPrice.isml
[app_storefront_overlay]/cartridge/templates/[locale]/checkout/productCard/productCard.isml
[app_storefront_overlay]/cartridge/templates/[locale]/cart/productCard/cartProductCardEdit.isml
Script
A slight change is needed in the calculateProductPrices() function; you need to extend the scripts/hooks/cart/calculate.js file or the file used for the dw.order.calculate hook inside the custom and add the hook path in the hooks.json and package.json files. Because the donation line item does not have a price book price, you must handle the product id explicitly. This is an example applied to the default SFRA script. On line 125, you must substitute:
Calculate.js
With
The totals.js model is another script extended in the int_changeup_sfra cartridge. Make sure there is no other cartridge overwriting this model; if it exists, copy the logic.
cartridges\int_changeup_sfra\cartridge\models\totals.js
Last updated