ru.coon 2.5.62 → 2.5.63
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,7 @@
|
|
|
1
|
+
# Version 2.5.63, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/49035e56acea653959f01f96ea96a10d962b1424)
|
|
2
|
+
* BFL-10644 ([e02d63], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e02d636d78004a9687ab5715ce2787fcf50abe5a))
|
|
3
|
+
* update: CHANGELOG.md ([e3238f], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e3238fb0cd5428b0f941440a297868db68ae4f69))
|
|
4
|
+
|
|
1
5
|
# Version 2.5.62, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/aeeccacd770cc533281e3d05d7d840b35607ebf9)
|
|
2
6
|
* ## Fixes
|
|
3
7
|
* <span style='color:red'> HT-7718: add check - break chain when method return false in MethodChainPlugin. reject error on command complete failure in ExecuteCommandPlugin</span> ([293aae], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/293aae575e1abb231ecc07fc6707880eecba61ad))
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Ext.define('Coon.common.component.editor.CharacteristicHistoryPanelAudit', {
|
|
2
|
-
extend: 'Ext.Panel',
|
|
2
|
+
extend: 'Ext.panel.Panel',
|
|
3
3
|
alternateClassName: [
|
|
4
4
|
'SigmaUtilities.view.common.component.editor.CharacteristicHistoryPanelAudit'
|
|
5
5
|
],
|
|
@@ -10,6 +10,11 @@ Ext.define('Coon.common.component.editor.CharacteristicHistoryPanelAudit', {
|
|
|
10
10
|
charTypeCd: undefined,
|
|
11
11
|
characteristicEntity: undefined,
|
|
12
12
|
|
|
13
|
+
layout: {
|
|
14
|
+
type: 'vbox',
|
|
15
|
+
align: 'stretch',
|
|
16
|
+
},
|
|
17
|
+
|
|
13
18
|
initComponent: function() {
|
|
14
19
|
this.characteristicsValueTabs = Ext.create({
|
|
15
20
|
xtype: 'tabpanel',
|
|
@@ -20,9 +25,10 @@ Ext.define('Coon.common.component.editor.CharacteristicHistoryPanelAudit', {
|
|
|
20
25
|
autoScroll: true,
|
|
21
26
|
split: true,
|
|
22
27
|
items: [
|
|
23
|
-
|
|
28
|
+
{
|
|
29
|
+
xtype: 'HistoryListForTypeCharacteristicEditor',
|
|
24
30
|
title: 'Значения',
|
|
25
|
-
}
|
|
31
|
+
},
|
|
26
32
|
{
|
|
27
33
|
xtype: 'ReportPanel',
|
|
28
34
|
reportID: 'AUDIT_ENTITY_CHAR',
|
|
@@ -60,14 +66,14 @@ Ext.define('Coon.common.component.editor.CharacteristicHistoryPanelAudit', {
|
|
|
60
66
|
this.charTypeCd = charTypeCd;
|
|
61
67
|
this.effdt = effectiveDate;
|
|
62
68
|
this.characteristicsValueTabs.setActiveTab(0);
|
|
63
|
-
this.
|
|
69
|
+
this.down('HistoryListForTypeCharacteristicEditor').doInit(
|
|
64
70
|
this.ID,
|
|
65
71
|
this.entity,
|
|
66
72
|
this.characteristicEntity,
|
|
67
73
|
this.effdt,
|
|
68
74
|
this.charTypeCd
|
|
69
75
|
);
|
|
70
|
-
this.
|
|
76
|
+
this.down('HistoryListForTypeCharacteristicEditor').getStore().sort(Coon.report.model.CharacteristicBeanFields.$effectiveDate, 'DESC');
|
|
71
77
|
},
|
|
72
78
|
|
|
73
79
|
});
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
Ext.define('Coon.common.component.editor.HistoryListForTypeCharacteristicEditor', {
|
|
2
2
|
extend: 'Coon.common.component.editor.TypedCharacteristicEditor',
|
|
3
|
+
xtype: 'HistoryListForTypeCharacteristicEditor',
|
|
3
4
|
alternateClassName: [
|
|
4
5
|
'SigmaUtilities.view.common.component.editor.HistoryListForTypeCharacteristicEditor'
|
|
5
6
|
],
|
package/src/version.js
CHANGED