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 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
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "2.8.65",
7
+ "version": "2.8.66",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
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 = () => false;
468
+ this.show = () => {
469
+ this.editing = false;
470
+ };
469
471
  }
470
472
  } catch (e) {
471
473
  Coon.log.log(e);
@@ -302,16 +302,18 @@ Ext.define('Coon.report.plugin.grid.ReportCharacteristicBindPlugin', {
302
302
  },
303
303
 
304
304
  beforeselectHandler(selectionModel, newRecord) {
305
- const callbackFn = function() {
306
- this.fireEvent('needReload', this.updateParentReport);
307
- selectionModel.view.setSelection(newRecord);
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.prompt({
316
+ Ext.Msg.show({
315
317
  title: 'Сообщение системы',
316
318
  msg: 'Характеристики не были сохранены. Сохранить?',
317
319
  buttons: Ext.Msg.YESNO,
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '2.8.65',
3
+ number: '2.8.66',
4
4
  });