Merge branch 'develop' into feature/CASH-1636

This commit is contained in:
CarlNation 2025-10-22 12:58:30 -04:00 committed by GitHub
commit c17d9bfc3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -285,6 +285,7 @@ export default {
sessionData.subTotalPrice = getSubTotal(order?.lineItems);
sessionData.totalPrice = getAmountDue(order?.lineItems, true);
sessionData.userAgent = navigator.userAgent;
sessionData.cashPriceSubTotal = order?.cashPriceSubTotal;
await baseMixin.methods.dispatchStoreAction(
storeActions.LOG_FMG_SESSION_DATA,

View file

@ -1642,6 +1642,7 @@ export const actions = {
subTotalPrice,
totalPrice,
userAgent,
cashPriceSubTotal,
}
) {
var payload = {
@ -1688,7 +1689,8 @@ export const actions = {
isItac: isItac,
subTotalPrice: subTotalPrice,
totalPrice: totalPrice,
userAgent,
userAgent: userAgent,
cashPriceSubTotal: cashPriceSubTotal,
};
return globalMethods.callHttpClient({