@crystaldesign/diva-backoffice 25.3.0-beta.2 → 25.3.0-beta.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/build/esm/index.js +457 -467
- package/build/types/backoffice/src/layout/Toolbar/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/Tables/Prices/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.d.ts +162 -5
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePriceList/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableRenaming/index.d.ts.map +1 -1
- package/package.json +9 -9
package/build/esm/index.js
CHANGED
|
@@ -30750,7 +30750,7 @@ function TablePackages () {
|
|
|
30750
30750
|
return !data.basedCatalogId && !data.basedPackageId;
|
|
30751
30751
|
},
|
|
30752
30752
|
customParams: {
|
|
30753
|
-
filterCellType: '
|
|
30753
|
+
filterCellType: 'objectId',
|
|
30754
30754
|
nameField: 'basedCatalogName',
|
|
30755
30755
|
apiInterface: {
|
|
30756
30756
|
read: apiConfig.idmService + '/v3.0/catalogs?organizationId=${organizationId}'
|
|
@@ -30768,7 +30768,7 @@ function TablePackages () {
|
|
|
30768
30768
|
return !data.basedCatalogId && !data.basedPackageId;
|
|
30769
30769
|
},
|
|
30770
30770
|
customParams: {
|
|
30771
|
-
filterCellType: '
|
|
30771
|
+
filterCellType: 'objectId',
|
|
30772
30772
|
nameField: 'basedPackageName',
|
|
30773
30773
|
apiInterface: {
|
|
30774
30774
|
read: apiConfig.enricherService + '/packages?organizationId=${organizationId}'
|
|
@@ -31069,7 +31069,7 @@ function TableProperties () {
|
|
|
31069
31069
|
});
|
|
31070
31070
|
}
|
|
31071
31071
|
|
|
31072
|
-
var config$
|
|
31072
|
+
var config$2 = {
|
|
31073
31073
|
colDef: [{
|
|
31074
31074
|
headerName: 'backoffice.idmEnricher.renaming.label.featureNr',
|
|
31075
31075
|
field: 'featureNo',
|
|
@@ -31124,7 +31124,7 @@ var config$3 = {
|
|
|
31124
31124
|
}]
|
|
31125
31125
|
};
|
|
31126
31126
|
|
|
31127
|
-
var config$
|
|
31127
|
+
var config$1 = {
|
|
31128
31128
|
colDef: [{
|
|
31129
31129
|
headerName: 'backoffice.idmEnricher.renaming.label.typeNo',
|
|
31130
31130
|
field: 'typeNo',
|
|
@@ -31299,7 +31299,7 @@ var config$2 = {
|
|
|
31299
31299
|
}]
|
|
31300
31300
|
};
|
|
31301
31301
|
|
|
31302
|
-
var config
|
|
31302
|
+
var config = {
|
|
31303
31303
|
colDef: [{
|
|
31304
31304
|
headerName: 'backoffice.idmEnricher.renaming.label.optionKey',
|
|
31305
31305
|
field: 'optionKey',
|
|
@@ -31512,19 +31512,19 @@ function useConfiguration (configuration) {
|
|
|
31512
31512
|
var RenamingFeature = function RenamingFeature() {
|
|
31513
31513
|
return /*#__PURE__*/jsx(RenamingTable, {
|
|
31514
31514
|
type: "features",
|
|
31515
|
-
config: config$
|
|
31515
|
+
config: config$2
|
|
31516
31516
|
});
|
|
31517
31517
|
};
|
|
31518
31518
|
var RenamingItem = function RenamingItem() {
|
|
31519
31519
|
return /*#__PURE__*/jsx(RenamingTable, {
|
|
31520
31520
|
type: "items",
|
|
31521
|
-
config: config$
|
|
31521
|
+
config: config$1
|
|
31522
31522
|
});
|
|
31523
31523
|
};
|
|
31524
31524
|
var RenamingOption = function RenamingOption() {
|
|
31525
31525
|
return /*#__PURE__*/jsx(RenamingTable, {
|
|
31526
31526
|
type: "options",
|
|
31527
|
-
config: config
|
|
31527
|
+
config: config
|
|
31528
31528
|
});
|
|
31529
31529
|
};
|
|
31530
31530
|
var RenamingTable = function RenamingTable(_ref) {
|
|
@@ -31597,9 +31597,6 @@ var RenamingTable = function RenamingTable(_ref) {
|
|
|
31597
31597
|
var showTable = useMemo(function () {
|
|
31598
31598
|
return !['items', 'options'].includes(type) || type === 'items' && selectedSerie || type === 'options' && selectedFeature;
|
|
31599
31599
|
}, [type, selectedSerie, selectedFeature]);
|
|
31600
|
-
var gridId = useMemo(function () {
|
|
31601
|
-
return 'renaming-grid_' + type + (type === 'options' ? '_' + (selectedFeature === null || selectedFeature === void 0 ? void 0 : selectedFeature.featureNo) : type === 'items' ? '_' + (selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo) : '');
|
|
31602
|
-
}, [type, selectedFeature === null || selectedFeature === void 0 ? void 0 : selectedFeature.featureNo, selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo]);
|
|
31603
31600
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
31604
31601
|
children: [/*#__PURE__*/jsx(Descriptions$1, {
|
|
31605
31602
|
title: /*#__PURE__*/jsxs("div", {
|
|
@@ -31630,7 +31627,7 @@ var RenamingTable = function RenamingTable(_ref) {
|
|
|
31630
31627
|
})]
|
|
31631
31628
|
})
|
|
31632
31629
|
}), showTable && /*#__PURE__*/jsx(Spreadsheet, {
|
|
31633
|
-
gridId:
|
|
31630
|
+
gridId: 'renaming-grid_' + type,
|
|
31634
31631
|
applicationData: applicationData,
|
|
31635
31632
|
preFilter: preFilter,
|
|
31636
31633
|
configuration: configuration
|
|
@@ -31638,373 +31635,421 @@ var RenamingTable = function RenamingTable(_ref) {
|
|
|
31638
31635
|
});
|
|
31639
31636
|
};
|
|
31640
31637
|
|
|
31641
|
-
|
|
31642
|
-
|
|
31643
|
-
|
|
31644
|
-
|
|
31645
|
-
|
|
31646
|
-
|
|
31647
|
-
|
|
31648
|
-
|
|
31649
|
-
|
|
31650
|
-
|
|
31651
|
-
|
|
31652
|
-
|
|
31653
|
-
|
|
31654
|
-
|
|
31655
|
-
|
|
31656
|
-
|
|
31657
|
-
|
|
31658
|
-
|
|
31659
|
-
|
|
31660
|
-
|
|
31661
|
-
|
|
31662
|
-
|
|
31663
|
-
|
|
31664
|
-
|
|
31665
|
-
|
|
31666
|
-
|
|
31667
|
-
|
|
31668
|
-
|
|
31669
|
-
|
|
31670
|
-
|
|
31671
|
-
|
|
31672
|
-
|
|
31673
|
-
|
|
31674
|
-
|
|
31675
|
-
|
|
31676
|
-
|
|
31677
|
-
|
|
31678
|
-
|
|
31679
|
-
|
|
31680
|
-
|
|
31681
|
-
|
|
31682
|
-
|
|
31683
|
-
|
|
31684
|
-
|
|
31685
|
-
|
|
31686
|
-
|
|
31687
|
-
|
|
31688
|
-
|
|
31689
|
-
|
|
31690
|
-
|
|
31691
|
-
|
|
31692
|
-
|
|
31693
|
-
|
|
31694
|
-
|
|
31695
|
-
|
|
31696
|
-
|
|
31697
|
-
|
|
31698
|
-
|
|
31699
|
-
|
|
31700
|
-
|
|
31701
|
-
|
|
31702
|
-
|
|
31703
|
-
|
|
31704
|
-
|
|
31705
|
-
|
|
31706
|
-
|
|
31707
|
-
|
|
31708
|
-
|
|
31709
|
-
|
|
31710
|
-
|
|
31711
|
-
|
|
31712
|
-
|
|
31713
|
-
|
|
31714
|
-
|
|
31715
|
-
|
|
31716
|
-
|
|
31717
|
-
|
|
31718
|
-
|
|
31719
|
-
|
|
31720
|
-
|
|
31721
|
-
|
|
31722
|
-
|
|
31723
|
-
|
|
31724
|
-
|
|
31725
|
-
|
|
31726
|
-
|
|
31727
|
-
|
|
31728
|
-
|
|
31729
|
-
|
|
31730
|
-
|
|
31731
|
-
|
|
31732
|
-
|
|
31733
|
-
|
|
31734
|
-
|
|
31735
|
-
|
|
31736
|
-
|
|
31737
|
-
|
|
31738
|
-
|
|
31739
|
-
|
|
31740
|
-
|
|
31741
|
-
|
|
31742
|
-
|
|
31743
|
-
|
|
31744
|
-
|
|
31745
|
-
|
|
31746
|
-
|
|
31747
|
-
|
|
31748
|
-
|
|
31749
|
-
|
|
31750
|
-
|
|
31751
|
-
|
|
31752
|
-
|
|
31753
|
-
|
|
31754
|
-
|
|
31755
|
-
|
|
31756
|
-
|
|
31757
|
-
|
|
31758
|
-
|
|
31759
|
-
|
|
31760
|
-
|
|
31761
|
-
|
|
31762
|
-
|
|
31763
|
-
|
|
31764
|
-
|
|
31765
|
-
|
|
31766
|
-
|
|
31767
|
-
|
|
31768
|
-
|
|
31769
|
-
|
|
31770
|
-
|
|
31771
|
-
|
|
31772
|
-
|
|
31773
|
-
|
|
31774
|
-
|
|
31775
|
-
|
|
31776
|
-
|
|
31777
|
-
|
|
31778
|
-
|
|
31779
|
-
|
|
31780
|
-
|
|
31781
|
-
|
|
31782
|
-
|
|
31783
|
-
|
|
31784
|
-
|
|
31785
|
-
|
|
31786
|
-
|
|
31787
|
-
|
|
31788
|
-
|
|
31789
|
-
|
|
31790
|
-
|
|
31791
|
-
|
|
31792
|
-
|
|
31793
|
-
|
|
31794
|
-
|
|
31795
|
-
|
|
31796
|
-
|
|
31797
|
-
|
|
31798
|
-
|
|
31799
|
-
|
|
31800
|
-
|
|
31801
|
-
|
|
31802
|
-
|
|
31803
|
-
|
|
31804
|
-
|
|
31805
|
-
|
|
31806
|
-
|
|
31807
|
-
|
|
31808
|
-
|
|
31809
|
-
|
|
31810
|
-
|
|
31811
|
-
|
|
31812
|
-
|
|
31813
|
-
|
|
31814
|
-
|
|
31815
|
-
|
|
31816
|
-
|
|
31817
|
-
|
|
31818
|
-
|
|
31819
|
-
|
|
31820
|
-
|
|
31821
|
-
|
|
31822
|
-
|
|
31823
|
-
|
|
31824
|
-
|
|
31825
|
-
|
|
31826
|
-
|
|
31827
|
-
|
|
31828
|
-
|
|
31829
|
-
|
|
31830
|
-
|
|
31831
|
-
|
|
31832
|
-
|
|
31833
|
-
|
|
31834
|
-
|
|
31835
|
-
|
|
31836
|
-
|
|
31837
|
-
|
|
31838
|
-
|
|
31839
|
-
|
|
31840
|
-
|
|
31841
|
-
|
|
31842
|
-
|
|
31843
|
-
|
|
31844
|
-
|
|
31845
|
-
|
|
31846
|
-
|
|
31847
|
-
|
|
31848
|
-
|
|
31849
|
-
|
|
31850
|
-
|
|
31851
|
-
|
|
31852
|
-
|
|
31853
|
-
|
|
31854
|
-
|
|
31855
|
-
|
|
31856
|
-
|
|
31857
|
-
|
|
31858
|
-
|
|
31859
|
-
|
|
31860
|
-
|
|
31861
|
-
|
|
31862
|
-
|
|
31863
|
-
|
|
31864
|
-
|
|
31865
|
-
|
|
31866
|
-
|
|
31867
|
-
|
|
31868
|
-
|
|
31869
|
-
|
|
31870
|
-
|
|
31871
|
-
|
|
31872
|
-
|
|
31873
|
-
|
|
31874
|
-
|
|
31875
|
-
|
|
31876
|
-
|
|
31877
|
-
|
|
31878
|
-
|
|
31879
|
-
|
|
31880
|
-
|
|
31881
|
-
|
|
31882
|
-
|
|
31883
|
-
|
|
31884
|
-
|
|
31885
|
-
|
|
31886
|
-
|
|
31887
|
-
|
|
31888
|
-
|
|
31889
|
-
|
|
31890
|
-
|
|
31891
|
-
|
|
31892
|
-
|
|
31893
|
-
|
|
31894
|
-
|
|
31895
|
-
|
|
31896
|
-
|
|
31897
|
-
|
|
31898
|
-
|
|
31899
|
-
|
|
31900
|
-
|
|
31901
|
-
|
|
31902
|
-
|
|
31903
|
-
|
|
31904
|
-
|
|
31905
|
-
|
|
31906
|
-
|
|
31907
|
-
|
|
31908
|
-
|
|
31909
|
-
|
|
31910
|
-
|
|
31911
|
-
|
|
31912
|
-
|
|
31913
|
-
|
|
31914
|
-
|
|
31915
|
-
|
|
31916
|
-
|
|
31917
|
-
|
|
31918
|
-
|
|
31919
|
-
|
|
31920
|
-
|
|
31921
|
-
|
|
31922
|
-
|
|
31923
|
-
|
|
31924
|
-
|
|
31925
|
-
|
|
31926
|
-
|
|
31927
|
-
|
|
31928
|
-
|
|
31929
|
-
|
|
31930
|
-
|
|
31931
|
-
|
|
31932
|
-
|
|
31933
|
-
|
|
31934
|
-
|
|
31935
|
-
|
|
31936
|
-
|
|
31937
|
-
|
|
31938
|
-
|
|
31939
|
-
|
|
31940
|
-
|
|
31941
|
-
|
|
31942
|
-
|
|
31943
|
-
|
|
31944
|
-
|
|
31945
|
-
|
|
31946
|
-
|
|
31947
|
-
|
|
31948
|
-
|
|
31949
|
-
|
|
31950
|
-
|
|
31951
|
-
|
|
31952
|
-
|
|
31953
|
-
|
|
31954
|
-
|
|
31955
|
-
|
|
31956
|
-
|
|
31957
|
-
|
|
31958
|
-
|
|
31959
|
-
|
|
31960
|
-
|
|
31961
|
-
|
|
31962
|
-
|
|
31963
|
-
|
|
31964
|
-
|
|
31965
|
-
|
|
31966
|
-
|
|
31967
|
-
|
|
31968
|
-
|
|
31969
|
-
|
|
31970
|
-
|
|
31971
|
-
|
|
31972
|
-
|
|
31973
|
-
|
|
31974
|
-
|
|
31975
|
-
|
|
31976
|
-
|
|
31977
|
-
|
|
31978
|
-
|
|
31979
|
-
|
|
31980
|
-
|
|
31981
|
-
|
|
31982
|
-
|
|
31983
|
-
|
|
31984
|
-
|
|
31985
|
-
|
|
31986
|
-
|
|
31987
|
-
|
|
31988
|
-
|
|
31989
|
-
|
|
31990
|
-
|
|
31991
|
-
|
|
31992
|
-
|
|
31993
|
-
|
|
31638
|
+
function getConfig(t) {
|
|
31639
|
+
return {
|
|
31640
|
+
detailInfo: {
|
|
31641
|
+
colDef: [{
|
|
31642
|
+
field: 'detailInfoNo',
|
|
31643
|
+
headerName: 'backoffice.idmEnricher.renaming.label.detailinfo_nr',
|
|
31644
|
+
editable: false
|
|
31645
|
+
}, {
|
|
31646
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.classification',
|
|
31647
|
+
field: 'classification',
|
|
31648
|
+
editable: false
|
|
31649
|
+
}, {
|
|
31650
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.infoType',
|
|
31651
|
+
field: 'infoType',
|
|
31652
|
+
editable: false
|
|
31653
|
+
}, {
|
|
31654
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.layer',
|
|
31655
|
+
field: 'layer',
|
|
31656
|
+
editable: false
|
|
31657
|
+
}, {
|
|
31658
|
+
field: 'url',
|
|
31659
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.url',
|
|
31660
|
+
editable: false
|
|
31661
|
+
}, {
|
|
31662
|
+
field: 'hashValue',
|
|
31663
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.hashValue',
|
|
31664
|
+
editable: false
|
|
31665
|
+
}, {
|
|
31666
|
+
field: 'isoLanguageId',
|
|
31667
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.isoLanguage',
|
|
31668
|
+
editable: false
|
|
31669
|
+
}, {
|
|
31670
|
+
field: 'mediaType',
|
|
31671
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.mediaType',
|
|
31672
|
+
editable: false
|
|
31673
|
+
}, {
|
|
31674
|
+
field: 'functionType',
|
|
31675
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.functionType',
|
|
31676
|
+
editable: false
|
|
31677
|
+
}, {
|
|
31678
|
+
field: 'mediaItemId',
|
|
31679
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.mediaItemId',
|
|
31680
|
+
editable: false
|
|
31681
|
+
}, {
|
|
31682
|
+
field: 'mediaItemRefId',
|
|
31683
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.mediaItemRefId',
|
|
31684
|
+
editable: false
|
|
31685
|
+
}, {
|
|
31686
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.error',
|
|
31687
|
+
field: 'error',
|
|
31688
|
+
editable: false
|
|
31689
|
+
}, {
|
|
31690
|
+
field: 'externalName',
|
|
31691
|
+
headerName: 'backoffice.idmEnricher.renaming.label.externalName',
|
|
31692
|
+
editable: false,
|
|
31693
|
+
cellDataType: 'translated',
|
|
31694
|
+
isDictionary: true
|
|
31695
|
+
}, {
|
|
31696
|
+
field: 'internalName',
|
|
31697
|
+
headerName: 'backoffice.idmEnricher.renaming.label.internalName',
|
|
31698
|
+
editable: false,
|
|
31699
|
+
cellDataType: 'translated',
|
|
31700
|
+
isDictionary: true
|
|
31701
|
+
}, {
|
|
31702
|
+
field: 'toolTip',
|
|
31703
|
+
headerName: 'backoffice.idmEnricher.renaming.label.tooltip',
|
|
31704
|
+
editable: false,
|
|
31705
|
+
cellDataType: 'translated',
|
|
31706
|
+
isDictionary: true
|
|
31707
|
+
}, {
|
|
31708
|
+
field: 'catalogId',
|
|
31709
|
+
headerName: 'backoffice.idmEnricher.packages.label.catalogId',
|
|
31710
|
+
editable: false
|
|
31711
|
+
}, {
|
|
31712
|
+
field: 'organizationId',
|
|
31713
|
+
headerName: 'backoffice.idmEnricher.packages.label.organizationId',
|
|
31714
|
+
editable: false,
|
|
31715
|
+
defaultValue: '${organizationId}'
|
|
31716
|
+
}]
|
|
31717
|
+
},
|
|
31718
|
+
feature: {
|
|
31719
|
+
colDef: [{
|
|
31720
|
+
field: 'featureNo',
|
|
31721
|
+
headerName: 'backoffice.idmEnricher.renaming.label.featureNr',
|
|
31722
|
+
editable: false
|
|
31723
|
+
}, {
|
|
31724
|
+
field: 'featureText',
|
|
31725
|
+
headerName: 'backoffice.idmEnricher.renaming.label.featuretext',
|
|
31726
|
+
editable: false,
|
|
31727
|
+
cellDataType: 'translated',
|
|
31728
|
+
isDictionary: true
|
|
31729
|
+
}, {
|
|
31730
|
+
headerName: 'backoffice.idmEnricher.renaming.label.headerPosVariationType',
|
|
31731
|
+
field: 'headerPosVariationType',
|
|
31732
|
+
editable: false,
|
|
31733
|
+
cellDataType: 'enum',
|
|
31734
|
+
customParams: {
|
|
31735
|
+
enumData: [{
|
|
31736
|
+
name: t('backoffice.idmCatalog.features.label.vt.I'),
|
|
31737
|
+
value: 'I'
|
|
31738
|
+
}, {
|
|
31739
|
+
name: t('backoffice.idmCatalog.features.label.vt.K'),
|
|
31740
|
+
value: 'K'
|
|
31741
|
+
}, {
|
|
31742
|
+
name: t('backoffice.idmCatalog.features.label.vt.P'),
|
|
31743
|
+
value: 'P'
|
|
31744
|
+
}],
|
|
31745
|
+
displayLabelTemplate: '${name} (${value})'
|
|
31746
|
+
}
|
|
31747
|
+
}, {
|
|
31748
|
+
field: 'catalogId',
|
|
31749
|
+
headerName: 'backoffice.idmEnricher.packages.label.catalogId',
|
|
31750
|
+
editable: false
|
|
31751
|
+
}, {
|
|
31752
|
+
field: 'organizationId',
|
|
31753
|
+
editable: false,
|
|
31754
|
+
hide: true,
|
|
31755
|
+
lockVisible: true,
|
|
31756
|
+
suppressColumnsToolPanel: true,
|
|
31757
|
+
defaultValue: '${organizationId}'
|
|
31758
|
+
}, {
|
|
31759
|
+
headerName: 'backoffice.idmEnricher.renaming.label.sequenceNo',
|
|
31760
|
+
field: 'sequenceNo',
|
|
31761
|
+
editable: false,
|
|
31762
|
+
cellDataType: 'number'
|
|
31763
|
+
}, {
|
|
31764
|
+
field: 'featureT',
|
|
31765
|
+
headerName: 'backoffice.idmEnricher.renaming.label.featureT',
|
|
31766
|
+
editable: false,
|
|
31767
|
+
cellDataType: 'enum',
|
|
31768
|
+
customParams: {
|
|
31769
|
+
enumData: [{
|
|
31770
|
+
name: t('backoffice.idmCatalog.features.label.featureTDic.M'),
|
|
31771
|
+
value: 'M'
|
|
31772
|
+
}, {
|
|
31773
|
+
name: t('backoffice.idmCatalog.features.label.featureTDic.C'),
|
|
31774
|
+
value: 'C'
|
|
31775
|
+
}, {
|
|
31776
|
+
name: t('backoffice.idmCatalog.features.label.featureTDic.O'),
|
|
31777
|
+
value: 'O'
|
|
31778
|
+
}],
|
|
31779
|
+
displayLabelTemplate: '${name} (${value})'
|
|
31780
|
+
}
|
|
31781
|
+
}, {
|
|
31782
|
+
field: 'measureUnit',
|
|
31783
|
+
headerName: 'backoffice.idmEnricher.renaming.label.measureUnit',
|
|
31784
|
+
editable: false
|
|
31785
|
+
}, {
|
|
31786
|
+
field: 'measureParameter',
|
|
31787
|
+
headerName: 'backoffice.idmEnricher.renaming.label.measureParameter',
|
|
31788
|
+
editable: false
|
|
31789
|
+
}]
|
|
31790
|
+
},
|
|
31791
|
+
serie: {
|
|
31792
|
+
colDef: [{
|
|
31793
|
+
field: 'serieNo',
|
|
31794
|
+
headerName: 'backoffice.idmEnricher.renaming.label.serieNo',
|
|
31795
|
+
editable: false
|
|
31796
|
+
}, {
|
|
31797
|
+
field: 'seriesName',
|
|
31798
|
+
headerName: 'backoffice.idmEnricher.renaming.label.serieName',
|
|
31799
|
+
editable: false,
|
|
31800
|
+
cellDataType: 'translated',
|
|
31801
|
+
isDictionary: true
|
|
31802
|
+
}, {
|
|
31803
|
+
field: 'seriesFullText',
|
|
31804
|
+
headerName: 'backoffice.idmEnricher.renaming.label.serieFullText',
|
|
31805
|
+
editable: false,
|
|
31806
|
+
cellDataType: 'translated',
|
|
31807
|
+
isDictionary: true
|
|
31808
|
+
}, {
|
|
31809
|
+
field: 'catalogId',
|
|
31810
|
+
headerName: 'backoffice.idmEnricher.packages.label.catalogId',
|
|
31811
|
+
editable: false
|
|
31812
|
+
}, {
|
|
31813
|
+
field: 'organizationId',
|
|
31814
|
+
headerName: 'backoffice.idmEnricher.packages.label.organizationId',
|
|
31815
|
+
editable: false,
|
|
31816
|
+
defaultValue: '${organizationId}'
|
|
31817
|
+
}, {
|
|
31818
|
+
field: 'sequenceNo',
|
|
31819
|
+
headerName: 'backoffice.idmEnricher.renaming.label.sequenceNo',
|
|
31820
|
+
editable: false,
|
|
31821
|
+
cellDataType: 'number'
|
|
31822
|
+
}, {
|
|
31823
|
+
field: 'purchaseRetailId',
|
|
31824
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.purchaseRetailId',
|
|
31825
|
+
editable: false,
|
|
31826
|
+
cellDataType: 'number'
|
|
31827
|
+
}, {
|
|
31828
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
|
31829
|
+
field: 'validFrom',
|
|
31830
|
+
cellDataType: 'dateString',
|
|
31831
|
+
editable: false
|
|
31832
|
+
}, {
|
|
31833
|
+
field: 'validUntil',
|
|
31834
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
|
31835
|
+
cellDataType: 'dateString',
|
|
31836
|
+
editable: false
|
|
31837
|
+
}]
|
|
31838
|
+
},
|
|
31839
|
+
item: {
|
|
31840
|
+
colDef: [{
|
|
31841
|
+
field: 'typeNo',
|
|
31842
|
+
headerName: 'backoffice.idmEnricher.renaming.label.typeNo',
|
|
31843
|
+
editable: false
|
|
31844
|
+
}, {
|
|
31845
|
+
headerName: 'backoffice.idmEnricher.renaming.label.shortText',
|
|
31846
|
+
field: 'shortText',
|
|
31847
|
+
editable: false,
|
|
31848
|
+
cellDataType: 'translated',
|
|
31849
|
+
isDictionary: true
|
|
31850
|
+
}, {
|
|
31851
|
+
headerName: 'backoffice.idmEnricher.renaming.label.fullText',
|
|
31852
|
+
field: 'fullText',
|
|
31853
|
+
editable: false,
|
|
31854
|
+
cellDataType: 'translated',
|
|
31855
|
+
isDictionary: true
|
|
31856
|
+
}, {
|
|
31857
|
+
headerName: 'backoffice.idmEnricher.renaming.label.edpnummer',
|
|
31858
|
+
field: 'edpNumber',
|
|
31859
|
+
editable: false
|
|
31860
|
+
}, {
|
|
31861
|
+
headerName: 'backoffice.idmEnricher.renaming.label.eannummer',
|
|
31862
|
+
field: 'eanNumber',
|
|
31863
|
+
editable: false
|
|
31864
|
+
}, {
|
|
31865
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.itemIdentification',
|
|
31866
|
+
field: 'itemIdentification',
|
|
31867
|
+
editable: false
|
|
31868
|
+
}, {
|
|
31869
|
+
field: 'catalogPage',
|
|
31870
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.catalogPage',
|
|
31871
|
+
editable: false
|
|
31872
|
+
}, {
|
|
31873
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
|
31874
|
+
field: 'validFromDate',
|
|
31875
|
+
cellDataType: 'dateString',
|
|
31876
|
+
editable: false
|
|
31877
|
+
}, {
|
|
31878
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
|
31879
|
+
field: 'validUntilDate',
|
|
31880
|
+
cellDataType: 'dateString',
|
|
31881
|
+
editable: false
|
|
31882
|
+
}, {
|
|
31883
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.weightBrutto',
|
|
31884
|
+
field: 'weightBrutto',
|
|
31885
|
+
editable: false,
|
|
31886
|
+
cellDataType: 'number'
|
|
31887
|
+
}, {
|
|
31888
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.weightNetto',
|
|
31889
|
+
field: 'weightNetto',
|
|
31890
|
+
editable: false,
|
|
31891
|
+
cellDataType: 'number'
|
|
31892
|
+
}, {
|
|
31893
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.volume',
|
|
31894
|
+
field: 'volume',
|
|
31895
|
+
editable: false,
|
|
31896
|
+
cellDataType: 'number'
|
|
31897
|
+
}, {
|
|
31898
|
+
field: 'minimumDeliveryTime',
|
|
31899
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.minimumDeliveryTime',
|
|
31900
|
+
editable: false,
|
|
31901
|
+
cellDataType: 'number'
|
|
31902
|
+
}, {
|
|
31903
|
+
field: 'typeKey',
|
|
31904
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.typeKey',
|
|
31905
|
+
editable: false
|
|
31906
|
+
}, {
|
|
31907
|
+
field: 'eClassNo',
|
|
31908
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.eClassNo',
|
|
31909
|
+
editable: false,
|
|
31910
|
+
cellDataType: 'number'
|
|
31911
|
+
}, {
|
|
31912
|
+
field: 'partListExclusive',
|
|
31913
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.partListExclusive',
|
|
31914
|
+
editable: false,
|
|
31915
|
+
cellDataType: 'boolean'
|
|
31916
|
+
}, {
|
|
31917
|
+
field: 'sequenceNo',
|
|
31918
|
+
headerName: 'backoffice.idmEnricher.renaming.label.sequenceNo',
|
|
31919
|
+
editable: false,
|
|
31920
|
+
cellDataType: 'number'
|
|
31921
|
+
}, {
|
|
31922
|
+
field: 'planningAdvice',
|
|
31923
|
+
headerName: 'backoffice.idmEnricher.renaming.label.planningAdvice',
|
|
31924
|
+
editable: false,
|
|
31925
|
+
cellDataType: 'translated',
|
|
31926
|
+
isDictionary: true
|
|
31927
|
+
}, {
|
|
31928
|
+
field: 'groupTitleDb',
|
|
31929
|
+
editable: false,
|
|
31930
|
+
cellDataType: 'translated',
|
|
31931
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.groupTitleDb',
|
|
31932
|
+
isDictionary: true
|
|
31933
|
+
}, {
|
|
31934
|
+
field: 'salesNumber',
|
|
31935
|
+
headerName: 'backoffice.idmEnricher.renaming.label.translatedSalesNumber',
|
|
31936
|
+
editable: false
|
|
31937
|
+
}]
|
|
31938
|
+
},
|
|
31939
|
+
option: {
|
|
31940
|
+
colDef: [{
|
|
31941
|
+
field: 'optionKey',
|
|
31942
|
+
headerName: 'backoffice.idmEnricher.renaming.label.optionKey',
|
|
31943
|
+
editable: false
|
|
31944
|
+
}, {
|
|
31945
|
+
headerName: 'backoffice.idmEnricher.renaming.label.optionText',
|
|
31946
|
+
field: 'optionText',
|
|
31947
|
+
editable: false,
|
|
31948
|
+
cellDataType: 'translated',
|
|
31949
|
+
isDictionary: true
|
|
31950
|
+
}, {
|
|
31951
|
+
field: 'sequenceNo',
|
|
31952
|
+
headerName: 'backoffice.idmEnricher.renaming.label.sequenceNo',
|
|
31953
|
+
editable: false,
|
|
31954
|
+
cellDataType: 'number'
|
|
31955
|
+
}, {
|
|
31956
|
+
headerName: 'backoffice.idmEnricher.renaming.label.optionCommentText',
|
|
31957
|
+
field: 'optionCommentText',
|
|
31958
|
+
editable: false,
|
|
31959
|
+
cellDataType: 'translated',
|
|
31960
|
+
isDictionary: true
|
|
31961
|
+
}, {
|
|
31962
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.optionFreeText',
|
|
31963
|
+
field: 'optionFreeText',
|
|
31964
|
+
editable: false
|
|
31965
|
+
}, {
|
|
31966
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
|
31967
|
+
field: 'validFromDate',
|
|
31968
|
+
cellDataType: 'dateString',
|
|
31969
|
+
editable: false
|
|
31970
|
+
}, {
|
|
31971
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
|
31972
|
+
field: 'validUntilDate',
|
|
31973
|
+
cellDataType: 'dateString',
|
|
31974
|
+
editable: false
|
|
31975
|
+
}, {
|
|
31976
|
+
field: 'materialId',
|
|
31977
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.materialId',
|
|
31978
|
+
editable: false
|
|
31979
|
+
}, {
|
|
31980
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.materialNo',
|
|
31981
|
+
field: 'materialNo',
|
|
31982
|
+
editable: false,
|
|
31983
|
+
cellDataType: 'number'
|
|
31984
|
+
}, {
|
|
31985
|
+
field: 'materialColorR',
|
|
31986
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.materialColorR',
|
|
31987
|
+
editable: false,
|
|
31988
|
+
cellDataType: 'number'
|
|
31989
|
+
}, {
|
|
31990
|
+
field: 'materialColorG',
|
|
31991
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.materialColorG',
|
|
31992
|
+
editable: false,
|
|
31993
|
+
cellDataType: 'number'
|
|
31994
|
+
}, {
|
|
31995
|
+
field: 'materialColorB',
|
|
31996
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.materialColorB',
|
|
31997
|
+
editable: false,
|
|
31998
|
+
cellDataType: 'number'
|
|
31999
|
+
}, {
|
|
32000
|
+
field: 'measureId',
|
|
32001
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.measuerId',
|
|
32002
|
+
editable: false
|
|
32003
|
+
}, {
|
|
32004
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.measureNo',
|
|
32005
|
+
field: 'measureNo',
|
|
32006
|
+
editable: false,
|
|
32007
|
+
cellDataType: 'number'
|
|
32008
|
+
}, {
|
|
32009
|
+
field: 'measureValue',
|
|
32010
|
+
headerName: 'backoffice.idmEnricher.exclusivity.label.measureValue',
|
|
32011
|
+
editable: false,
|
|
32012
|
+
cellDataType: 'number'
|
|
32013
|
+
}, {
|
|
32014
|
+
field: 'measureUnit',
|
|
32015
|
+
headerName: 'backoffice.idmEnricher.renaming.label.measureUnit',
|
|
32016
|
+
editable: false
|
|
32017
|
+
}]
|
|
32018
|
+
}
|
|
32019
|
+
};
|
|
32020
|
+
}
|
|
31994
32021
|
|
|
31995
32022
|
var ExclusivityFeature = function ExclusivityFeature() {
|
|
32023
|
+
var _useTranslation2 = useTranslation(),
|
|
32024
|
+
t = _useTranslation2.t,
|
|
32025
|
+
i18n = _useTranslation2.i18n;
|
|
32026
|
+
var config = useMemo(function () {
|
|
32027
|
+
return getConfig(t);
|
|
32028
|
+
}, [i18n.language]);
|
|
31996
32029
|
return /*#__PURE__*/jsx(ExclusivityTable, {
|
|
31997
32030
|
type: "efeature",
|
|
31998
32031
|
config: config['feature']
|
|
31999
32032
|
});
|
|
32000
32033
|
};
|
|
32001
32034
|
var ExclusivitySerieItems = function ExclusivitySerieItems() {
|
|
32035
|
+
var _useTranslation4 = useTranslation(),
|
|
32036
|
+
t = _useTranslation4.t,
|
|
32037
|
+
i18n = _useTranslation4.i18n;
|
|
32038
|
+
var config = useMemo(function () {
|
|
32039
|
+
return getConfig(t);
|
|
32040
|
+
}, [i18n.language]);
|
|
32002
32041
|
return /*#__PURE__*/jsx(ExclusivityTable, {
|
|
32003
32042
|
type: "eitem",
|
|
32004
32043
|
config: config['item']
|
|
32005
32044
|
});
|
|
32006
32045
|
};
|
|
32007
32046
|
var ExclusivityFeatureOption = function ExclusivityFeatureOption() {
|
|
32047
|
+
var _useTranslation5 = useTranslation(),
|
|
32048
|
+
t = _useTranslation5.t,
|
|
32049
|
+
i18n = _useTranslation5.i18n;
|
|
32050
|
+
var config = useMemo(function () {
|
|
32051
|
+
return getConfig(t);
|
|
32052
|
+
}, [i18n.language]);
|
|
32008
32053
|
return /*#__PURE__*/jsx(ExclusivityTable, {
|
|
32009
32054
|
type: "eoption",
|
|
32010
32055
|
config: config['option']
|
|
@@ -32014,8 +32059,8 @@ var ExclusivityTable = function ExclusivityTable(_ref) {
|
|
|
32014
32059
|
var _selectedSerie$series;
|
|
32015
32060
|
var type = _ref.type,
|
|
32016
32061
|
config = _ref.config;
|
|
32017
|
-
var
|
|
32018
|
-
t =
|
|
32062
|
+
var _useTranslation6 = useTranslation(),
|
|
32063
|
+
t = _useTranslation6.t;
|
|
32019
32064
|
var _React$useState = React.useState(),
|
|
32020
32065
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
32021
32066
|
selectedSerie = _React$useState2[0],
|
|
@@ -32263,13 +32308,13 @@ function TablePartlistPos () {
|
|
|
32263
32308
|
var posInvisibility = useMemo(function () {
|
|
32264
32309
|
return [{
|
|
32265
32310
|
name: t('backoffice.idmCatalogEditor.partlistpos.label.pi0'),
|
|
32266
|
-
value:
|
|
32311
|
+
value: 0
|
|
32267
32312
|
}, {
|
|
32268
32313
|
name: t('backoffice.idmCatalogEditor.partlistpos.label.pi1'),
|
|
32269
|
-
value:
|
|
32314
|
+
value: 1
|
|
32270
32315
|
}, {
|
|
32271
32316
|
name: t('backoffice.idmCatalogEditor.partlistpos.label.pi2'),
|
|
32272
|
-
value:
|
|
32317
|
+
value: 2
|
|
32273
32318
|
}];
|
|
32274
32319
|
}, [t]);
|
|
32275
32320
|
var applicationData = useMemo(function () {
|
|
@@ -32280,7 +32325,6 @@ function TablePartlistPos () {
|
|
|
32280
32325
|
}, [packageId, organizationId]);
|
|
32281
32326
|
var apiInterface = useMemo(function () {
|
|
32282
32327
|
return {
|
|
32283
|
-
//TODO: Es gibt globale Tabgroups, die vordefiniert sind und pro Enricher Paket nochmals angepasst werden können -endpoint anpassen?
|
|
32284
32328
|
read: apiConfig.enricherService + '/packages/${packageId}/partlistpos',
|
|
32285
32329
|
create: apiConfig.enricherService + '/packages/${packageId}/partlistpos',
|
|
32286
32330
|
restore: apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}',
|
|
@@ -32301,92 +32345,41 @@ function TablePartlistPos () {
|
|
|
32301
32345
|
}, {
|
|
32302
32346
|
headerName: 'backoffice.idmEnricher.partlistpos.label.itemRefSerieNo',
|
|
32303
32347
|
field: 'itemRefSerieNo',
|
|
32304
|
-
cellDataType: '
|
|
32305
|
-
editable: false
|
|
32306
|
-
}, {
|
|
32307
|
-
headerName: 'backoffice.idmEnricher.properties.partlistpos.itemRefSerieNoDisplayText',
|
|
32308
|
-
marryChildren: true,
|
|
32348
|
+
cellDataType: 'lookup',
|
|
32309
32349
|
editable: false,
|
|
32310
|
-
|
|
32311
|
-
|
|
32312
|
-
|
|
32313
|
-
|
|
32314
|
-
|
|
32315
|
-
},
|
|
32316
|
-
|
|
32317
|
-
|
|
32318
|
-
isDictionary: true,
|
|
32319
|
-
editable: false
|
|
32320
|
-
}, {
|
|
32321
|
-
field: 'itemRefSerieNoDisplayText.FR',
|
|
32322
|
-
headerName: 'backoffice.idmEnricher.general.label.FR',
|
|
32323
|
-
isDictionary: true,
|
|
32324
|
-
editable: false
|
|
32325
|
-
}, {
|
|
32326
|
-
field: 'itemRefSerieNoDisplayText.IT',
|
|
32327
|
-
headerName: 'backoffice.idmEnricher.general.label.IT',
|
|
32328
|
-
isDictionary: true,
|
|
32329
|
-
editable: false
|
|
32330
|
-
}]
|
|
32350
|
+
customParams: {
|
|
32351
|
+
nameField: 'itemRefSerieNoDisplayText',
|
|
32352
|
+
filterCellType: 'number',
|
|
32353
|
+
displayLabelTemplate: '${name} (${value})',
|
|
32354
|
+
translated: true
|
|
32355
|
+
},
|
|
32356
|
+
isDictionary: true,
|
|
32357
|
+
additionalFields: ['itemRefSerieNoDisplayText']
|
|
32331
32358
|
}, {
|
|
32332
32359
|
headerName: 'backoffice.idmEnricher.partlistpos.label.itemRefTypeNo',
|
|
32333
32360
|
field: 'itemRefTypeNo',
|
|
32334
|
-
editable: false
|
|
32335
|
-
}, {
|
|
32336
|
-
headerName: 'backoffice.idmEnricher.properties.partlistpos.itemRefTypeNoDisplayText',
|
|
32337
|
-
marryChildren: true,
|
|
32338
32361
|
editable: false,
|
|
32339
|
-
|
|
32340
|
-
|
|
32341
|
-
|
|
32342
|
-
|
|
32343
|
-
|
|
32344
|
-
},
|
|
32345
|
-
|
|
32346
|
-
|
|
32347
|
-
isDictionary: true,
|
|
32348
|
-
editable: false
|
|
32349
|
-
}, {
|
|
32350
|
-
field: 'itemRefTypeNoDisplayText.FR',
|
|
32351
|
-
headerName: 'backoffice.idmEnricher.general.label.FR',
|
|
32352
|
-
isDictionary: true,
|
|
32353
|
-
editable: false
|
|
32354
|
-
}, {
|
|
32355
|
-
field: 'itemRefTypeNoDisplayText.IT',
|
|
32356
|
-
headerName: 'backoffice.idmEnricher.general.label.IT',
|
|
32357
|
-
isDictionary: true,
|
|
32358
|
-
editable: false
|
|
32359
|
-
}]
|
|
32362
|
+
cellDataType: 'lookup',
|
|
32363
|
+
customParams: {
|
|
32364
|
+
nameField: 'itemRefTypeNoDisplayText',
|
|
32365
|
+
displayLabelTemplate: '${name} (${value})',
|
|
32366
|
+
translated: true
|
|
32367
|
+
},
|
|
32368
|
+
isDictionary: true,
|
|
32369
|
+
additionalFields: ['itemRefTypeNoDisplayText']
|
|
32360
32370
|
}, {
|
|
32361
32371
|
headerName: 'backoffice.idmEnricher.partlistpos.label.decisionPosCount',
|
|
32362
32372
|
field: 'posCountValue',
|
|
32363
|
-
cellDataType: '
|
|
32364
|
-
editable: false
|
|
32365
|
-
}, {
|
|
32366
|
-
headerName: 'backoffice.idmEnricher.partlistpos.label.decisionPosCountDisplayText',
|
|
32367
|
-
marryChildren: true,
|
|
32373
|
+
cellDataType: 'lookup',
|
|
32368
32374
|
editable: false,
|
|
32369
|
-
|
|
32370
|
-
|
|
32371
|
-
|
|
32372
|
-
|
|
32373
|
-
|
|
32374
|
-
},
|
|
32375
|
-
|
|
32376
|
-
|
|
32377
|
-
isDictionary: true,
|
|
32378
|
-
editable: false
|
|
32379
|
-
}, {
|
|
32380
|
-
field: 'decisionPosCountDisplayText.FR',
|
|
32381
|
-
headerName: 'backoffice.idmEnricher.general.label.FR',
|
|
32382
|
-
isDictionary: true,
|
|
32383
|
-
editable: false
|
|
32384
|
-
}, {
|
|
32385
|
-
field: 'decisionPosCountDisplayText.IT',
|
|
32386
|
-
headerName: 'backoffice.idmEnricher.general.label.IT',
|
|
32387
|
-
isDictionary: true,
|
|
32388
|
-
editable: false
|
|
32389
|
-
}]
|
|
32375
|
+
customParams: {
|
|
32376
|
+
nameField: 'decisionPosCountDisplayText',
|
|
32377
|
+
filterCellType: 'number',
|
|
32378
|
+
displayLabelTemplate: '${name} (${value})',
|
|
32379
|
+
translated: true
|
|
32380
|
+
},
|
|
32381
|
+
isDictionary: true,
|
|
32382
|
+
additionalFields: ['decisionPosCountDisplayText']
|
|
32390
32383
|
}, {
|
|
32391
32384
|
field: 'decisions',
|
|
32392
32385
|
headerName: 'backoffice.idmEnricher.partlistpos.label.decisions',
|
|
@@ -32401,6 +32394,14 @@ function TablePartlistPos () {
|
|
|
32401
32394
|
},
|
|
32402
32395
|
additionalFields: ['decisionRefsDisplayTexts'],
|
|
32403
32396
|
isDictionary: true
|
|
32397
|
+
}, {
|
|
32398
|
+
headerName: 'backoffice.idmEnricher.partlistpos.label.retailPrefix',
|
|
32399
|
+
field: 'retailPrefix',
|
|
32400
|
+
editable: true
|
|
32401
|
+
}, {
|
|
32402
|
+
headerName: 'backoffice.idmEnricher.partlistpos.label.retailArtilceNumber',
|
|
32403
|
+
field: 'retailArtilceNumber',
|
|
32404
|
+
editable: true
|
|
32404
32405
|
}, {
|
|
32405
32406
|
headerName: 'backoffice.idmEnricher.partlistpos.label.posCountValue',
|
|
32406
32407
|
field: 'posCountValue',
|
|
@@ -32415,14 +32416,6 @@ function TablePartlistPos () {
|
|
|
32415
32416
|
displayLabelTemplate: '${name} (${value})'
|
|
32416
32417
|
},
|
|
32417
32418
|
editable: false
|
|
32418
|
-
}, {
|
|
32419
|
-
headerName: 'backoffice.idmEnricher.partlistpos.label.retailPrefix',
|
|
32420
|
-
field: 'retailPrefix',
|
|
32421
|
-
editable: true
|
|
32422
|
-
}, {
|
|
32423
|
-
headerName: 'backoffice.idmEnricher.partlistpos.label.retailArtilceNumber',
|
|
32424
|
-
field: 'retailArtilceNumber',
|
|
32425
|
-
editable: true
|
|
32426
32419
|
}, {
|
|
32427
32420
|
field: 'organizationId',
|
|
32428
32421
|
cellDataType: 'string',
|
|
@@ -33195,6 +33188,7 @@ function Prices (_ref) {
|
|
|
33195
33188
|
return onSave;
|
|
33196
33189
|
}()
|
|
33197
33190
|
},
|
|
33191
|
+
filter: false,
|
|
33198
33192
|
editable: false
|
|
33199
33193
|
}].concat(_toConsumableArray((_priceFeatureGroups$m = priceFeatureGroups === null || priceFeatureGroups === void 0 ? void 0 : priceFeatureGroups.map(function (priceFeatureGroup) {
|
|
33200
33194
|
var _priceFeatureGroup$ke, _priceFeatureGroup$ke2;
|
|
@@ -33459,9 +33453,10 @@ function TablePriceList () {
|
|
|
33459
33453
|
}, {
|
|
33460
33454
|
headerName: 'backoffice.idmEnricher.pricelists.label.priceFactor',
|
|
33461
33455
|
field: 'pricefactors',
|
|
33462
|
-
cellDataType: '
|
|
33456
|
+
cellDataType: 'number',
|
|
33463
33457
|
cellRenderer: PriceFactorCellRenderer,
|
|
33464
33458
|
editable: false,
|
|
33459
|
+
filter: false,
|
|
33465
33460
|
equals: function equals(a, b) {
|
|
33466
33461
|
return !!((a === null || a === void 0 ? void 0 : a.length) === (b === null || b === void 0 ? void 0 : b.length) && a !== null && a !== void 0 && a.every(function (value, index) {
|
|
33467
33462
|
return value === (b === null || b === void 0 ? void 0 : b[index]);
|
|
@@ -39095,7 +39090,9 @@ var toolItem = "tool-item-KyKgQ";
|
|
|
39095
39090
|
var disabled = "disabled-6aIG9";
|
|
39096
39091
|
var sel = "sel-iUm8X";
|
|
39097
39092
|
var button = "button-K-0KR";
|
|
39098
|
-
var
|
|
39093
|
+
var toolbarLayout = "toolbar-layout-DUuBn";
|
|
39094
|
+
var toolbarContent = "toolbar-content-GxyU6";
|
|
39095
|
+
var css_248z$3 = ".container-BucHG {\n height: 100%;\n width: 100%;\n position: relative;\n z-index: 1001;\n overflow: auto;\n}\n\n.right--XETU .container-BucHG {\n z-index: 1003;\n}\n\n.unpinned-right-tbnNb.container-BucHG {\n right: 37px;\n position: absolute;\n}\n\n.draghandle-f5b0N {\n position: absolute;\n top: 0px;\n background-color: rgba(128, 128, 128, 0.3);\n z-index: 1002;\n}\n\n.right--XETU .draghandle-f5b0N {\n height: 100%;\n width: 2px;\n left: -1px;\n cursor: ew-resize;\n z-index: 1004;\n}\n\n.bottom-cqyfS .draghandle-f5b0N {\n height: 2px;\n width: 100%;\n cursor: ns-resize;\n}\n\n.mid-handle--qh50 {\n position: absolute;\n background-color: rgba(128, 128, 128, 0.3);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n\n.right--XETU .mid-handle--qh50 {\n width: 5px;\n height: 32px;\n border-left: 2px solid grey;\n border-right: 2px solid grey;\n}\n\n.bottom-cqyfS .mid-handle--qh50 {\n height: 5px;\n width: 32px;\n border-top: 2px solid gray;\n border-bottom: 2px solid gray;\n}\n\n.tools-selector-BHV3Z {\n z-index: 1000;\n display: flex;\n position: relative;\n gap: 16px;\n align-items: center;\n background-color: #f5f5f5;\n}\n\n.darkmode .tools-selector-BHV3Z {\n background-color: #001529;\n color: rgba(255, 255, 255, 0.85);\n}\n\n.right--XETU .tools-selector-BHV3Z {\n width: 36px;\n height: 100%;\n padding-top: 16px;\n flex-direction: column;\n}\n\n.bottom-cqyfS .tools-selector-BHV3Z {\n width: 100%;\n height: 36px;\n padding-top: 0;\n flex-direction: row;\n}\n\n.tool-item-KyKgQ {\n padding: 10px;\n cursor: pointer;\n position: relative;\n}\n\n.tool-item-KyKgQ.disabled-6aIG9 {\n opacity: 0.5;\n cursor: default;\n}\n\n.right--XETU .tool-item-KyKgQ {\n writing-mode: vertical-lr;\n text-orientation: mixed;\n}\n\n.tool-item-KyKgQ::after {\n content: '';\n position: absolute;\n background-color: #0088ff;\n transition: all ease-in-out 0.2s;\n}\n\n.right--XETU .tool-item-KyKgQ::after {\n width: 3px;\n height: 0px;\n left: 1px;\n bottom: 50%;\n}\n\n.right--XETU .tool-item-KyKgQ:not(.disabled-6aIG9):hover::after,\n.right--XETU .sel-iUm8X::after {\n height: 100%;\n bottom: 0;\n}\n\n.bottom-cqyfS .tool-item-KyKgQ::after {\n width: 0px;\n height: 3px;\n bottom: 1px;\n left: 50%;\n}\n\n.bottom-cqyfS .tool-item-KyKgQ:not(.disabled-6aIG9):hover::after,\n.bottom-cqyfS .sel-iUm8X::after {\n width: 100%;\n left: 0;\n}\n\n.button-K-0KR {\n width: 40px;\n justify-content: center;\n}\n\n.toolbar-layout-DUuBn {\n height: 100%;\n width: 100%;\n}\n\n.toolbar-content-GxyU6 {\n height: 100%;\n width: 100%;\n padding: 32px;\n display: flex;\n flex-direction: column;\n}\n";
|
|
39099
39096
|
styleInject(css_248z$3);
|
|
39100
39097
|
|
|
39101
39098
|
var wrapper$1 = "wrapper-Q13-g";
|
|
@@ -39678,19 +39675,12 @@ function ToolElement(_ref2) {
|
|
|
39678
39675
|
return tool.elementComponent;
|
|
39679
39676
|
}, [tool.id]);
|
|
39680
39677
|
return /*#__PURE__*/jsx(Layout$1, {
|
|
39681
|
-
|
|
39682
|
-
height: '100%',
|
|
39683
|
-
width: '100%'
|
|
39684
|
-
},
|
|
39678
|
+
className: toolbarLayout,
|
|
39685
39679
|
children: /*#__PURE__*/jsx(Spin$1, {
|
|
39686
39680
|
spinning: loading,
|
|
39687
39681
|
size: "large",
|
|
39688
39682
|
children: /*#__PURE__*/jsxs(Layout$1.Content, {
|
|
39689
|
-
|
|
39690
|
-
height: '100%',
|
|
39691
|
-
width: '100%',
|
|
39692
|
-
padding: 32
|
|
39693
|
-
},
|
|
39683
|
+
className: toolbarContent,
|
|
39694
39684
|
children: [Tool, C && /*#__PURE__*/jsx(C, _objectSpread$2({}, tool.elementProps), tool.id)]
|
|
39695
39685
|
})
|
|
39696
39686
|
})
|