ru.coon 2.7.64 → 2.7.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,11 @@
|
|
|
1
|
+
# Version 2.7.66, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/61028d8dc3e2af4282c533b5fd1368dce548e624)
|
|
2
|
+
* remove getCircularReplacer ([9fea84], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9fea8459fda6fd3fcaa5889828cf4cd0b6f509a7))
|
|
3
|
+
* HT-9879 fix: Исправление OpenURLButtonPlugin в части проверки наличия в url знака вопроса ([56a5db], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/56a5db0b7084db2439e67f3c1eb9b6c0dab8539b))
|
|
4
|
+
* update: CHANGELOG.md ([107df2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/107df2d447bec0a2698a306cbb1ac3b5093bed74))
|
|
5
|
+
|
|
6
|
+
# Version 2.7.65, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/575aaa8ea4982726ce21f98300e95aa55ecbb906)
|
|
7
|
+
* update: CHANGELOG.md ([72d780], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/72d7808927b07eb6ce33080c2b2e808b9b9a4a55))
|
|
8
|
+
|
|
1
9
|
# Version 2.7.64, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8b0b9a392f1f27837b2ef59a39ab5e0cfb4c6167)
|
|
2
10
|
* ## Fixes
|
|
3
11
|
* <span style='color:red'> TR-68748: set aceEditor value on render editor</span> ([91d6a5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/91d6a540b1c59bf30fc9b137d713dab6fd10f23c))
|
|
@@ -104,7 +112,10 @@ This reverts commit b3524303e203486f1c393f2174967c652d2f8c33.</span> ([0bfe61],
|
|
|
104
112
|
* <span style='color:green'>feat: TR-69015: css</span> ([ecd879], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ecd87930a535ff13b0ad42eba28df9d1ed91cd2a))
|
|
105
113
|
|
|
106
114
|
* ## Fixes
|
|
115
|
+
* <span style='color:red'> HT-7916 ExportReportDataToFilePluginConfigPanel fix display checkboxes</span> ([4971af], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/4971af01b9196a138c382f04090bb681d11b40aa))
|
|
107
116
|
* <span style='color:red'> HT-9084 ReportColumnStatePlugin column width</span> ([b10a75], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/b10a75f78f92262543be268863961fda1113d9d5))
|
|
117
|
+
* <span style='color:red'> HT-7916 ExportReportDataToFilePluginConfigPanel fix display checkboxes</span> ([a32fb4], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a32fb45007cdc8a1a32cb958a92ac490ab081fd9))
|
|
118
|
+
* <span style='color:red'> HT-7916 ExportReportDataToFilePluginConfigPanel fix displya checkboxes</span> ([a56d49], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a56d4938522370475d73072188ac72851a2c010f))
|
|
108
119
|
|
|
109
120
|
* improve custom panel plugin tracing ([ed6206], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ed62065b34ebb04520b62f6fce269e4d4cbb6d21))
|
|
110
121
|
* upd ([57157a], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/57157acdd88c0fa6702e5c5cbd321bc89d840d09))
|
package/package.json
CHANGED
|
@@ -179,9 +179,7 @@ Ext.define('Coon.report.plugin.configPanel.ExportReportDataToFilePluginConfigPan
|
|
|
179
179
|
|
|
180
180
|
doInit: function(config) {
|
|
181
181
|
this.callParent(arguments);
|
|
182
|
-
|
|
183
|
-
this.columnList = config.columnList;
|
|
184
|
-
}
|
|
182
|
+
this.columnList = config && config.columnList && Coon.util.parseJSON5(config.columnList) || [];
|
|
185
183
|
if (config.exportConfig) {
|
|
186
184
|
this.down('UiAceEditor').setValue(config.exportConfig);
|
|
187
185
|
}
|
|
@@ -201,7 +199,7 @@ Ext.define('Coon.report.plugin.configPanel.ExportReportDataToFilePluginConfigPan
|
|
|
201
199
|
return {
|
|
202
200
|
reportField: field[ns.$reportField],
|
|
203
201
|
description: field[ns.$description],
|
|
204
|
-
checkbox:
|
|
202
|
+
checkbox: this.columnList.find((col) => col.reportField === field[ns.$reportField]),
|
|
205
203
|
};
|
|
206
204
|
});
|
|
207
205
|
|
|
@@ -28,7 +28,7 @@ Ext.define('Coon.report.plugin.grid.OpenURLButtonPlugin', {
|
|
|
28
28
|
if (!Ext.isEmpty(this.dynamicContextField) && !Ext.isEmpty(context.record)) {
|
|
29
29
|
url += context.record.get(this.dynamicContextField);
|
|
30
30
|
}
|
|
31
|
-
let paramsURL =
|
|
31
|
+
let paramsURL = Ext.isString(url) && url.includes('?') ? '': '?';
|
|
32
32
|
for (const paramName in params) {
|
|
33
33
|
if (params.hasOwnProperty(paramName)) {
|
|
34
34
|
if (!Ext.isEmpty(params)) {
|
package/src/version.js
CHANGED