compass_ae_console 2.0.0 → 3.0.0
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.
- checksums.yaml +7 -0
- data/app/controllers/compass_ae_console/erp_app/desktop/base_controller.rb +76 -66
- data/lib/compass_ae_console.rb +0 -1
- data/lib/compass_ae_console/engine.rb +1 -1
- data/lib/compass_ae_console/version.rb +5 -1
- data/public/javascripts/erp_app/desktop/applications/compass_ae_console/module.js +21 -159
- data/public/javascripts/erp_app/shared/console_panel.js +145 -0
- metadata +25 -99
- data/spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb +0 -12
- data/spec/dummy/db/data_migrations/20110608185830_create_default_dynamic_models_and_forms.erp_forms.rb +0 -33
- data/spec/dummy/db/data_migrations/20110609150135_add_iso_codes.erp_base_erp_svcs.rb +0 -19
- data/spec/dummy/db/data_migrations/20110728201729_erp_app_setup.erp_app.rb +0 -298
- data/spec/dummy/db/data_migrations/20110728201730_update_preferences.erp_app.rb +0 -53
- data/spec/dummy/db/data_migrations/20110802200222_schedule_delete_expired_sessions_job.erp_tech_svcs.rb +0 -16
- data/spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb +0 -21
- data/spec/dummy/db/data_migrations/20110817160743_add_file_manager_application.erp_app.rb +0 -32
- data/spec/dummy/db/data_migrations/20110824020426_create_desktop_app_console.compass_ae_console.rb +0 -20
- data/spec/dummy/db/data_migrations/20110828190913_create_desktop_app_dynamic_forms.erp_forms.rb +0 -19
- data/spec/dummy/db/data_migrations/20110913145838_setup_compass_ae_instance.erp_base_erp_svcs.rb +0 -12
- data/spec/dummy/db/data_migrations/20111108183739_add_default_capabilities.erp_app.rb +0 -30
- data/spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb +0 -51
- data/spec/dummy/db/data_migrations/20111111144706_setup_audit_log_types.erp_tech_svcs.rb +0 -22
- data/spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb +0 -14
- data/spec/dummy/db/data_migrations/20120229160222_add_userinfo_widget.erp_app.rb +0 -31
- data/spec/dummy/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.erp_app.rb +0 -11
- data/spec/dummy/db/data_migrations/20120411180756_create_user_management_mobile_application.erp_app.rb +0 -19
- data/spec/dummy/db/data_migrations/20120418164215_create_configuration_management_desktop_application.erp_app.rb +0 -23
- data/spec/dummy/db/data_migrations/20120824013449_create_ticket_form.erp_forms.rb +0 -67
- data/spec/dummy/db/data_migrations/20121026013449_update_ticket_form.erp_forms.rb +0 -65
- data/spec/dummy/db/data_migrations/20121026191738_update_contact_form.erp_forms.rb +0 -27
- data/spec/dummy/db/migrate/20121207195349_base_erp_services.erp_base_erp_svcs.rb +0 -461
- data/spec/dummy/db/migrate/20121207195350_base_tech_services.erp_tech_svcs.rb +0 -255
- data/spec/dummy/db/migrate/20121207195351_create_has_attribute_tables.erp_tech_svcs.rb +0 -39
- data/spec/dummy/db/migrate/20121207195352_base_app_framework.erp_app.rb +0 -276
- data/spec/dummy/db/migrate/20121207195353_dynamic_forms.erp_forms.rb +0 -95
- data/spec/dummy/db/migrate/20121207195354_create_tickets.erp_forms.rb +0 -19
- data/spec/dummy/db/migrate/20121207195355_upgrade_dynamic_forms_table.erp_forms.rb +0 -32
- data/spec/dummy/db/schema.rb +0 -879
- data/spec/dummy/db/spec.sqlite3 +0 -0
- data/spec/dummy/log/spec.log +0 -3827
@@ -0,0 +1,145 @@
|
|
1
|
+
Ext.define("Compass.ErpApp.Desktop.Applications.CompassAeConsole.ConsolePanel", {
|
2
|
+
extend: "Ext.panel.Panel",
|
3
|
+
alias: 'widget.compass_ae_console_panel',
|
4
|
+
title: 'CompassAE Console',
|
5
|
+
closable: true,
|
6
|
+
layout: 'border',
|
7
|
+
|
8
|
+
desktop_console_history: [],
|
9
|
+
desktop_console_history_index: 0,
|
10
|
+
startup_heading: "<div class='compassConsoleHistory'><span style='color:goldenrod;'><b>Compass Console</b> (<span style='color:white;'>-help</span> for Help)</span></div>",
|
11
|
+
|
12
|
+
listeners:{
|
13
|
+
afterrender: function(comp){
|
14
|
+
comp.sendCommand('-clear');
|
15
|
+
},
|
16
|
+
show: function(comp){
|
17
|
+
comp.down('textarea').focus();
|
18
|
+
},
|
19
|
+
activate: function(comp){
|
20
|
+
comp.down('textarea').focus();
|
21
|
+
}
|
22
|
+
},
|
23
|
+
|
24
|
+
initComponent: function () {
|
25
|
+
var self = this;
|
26
|
+
|
27
|
+
self.items = [
|
28
|
+
{
|
29
|
+
xtype: 'panel',
|
30
|
+
itemId: 'console_history_panel',
|
31
|
+
region: 'center',
|
32
|
+
bodyStyle: "background-color:#000;padding:5px;",
|
33
|
+
autoScroll: true,
|
34
|
+
html: self.startup_heading
|
35
|
+
},
|
36
|
+
{
|
37
|
+
xtype: 'textarea',
|
38
|
+
region: 'south',
|
39
|
+
autoscroll: true,
|
40
|
+
itemId: "console_text_area",
|
41
|
+
enableKeyEvents: true,
|
42
|
+
listeners: {
|
43
|
+
afterrender: function (field) {
|
44
|
+
field.focus();
|
45
|
+
},
|
46
|
+
// use key-up for textarea since ENTER does not affect focus traversal
|
47
|
+
keyup: function (field, e) {
|
48
|
+
if (e.getKey() == e.ENTER) {
|
49
|
+
|
50
|
+
self.sendCommand(field.getValue());
|
51
|
+
// add to history
|
52
|
+
self.desktop_console_history[self.desktop_console_history.length] = field.getValue().substring(0, field.getValue().length - 1);
|
53
|
+
//update index
|
54
|
+
self.desktop_console_history_index = self.desktop_console_history.length;
|
55
|
+
field.setValue("");
|
56
|
+
} else if (e.getKey() == e.UP) {
|
57
|
+
|
58
|
+
if (self.desktop_console_history.length === 0) {
|
59
|
+
// no history to display
|
60
|
+
} else {
|
61
|
+
self.desktop_console_history_index--;
|
62
|
+
if (self.desktop_console_history_index >= 0) {
|
63
|
+
|
64
|
+
}
|
65
|
+
else {
|
66
|
+
self.desktop_console_history_index = desktop_console_history.length - 1;
|
67
|
+
}
|
68
|
+
field.setValue(self.desktop_console_history[self.desktop_console_history_index]);
|
69
|
+
}
|
70
|
+
|
71
|
+
} else if (e.getKey() == e.DOWN) {
|
72
|
+
|
73
|
+
if (self.desktop_console_history.length === 0) {
|
74
|
+
// no history to display
|
75
|
+
} else {
|
76
|
+
self.desktop_console_history_index++;
|
77
|
+
if (self.desktop_console_history_index >= (self.desktop_console_history.length)) {
|
78
|
+
self.desktop_console_history_index = 0;
|
79
|
+
}
|
80
|
+
field.setValue(self.desktop_console_history[self.desktop_console_history_index]);
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
];
|
87
|
+
|
88
|
+
this.callParent();
|
89
|
+
},
|
90
|
+
|
91
|
+
sendCommand: function (command, includeOriginalCommand) {
|
92
|
+
var self = this;
|
93
|
+
|
94
|
+
if (Ext.isEmpty(includeOriginalCommand)) {
|
95
|
+
includeOriginalCommand = true;
|
96
|
+
}
|
97
|
+
|
98
|
+
if (includeOriginalCommand)
|
99
|
+
self.update_history_panel("<span style='color:white'>" + command + "</span>");
|
100
|
+
|
101
|
+
if (command.startsWith("-clear")) {
|
102
|
+
self.clear_history_panel(self.startup_heading);
|
103
|
+
} else {
|
104
|
+
|
105
|
+
Ext.Ajax.request({
|
106
|
+
url: '/compass_ae_console/erp_app/desktop/command',
|
107
|
+
params: {
|
108
|
+
|
109
|
+
command_message: command
|
110
|
+
},
|
111
|
+
success: function (response) {
|
112
|
+
var text = response.responseText;
|
113
|
+
var result = Ext.JSON.decode(text);
|
114
|
+
self.update_history_panel("<div style='color:yellow;'>" + result.success + "</div>");
|
115
|
+
}
|
116
|
+
});
|
117
|
+
}
|
118
|
+
},
|
119
|
+
|
120
|
+
clear_history_panel: function (text) {
|
121
|
+
var self = this,
|
122
|
+
panel = self.down('#console_history_panel'),
|
123
|
+
historyDiv = panel.el.query('div.compassConsoleHistory').first();
|
124
|
+
|
125
|
+
historyDiv.innerHTML = text;
|
126
|
+
|
127
|
+
var d = panel.body.dom;
|
128
|
+
d.scrollTop = d.scrollHeight - d.offsetHeight + 10;
|
129
|
+
panel.doLayout();
|
130
|
+
|
131
|
+
self.sendCommand('"Ruby version: #{RUBY_VERSION}, Rails version: #{Rails.version}, CompassAeConsole version: #{CompassAeConsole.version}"', false);
|
132
|
+
},
|
133
|
+
|
134
|
+
update_history_panel: function (text) {
|
135
|
+
var self = this,
|
136
|
+
panel = self.down('#console_history_panel'),
|
137
|
+
historyDiv = panel.el.query('div.compassConsoleHistory').first();
|
138
|
+
|
139
|
+
historyDiv.innerHTML = historyDiv.innerHTML + text + "<br>";
|
140
|
+
|
141
|
+
var d = panel.body.dom;
|
142
|
+
d.scrollTop = d.scrollHeight - d.offsetHeight + 10;
|
143
|
+
panel.doLayout();
|
144
|
+
}
|
145
|
+
});
|
metadata
CHANGED
@@ -1,48 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass_ae_console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 3.0.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Rick Koloski, Christopher Woodward
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-11-19 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: erp_app
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- - ~>
|
17
|
+
- - "~>"
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
19
|
+
version: '4.0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- - ~>
|
24
|
+
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
26
|
+
version: '4.0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: erp_dev_svcs
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- - ~>
|
31
|
+
- - "~>"
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version: '
|
33
|
+
version: '4.0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- - ~>
|
38
|
+
- - "~>"
|
44
39
|
- !ruby/object:Gem::Version
|
45
|
-
version: '
|
40
|
+
version: '4.0'
|
46
41
|
description: Compass AE Console is an application that sits on top of the Compass
|
47
42
|
AE framework that allows the user to interact with their rails application with
|
48
43
|
a simulated rails console.
|
@@ -52,21 +47,24 @@ executables: []
|
|
52
47
|
extensions: []
|
53
48
|
extra_rdoc_files: []
|
54
49
|
files:
|
55
|
-
-
|
50
|
+
- GPL-3-LICENSE
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
56
53
|
- app/controllers/compass_ae_console/erp_app/desktop/base_controller.rb
|
57
54
|
- config/routes.rb
|
58
55
|
- db/data_migrations/20110824020426_create_desktop_app_console.rb
|
56
|
+
- lib/compass_ae_console.rb
|
59
57
|
- lib/compass_ae_console/engine.rb
|
60
58
|
- lib/compass_ae_console/version.rb
|
61
|
-
-
|
62
|
-
-
|
63
|
-
- Rakefile
|
64
|
-
- README.md
|
59
|
+
- public/javascripts/erp_app/desktop/applications/compass_ae_console/module.js
|
60
|
+
- public/javascripts/erp_app/shared/console_panel.js
|
61
|
+
- spec/dummy/Rakefile
|
65
62
|
- spec/dummy/app/assets/javascripts/application.js
|
66
63
|
- spec/dummy/app/assets/stylesheets/application.css
|
67
64
|
- spec/dummy/app/controllers/application_controller.rb
|
68
65
|
- spec/dummy/app/helpers/application_helper.rb
|
69
66
|
- spec/dummy/app/views/layouts/application.html.erb
|
67
|
+
- spec/dummy/config.ru
|
70
68
|
- spec/dummy/config/application.rb
|
71
69
|
- spec/dummy/config/boot.rb
|
72
70
|
- spec/dummy/config/database.yml
|
@@ -80,75 +78,35 @@ files:
|
|
80
78
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
81
79
|
- spec/dummy/config/locales/en.yml
|
82
80
|
- spec/dummy/config/routes.rb
|
83
|
-
- spec/dummy/config.ru
|
84
|
-
- spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb
|
85
|
-
- spec/dummy/db/data_migrations/20110608185830_create_default_dynamic_models_and_forms.erp_forms.rb
|
86
|
-
- spec/dummy/db/data_migrations/20110609150135_add_iso_codes.erp_base_erp_svcs.rb
|
87
|
-
- spec/dummy/db/data_migrations/20110728201729_erp_app_setup.erp_app.rb
|
88
|
-
- spec/dummy/db/data_migrations/20110728201730_update_preferences.erp_app.rb
|
89
|
-
- spec/dummy/db/data_migrations/20110802200222_schedule_delete_expired_sessions_job.erp_tech_svcs.rb
|
90
|
-
- spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb
|
91
|
-
- spec/dummy/db/data_migrations/20110817160743_add_file_manager_application.erp_app.rb
|
92
|
-
- spec/dummy/db/data_migrations/20110824020426_create_desktop_app_console.compass_ae_console.rb
|
93
|
-
- spec/dummy/db/data_migrations/20110828190913_create_desktop_app_dynamic_forms.erp_forms.rb
|
94
|
-
- spec/dummy/db/data_migrations/20110913145838_setup_compass_ae_instance.erp_base_erp_svcs.rb
|
95
|
-
- spec/dummy/db/data_migrations/20111108183739_add_default_capabilities.erp_app.rb
|
96
|
-
- spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb
|
97
|
-
- spec/dummy/db/data_migrations/20111111144706_setup_audit_log_types.erp_tech_svcs.rb
|
98
|
-
- spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb
|
99
|
-
- spec/dummy/db/data_migrations/20120229160222_add_userinfo_widget.erp_app.rb
|
100
|
-
- spec/dummy/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.erp_app.rb
|
101
|
-
- spec/dummy/db/data_migrations/20120411180756_create_user_management_mobile_application.erp_app.rb
|
102
|
-
- spec/dummy/db/data_migrations/20120418164215_create_configuration_management_desktop_application.erp_app.rb
|
103
|
-
- spec/dummy/db/data_migrations/20120824013449_create_ticket_form.erp_forms.rb
|
104
|
-
- spec/dummy/db/data_migrations/20121026013449_update_ticket_form.erp_forms.rb
|
105
|
-
- spec/dummy/db/data_migrations/20121026191738_update_contact_form.erp_forms.rb
|
106
|
-
- spec/dummy/db/migrate/20121207195349_base_erp_services.erp_base_erp_svcs.rb
|
107
|
-
- spec/dummy/db/migrate/20121207195350_base_tech_services.erp_tech_svcs.rb
|
108
|
-
- spec/dummy/db/migrate/20121207195351_create_has_attribute_tables.erp_tech_svcs.rb
|
109
|
-
- spec/dummy/db/migrate/20121207195352_base_app_framework.erp_app.rb
|
110
|
-
- spec/dummy/db/migrate/20121207195353_dynamic_forms.erp_forms.rb
|
111
|
-
- spec/dummy/db/migrate/20121207195354_create_tickets.erp_forms.rb
|
112
|
-
- spec/dummy/db/migrate/20121207195355_upgrade_dynamic_forms_table.erp_forms.rb
|
113
|
-
- spec/dummy/db/schema.rb
|
114
|
-
- spec/dummy/db/spec.sqlite3
|
115
|
-
- spec/dummy/log/spec.log
|
116
81
|
- spec/dummy/public/404.html
|
117
82
|
- spec/dummy/public/422.html
|
118
83
|
- spec/dummy/public/500.html
|
119
84
|
- spec/dummy/public/favicon.ico
|
120
|
-
- spec/dummy/Rakefile
|
121
85
|
- spec/dummy/script/rails
|
122
86
|
- spec/spec_helper.rb
|
123
87
|
homepage: http://development.compassagile.com
|
124
|
-
licenses:
|
88
|
+
licenses:
|
89
|
+
- GPL-3-LICENSE
|
90
|
+
metadata: {}
|
125
91
|
post_install_message:
|
126
92
|
rdoc_options: []
|
127
93
|
require_paths:
|
128
94
|
- lib
|
129
95
|
required_ruby_version: !ruby/object:Gem::Requirement
|
130
|
-
none: false
|
131
96
|
requirements:
|
132
|
-
- -
|
97
|
+
- - ">="
|
133
98
|
- !ruby/object:Gem::Version
|
134
99
|
version: '0'
|
135
|
-
segments:
|
136
|
-
- 0
|
137
|
-
hash: 1214832322042381353
|
138
100
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
|
-
none: false
|
140
101
|
requirements:
|
141
|
-
- -
|
102
|
+
- - ">="
|
142
103
|
- !ruby/object:Gem::Version
|
143
104
|
version: '0'
|
144
|
-
segments:
|
145
|
-
- 0
|
146
|
-
hash: 1214832322042381353
|
147
105
|
requirements: []
|
148
106
|
rubyforge_project:
|
149
|
-
rubygems_version:
|
107
|
+
rubygems_version: 2.2.2
|
150
108
|
signing_key:
|
151
|
-
specification_version:
|
109
|
+
specification_version: 4
|
152
110
|
summary: Rails Console for Compass AE Desktop
|
153
111
|
test_files:
|
154
112
|
- spec/dummy/app/assets/javascripts/application.js
|
@@ -170,38 +128,6 @@ test_files:
|
|
170
128
|
- spec/dummy/config/locales/en.yml
|
171
129
|
- spec/dummy/config/routes.rb
|
172
130
|
- spec/dummy/config.ru
|
173
|
-
- spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb
|
174
|
-
- spec/dummy/db/data_migrations/20110608185830_create_default_dynamic_models_and_forms.erp_forms.rb
|
175
|
-
- spec/dummy/db/data_migrations/20110609150135_add_iso_codes.erp_base_erp_svcs.rb
|
176
|
-
- spec/dummy/db/data_migrations/20110728201729_erp_app_setup.erp_app.rb
|
177
|
-
- spec/dummy/db/data_migrations/20110728201730_update_preferences.erp_app.rb
|
178
|
-
- spec/dummy/db/data_migrations/20110802200222_schedule_delete_expired_sessions_job.erp_tech_svcs.rb
|
179
|
-
- spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb
|
180
|
-
- spec/dummy/db/data_migrations/20110817160743_add_file_manager_application.erp_app.rb
|
181
|
-
- spec/dummy/db/data_migrations/20110824020426_create_desktop_app_console.compass_ae_console.rb
|
182
|
-
- spec/dummy/db/data_migrations/20110828190913_create_desktop_app_dynamic_forms.erp_forms.rb
|
183
|
-
- spec/dummy/db/data_migrations/20110913145838_setup_compass_ae_instance.erp_base_erp_svcs.rb
|
184
|
-
- spec/dummy/db/data_migrations/20111108183739_add_default_capabilities.erp_app.rb
|
185
|
-
- spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb
|
186
|
-
- spec/dummy/db/data_migrations/20111111144706_setup_audit_log_types.erp_tech_svcs.rb
|
187
|
-
- spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb
|
188
|
-
- spec/dummy/db/data_migrations/20120229160222_add_userinfo_widget.erp_app.rb
|
189
|
-
- spec/dummy/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.erp_app.rb
|
190
|
-
- spec/dummy/db/data_migrations/20120411180756_create_user_management_mobile_application.erp_app.rb
|
191
|
-
- spec/dummy/db/data_migrations/20120418164215_create_configuration_management_desktop_application.erp_app.rb
|
192
|
-
- spec/dummy/db/data_migrations/20120824013449_create_ticket_form.erp_forms.rb
|
193
|
-
- spec/dummy/db/data_migrations/20121026013449_update_ticket_form.erp_forms.rb
|
194
|
-
- spec/dummy/db/data_migrations/20121026191738_update_contact_form.erp_forms.rb
|
195
|
-
- spec/dummy/db/migrate/20121207195349_base_erp_services.erp_base_erp_svcs.rb
|
196
|
-
- spec/dummy/db/migrate/20121207195350_base_tech_services.erp_tech_svcs.rb
|
197
|
-
- spec/dummy/db/migrate/20121207195351_create_has_attribute_tables.erp_tech_svcs.rb
|
198
|
-
- spec/dummy/db/migrate/20121207195352_base_app_framework.erp_app.rb
|
199
|
-
- spec/dummy/db/migrate/20121207195353_dynamic_forms.erp_forms.rb
|
200
|
-
- spec/dummy/db/migrate/20121207195354_create_tickets.erp_forms.rb
|
201
|
-
- spec/dummy/db/migrate/20121207195355_upgrade_dynamic_forms_table.erp_forms.rb
|
202
|
-
- spec/dummy/db/schema.rb
|
203
|
-
- spec/dummy/db/spec.sqlite3
|
204
|
-
- spec/dummy/log/spec.log
|
205
131
|
- spec/dummy/public/404.html
|
206
132
|
- spec/dummy/public/422.html
|
207
133
|
- spec/dummy/public/500.html
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# This migration comes from erp_base_erp_svcs (originally 20110525001935)
|
2
|
-
class AddUsdCurrency
|
3
|
-
|
4
|
-
def self.up
|
5
|
-
Currency.create(:name => 'US Dollar', :internal_identifier => 'USD', :major_unit_symbol => "$")
|
6
|
-
end
|
7
|
-
|
8
|
-
def self.down
|
9
|
-
Currency.usd.destroy
|
10
|
-
end
|
11
|
-
|
12
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# This migration comes from erp_forms (originally 20110608185830)
|
2
|
-
class CreateDefaultDynamicModelsAndForms
|
3
|
-
|
4
|
-
def self.up
|
5
|
-
#insert data here
|
6
|
-
DynamicFormModel.create(:model_name => 'DynamicFormDocument')
|
7
|
-
|
8
|
-
fields = []
|
9
|
-
|
10
|
-
fields << DynamicFormField.textfield({:fieldLabel => 'First Name', :name => 'first_name', :width => 250, :allowBlank => false })
|
11
|
-
fields << DynamicFormField.textfield({:fieldLabel => 'Last Name', :name => 'last_name', :width => 250, :allowBlank => false })
|
12
|
-
fields << DynamicFormField.email({:fieldLabel => 'Email', :name => 'email', :width => 250, :allowBlank => false })
|
13
|
-
fields << DynamicFormField.textarea({:fieldLabel => 'Message', :name => 'message', :width => 400, :height => 200, :allowBlank => false })
|
14
|
-
|
15
|
-
d = DynamicForm.new
|
16
|
-
d.description = 'Contact Form'
|
17
|
-
d.definition = fields.to_json
|
18
|
-
d.model_name = 'WebsiteInquiry'
|
19
|
-
d.internal_identifier = 'contact_us'
|
20
|
-
d.default = true
|
21
|
-
d.dynamic_form_model = DynamicFormModel.create(:model_name => 'WebsiteInquiry')
|
22
|
-
d.comment = "This is the default form used by Knitkit's Contact Us Widget for Website Inquiries. NOTE: The Contact Us Widget uses Knitkit's website configuration options for email behavior & not the Dynamic Forms Widget Action setting."
|
23
|
-
d.msg_target = 'qtip'
|
24
|
-
d.save
|
25
|
-
end
|
26
|
-
|
27
|
-
def self.down
|
28
|
-
#remove data here
|
29
|
-
DynamicFormModel.delete_all
|
30
|
-
DynamicForm.delete_all
|
31
|
-
end
|
32
|
-
|
33
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# This migration comes from erp_base_erp_svcs (originally 20110609150135)
|
2
|
-
require 'yaml'
|
3
|
-
|
4
|
-
class AddIsoCodes
|
5
|
-
|
6
|
-
def self.up
|
7
|
-
#find the erp_base_erp_svcs engine
|
8
|
-
engine_path = Rails::Application::Railties.engines.find{|item| item.engine_name == 'erp_base_erp_svcs'}.config.root.to_s
|
9
|
-
|
10
|
-
GeoCountry.load_from_file(File.join(engine_path,'db/data_sets/geo_countries.yml'))
|
11
|
-
GeoZone.load_from_file(File.join(engine_path,'db/data_sets/geo_zones.yml'))
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.down
|
15
|
-
GeoCountry.delete_all
|
16
|
-
GeoZone.delete_all
|
17
|
-
end
|
18
|
-
|
19
|
-
end
|
@@ -1,298 +0,0 @@
|
|
1
|
-
# This migration comes from erp_app (originally 20110728201729)
|
2
|
-
class ErpAppSetup
|
3
|
-
|
4
|
-
def self.up
|
5
|
-
if(ContactPurpose.find_by_internal_identifier('default').nil?)
|
6
|
-
|
7
|
-
#######################################
|
8
|
-
#contact purposes
|
9
|
-
#######################################
|
10
|
-
[
|
11
|
-
{:description => 'Default', :internal_identifier => 'default'},
|
12
|
-
{:description => 'Home', :internal_identifier => 'home'},
|
13
|
-
{:description => 'Work', :internal_identifier => 'work'},
|
14
|
-
{:description => 'Billing', :internal_identifier => 'billing'},
|
15
|
-
{:description => 'Temporary', :internal_identifier => 'temporary'},
|
16
|
-
{:description => 'Tax Reporting', :internal_identifier => 'tax_reporting'},
|
17
|
-
{:description => 'Recruiting', :internal_identifier => 'recruiting'},
|
18
|
-
{:description => 'Employment Offer', :internal_identifier => 'employment_offer'},
|
19
|
-
{:description => 'Business', :internal_identifier => 'business'},
|
20
|
-
{:description => 'Personal', :internal_identifier => 'personal'},
|
21
|
-
{:description => 'Fax', :internal_identifier => 'fax'},
|
22
|
-
{:description => 'Mobile', :internal_identifier => 'mobile'},
|
23
|
-
{:description => 'Emergency', :internal_identifier => 'emergency'},
|
24
|
-
{:description => 'Shipping', :internal_identifier => 'shipping'},
|
25
|
-
{:description => 'Other', :internal_identifier => 'other'},
|
26
|
-
].each do |item|
|
27
|
-
contact_purpose = ContactPurpose.find_by_internal_identifier(item[:internal_identifier])
|
28
|
-
ContactPurpose.create(:description => item[:description], :internal_identifier => item[:internal_identifier]) if contact_purpose.nil?
|
29
|
-
end
|
30
|
-
|
31
|
-
#######################################
|
32
|
-
#roles
|
33
|
-
#######################################
|
34
|
-
Role.create(:description => 'Admin', :internal_identifier => 'admin')
|
35
|
-
Role.create(:description => 'Employee', :internal_identifier => 'employee')
|
36
|
-
|
37
|
-
#######################################
|
38
|
-
#desktop setup
|
39
|
-
#######################################
|
40
|
-
#create preference types
|
41
|
-
desktop_backgroud_pt = PreferenceType.create(:description => 'Desktop Background', :internal_identifier => 'desktop_background')
|
42
|
-
extjs_theme_pt = PreferenceType.create(:description => 'Theme', :internal_identifier => 'extjs_theme')
|
43
|
-
desktop_shortcut_pt = PreferenceType.create(:description => 'Desktop Shortcut', :internal_identifier => 'desktop_shortcut')
|
44
|
-
auto_load_app_pt = PreferenceType.create(:description => 'Autoload Application', :internal_identifier => 'autoload_application')
|
45
|
-
|
46
|
-
#create preference options
|
47
|
-
#yes no options
|
48
|
-
yes_po = PreferenceOption.create(:description => 'Yes', :internal_identifier => 'yes', :value => 'yes')
|
49
|
-
no_po = PreferenceOption.create(:description => 'No', :internal_identifier => 'no', :value => 'no')
|
50
|
-
|
51
|
-
#desktop background options
|
52
|
-
truenorth_background_po = PreferenceOption.create(:description => 'TrueNorth Logo', :internal_identifier => 'truenorth_logo_background', :value => 'truenorth.png')
|
53
|
-
blue_background_po = PreferenceOption.create(:description => 'Blue', :internal_identifier => 'blue_desktop_background', :value => 'blue.gif')
|
54
|
-
gradient_background_po = PreferenceOption.create(:description => 'Grey Gradient', :internal_identifier => 'grey_gradient_desktop_background', :value => 'gradient.png')
|
55
|
-
purple_background_po = PreferenceOption.create(:description => 'Purple', :internal_identifier => 'purple_desktop_background', :value => 'purple.jpg')
|
56
|
-
planet_background_po = PreferenceOption.create(:description => 'Planet', :internal_identifier => 'planet_desktop_background', :value => 'planet.jpg')
|
57
|
-
portablemind_background_po = PreferenceOption.create(:description => 'Portablemind', :internal_identifier => 'portablemind_desktop_background', :value => 'portablemind.png')
|
58
|
-
|
59
|
-
#desktop theme options
|
60
|
-
access_extjs_theme_po = PreferenceOption.create(:description => 'Access', :internal_identifier => 'access_extjs_theme', :value => 'ext-all-access.css')
|
61
|
-
gray_extjs_theme_po = PreferenceOption.create(:description => 'Gray', :internal_identifier => 'gray_extjs_theme', :value => 'ext-all-gray.css')
|
62
|
-
blue_extjs_theme_po = PreferenceOption.create(:description => 'Blue', :internal_identifier => 'blue_extjs_theme', :value => 'ext-all.css')
|
63
|
-
|
64
|
-
#associate options
|
65
|
-
desktop_shortcut_pt.preference_options << yes_po
|
66
|
-
desktop_shortcut_pt.preference_options << no_po
|
67
|
-
desktop_shortcut_pt.default_preference_option = no_po
|
68
|
-
desktop_shortcut_pt.save
|
69
|
-
|
70
|
-
auto_load_app_pt.preference_options << yes_po
|
71
|
-
auto_load_app_pt.preference_options << no_po
|
72
|
-
auto_load_app_pt.default_preference_option = no_po
|
73
|
-
auto_load_app_pt.save
|
74
|
-
|
75
|
-
desktop_backgroud_pt.preference_options << blue_background_po
|
76
|
-
desktop_backgroud_pt.preference_options << truenorth_background_po
|
77
|
-
desktop_backgroud_pt.preference_options << gradient_background_po
|
78
|
-
desktop_backgroud_pt.preference_options << purple_background_po
|
79
|
-
desktop_backgroud_pt.preference_options << planet_background_po
|
80
|
-
desktop_backgroud_pt.preference_options << portablemind_background_po
|
81
|
-
desktop_backgroud_pt.default_preference_option = truenorth_background_po
|
82
|
-
desktop_backgroud_pt.save
|
83
|
-
|
84
|
-
extjs_theme_pt.preference_options << access_extjs_theme_po
|
85
|
-
extjs_theme_pt.preference_options << gray_extjs_theme_po
|
86
|
-
extjs_theme_pt.preference_options << blue_extjs_theme_po
|
87
|
-
extjs_theme_pt.default_preference_option = blue_extjs_theme_po
|
88
|
-
extjs_theme_pt.save
|
89
|
-
|
90
|
-
#######################################
|
91
|
-
#notes widget
|
92
|
-
#######################################
|
93
|
-
NoteType.create(:description => 'Basic Note', :internal_identifier => 'basic_note')
|
94
|
-
|
95
|
-
notes_grid = ::Widget.create(
|
96
|
-
:description => 'Notes',
|
97
|
-
:icon => 'icon-documents',
|
98
|
-
:xtype => 'shared_notesgrid',
|
99
|
-
:internal_identifier => 'shared_notes_grid'
|
100
|
-
)
|
101
|
-
|
102
|
-
notes_grid.add_role('admin')
|
103
|
-
notes_grid.add_role('employee')
|
104
|
-
notes_grid.save
|
105
|
-
|
106
|
-
#######################################
|
107
|
-
#user management app
|
108
|
-
#######################################
|
109
|
-
app_mgr = ::Widget.create(
|
110
|
-
:description => 'Application Management',
|
111
|
-
:icon => 'icon-user',
|
112
|
-
:xtype => 'controlpanel_userapplicationmgtpanel',
|
113
|
-
:internal_identifier => 'application_management'
|
114
|
-
)
|
115
|
-
|
116
|
-
app_mgr.add_role('admin')
|
117
|
-
app_mgr.save
|
118
|
-
|
119
|
-
role_mgr = ::Widget.create(
|
120
|
-
:description => 'Role Management',
|
121
|
-
:icon => 'icon-user',
|
122
|
-
:xtype => 'usermanagement_rolemanagementpanel',
|
123
|
-
:internal_identifier => 'role_management'
|
124
|
-
)
|
125
|
-
|
126
|
-
role_mgr.add_role('admin')
|
127
|
-
role_mgr.save
|
128
|
-
|
129
|
-
personal_info = ::Widget.create(
|
130
|
-
:description => 'User Personal Info',
|
131
|
-
:icon => 'icon-user',
|
132
|
-
:xtype => 'usermanagement_personalinfopanel',
|
133
|
-
:internal_identifier => 'user_personal_info'
|
134
|
-
)
|
135
|
-
|
136
|
-
personal_info.add_role('admin')
|
137
|
-
personal_info.add_role('employee')
|
138
|
-
personal_info.save
|
139
|
-
|
140
|
-
#create application and assign widgets
|
141
|
-
user_mgr_app = DesktopApplication.create(
|
142
|
-
:description => 'User Management',
|
143
|
-
:icon => 'icon-user',
|
144
|
-
:javascript_class_name => 'Compass.ErpApp.Desktop.Applications.UserManagement',
|
145
|
-
:internal_identifier => 'user_management',
|
146
|
-
:shortcut_id => 'user-management-win'
|
147
|
-
)
|
148
|
-
|
149
|
-
user_mgr_app.preference_types << desktop_shortcut_pt
|
150
|
-
user_mgr_app.preference_types << auto_load_app_pt
|
151
|
-
|
152
|
-
user_mgr_app.widgets << role_mgr
|
153
|
-
user_mgr_app.widgets << personal_info
|
154
|
-
user_mgr_app.widgets << app_mgr
|
155
|
-
user_mgr_app.widgets << notes_grid
|
156
|
-
user_mgr_app.save
|
157
|
-
|
158
|
-
#######################################
|
159
|
-
#system management app
|
160
|
-
#######################################
|
161
|
-
app_role_management = ::Widget.create(
|
162
|
-
:description => 'Application Role Management',
|
163
|
-
:icon => 'icon-document',
|
164
|
-
:xtype => 'systemmanagement_applicationrolemanagment',
|
165
|
-
:internal_identifier => 'application_role_management'
|
166
|
-
)
|
167
|
-
|
168
|
-
app_role_management.add_role('admin')
|
169
|
-
app_role_management.save
|
170
|
-
|
171
|
-
system_management_app = DesktopApplication.create(
|
172
|
-
:description => 'System Management',
|
173
|
-
:icon => 'icon-monitor',
|
174
|
-
:javascript_class_name => 'Compass.ErpApp.Desktop.Applications.SystemManagement',
|
175
|
-
:internal_identifier => 'system_management',
|
176
|
-
:shortcut_id => 'system_management-win'
|
177
|
-
)
|
178
|
-
|
179
|
-
system_management_app.preference_types << desktop_shortcut_pt
|
180
|
-
system_management_app.preference_types << auto_load_app_pt
|
181
|
-
|
182
|
-
system_management_app.widgets << app_role_management
|
183
|
-
system_management_app.save
|
184
|
-
|
185
|
-
|
186
|
-
#######################################
|
187
|
-
#scaffold app
|
188
|
-
#######################################
|
189
|
-
scaffold_app = DesktopApplication.create(
|
190
|
-
:description => 'Scaffold',
|
191
|
-
:icon => 'icon-data',
|
192
|
-
:javascript_class_name => 'Compass.ErpApp.Desktop.Applications.Scaffold',
|
193
|
-
:internal_identifier => 'scaffold',
|
194
|
-
:shortcut_id => 'scaffold-win'
|
195
|
-
)
|
196
|
-
|
197
|
-
scaffold_app.preference_types << PreferenceType.iid('desktop_shortcut')
|
198
|
-
scaffold_app.preference_types << PreferenceType.iid('autoload_application')
|
199
|
-
scaffold_app.save
|
200
|
-
|
201
|
-
#######################################
|
202
|
-
#organizer setup
|
203
|
-
#######################################
|
204
|
-
|
205
|
-
party_contact_mgm_widget = ::Widget.create(
|
206
|
-
:description => 'Party Contact Management',
|
207
|
-
:icon => 'icon-grid',
|
208
|
-
:xtype => 'contactmechanismgrid',
|
209
|
-
:internal_identifier => 'party_contact_management'
|
210
|
-
)
|
211
|
-
|
212
|
-
party_contact_mgm_widget.add_role('admin')
|
213
|
-
party_contact_mgm_widget.add_role('employee')
|
214
|
-
party_contact_mgm_widget.save
|
215
|
-
|
216
|
-
party_mgm_widget = ::Widget.create(
|
217
|
-
:description => 'Party Management',
|
218
|
-
:icon => 'icon-grid',
|
219
|
-
:xtype => 'partygrid',
|
220
|
-
:internal_identifier => 'party_management_widget'
|
221
|
-
)
|
222
|
-
|
223
|
-
party_mgm_widget.add_role('admin')
|
224
|
-
party_mgm_widget.add_role('employee')
|
225
|
-
party_mgm_widget.save
|
226
|
-
|
227
|
-
#create application
|
228
|
-
crm_app = OrganizerApplication.create(
|
229
|
-
:description => 'CRM',
|
230
|
-
:icon => 'icon-user',
|
231
|
-
:internal_identifier => 'crm'
|
232
|
-
)
|
233
|
-
|
234
|
-
crm_app.widgets << party_contact_mgm_widget
|
235
|
-
crm_app.widgets << party_mgm_widget
|
236
|
-
crm_app.widgets << notes_grid
|
237
|
-
crm_app.save
|
238
|
-
|
239
|
-
#######################################
|
240
|
-
#parties
|
241
|
-
#######################################
|
242
|
-
|
243
|
-
#Admins
|
244
|
-
Individual.create(:current_first_name => 'Admin',:current_last_name => 'Istrator',:gender => 'm')
|
245
|
-
|
246
|
-
#Organization
|
247
|
-
Organization.create(:description => 'TrueNorth')
|
248
|
-
|
249
|
-
#######################################
|
250
|
-
#users
|
251
|
-
#######################################
|
252
|
-
admin_indvidual = Individual.where('current_first_name = ?',"Admin").first
|
253
|
-
admin_user = User.create(
|
254
|
-
:username => "admin",
|
255
|
-
:email => "admin@portablemind.com"
|
256
|
-
)
|
257
|
-
admin_user.password = 'password'
|
258
|
-
admin_user.password_confirmation = 'password'
|
259
|
-
admin_user.party = admin_indvidual.party
|
260
|
-
admin_user.activate!
|
261
|
-
admin_user.save
|
262
|
-
admin_user.add_role('admin')
|
263
|
-
admin_user.save
|
264
|
-
|
265
|
-
truenorth = Organization.where('description = ?', 'TrueNorth').first
|
266
|
-
truenorth_user = User.create(
|
267
|
-
:username => truenorth.description.downcase,
|
268
|
-
:email => "#{truenorth.description.downcase}@gmail.com"
|
269
|
-
)
|
270
|
-
truenorth_user.password = 'password'
|
271
|
-
truenorth_user.password_confirmation = 'password'
|
272
|
-
truenorth_user.party = truenorth.party
|
273
|
-
truenorth_user.save
|
274
|
-
truenorth_user.activate!
|
275
|
-
truenorth_user.add_role('admin')
|
276
|
-
truenorth_user.save
|
277
|
-
|
278
|
-
admin_user.desktop.applications << user_mgr_app
|
279
|
-
admin_user.desktop.applications << system_management_app
|
280
|
-
admin_user.desktop.applications << scaffold_app
|
281
|
-
admin_user.desktop.save
|
282
|
-
admin_user.organizer.applications << crm_app
|
283
|
-
admin_user.organizer.save
|
284
|
-
|
285
|
-
truenorth_user.desktop.applications << user_mgr_app
|
286
|
-
truenorth_user.desktop.applications << system_management_app
|
287
|
-
truenorth_user.desktop.applications << scaffold_app
|
288
|
-
truenorth_user.desktop.save
|
289
|
-
truenorth_user.organizer.applications << crm_app
|
290
|
-
truenorth_user.organizer.save
|
291
|
-
end
|
292
|
-
end
|
293
|
-
|
294
|
-
def self.down
|
295
|
-
#remove data here
|
296
|
-
end
|
297
|
-
|
298
|
-
end
|