@vendure/admin-ui 2.0.0-next.0 → 2.0.0-next.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/catalog/components/collection-contents/collection-contents.component.d.ts +8 -2
- package/catalog/components/collection-detail/collection-detail.component.d.ts +11 -4
- package/catalog/components/collection-list/collection-list.component.d.ts +2 -0
- package/catalog/components/collection-tree/array-to-tree.d.ts +1 -1
- package/catalog/components/collection-tree/collection-tree-node.component.d.ts +6 -2
- package/catalog/components/collection-tree/collection-tree.component.d.ts +2 -1
- package/catalog/components/product-variants-list/product-variants-list.component.d.ts +1 -0
- package/core/common/generated-types.d.ts +131 -2
- package/core/common/version.d.ts +1 -1
- package/core/data/definitions/collection-definitions.d.ts +1 -0
- package/core/data/providers/collection-data.service.d.ts +4 -0
- package/core/data/providers/promotion-data.service.d.ts +1 -1
- package/core/providers/local-storage/local-storage.service.d.ts +1 -0
- package/core/public_api.d.ts +2 -1
- package/core/shared/components/object-tree/object-tree.component.d.ts +3 -3
- package/core/shared/components/{product-selector/product-selector.component.d.ts → product-variant-selector/product-variant-selector.component.d.ts} +4 -4
- package/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.d.ts +18 -0
- package/core/shared/shared.module.d.ts +15 -14
- package/esm2020/catalog/components/assets/assets.component.mjs +2 -2
- package/esm2020/catalog/components/collection-contents/collection-contents.component.mjs +53 -13
- package/esm2020/catalog/components/collection-detail/collection-detail.component.mjs +57 -32
- package/esm2020/catalog/components/collection-list/collection-list.component.mjs +30 -5
- package/esm2020/catalog/components/collection-tree/array-to-tree.mjs +3 -3
- package/esm2020/catalog/components/collection-tree/collection-tree-node.component.mjs +29 -10
- package/esm2020/catalog/components/collection-tree/collection-tree.component.mjs +6 -3
- package/esm2020/catalog/components/facet-detail/facet-detail.component.mjs +2 -2
- package/esm2020/catalog/components/product-variants-list/product-variants-list.component.mjs +9 -3
- package/esm2020/catalog/providers/routing/collection-resolver.mjs +2 -1
- package/esm2020/core/app.component.module.mjs +1 -1
- package/esm2020/core/common/base-detail.component.mjs +1 -1
- package/esm2020/core/common/deactivate-aware.mjs +1 -1
- package/esm2020/core/common/generated-types.mjs +29 -1
- package/esm2020/core/common/introspection-result.mjs +255 -183
- package/esm2020/core/common/utilities/configurable-operation-utils.mjs +21 -2
- package/esm2020/core/common/version.mjs +2 -2
- package/esm2020/core/core.module.mjs +1 -1
- package/esm2020/core/data/definitions/collection-definitions.mjs +19 -1
- package/esm2020/core/data/definitions/customer-definitions.mjs +241 -241
- package/esm2020/core/data/definitions/order-definitions.mjs +2 -1
- package/esm2020/core/data/definitions/shared-definitions.mjs +29 -28
- package/esm2020/core/data/providers/collection-data.service.mjs +7 -2
- package/esm2020/core/data/providers/promotion-data.service.mjs +3 -2
- package/esm2020/core/providers/local-storage/local-storage.service.mjs +1 -1
- package/esm2020/core/public_api.mjs +3 -2
- package/esm2020/core/shared/components/asset-preview/asset-preview.component.mjs +4 -4
- package/esm2020/core/shared/components/configurable-input/configurable-input.component.mjs +10 -9
- package/esm2020/core/shared/components/help-tooltip/help-tooltip.component.mjs +2 -2
- package/esm2020/core/shared/components/object-tree/object-tree.component.mjs +4 -4
- package/esm2020/core/shared/components/product-variant-selector/product-variant-selector.component.mjs +62 -0
- package/esm2020/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.mjs +4 -4
- package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.mjs +54 -0
- package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.mjs +5 -4
- package/esm2020/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.mjs +1 -1
- package/esm2020/core/shared/shared.module.mjs +9 -5
- package/esm2020/order/components/cancel-order-dialog/cancel-order-dialog.component.mjs +8 -4
- package/esm2020/order/components/order-editor/order-editor.component.mjs +26 -10
- package/esm2020/order/components/order-table/order-table.component.mjs +2 -2
- package/esm2020/order/components/refund-order-dialog/refund-order-dialog.component.mjs +8 -4
- package/esm2020/settings/components/test-order-builder/test-order-builder.component.mjs +3 -3
- package/fesm2015/vendure-admin-ui-catalog.mjs +180 -57
- package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-core.mjs +772 -584
- package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-order.mjs +38 -16
- package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.mjs +2 -2
- package/fesm2015/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-catalog.mjs +178 -59
- package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-core.mjs +770 -581
- package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-order.mjs +36 -15
- package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-settings.mjs +2 -2
- package/fesm2020/vendure-admin-ui-settings.mjs.map +1 -1
- package/order/components/order-editor/order-editor.component.d.ts +8 -2
- package/package.json +2 -2
- package/static/i18n-messages/cs.json +6 -1
- package/static/i18n-messages/de.json +4 -1
- package/static/i18n-messages/en.json +6 -1
- package/static/i18n-messages/es.json +6 -1
- package/static/i18n-messages/fr.json +6 -1
- package/static/i18n-messages/it.json +6 -1
- package/static/i18n-messages/pl.json +6 -1
- package/static/i18n-messages/pt_BR.json +6 -1
- package/static/i18n-messages/pt_PT.json +6 -1
- package/static/i18n-messages/ru.json +6 -1
- package/static/i18n-messages/uk.json +6 -1
- package/static/i18n-messages/zh_Hans.json +6 -1
- package/static/i18n-messages/zh_Hant.json +6 -1
- package/static/styles/global/_forms.scss +3 -4
- package/static/styles/global/_overrides.scss +6 -0
- package/static/theme.min.css +1 -1
- package/static/vendure-ui-config.json +25 -10
- package/esm2020/core/shared/components/product-selector/product-selector.component.mjs +0 -62
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { FormArray, FormGroup } from '@angular/forms';
|
|
2
|
+
import { FormArray, FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { AddItemInput, AdjustOrderLineInput, BaseDetailComponent, CustomFieldConfig, DataService, GetAvailableCountriesQuery, LanguageCode, ModalService, ModifyOrderInput, NotificationService, OrderDetailFragment, ProductSelectorSearchQuery, ServerConfigService, SurchargeInput } from '@vendure/admin-ui/core';
|
|
5
|
-
import { Observable } from 'rxjs';
|
|
5
|
+
import { Observable, Subject } from 'rxjs';
|
|
6
6
|
import { OrderTransitionService } from '../../providers/order-transition.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
declare type ProductSelectorItem = ProductSelectorSearchQuery['search']['items'][number];
|
|
@@ -30,8 +30,14 @@ export declare class OrderEditorComponent extends BaseDetailComponent<OrderDetai
|
|
|
30
30
|
private modalService;
|
|
31
31
|
private orderTransitionService;
|
|
32
32
|
availableCountries$: Observable<GetAvailableCountriesQuery['countries']['items']>;
|
|
33
|
+
availableCouponCodes$: Observable<Array<{
|
|
34
|
+
code: string;
|
|
35
|
+
promotionName: string;
|
|
36
|
+
}>>;
|
|
37
|
+
couponCodeInput$: Subject<string>;
|
|
33
38
|
addressCustomFields: CustomFieldConfig[];
|
|
34
39
|
detailForm: FormGroup;
|
|
40
|
+
couponCodesControl: FormControl;
|
|
35
41
|
orderLineCustomFieldsFormArray: FormArray;
|
|
36
42
|
addItemCustomFieldsFormArray: FormArray;
|
|
37
43
|
addItemCustomFieldsForm: FormGroup;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/admin-ui",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular/animations": "13.2.3",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@ng-select/ng-select": "^8.1.1",
|
|
23
23
|
"@ngx-translate/core": "^14.0.0",
|
|
24
24
|
"@ngx-translate/http-loader": "^7.0.0",
|
|
25
|
-
"@vendure/common": "^2.0.0-next.
|
|
25
|
+
"@vendure/common": "^2.0.0-next.3",
|
|
26
26
|
"@webcomponents/custom-elements": "^1.4.3",
|
|
27
27
|
"apollo-angular": "^3.0.0",
|
|
28
28
|
"apollo-upload-client": "^17.0.0",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Výchozí varianta",
|
|
90
90
|
"display-variant-cards": "Zobrazit jako karty",
|
|
91
91
|
"display-variant-table": "Zobrazit jako tabulku",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Přetáhněte soubory k nahrávání",
|
|
93
94
|
"duplicate-sku-warning": "",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Hodnoty atributů",
|
|
97
98
|
"filter-by-name": "Filtrovat dle jména",
|
|
98
99
|
"filter-by-name-or-sku": "Filtrovat dle jména nebo SKU",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtry",
|
|
100
102
|
"group-by-product": "Seskupovat varianty",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Správa variant",
|
|
102
105
|
"move-down": "Posunout dolů",
|
|
103
106
|
"move-to": "Posunout",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Vybrat...",
|
|
241
244
|
"select-display-language": "Vyberte jazyk",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Vybrat dnešní datum",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "",
|
|
542
546
|
"search-by-order-code": "Hledat na základě kódu objednávky",
|
|
543
547
|
"select-state": "Vyberte stav",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Označit jako {state}",
|
|
545
550
|
"settle-payment": "Vypořádání platby",
|
|
546
551
|
"settle-payment-error": "Nelze vyřídit platbu",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Výsledek úlohy",
|
|
670
675
|
"job-state": "Stav úlohy"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -98,6 +98,7 @@
|
|
|
98
98
|
"filter-by-name-or-sku": "Nach Name oder Artikelnummer filtern",
|
|
99
99
|
"filters": "Filter",
|
|
100
100
|
"group-by-product": "Nach Produkt gruppieren",
|
|
101
|
+
"live-preview-contents": "",
|
|
101
102
|
"manage-variants": "Varianten verwalten",
|
|
102
103
|
"move-down": "Nach unten bewegen",
|
|
103
104
|
"move-to": "Verschieben nach",
|
|
@@ -239,6 +240,7 @@
|
|
|
239
240
|
"sample-formatting": "",
|
|
240
241
|
"select": "Auswählen...",
|
|
241
242
|
"select-display-language": "Anzeigesprache wählen",
|
|
243
|
+
"select-relation-id": "",
|
|
242
244
|
"select-today": "Heute auswählen",
|
|
243
245
|
"set-language": "",
|
|
244
246
|
"short-date": "",
|
|
@@ -541,6 +543,7 @@
|
|
|
541
543
|
"search-by-customer-last-name": "",
|
|
542
544
|
"search-by-order-code": "Suche nach Bestellnummer",
|
|
543
545
|
"select-state": "Status auswählen",
|
|
546
|
+
"set-coupon-codes": "",
|
|
544
547
|
"set-fulfillment-state": "Abwicklungsstatus wählen",
|
|
545
548
|
"settle-payment": "Zahlung durchführen",
|
|
546
549
|
"settle-payment-error": "Die Zahlung konnte nicht durchgeführt werden",
|
|
@@ -669,4 +672,4 @@
|
|
|
669
672
|
"job-result": "Job-Ergebnis",
|
|
670
673
|
"job-state": "Job-Status"
|
|
671
674
|
}
|
|
672
|
-
}
|
|
675
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Default variant",
|
|
90
90
|
"display-variant-cards": "View details",
|
|
91
91
|
"display-variant-table": "View as table",
|
|
92
|
+
"do-not-inherit-filters": "Do not inherit filters",
|
|
92
93
|
"drop-files-to-upload": "Drop files to upload",
|
|
93
94
|
"duplicate-sku-warning": "Please ensure all SKUs are unique",
|
|
94
95
|
"edit-options": "Edit options",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Facet values",
|
|
97
98
|
"filter-by-name": "Filter by name",
|
|
98
99
|
"filter-by-name-or-sku": "Filter by name or SKU",
|
|
100
|
+
"filter-inheritance": "Filter inheritance",
|
|
99
101
|
"filters": "Filters",
|
|
100
102
|
"group-by-product": "Group by product",
|
|
103
|
+
"inherit-filters-from-parent": "Inherit filters from parent",
|
|
101
104
|
"manage-variants": "Manage variants",
|
|
102
105
|
"move-down": "Move down",
|
|
103
106
|
"move-to": "Move to",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "Sample formatting",
|
|
240
243
|
"select": "Select...",
|
|
241
244
|
"select-display-language": "Select display language",
|
|
245
|
+
"select-relation-id": "Select relation ID",
|
|
242
246
|
"select-today": "Select today",
|
|
243
247
|
"set-language": "Set language",
|
|
244
248
|
"short-date": "Short date",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Search by customer last name",
|
|
542
546
|
"search-by-order-code": "Search by order code",
|
|
543
547
|
"select-state": "Select state",
|
|
548
|
+
"set-coupon-codes": "Set coupon codes",
|
|
544
549
|
"set-fulfillment-state": "Mark as {state}",
|
|
545
550
|
"settle-payment": "Settle payment",
|
|
546
551
|
"settle-payment-error": "Could not settle payment",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Job result",
|
|
670
675
|
"job-state": "Job state"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Variante por defecto",
|
|
90
90
|
"display-variant-cards": "Ver detalles",
|
|
91
91
|
"display-variant-table": "Ver como tabla",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Arrastra recursos para subirlos",
|
|
93
94
|
"duplicate-sku-warning": "Por favor, asegúrese de que todos los códigos de referencia son únicos",
|
|
94
95
|
"edit-options": "Editar opciones",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Valores de faceta",
|
|
97
98
|
"filter-by-name": "Filtrar por nombre",
|
|
98
99
|
"filter-by-name-or-sku": "Filtrar por código de referencia",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtros",
|
|
100
102
|
"group-by-product": "Agrupar por producto",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Gestionar variantes",
|
|
102
105
|
"move-down": "Mover abajo",
|
|
103
106
|
"move-to": "Mover a",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Seleccionar...",
|
|
241
244
|
"select-display-language": "Seleccionar idioma de interfaz",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Hoy",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Buscar por el apellido del cliente",
|
|
542
546
|
"search-by-order-code": "Buscar por el código de pedido",
|
|
543
547
|
"select-state": "Seleccionar estado",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Fijar como {state}",
|
|
545
550
|
"settle-payment": "Liquidar pago",
|
|
546
551
|
"settle-payment-error": "No pudo liquidar el pago",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Resultado",
|
|
670
675
|
"job-state": "Estado"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Variation par défault",
|
|
90
90
|
"display-variant-cards": "Voir détails",
|
|
91
91
|
"display-variant-table": "Voir en tant que tableau",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Déposer des fichiers pour téléverser",
|
|
93
94
|
"duplicate-sku-warning": "",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Valeurs de composant",
|
|
97
98
|
"filter-by-name": "Filtrer par nom",
|
|
98
99
|
"filter-by-name-or-sku": "Filtrer par nom ou UGS",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtres",
|
|
100
102
|
"group-by-product": "Grouper par produit",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Gérer les variations",
|
|
102
105
|
"move-down": "Déplacer vers le bas",
|
|
103
106
|
"move-to": "Déplacer à",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Selectionner...",
|
|
241
244
|
"select-display-language": "Choisir la langue d'affichage",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Choisir aujourd'hui",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Rechercher par nom du client",
|
|
542
546
|
"search-by-order-code": "Rehercher par numéro de commande",
|
|
543
547
|
"select-state": "Sélectionner un état",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Marquer {state}",
|
|
545
550
|
"settle-payment": "Régler le paiement",
|
|
546
551
|
"settle-payment-error": "Règlement du paiement échoué",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Résultat de la tâche",
|
|
670
675
|
"job-state": "Etat de la tâche"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Variante predefinita",
|
|
90
90
|
"display-variant-cards": "Visualizza dettagli",
|
|
91
91
|
"display-variant-table": "Visualizza come tabella",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Trascina file da caricare",
|
|
93
94
|
"duplicate-sku-warning": "Per favore assicurati che tutte le SKU siano univoche",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Valori attributo",
|
|
97
98
|
"filter-by-name": "Filtra per nome",
|
|
98
99
|
"filter-by-name-or-sku": "Filtra per nome o SKU",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtri",
|
|
100
102
|
"group-by-product": "Raggruppa per prodotto",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Gestione varianti",
|
|
102
105
|
"move-down": "Sposta in basso",
|
|
103
106
|
"move-to": "Sposta in",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Seleziona...",
|
|
241
244
|
"select-display-language": "Seleziona lingua",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Seleziona oggi",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Cerca per cognome cliente",
|
|
542
546
|
"search-by-order-code": "Cerca per codice ordine",
|
|
543
547
|
"select-state": "Seleziona stato",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Segna come {state}",
|
|
545
550
|
"settle-payment": "Incassa pagamento",
|
|
546
551
|
"settle-payment-error": "Non è stato possibile incassare il pagamento",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Risultato operazione",
|
|
670
675
|
"job-state": "Stato operazione"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Domyślny wariant",
|
|
90
90
|
"display-variant-cards": "Wyświetl szczegóły",
|
|
91
91
|
"display-variant-table": "Wyświetl jako tabele",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Upuść pliki do uploadu",
|
|
93
94
|
"duplicate-sku-warning": "",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Wartości faseta",
|
|
97
98
|
"filter-by-name": "Filtruj po nazwie",
|
|
98
99
|
"filter-by-name-or-sku": "",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtry",
|
|
100
102
|
"group-by-product": "Grupuj po produkcie",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Zarządzaj wariantami",
|
|
102
105
|
"move-down": "Przesuń w dół",
|
|
103
106
|
"move-to": "Przesuń do",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Wybrano...",
|
|
241
244
|
"select-display-language": "Wybierz język",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Wybierz dzisiaj",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "",
|
|
542
546
|
"search-by-order-code": "Szukaj po numerze zamówienia",
|
|
543
547
|
"select-state": "",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "",
|
|
545
550
|
"settle-payment": "Rozlicz płatność",
|
|
546
551
|
"settle-payment-error": "Nie można rozliczyć płatności",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Rezultat zlecenia",
|
|
670
675
|
"job-state": "Status zlecenia"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Variação padrão",
|
|
90
90
|
"display-variant-cards": "Ver como detalhes",
|
|
91
91
|
"display-variant-table": "Ver como tabela",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Soltar arquivos para envio",
|
|
93
94
|
"duplicate-sku-warning": "",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Valor da Etiqueta",
|
|
97
98
|
"filter-by-name": "Filtrar por nome",
|
|
98
99
|
"filter-by-name-or-sku": "Filtrar por nome ou SKU",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtros",
|
|
100
102
|
"group-by-product": "Agrupar por produto",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Gerência das variações",
|
|
102
105
|
"move-down": "Mover para baixo",
|
|
103
106
|
"move-to": "Mover para",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Selecione...",
|
|
241
244
|
"select-display-language": "Selecionar idioma de exibição",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Selecione hoje",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "",
|
|
542
546
|
"search-by-order-code": "Buscar por código do pedido",
|
|
543
547
|
"select-state": "Selecionar estado",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Marcar como {state}",
|
|
545
550
|
"settle-payment": "Liquidar pagamento",
|
|
546
551
|
"settle-payment-error": "Não posso liquidar pagamento",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Resultado do trabalho",
|
|
670
675
|
"job-state": "Estado do trabalho"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Variante padrão",
|
|
90
90
|
"display-variant-cards": "Lista com detalhes",
|
|
91
91
|
"display-variant-table": "Lista simplificada",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Colocar ficheiros para enviar",
|
|
93
94
|
"duplicate-sku-warning": "Certifique-se de que todos os SKUs sejam únicos",
|
|
94
95
|
"edit-options": "Editar opções",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Valor da Etiqueta",
|
|
97
98
|
"filter-by-name": "Filtrar por nome",
|
|
98
99
|
"filter-by-name-or-sku": "Filtrar por nome ou SKU",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Filtros",
|
|
100
102
|
"group-by-product": "Agrupar por produto",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Gerir variações",
|
|
102
105
|
"move-down": "Mover para baixo",
|
|
103
106
|
"move-to": "Mover para",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "Formatação de amostra",
|
|
240
243
|
"select": "Seleccione...",
|
|
241
244
|
"select-display-language": "Seleccionar idioma",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Seleccione a data de hoje",
|
|
243
247
|
"set-language": "Definir idioma",
|
|
244
248
|
"short-date": "Data abreviada",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Pesquisar pelo apelido do cliente",
|
|
542
546
|
"search-by-order-code": "Pesqusiar pelo código da encomenda",
|
|
543
547
|
"select-state": "Seleccionar estado",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Marcar como {state}",
|
|
545
550
|
"settle-payment": "Liquidar pagamento",
|
|
546
551
|
"settle-payment-error": "Não foi possível liquidar o pagamento",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Resultado do trabalho",
|
|
670
675
|
"job-state": "Estado do trabalho"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Вариант товара по умолчанию",
|
|
90
90
|
"display-variant-cards": "Просмотр карточек вариантов",
|
|
91
91
|
"display-variant-table": "Просмотр в виде таблицы",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Перетащите файлы для загрузки",
|
|
93
94
|
"duplicate-sku-warning": "Убедитесь, что все артикулы (SKU) уникальны",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Значения тега",
|
|
97
98
|
"filter-by-name": "Фильтр по имени",
|
|
98
99
|
"filter-by-name-or-sku": "Фильтр по имени или артикулу (SKU)",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Фильтры",
|
|
100
102
|
"group-by-product": "Группировать по товару",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Управление вариантами",
|
|
102
105
|
"move-down": "Двигать вниз",
|
|
103
106
|
"move-to": "Двигать к",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Выбрать...",
|
|
241
244
|
"select-display-language": "Выберите язык отображения",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Выберите сегодня",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Поиск по фамилии клиента",
|
|
542
546
|
"search-by-order-code": "Поиск по коду заказа",
|
|
543
547
|
"select-state": "Выберите состояние",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Отметить как {state}",
|
|
545
550
|
"settle-payment": "Расчет платежа",
|
|
546
551
|
"settle-payment-error": "Не удалось провести оплату",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Результат задания",
|
|
670
675
|
"job-state": "Состояние задания"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "Варіант товару за замовчуванням",
|
|
90
90
|
"display-variant-cards": "Перегляд карток варіантів",
|
|
91
91
|
"display-variant-table": "Перегляд у вигляді таблиці",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "Перетягніть файли для завантаження",
|
|
93
94
|
"duplicate-sku-warning": "Переконайтесь, що всі артикули (SKU) унікальні",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "Значення тегу",
|
|
97
98
|
"filter-by-name": "Фільтр по імені",
|
|
98
99
|
"filter-by-name-or-sku": "Фільтр по імені або артикулу (SKU)",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "Фільтри",
|
|
100
102
|
"group-by-product": "Групувати по товару",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "Управління варіантами",
|
|
102
105
|
"move-down": "Рухати вниз",
|
|
103
106
|
"move-to": "Рухати до",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "Вибрати...",
|
|
241
244
|
"select-display-language": "Виберіть мову відображення",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "Виберіть сьогодні",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "Пошук за прізвищем клієнта",
|
|
542
546
|
"search-by-order-code": "Пошук по коду замовлення",
|
|
543
547
|
"select-state": "Виберіть стан",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "Помітити як {state}",
|
|
545
550
|
"settle-payment": "Розрахунок платежу",
|
|
546
551
|
"settle-payment-error": "Не вдалося провести оплату",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "Результат завдання",
|
|
670
675
|
"job-state": "Стан завдання"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "默认商品规格",
|
|
90
90
|
"display-variant-cards": "卡片显示",
|
|
91
91
|
"display-variant-table": "表格显示",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "拖拽文件上传",
|
|
93
94
|
"duplicate-sku-warning": "",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "特征值列表",
|
|
97
98
|
"filter-by-name": "按名字过滤",
|
|
98
99
|
"filter-by-name-or-sku": "按名字或商品编码过滤",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "过滤条件",
|
|
100
102
|
"group-by-product": "按商品分组显示",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "商品规格管理",
|
|
102
105
|
"move-down": "向下移",
|
|
103
106
|
"move-to": "移至",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "选择...",
|
|
241
244
|
"select-display-language": "选择显示语言",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "选择今天",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "",
|
|
542
546
|
"search-by-order-code": "输入要搜索的订单编号",
|
|
543
547
|
"select-state": "",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "",
|
|
545
550
|
"settle-payment": "结算付款",
|
|
546
551
|
"settle-payment-error": "结算付款失败",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "任务结果",
|
|
670
675
|
"job-state": "任务状态"
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"default-variant": "默認商品規格",
|
|
90
90
|
"display-variant-cards": "卡片顯示",
|
|
91
91
|
"display-variant-table": "表格顯示",
|
|
92
|
+
"do-not-inherit-filters": "",
|
|
92
93
|
"drop-files-to-upload": "拖拽文件上傳",
|
|
93
94
|
"duplicate-sku-warning": "",
|
|
94
95
|
"edit-options": "",
|
|
@@ -96,8 +97,10 @@
|
|
|
96
97
|
"facet-values": "特徵值列表",
|
|
97
98
|
"filter-by-name": "按名字篩選",
|
|
98
99
|
"filter-by-name-or-sku": "",
|
|
100
|
+
"filter-inheritance": "",
|
|
99
101
|
"filters": "篩選條件",
|
|
100
102
|
"group-by-product": "按商品分组顯示",
|
|
103
|
+
"inherit-filters-from-parent": "",
|
|
101
104
|
"manage-variants": "商品規格管理",
|
|
102
105
|
"move-down": "下移",
|
|
103
106
|
"move-to": "移至",
|
|
@@ -239,6 +242,7 @@
|
|
|
239
242
|
"sample-formatting": "",
|
|
240
243
|
"select": "選擇...",
|
|
241
244
|
"select-display-language": "選擇顯示語言",
|
|
245
|
+
"select-relation-id": "",
|
|
242
246
|
"select-today": "選擇今天",
|
|
243
247
|
"set-language": "",
|
|
244
248
|
"short-date": "",
|
|
@@ -541,6 +545,7 @@
|
|
|
541
545
|
"search-by-customer-last-name": "",
|
|
542
546
|
"search-by-order-code": "輸入要搜索的訂單編號",
|
|
543
547
|
"select-state": "",
|
|
548
|
+
"set-coupon-codes": "",
|
|
544
549
|
"set-fulfillment-state": "",
|
|
545
550
|
"settle-payment": "結算付款",
|
|
546
551
|
"settle-payment-error": "結算付款失敗",
|
|
@@ -669,4 +674,4 @@
|
|
|
669
674
|
"job-result": "",
|
|
670
675
|
"job-state": ""
|
|
671
676
|
}
|
|
672
|
-
}
|
|
677
|
+
}
|
|
@@ -95,10 +95,6 @@ clr-input-container.expand {
|
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
clr-select-container {
|
|
99
|
-
margin-bottom: 18px;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
98
|
.tooltip.tooltip-validation::before {
|
|
103
99
|
top: 10px !important;
|
|
104
100
|
}
|
|
@@ -108,6 +104,9 @@ select {
|
|
|
108
104
|
}
|
|
109
105
|
|
|
110
106
|
.select::after,
|
|
107
|
+
.clr-select-wrapper {
|
|
108
|
+
max-height: inherit;
|
|
109
|
+
}
|
|
111
110
|
.clr-select-wrapper::after {
|
|
112
111
|
z-index: 10;
|
|
113
112
|
top: 13px;
|