Merge branch 'develop' into feature/CASH-1636
This commit is contained in:
commit
c17d9bfc3d
2 changed files with 4 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Reference in a new issue