ru.coon 2.6.21 → 2.6.22
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,9 +1,16 @@
|
|
|
1
|
+
# Version 2.6.22, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a580a8a4150b16d4f73ad7a4c1689d610822ee10)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'> loadData on SimplestReportCombo CRM-8429</span> ([e88546], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e88546f3413c2aa5520453b04abe000f4345bfea))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([c765e5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c765e541f9875b873ba2ecffb85f2284845e217b))
|
|
6
|
+
|
|
1
7
|
# Version 2.6.21, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/6f24834f0ffadd1fcf91e6545544a0e6db569481)
|
|
2
8
|
* ## Features
|
|
3
9
|
* <span style='color:green'>feat: HT-8139: refactoring</span> ([e0404c], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e0404c9c462d41b8a68eefe90d4204d9f12ab92d))
|
|
4
10
|
* <span style='color:green'>feat: HT-8139: validate function call after dialog on close window</span> ([8eec24], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8eec24fb0dcad82d6ce2fcd3c81d1bee92261bdb))
|
|
5
11
|
|
|
6
12
|
* ## Fixes
|
|
13
|
+
* <span style='color:red'>Fix:HT-8128 Fix groupButton property in CopyRowsFromGridConfigPanel</span> ([7fc721], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/7fc721f71b53faa54c451645c1c03f4cc5d4ec23))
|
|
7
14
|
* <span style='color:red'> Added "requires". Related to TR-63848.</span> ([1d6623], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/1d66232357d6fc3d3e7a0dabad7183da4aac41ad))
|
|
8
15
|
|
|
9
16
|
* refactoring UnifiedButtonToolbarPlugin ([2db2e5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/2db2e5926168f46feabe6bf65ea709f26c546a7e))
|
|
@@ -23,6 +30,9 @@
|
|
|
23
30
|
* <span style='color:green'>feat: HT-8044 ExportReportDataToFilePlugin add exportConfig field</span> ([0df785], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0df785630853bcaf2291476fd7007f9a29761d63))
|
|
24
31
|
* <span style='color:green'>feat: HT-8145: remove and set table view empty text on load / before load</span> ([e14b0b], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e14b0b784256fc854be3d042bb695575eac83269))
|
|
25
32
|
|
|
33
|
+
* ## Fixes
|
|
34
|
+
* <span style='color:red'> BFL-11383 editing values setting in ReportLookupCombo</span> ([25f19c], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/25f19c68cf394733dd397e0445669f755c2fd045))
|
|
35
|
+
|
|
26
36
|
* update extjs_iconpack ([648132], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/648132fadfa22e609d17317e40aee2e99ac289ca))
|
|
27
37
|
* update: CHANGELOG.md ([7b85e2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/7b85e26648ab43868b4b1db32f11fb04113645dc))
|
|
28
38
|
|
package/package.json
CHANGED
|
@@ -98,9 +98,9 @@ Ext.define('Coon.report.component.ReportLookupCombo', {
|
|
|
98
98
|
this.setValue = function(value) {
|
|
99
99
|
this._setValue(value);
|
|
100
100
|
if (!this._inited && value) {
|
|
101
|
-
this._inited = true;
|
|
102
101
|
this.loadReportData(value);
|
|
103
102
|
}
|
|
103
|
+
this._inited = true;
|
|
104
104
|
};
|
|
105
105
|
if (Ext.isObject(this.defaultParameters)) {
|
|
106
106
|
this.setFilterDefaults(this.defaultParameters);
|
|
@@ -239,7 +239,7 @@ Ext.define('Coon.report.component.SimpleReportTag', {
|
|
|
239
239
|
return typeof item === 'string' ? {name: item} : item;
|
|
240
240
|
});
|
|
241
241
|
this.store.getModel().addFields(newFields);
|
|
242
|
-
this.store.loadData(data
|
|
242
|
+
this.store.loadData(data);
|
|
243
243
|
this.store.fireEvent('load', this.store, this.store.getRange(), true);
|
|
244
244
|
this.fireEvent('load', this, this.store);
|
|
245
245
|
if (this.value) {
|
|
@@ -95,6 +95,7 @@ Ext.define('Coon.report.plugin.configPanel.CopyRowsFromGridConfigPanel', {
|
|
|
95
95
|
];
|
|
96
96
|
},
|
|
97
97
|
setContext: function(context) {
|
|
98
|
+
this.callParent(arguments);
|
|
98
99
|
const visibleFields = context && context.fields ? context.fields.filter((field) => field.visibleSwitch === true) : [];
|
|
99
100
|
if (visibleFields && visibleFields.length) {
|
|
100
101
|
Ext.ComponentQuery.query('[xtype="EditorJsField"]', this).forEach((cmp) => {
|
|
@@ -262,7 +263,7 @@ Ext.define('Coon.report.plugin.configPanel.CopyRowsFromGridConfigPanel', {
|
|
|
262
263
|
['xlsx', 'xlsx']
|
|
263
264
|
],
|
|
264
265
|
fieldLabel: 'Отобразить редактор',
|
|
265
|
-
|
|
266
|
+
local: true,
|
|
266
267
|
allowBlank: true,
|
|
267
268
|
listeners: {
|
|
268
269
|
change: this.onChangeFormat.bind(this),
|
package/src/version.js
CHANGED