flowrix 1.0.1-beta.155 → 1.0.1-beta.156
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -147,6 +147,10 @@ export default function() {
|
|
|
147
147
|
cartInfo.totals = checkoutStore?.config?.calculations ? checkoutStore?.config?.calculations : "";
|
|
148
148
|
let shippingmethods = checkoutStore.config?.shippingmethods;
|
|
149
149
|
let shipping_method = shippingmethods?.filter((method) => method.selected == true)[0];
|
|
150
|
+
let quotationData = checkoutStore.config?.quotation || {};
|
|
151
|
+
if (Object.keys(quotationData).length > 0) {
|
|
152
|
+
inputData.value.email = quotationData.email;
|
|
153
|
+
}
|
|
150
154
|
let deliverymethods = checkoutStore.config.preferences;
|
|
151
155
|
let deliverymethod = false;
|
|
152
156
|
let delivery_method = deliverymethods?.filter((method) => method.selected == true)[0];
|
|
@@ -27,14 +27,14 @@ export default function() {
|
|
|
27
27
|
const pageslug = route.params.slug;
|
|
28
28
|
delete route.query.page;
|
|
29
29
|
const timestamp = Date.now();
|
|
30
|
-
router.
|
|
30
|
+
window.location.href = router.resolve({
|
|
31
31
|
path: targetRouteName,
|
|
32
32
|
params: {
|
|
33
33
|
slug: pageslug,
|
|
34
34
|
pagenumber: pageNumber
|
|
35
35
|
},
|
|
36
|
-
query: { ...route.query
|
|
37
|
-
});
|
|
36
|
+
query: { ...route.query }
|
|
37
|
+
}).href;
|
|
38
38
|
};
|
|
39
39
|
const isChecked = (slug, dynamicQueryParam) => {
|
|
40
40
|
if (route.query !== void 0) {
|