Description | In the update characteristics process, the tree information shown in the selector has to be based on the identifier information. Currently, the information shown in that selector is based on the name, but in general, the information shown in the selector has to be based on the identifier, as in the rest of the selectors. |
Steps To Reproduce | In the update characteristics process, the tree information shown in the selector has to be based on the identifier information. Currently, the information shown in that selector is based on the name, but in general, the information shown in the selector has to be based on the identifier, as in the rest of the selectors. |
Attached Files | 55689.diff [^] (1,714 bytes) 2024-06-05 13:46 [Show Content] [Hide Content]diff --git a/web/js/productCharacteristicsProcess.js b/web/js/productCharacteristicsProcess.js
index 9ffe609d7d..4886b74a72 100644
--- a/web/js/productCharacteristicsProcess.js
+++ b/web/js/productCharacteristicsProcess.js
@@ -215,21 +215,21 @@ isc.UpdateInvariantCharacteristicsPopup.addProperties({
parentSelectionAllowed: true,
popupTextMatchStyle: 'substring',
textMatchStyle: 'substring',
- defaultPopupFilterField: 'name',
- displayField: 'name',
+ defaultPopupFilterField: '_identifier',
+ displayField: '_identifier',
valueField: 'id',
referencedTableId: 'E913D17C9B3847CF92235082DBE2EC44',
productCharSubsetId: this.characteristicList[i].productCharSubsetId,
showTreePopupWindow: false,
pickListFields: [{
title: ' ',
- name: 'name',
+ name: '_identifier',
type: 'text'
}],
showSelectorGrid: true,
treeGridFields: [{
title: 'name',
- name: 'name',
+ name: '_identifier',
canSort: false,
type: '_id_10'
}],
@@ -238,7 +238,7 @@ isc.UpdateInvariantCharacteristicsPopup.addProperties({
gridProps: {
sort: 3,
autoExpand: true,
- displayField: 'characteristicValue$name',
+ displayField: 'characteristicValue$_identifier',
displaylength: 32,
fkField: true,
showHover: true
@@ -320,4 +320,4 @@ isc.UpdateInvariantCharacteristicsPopup.addProperties({
this.Super('initWidget', arguments);
}
-});
\ No newline at end of file
+});
|