@shopware-ag/acceptance-test-suite 12.8.2 → 12.8.3
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1923,6 +1923,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
1923
1923
|
creditItem: string;
|
|
1924
1924
|
orderNumber: string;
|
|
1925
1925
|
plusVat: string;
|
|
1926
|
+
includeVat: string;
|
|
1926
1927
|
vatSuffix: string;
|
|
1927
1928
|
shippingCosts: string;
|
|
1928
1929
|
totalGross: string;
|
|
@@ -2912,6 +2913,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2912
2913
|
creditItem: string;
|
|
2913
2914
|
orderNumber: string;
|
|
2914
2915
|
plusVat: string;
|
|
2916
|
+
includeVat: string;
|
|
2915
2917
|
vatSuffix: string;
|
|
2916
2918
|
shippingCosts: string;
|
|
2917
2919
|
totalGross: string;
|
|
@@ -3893,6 +3895,7 @@ declare const baseNamespaces: {
|
|
|
3893
3895
|
creditItem: string;
|
|
3894
3896
|
orderNumber: string;
|
|
3895
3897
|
plusVat: string;
|
|
3898
|
+
includeVat: string;
|
|
3896
3899
|
vatSuffix: string;
|
|
3897
3900
|
shippingCosts: string;
|
|
3898
3901
|
totalGross: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1923,6 +1923,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
1923
1923
|
creditItem: string;
|
|
1924
1924
|
orderNumber: string;
|
|
1925
1925
|
plusVat: string;
|
|
1926
|
+
includeVat: string;
|
|
1926
1927
|
vatSuffix: string;
|
|
1927
1928
|
shippingCosts: string;
|
|
1928
1929
|
totalGross: string;
|
|
@@ -2912,6 +2913,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2912
2913
|
creditItem: string;
|
|
2913
2914
|
orderNumber: string;
|
|
2914
2915
|
plusVat: string;
|
|
2916
|
+
includeVat: string;
|
|
2915
2917
|
vatSuffix: string;
|
|
2916
2918
|
shippingCosts: string;
|
|
2917
2919
|
totalGross: string;
|
|
@@ -3893,6 +3895,7 @@ declare const baseNamespaces: {
|
|
|
3893
3895
|
creditItem: string;
|
|
3894
3896
|
orderNumber: string;
|
|
3895
3897
|
plusVat: string;
|
|
3898
|
+
includeVat: string;
|
|
3896
3899
|
vatSuffix: string;
|
|
3897
3900
|
shippingCosts: string;
|
|
3898
3901
|
totalGross: string;
|
package/dist/index.mjs
CHANGED
|
@@ -1364,6 +1364,7 @@ const orders$1 = {
|
|
|
1364
1364
|
creditItem: "CreditItem",
|
|
1365
1365
|
orderNumber: "Order number",
|
|
1366
1366
|
plusVat: "plus",
|
|
1367
|
+
includeVat: "incl.",
|
|
1367
1368
|
vatSuffix: "% VAT",
|
|
1368
1369
|
shippingCosts: "Shipping costs:",
|
|
1369
1370
|
totalGross: "Total (gross):"
|
|
@@ -2580,6 +2581,7 @@ const orders = {
|
|
|
2580
2581
|
creditItem: "Gutschrift",
|
|
2581
2582
|
orderNumber: "Bestellnummer",
|
|
2582
2583
|
plusVat: "zzgl.",
|
|
2584
|
+
includeVat: "inkl.",
|
|
2583
2585
|
vatSuffix: "% MwSt.",
|
|
2584
2586
|
shippingCosts: "Versandkosten:",
|
|
2585
2587
|
totalGross: "Gesamtsumme (brutto):"
|
|
@@ -7426,7 +7428,7 @@ class AccountOrder extends BaseAccount {
|
|
|
7426
7428
|
});
|
|
7427
7429
|
const orderImage = orderItem.locator(".line-item-img-link");
|
|
7428
7430
|
const taxPrice = orderItem.locator(
|
|
7429
|
-
`dt:text-matches('${translate("storefront:account:orders.
|
|
7431
|
+
`dt:text-matches('${translate("storefront:account:orders.includeVat")} [0-9]\\+\\?${translate("storefront:account:orders.vatSuffix")}') + dd`
|
|
7430
7432
|
);
|
|
7431
7433
|
const shippingCosts = orderItem.locator(`dt:text-matches('${translate("storefront:account:orders.shippingCosts")}') + dd`);
|
|
7432
7434
|
const totalGross = orderItem.locator(`dt:text-matches('${translate("storefront:account:orders.totalGross")}') + dd`);
|