ru.coon 2.8.65 → 2.8.66
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/Function.js +0 -0
- package/src/common/component/editor/EditorFactory.js +3 -1
- package/src/report/plugin/configPanel/openCustomPanelButtonPlugin/OpenCustomPanelButtonPluginConfigPanel.js +0 -0
- package/src/report/plugin/configPanel/openCustomPanelButtonPlugin/OpenCustomPanelButtonPluginConfigPanel.scss +0 -0
- package/src/report/plugin/grid/ReportCharacteristicBindPlugin.js +6 -4
- package/src/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# Version 2.8.66, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/648ffa74fe566102cfcc26ee8f7314b668d31d6e)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'>HT-11963 fix disableInternalEditor and updateParentReport on ReportCharacteristicBindPlugin</span> ([6a0e3c], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/6a0e3c8dbfb2cdb8f9f0d090e38c4bcfe4262a15))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([f0471d], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f0471dac7153c39c4fc51f095e2a229a26efe62f))
|
|
6
|
+
|
|
1
7
|
# Version 2.8.65, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/cd4e6a05be766150803dee8bf864f689b45a5071)
|
|
2
8
|
* ## Fixes
|
|
3
9
|
* <span style='color:red'>HT-12063 fix ReportTree and SimpleFilterPlugin</span> ([b1601d], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/b1601dfca09e99bb0e1dd4c7b8199b597aa1fed0))
|
package/package.json
CHANGED
package/src/Function.js
CHANGED
|
File without changes
|
|
@@ -465,7 +465,9 @@ Ext.define('Coon.common.component.editor.CustomTypeEditor', {
|
|
|
465
465
|
try {
|
|
466
466
|
editor = Ext.widget(editorCode);
|
|
467
467
|
if (editor.disableInternalEditor) {
|
|
468
|
-
this.show = () =>
|
|
468
|
+
this.show = () => {
|
|
469
|
+
this.editing = false;
|
|
470
|
+
};
|
|
469
471
|
}
|
|
470
472
|
} catch (e) {
|
|
471
473
|
Coon.log.log(e);
|
|
File without changes
|
|
File without changes
|
|
@@ -302,16 +302,18 @@ Ext.define('Coon.report.plugin.grid.ReportCharacteristicBindPlugin', {
|
|
|
302
302
|
},
|
|
303
303
|
|
|
304
304
|
beforeselectHandler(selectionModel, newRecord) {
|
|
305
|
-
const callbackFn =
|
|
306
|
-
this.fireEvent('needReload', this.updateParentReport);
|
|
307
|
-
|
|
305
|
+
const callbackFn = () => {
|
|
306
|
+
this.grid.fireEvent('needReload', this.updateParentReport);
|
|
307
|
+
this.grid.on('load', function() {
|
|
308
|
+
selectionModel.select(newRecord);
|
|
309
|
+
}, this, {single: true});
|
|
308
310
|
};
|
|
309
311
|
|
|
310
312
|
if (Object.keys(this.initialCharData).length === 0) {
|
|
311
313
|
return true;
|
|
312
314
|
}
|
|
313
315
|
if (!this.deepEquals(this.initialCharData, this.chars.getFullList(), {exclude: [this.ns.$valueDescription]})) {
|
|
314
|
-
Ext.Msg.
|
|
316
|
+
Ext.Msg.show({
|
|
315
317
|
title: 'Сообщение системы',
|
|
316
318
|
msg: 'Характеристики не были сохранены. Сохранить?',
|
|
317
319
|
buttons: Ext.Msg.YESNO,
|
package/src/version.js
CHANGED