ru.coon 2.7.35 → 2.7.36

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,14 @@
1
+ # Version 2.7.36, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9857ca304c8428bc53cddfa0e1476f6af4ec1778)
2
+ * ## Fixes
3
+ * <span style='color:red'> HT-9057 GridEditorsPlugin fix date format</span> ([b702c4], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/b702c4eefab3c75b8c2be1857d510e70b9c0e52a))
4
+ * <span style='color:red'> HT-9057 GridEditorsPlugin fix date format</span> ([18109c], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/18109c790b243796ec018b98bc1a4add82814378))
5
+ * <span style='color:red'> HT-9043 set filter panel height on afterlayout</span> ([a7c47b], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a7c47b732b32f629e7329a2c33be2b38b1a28354))
6
+ * <span style='color:red'> HT-9043 add getSubmitValue for SimpleReportTag and set filter panel height on afterlayout</span> ([3b815e], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/3b815ef047e51ff023a191abf3af0a6e220cb26a))
7
+
8
+ * TR-69031 :fix возвращено событие appready в Main ([ec2a2c], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ec2a2c43c03849e19c50df245aa16d544297e879))
9
+ * upd ([90f4cf], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/90f4cfad61c07e88f68c48c0000e3f9141e082a2))
10
+ * update: CHANGELOG.md ([9104da], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9104daa43944f2f1bf49ee8e1298bc31d251f091))
11
+
1
12
  # Version 2.7.35, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8a36c677b3a30a03bfb3b7045d0c663fdf090bf3)
2
13
  * update: CHANGELOG.md ([78b2a5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/78b2a5573bdea9aede4f354a0584f5e606f7c573))
3
14
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "2.7.35",
7
+ "version": "2.7.36",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -72,5 +72,6 @@ Ext.define('Coon.app.viewPort.Main', {
72
72
  this.callParent(arguments);
73
73
  const {initialRoute} = Ext.getApplication();
74
74
  initialRoute && Ext.fireEvent('route:initial', initialRoute);
75
+ Ext.fireEvent('appready');
75
76
  },
76
77
  });
@@ -106,6 +106,15 @@ Ext.define('Coon.report.component.SimpleReportTag', {
106
106
  }
107
107
  },
108
108
 
109
+ getSubmitValue: function() {
110
+ const valueArray = this.callParent();
111
+ if (Ext.isArray(valueArray)) {
112
+ return valueArray.join();
113
+ } else {
114
+ return valueArray;
115
+ }
116
+ },
117
+
109
118
  updateReportId: function(newReportId, OldReportId) {
110
119
  if (this.initComplete && ((this.getDefaultParameters() && this.getDefaultParameters().doLoad) || this.getAutoLoadData())) {
111
120
  this.loadHandler({});
@@ -211,7 +211,7 @@ Ext.define('Coon.report.component.report.NorthPanel', {
211
211
  return;
212
212
  }
213
213
  if (this.enableHighlightingRequiredFields || this.getEnableChipToolbar()) {
214
- tbarsHeight += tbarH;
214
+ tbarsHeight += tbarH + 10;
215
215
  tbar.show();
216
216
  if (this.isLegendHidden() && this.enableHighlightingRequiredFields && !this.legend) {
217
217
  this.legend = this.buildLegend();
@@ -18,85 +18,80 @@ Ext.define('Coon.report.plugin.grid.GridEditorsPlugin', {
18
18
  configurePanelWizard: 'GridEditorPluginConfig',
19
19
  },
20
20
 
21
- constructor: function(config) {
22
- if (Ext.isEmpty(config.editorConfig)) {
23
- config.editorConfig = [];
24
- } else if (!Ext.isArray(config.editorConfig)) {
25
- config.editorConfig = [config.editorConfig];
21
+ getEditorConfig() {
22
+ this.editorConfig = this.editorConfig || [];
23
+ if (Array.isArray(this.editorConfig)) {
24
+ return this.editorConfig;
25
+ } else {
26
+ return [this.editorConfig];
26
27
  }
27
- const c = config || {};
28
- Ext.apply(this, c);
29
- this.callParent([config]);
30
28
  },
31
29
 
32
- init: function(grid) {
30
+ init(grid) {
33
31
  this.grid = grid;
34
32
  this.grid.on('afterrender', this.setEditors, this);
35
33
  },
36
34
 
37
- setEditors: function() {
38
- let hasEditor = this.grid.findPlugin('cellediting');
35
+ setEditors() {
36
+ const hasEditor = this.grid.findPlugin('cellediting') || this.grid.findPlugin('rowediting');
39
37
  if (!hasEditor) {
40
- hasEditor = this.grid.findPlugin('rowediting');
41
- if (!hasEditor) {
42
- Coon.log.log('component is not editable');
38
+ Coon.log.log('component is not editable');
39
+ return;
40
+ }
41
+ for (const editorConfig of this.getEditorConfig()) {
42
+ const column = this.grid.getColumnModel().findColumnByDataIndex(editorConfig.type);
43
+ if (!column) {
43
44
  return;
44
45
  }
45
- }
46
- const ns = Coon.report.model.CharacteristicBeanFields;
47
- for (let i = 0; i < this.editorConfig.length; i++) {
48
- const editorObj = this.editorConfig[i];
49
- const column = this.grid.getColumnModel().findColumnByDataIndex(editorObj[ns.$type]);
50
- if (column) {
51
- const editor = this.createEditorItem(editorObj);
52
- if (Ext.isFunction(column.setEditor)) {
53
- column.setEditor(editor);
46
+ const editor = this.createEditorItem(editorConfig);
47
+ if (Ext.isFunction(column.setEditor)) {
48
+ column.setEditor(editor);
49
+ }
50
+ const needComboRenderer = editor.isXType('BaseComboBox') && column.useComboRenderer !== false;
51
+ const customStyle = column.renderer && column.renderer.customStyle;
52
+ const columnFormat = column.format;
53
+ column.renderer = (value, metaData, record) => {
54
+ let editable = true;
55
+ if (editorConfig.dependsOnField && editorConfig.dependsOnFieldName) {
56
+ const dependsOnFieldName = editorConfig.dependsOnFieldName;
57
+ const invertValue = editorConfig.invertValue;
58
+ editable = invertValue === !record.get(dependsOnFieldName);
59
+ if (editorConfig.highlightEditableCells) {
60
+ metaData.tdCls = editable ? 'editable-cell' : 'hover-cell';
61
+ }
54
62
  }
55
- const dependsOnFieldName = editorObj['dependsOnField'] && editorObj['dependsOnFieldName'];
56
- const needComboRenderer = editor.isXType('BaseComboBox') && column.useComboRenderer !== false;
57
- if (dependsOnFieldName || needComboRenderer) {
58
- const customStyle = column.renderer && column.renderer.customStyle;
59
- column.renderer = (value, metaData, record) => {
60
- let editable = true;
61
- if (editorObj['dependsOnField'] && editorObj['dependsOnFieldName']) {
62
- const dependsOnFieldName = editorObj['dependsOnFieldName'];
63
- const invertValue = editorObj['invertValue'];
64
- editable = invertValue === !record.get(dependsOnFieldName);
65
- record.allowEditWithEditorPlugin = editable;
66
- if (editorObj['highlightEditableCells']) {
67
- metaData.tdCls = editable ? 'editable-cell' : 'hover-cell';
68
- }
69
- hasEditor.on('beforeedit', function(editor, context) {
70
- return context.record.allowEditWithEditorPlugin;
71
- }, this);
72
- }
73
- if (typeof customStyle === 'string') {
74
- metaData.tdStyle = customStyle;
75
- }
76
- if (needComboRenderer) {
77
- editor.store.clearFilter();
78
- const editorRecord = editor.findRecord(editor.valueField, value);
79
- return editorRecord ? editorRecord.get(editor.displayField) : editor.valueNotFoundText;
80
- } else {
81
- return value;
82
- }
83
- };
84
- column.renderer.customStyle = customStyle;
63
+ record.allowEditWithEditorPlugin = {};
64
+ record.allowEditWithEditorPlugin[editorConfig.type] = editable;
65
+ if (typeof customStyle === 'string') {
66
+ metaData.tdStyle = customStyle;
85
67
  }
86
- }
68
+ if (needComboRenderer) {
69
+ editor.store.clearFilter();
70
+ const editorRecord = editor.findRecord(editor.valueField, value);
71
+ return editorRecord ? editorRecord.get(editor.displayField) : editor.valueNotFoundText;
72
+ }
73
+ if (Ext.isDate(value)) {
74
+ return Ext.Date.format(value, editorConfig.mask.format || columnFormat);
75
+ } else {
76
+ return value;
77
+ }
78
+ };
79
+ hasEditor.on('beforeedit', function(editor, context) {
80
+ return context.record.allowEditWithEditorPlugin[context.column.dataIndex] || false;
81
+ }, this);
82
+ column.renderer.customStyle = customStyle;
87
83
  }
88
84
  },
89
85
 
90
- createEditorItem: function(configuration) {
91
- const ns = Coon.report.model.CharacteristicBeanFields;
92
- const entity = configuration[ns.$entity];
86
+ createEditorItem(configuration) {
87
+ const entity = configuration.entity;
93
88
 
94
89
  const defaultConfig = {
95
- allowBlank: configuration[ns.$required] ? false : true,
90
+ allowBlank: !configuration.required,
96
91
  };
97
92
  let config;
98
- if (entity == 'ADV') {
99
- const typeOfValue = configuration[ns.$typeOfValue];
93
+ if (entity === 'ADV') {
94
+ const typeOfValue = configuration.typeOfValue;
100
95
  switch (typeOfValue) {
101
96
  case 'TEXT':
102
97
  config = {
@@ -137,9 +132,9 @@ Ext.define('Coon.report.plugin.grid.GridEditorsPlugin', {
137
132
  };
138
133
  break;
139
134
  }
140
- } else if (entity == 'DFV') {
135
+ } else if (entity === 'DFV') {
141
136
 
142
- } else if (entity == 'FKV') {
137
+ } else if (entity === 'FKV') {
143
138
 
144
139
  }
145
140
  if (!config) {
@@ -147,10 +142,10 @@ Ext.define('Coon.report.plugin.grid.GridEditorsPlugin', {
147
142
  }
148
143
  let properties;
149
144
  try {
150
- properties = Ext.isEmpty(configuration[ns.$mask]) ? {} :
151
- (Ext.isObject(configuration[ns.$mask]) ? configuration[ns.$mask] : Ext.decode(configuration[ns.$mask].trim()));
145
+ properties = Ext.isEmpty(configuration.mask) ? {} :
146
+ (Ext.isObject(configuration.mask) ? configuration.mask : Ext.decode(configuration.mask.trim()));
152
147
  } catch (e) {
153
- Coon.log.log('!!!!!' + configuration[ns.$mask] + '!!!!!');
148
+ Coon.log.log('!!!!!' + configuration.mask + '!!!!!');
154
149
  Coon.log.log(e);
155
150
  }
156
151
  config = Ext.apply(config, properties, defaultConfig);
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '2.7.35',
3
+ number: '2.7.36',
4
4
  });