erp_rules 3.1.0 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/erp_rules/rules_engine/pricing_engine.rb +1 -1
- data/lib/erp_rules/search/search_base.rb +1 -1
- data/lib/erp_rules/version.rb +6 -2
- metadata +27 -115
- data/app/assets/javascripts/erp_rules/application.js +0 -9
- data/app/assets/stylesheets/erp_rules/application.css +0 -7
- data/app/controllers/erp_rules/application_controller.rb +0 -4
- data/app/helpers/erp_rules/application_helper.rb +0 -4
- data/app/views/layouts/erp_rules/application.html.erb +0 -14
- data/spec/dummy/db/data_migrations/20101014142230_financial_txn_types.erp_txns_and_accts.rb +0 -16
- data/spec/dummy/db/data_migrations/20110109173616_create_capability_scope_types.erp_tech_svcs.rb +0 -15
- data/spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb +0 -12
- 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 -252
- data/spec/dummy/db/data_migrations/20110728201733_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/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 -23
- data/spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb +0 -42
- 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 -29
- 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/20121116155018_create_group_relationship_and_role_types.erp_tech_svcs.rb +0 -20
- data/spec/dummy/db/data_migrations/20121130201859_upgrade_remove_system_mgmt_app.erp_app.rb +0 -16
- data/spec/dummy/db/data_migrations/20121130212146_note_capabilities.erp_tech_svcs.rb +0 -24
- data/spec/dummy/db/data_migrations/20121218175028_create_security_management_desktop_application.erp_app.rb +0 -23
- data/spec/dummy/db/migrate/20121214005236_base_erp_services.erp_base_erp_svcs.rb +0 -461
- data/spec/dummy/db/migrate/20121214005237_base_tech_services.erp_tech_svcs.rb +0 -255
- data/spec/dummy/db/migrate/20121214005238_create_has_attribute_tables.erp_tech_svcs.rb +0 -39
- data/spec/dummy/db/migrate/20121214005239_base_txns_and_accts.erp_txns_and_accts.rb +0 -364
- data/spec/dummy/db/migrate/20121214005240_agreements_services.erp_agreements.rb +0 -160
- data/spec/dummy/db/migrate/20121214005241_agreements_services_indexes.erp_agreements.rb +0 -52
- data/spec/dummy/db/migrate/20121214005242_base_app_framework.erp_app.rb +0 -276
- data/spec/dummy/db/migrate/20130107181307_create_groups.erp_tech_svcs.rb +0 -19
- data/spec/dummy/db/migrate/20130107181308_upgrade_security.erp_tech_svcs.rb +0 -54
- data/spec/dummy/db/migrate/20130107181309_upgrade_security2.erp_tech_svcs.rb +0 -270
- data/spec/dummy/db/schema.rb +0 -1247
- data/spec/dummy/db/spec.sqlite3 +0 -0
- data/spec/dummy/log/spec.log +0 -10110
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: deab0ce403d1096bad644ce4ea741c8d6411f699
|
4
|
+
data.tar.gz: f449a78d77ea12520ec3ae5206b28b732aa1fd1a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7ea5b03afc19b6f68da69c235fefd8ab77bf9b55f59e6d357a04c740bad3ea5ca918b1e46d1643fa7c84373b5564a8173552683b5c488d42796009addd46bea8
|
7
|
+
data.tar.gz: c371108cb6909db944f346865ede6dbfc28b29563230c41b497452addfb88aade33a59000c1694c109b524180cdcb10cae07f4000ed9ef09ad770eb523e3e012
|
@@ -8,7 +8,7 @@ module ErpRules
|
|
8
8
|
def price_products(execution_context)
|
9
9
|
execution_context[:product_context][:products].each do |product|
|
10
10
|
pricing_plan = PricingPlan.find_by_internal_identifier('default')
|
11
|
-
product[:price] = pricing_plan.get_price
|
11
|
+
product[:price] = pricing_plan.get_price
|
12
12
|
end
|
13
13
|
|
14
14
|
execution_context
|
data/lib/erp_rules/version.rb
CHANGED
metadata
CHANGED
@@ -1,64 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: erp_rules
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 4.0.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Rick Koloski, Russell Holmes
|
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: ruleby
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- - ~>
|
17
|
+
- - "~>"
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0.8'
|
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
26
|
version: '0.8'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: erp_txns_and_accts
|
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: :runtime
|
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
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: erp_dev_svcs
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- - ~>
|
45
|
+
- - "~>"
|
52
46
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
47
|
+
version: '4.0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- - ~>
|
52
|
+
- - "~>"
|
60
53
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
54
|
+
version: '4.0'
|
62
55
|
description: The Rules Module of CompassAE includes classes which act as helpers in
|
63
56
|
externalizing the execution context of CompassAE value objects for processing by
|
64
57
|
a rules engine. It also includes an integration with Ruleby, which is a pure ruby
|
@@ -69,38 +62,35 @@ executables: []
|
|
69
62
|
extensions: []
|
70
63
|
extra_rdoc_files: []
|
71
64
|
files:
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
- app/helpers/erp_rules/application_helper.rb
|
65
|
+
- GPL-3-LICENSE
|
66
|
+
- README.rdoc
|
67
|
+
- Rakefile
|
76
68
|
- app/models/customer_txn_context.rb
|
77
69
|
- app/models/environment_txn_context.rb
|
78
70
|
- app/models/search_txn_context.rb
|
79
|
-
- app/views/layouts/erp_rules/application.html.erb
|
80
71
|
- config/routes.rb
|
72
|
+
- lib/erp_rules.rb
|
81
73
|
- lib/erp_rules/engine.rb
|
74
|
+
- lib/erp_rules/extensions.rb
|
82
75
|
- lib/erp_rules/extensions/active_record/acts_as_business_rule.rb
|
83
76
|
- lib/erp_rules/extensions/active_record/acts_as_search_filter.rb
|
84
77
|
- lib/erp_rules/extensions/active_record/has_rule_context.rb
|
85
|
-
- lib/erp_rules/
|
78
|
+
- lib/erp_rules/rules_engine.rb
|
86
79
|
- lib/erp_rules/rules_engine/context.rb
|
87
80
|
- lib/erp_rules/rules_engine/context_builder.rb
|
88
81
|
- lib/erp_rules/rules_engine/pricing_engine.rb
|
89
82
|
- lib/erp_rules/rules_engine/ruleby/engine.rb
|
90
83
|
- lib/erp_rules/rules_engine/rules_facade.rb
|
91
|
-
- lib/erp_rules/rules_engine.rb
|
92
84
|
- lib/erp_rules/search/search_base.rb
|
93
85
|
- lib/erp_rules/version.rb
|
94
|
-
- lib/erp_rules.rb
|
95
86
|
- lib/tasks/erp_rules_tasks.rake
|
96
|
-
-
|
97
|
-
- Rakefile
|
98
|
-
- README.rdoc
|
87
|
+
- spec/dummy/Rakefile
|
99
88
|
- spec/dummy/app/assets/javascripts/application.js
|
100
89
|
- spec/dummy/app/assets/stylesheets/application.css
|
101
90
|
- spec/dummy/app/controllers/application_controller.rb
|
102
91
|
- spec/dummy/app/helpers/application_helper.rb
|
103
92
|
- spec/dummy/app/views/layouts/application.html.erb
|
93
|
+
- spec/dummy/config.ru
|
104
94
|
- spec/dummy/config/application.rb
|
105
95
|
- spec/dummy/config/boot.rb
|
106
96
|
- spec/dummy/config/database.yml
|
@@ -114,47 +104,10 @@ files:
|
|
114
104
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
115
105
|
- spec/dummy/config/locales/en.yml
|
116
106
|
- spec/dummy/config/routes.rb
|
117
|
-
- spec/dummy/config.ru
|
118
|
-
- spec/dummy/db/data_migrations/20101014142230_financial_txn_types.erp_txns_and_accts.rb
|
119
|
-
- spec/dummy/db/data_migrations/20110109173616_create_capability_scope_types.erp_tech_svcs.rb
|
120
|
-
- spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb
|
121
|
-
- spec/dummy/db/data_migrations/20110609150135_add_iso_codes.erp_base_erp_svcs.rb
|
122
|
-
- spec/dummy/db/data_migrations/20110728201729_erp_app_setup.erp_app.rb
|
123
|
-
- spec/dummy/db/data_migrations/20110728201733_update_preferences.erp_app.rb
|
124
|
-
- spec/dummy/db/data_migrations/20110802200222_schedule_delete_expired_sessions_job.erp_tech_svcs.rb
|
125
|
-
- spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb
|
126
|
-
- spec/dummy/db/data_migrations/20110817160743_add_file_manager_application.erp_app.rb
|
127
|
-
- spec/dummy/db/data_migrations/20110913145838_setup_compass_ae_instance.erp_base_erp_svcs.rb
|
128
|
-
- spec/dummy/db/data_migrations/20111108183739_add_default_capabilities.erp_app.rb
|
129
|
-
- spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb
|
130
|
-
- spec/dummy/db/data_migrations/20111111144706_setup_audit_log_types.erp_tech_svcs.rb
|
131
|
-
- spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb
|
132
|
-
- spec/dummy/db/data_migrations/20120229160222_add_userinfo_widget.erp_app.rb
|
133
|
-
- spec/dummy/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.erp_app.rb
|
134
|
-
- spec/dummy/db/data_migrations/20120411180756_create_user_management_mobile_application.erp_app.rb
|
135
|
-
- spec/dummy/db/data_migrations/20120418164215_create_configuration_management_desktop_application.erp_app.rb
|
136
|
-
- spec/dummy/db/data_migrations/20121116155018_create_group_relationship_and_role_types.erp_tech_svcs.rb
|
137
|
-
- spec/dummy/db/data_migrations/20121130201859_upgrade_remove_system_mgmt_app.erp_app.rb
|
138
|
-
- spec/dummy/db/data_migrations/20121130212146_note_capabilities.erp_tech_svcs.rb
|
139
|
-
- spec/dummy/db/data_migrations/20121218175028_create_security_management_desktop_application.erp_app.rb
|
140
|
-
- spec/dummy/db/migrate/20121214005236_base_erp_services.erp_base_erp_svcs.rb
|
141
|
-
- spec/dummy/db/migrate/20121214005237_base_tech_services.erp_tech_svcs.rb
|
142
|
-
- spec/dummy/db/migrate/20121214005238_create_has_attribute_tables.erp_tech_svcs.rb
|
143
|
-
- spec/dummy/db/migrate/20121214005239_base_txns_and_accts.erp_txns_and_accts.rb
|
144
|
-
- spec/dummy/db/migrate/20121214005240_agreements_services.erp_agreements.rb
|
145
|
-
- spec/dummy/db/migrate/20121214005241_agreements_services_indexes.erp_agreements.rb
|
146
|
-
- spec/dummy/db/migrate/20121214005242_base_app_framework.erp_app.rb
|
147
|
-
- spec/dummy/db/migrate/20130107181307_create_groups.erp_tech_svcs.rb
|
148
|
-
- spec/dummy/db/migrate/20130107181308_upgrade_security.erp_tech_svcs.rb
|
149
|
-
- spec/dummy/db/migrate/20130107181309_upgrade_security2.erp_tech_svcs.rb
|
150
|
-
- spec/dummy/db/schema.rb
|
151
|
-
- spec/dummy/db/spec.sqlite3
|
152
|
-
- spec/dummy/log/spec.log
|
153
107
|
- spec/dummy/public/404.html
|
154
108
|
- spec/dummy/public/422.html
|
155
109
|
- spec/dummy/public/500.html
|
156
110
|
- spec/dummy/public/favicon.ico
|
157
|
-
- spec/dummy/Rakefile
|
158
111
|
- spec/dummy/script/rails
|
159
112
|
- spec/lib/erp_rules/extensions/active_record/acts_as_business_rule_spec.rb
|
160
113
|
- spec/lib/erp_rules/extensions/active_record/acts_as_search_filter_spec.rb
|
@@ -165,34 +118,28 @@ files:
|
|
165
118
|
- spec/lib/erp_rules/rules_engine/rules_facade_spec.rb
|
166
119
|
- spec/spec_helper.rb
|
167
120
|
homepage: http://development.compassagile.com
|
168
|
-
licenses:
|
121
|
+
licenses:
|
122
|
+
- GPL-3-LICENSE
|
123
|
+
metadata: {}
|
169
124
|
post_install_message:
|
170
125
|
rdoc_options: []
|
171
126
|
require_paths:
|
172
127
|
- lib
|
173
128
|
required_ruby_version: !ruby/object:Gem::Requirement
|
174
|
-
none: false
|
175
129
|
requirements:
|
176
|
-
- -
|
130
|
+
- - ">="
|
177
131
|
- !ruby/object:Gem::Version
|
178
132
|
version: '0'
|
179
|
-
segments:
|
180
|
-
- 0
|
181
|
-
hash: -2789720323854060258
|
182
133
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
183
|
-
none: false
|
184
134
|
requirements:
|
185
|
-
- -
|
135
|
+
- - ">="
|
186
136
|
- !ruby/object:Gem::Version
|
187
137
|
version: '0'
|
188
|
-
segments:
|
189
|
-
- 0
|
190
|
-
hash: -2789720323854060258
|
191
138
|
requirements: []
|
192
139
|
rubyforge_project:
|
193
|
-
rubygems_version:
|
140
|
+
rubygems_version: 2.2.2
|
194
141
|
signing_key:
|
195
|
-
specification_version:
|
142
|
+
specification_version: 4
|
196
143
|
summary: The Rules Module of CompassAE includes classes which act as helpers in externalizing
|
197
144
|
the execution context of CompassAE value objects for processing by a rules engine.
|
198
145
|
test_files:
|
@@ -215,41 +162,6 @@ test_files:
|
|
215
162
|
- spec/dummy/config/locales/en.yml
|
216
163
|
- spec/dummy/config/routes.rb
|
217
164
|
- spec/dummy/config.ru
|
218
|
-
- spec/dummy/db/data_migrations/20101014142230_financial_txn_types.erp_txns_and_accts.rb
|
219
|
-
- spec/dummy/db/data_migrations/20110109173616_create_capability_scope_types.erp_tech_svcs.rb
|
220
|
-
- spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb
|
221
|
-
- spec/dummy/db/data_migrations/20110609150135_add_iso_codes.erp_base_erp_svcs.rb
|
222
|
-
- spec/dummy/db/data_migrations/20110728201729_erp_app_setup.erp_app.rb
|
223
|
-
- spec/dummy/db/data_migrations/20110728201733_update_preferences.erp_app.rb
|
224
|
-
- spec/dummy/db/data_migrations/20110802200222_schedule_delete_expired_sessions_job.erp_tech_svcs.rb
|
225
|
-
- spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb
|
226
|
-
- spec/dummy/db/data_migrations/20110817160743_add_file_manager_application.erp_app.rb
|
227
|
-
- spec/dummy/db/data_migrations/20110913145838_setup_compass_ae_instance.erp_base_erp_svcs.rb
|
228
|
-
- spec/dummy/db/data_migrations/20111108183739_add_default_capabilities.erp_app.rb
|
229
|
-
- spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb
|
230
|
-
- spec/dummy/db/data_migrations/20111111144706_setup_audit_log_types.erp_tech_svcs.rb
|
231
|
-
- spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb
|
232
|
-
- spec/dummy/db/data_migrations/20120229160222_add_userinfo_widget.erp_app.rb
|
233
|
-
- spec/dummy/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.erp_app.rb
|
234
|
-
- spec/dummy/db/data_migrations/20120411180756_create_user_management_mobile_application.erp_app.rb
|
235
|
-
- spec/dummy/db/data_migrations/20120418164215_create_configuration_management_desktop_application.erp_app.rb
|
236
|
-
- spec/dummy/db/data_migrations/20121116155018_create_group_relationship_and_role_types.erp_tech_svcs.rb
|
237
|
-
- spec/dummy/db/data_migrations/20121130201859_upgrade_remove_system_mgmt_app.erp_app.rb
|
238
|
-
- spec/dummy/db/data_migrations/20121130212146_note_capabilities.erp_tech_svcs.rb
|
239
|
-
- spec/dummy/db/data_migrations/20121218175028_create_security_management_desktop_application.erp_app.rb
|
240
|
-
- spec/dummy/db/migrate/20121214005236_base_erp_services.erp_base_erp_svcs.rb
|
241
|
-
- spec/dummy/db/migrate/20121214005237_base_tech_services.erp_tech_svcs.rb
|
242
|
-
- spec/dummy/db/migrate/20121214005238_create_has_attribute_tables.erp_tech_svcs.rb
|
243
|
-
- spec/dummy/db/migrate/20121214005239_base_txns_and_accts.erp_txns_and_accts.rb
|
244
|
-
- spec/dummy/db/migrate/20121214005240_agreements_services.erp_agreements.rb
|
245
|
-
- spec/dummy/db/migrate/20121214005241_agreements_services_indexes.erp_agreements.rb
|
246
|
-
- spec/dummy/db/migrate/20121214005242_base_app_framework.erp_app.rb
|
247
|
-
- spec/dummy/db/migrate/20130107181307_create_groups.erp_tech_svcs.rb
|
248
|
-
- spec/dummy/db/migrate/20130107181308_upgrade_security.erp_tech_svcs.rb
|
249
|
-
- spec/dummy/db/migrate/20130107181309_upgrade_security2.erp_tech_svcs.rb
|
250
|
-
- spec/dummy/db/schema.rb
|
251
|
-
- spec/dummy/db/spec.sqlite3
|
252
|
-
- spec/dummy/log/spec.log
|
253
165
|
- spec/dummy/public/404.html
|
254
166
|
- spec/dummy/public/422.html
|
255
167
|
- spec/dummy/public/500.html
|
@@ -1,9 +0,0 @@
|
|
1
|
-
// This is a manifest file that'll be compiled into including all the files listed below.
|
2
|
-
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
|
3
|
-
// be included in the compiled file accessible from http://example.com/assets/application.js
|
4
|
-
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
5
|
-
// the compiled file.
|
6
|
-
//
|
7
|
-
//= require jquery
|
8
|
-
//= require jquery_ujs
|
9
|
-
//= require_tree .
|
@@ -1,7 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
3
|
-
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
4
|
-
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
5
|
-
*= require_self
|
6
|
-
*= require_tree .
|
7
|
-
*/
|
@@ -1,14 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>ErpRules</title>
|
5
|
-
<%= stylesheet_link_tag "erp_rules/application" %>
|
6
|
-
<%= javascript_include_tag "erp_rules/application" %>
|
7
|
-
<%= csrf_meta_tags %>
|
8
|
-
</head>
|
9
|
-
<body>
|
10
|
-
|
11
|
-
<%= yield %>
|
12
|
-
|
13
|
-
</body>
|
14
|
-
</html>
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# This migration comes from erp_txns_and_accts (originally 20101014142230)
|
2
|
-
class FinancialTxnTypes
|
3
|
-
|
4
|
-
def self.up
|
5
|
-
BizTxnType.create(
|
6
|
-
:description => "Payment Transaction",
|
7
|
-
:internal_identifier => 'payment_txn'
|
8
|
-
)
|
9
|
-
end
|
10
|
-
|
11
|
-
def self.down
|
12
|
-
type = BizTxnType.iid('payment_txn')
|
13
|
-
type.destroy unless type.nil?
|
14
|
-
end
|
15
|
-
|
16
|
-
end
|
data/spec/dummy/db/data_migrations/20110109173616_create_capability_scope_types.erp_tech_svcs.rb
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# This migration comes from erp_tech_svcs (originally 20110109173616)
|
2
|
-
class CreateCapabilityScopeTypes
|
3
|
-
|
4
|
-
def self.up
|
5
|
-
CapabilityType.create(:internal_identifier => 'download', :description => 'Download') if CapabilityType.where("internal_identifier = 'download'").first.nil?
|
6
|
-
|
7
|
-
ScopeType.create(:description => 'Instance', :internal_identifier => 'instance') if ScopeType.where("internal_identifier = 'instance'").first.nil?
|
8
|
-
ScopeType.create(:description => 'Class', :internal_identifier => 'class') if ScopeType.where("internal_identifier = 'class'").first.nil?
|
9
|
-
ScopeType.create(:description => 'Query', :internal_identifier => 'query') if ScopeType.where("internal_identifier = 'query'").first.nil?
|
10
|
-
end
|
11
|
-
|
12
|
-
def self.down
|
13
|
-
end
|
14
|
-
|
15
|
-
end
|
@@ -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,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,252 +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
|
-
SecurityRole.create(:description => 'Admin', :internal_identifier => 'admin')
|
35
|
-
SecurityRole.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
|
-
notes_grid.save
|
102
|
-
|
103
|
-
#######################################
|
104
|
-
#user management app
|
105
|
-
#######################################
|
106
|
-
app_mgr = ::Widget.create(
|
107
|
-
:description => 'Application Management',
|
108
|
-
:icon => 'icon-user',
|
109
|
-
:xtype => 'controlpanel_userapplicationmgtpanel',
|
110
|
-
:internal_identifier => 'application_management'
|
111
|
-
)
|
112
|
-
app_mgr.save
|
113
|
-
|
114
|
-
role_mgr = ::Widget.create(
|
115
|
-
:description => 'Role Management',
|
116
|
-
:icon => 'icon-user',
|
117
|
-
:xtype => 'usermanagement_rolemanagementpanel',
|
118
|
-
:internal_identifier => 'role_management'
|
119
|
-
)
|
120
|
-
role_mgr.save
|
121
|
-
|
122
|
-
personal_info = ::Widget.create(
|
123
|
-
:description => 'User Personal Info',
|
124
|
-
:icon => 'icon-user',
|
125
|
-
:xtype => 'usermanagement_personalinfopanel',
|
126
|
-
:internal_identifier => 'user_personal_info'
|
127
|
-
)
|
128
|
-
personal_info.save
|
129
|
-
|
130
|
-
#create application and assign widgets
|
131
|
-
user_mgr_app = DesktopApplication.create(
|
132
|
-
:description => 'User Management',
|
133
|
-
:icon => 'icon-user',
|
134
|
-
:javascript_class_name => 'Compass.ErpApp.Desktop.Applications.UserManagement',
|
135
|
-
:internal_identifier => 'user_management',
|
136
|
-
:shortcut_id => 'user-management-win'
|
137
|
-
)
|
138
|
-
|
139
|
-
user_mgr_app.preference_types << desktop_shortcut_pt
|
140
|
-
user_mgr_app.preference_types << auto_load_app_pt
|
141
|
-
|
142
|
-
user_mgr_app.widgets << role_mgr
|
143
|
-
user_mgr_app.widgets << personal_info
|
144
|
-
user_mgr_app.widgets << app_mgr
|
145
|
-
user_mgr_app.widgets << notes_grid
|
146
|
-
user_mgr_app.save
|
147
|
-
|
148
|
-
#######################################
|
149
|
-
#scaffold app
|
150
|
-
#######################################
|
151
|
-
scaffold_app = DesktopApplication.create(
|
152
|
-
:description => 'Scaffold',
|
153
|
-
:icon => 'icon-data',
|
154
|
-
:javascript_class_name => 'Compass.ErpApp.Desktop.Applications.Scaffold',
|
155
|
-
:internal_identifier => 'scaffold',
|
156
|
-
:shortcut_id => 'scaffold-win'
|
157
|
-
)
|
158
|
-
|
159
|
-
scaffold_app.preference_types << PreferenceType.iid('desktop_shortcut')
|
160
|
-
scaffold_app.preference_types << PreferenceType.iid('autoload_application')
|
161
|
-
scaffold_app.save
|
162
|
-
|
163
|
-
#######################################
|
164
|
-
#organizer setup
|
165
|
-
#######################################
|
166
|
-
|
167
|
-
party_contact_mgm_widget = ::Widget.create(
|
168
|
-
:description => 'Party Contact Management',
|
169
|
-
:icon => 'icon-grid',
|
170
|
-
:xtype => 'contactmechanismgrid',
|
171
|
-
:internal_identifier => 'party_contact_management'
|
172
|
-
)
|
173
|
-
party_contact_mgm_widget.save
|
174
|
-
|
175
|
-
party_mgm_widget = ::Widget.create(
|
176
|
-
:description => 'Party Management',
|
177
|
-
:icon => 'icon-grid',
|
178
|
-
:xtype => 'partygrid',
|
179
|
-
:internal_identifier => 'party_management_widget'
|
180
|
-
)
|
181
|
-
party_mgm_widget.save
|
182
|
-
|
183
|
-
#create application
|
184
|
-
crm_app = OrganizerApplication.create(
|
185
|
-
:description => 'CRM',
|
186
|
-
:icon => 'icon-user',
|
187
|
-
:internal_identifier => 'crm'
|
188
|
-
)
|
189
|
-
|
190
|
-
crm_app.widgets << party_contact_mgm_widget
|
191
|
-
crm_app.widgets << party_mgm_widget
|
192
|
-
crm_app.widgets << notes_grid
|
193
|
-
crm_app.save
|
194
|
-
|
195
|
-
#######################################
|
196
|
-
#parties
|
197
|
-
#######################################
|
198
|
-
|
199
|
-
#Admins
|
200
|
-
Individual.create(:current_first_name => 'Admin',:current_last_name => 'Istrator',:gender => 'm')
|
201
|
-
|
202
|
-
#Organization
|
203
|
-
Organization.create(:description => 'TrueNorth')
|
204
|
-
|
205
|
-
#######################################
|
206
|
-
#users
|
207
|
-
#######################################
|
208
|
-
admin_indvidual = Individual.where('current_first_name = ?',"Admin").first
|
209
|
-
admin_user = User.create(
|
210
|
-
:username => "admin",
|
211
|
-
:email => "admin@portablemind.com"
|
212
|
-
)
|
213
|
-
admin_user.password = 'password'
|
214
|
-
admin_user.password_confirmation = 'password'
|
215
|
-
admin_user.party = admin_indvidual.party
|
216
|
-
admin_user.activate!
|
217
|
-
admin_user.save
|
218
|
-
admin_user.add_role('admin')
|
219
|
-
admin_user.save
|
220
|
-
|
221
|
-
truenorth = Organization.where('description = ?', 'TrueNorth').first
|
222
|
-
truenorth_user = User.create(
|
223
|
-
:username => truenorth.description.downcase,
|
224
|
-
:email => "#{truenorth.description.downcase}@gmail.com"
|
225
|
-
)
|
226
|
-
truenorth_user.password = 'password'
|
227
|
-
truenorth_user.password_confirmation = 'password'
|
228
|
-
truenorth_user.party = truenorth.party
|
229
|
-
truenorth_user.save
|
230
|
-
truenorth_user.activate!
|
231
|
-
truenorth_user.add_role('admin')
|
232
|
-
truenorth_user.save
|
233
|
-
|
234
|
-
admin_user.desktop.applications << user_mgr_app
|
235
|
-
admin_user.desktop.applications << scaffold_app
|
236
|
-
admin_user.desktop.save
|
237
|
-
admin_user.organizer.applications << crm_app
|
238
|
-
admin_user.organizer.save
|
239
|
-
|
240
|
-
truenorth_user.desktop.applications << user_mgr_app
|
241
|
-
truenorth_user.desktop.applications << scaffold_app
|
242
|
-
truenorth_user.desktop.save
|
243
|
-
truenorth_user.organizer.applications << crm_app
|
244
|
-
truenorth_user.organizer.save
|
245
|
-
end
|
246
|
-
end
|
247
|
-
|
248
|
-
def self.down
|
249
|
-
#remove data here
|
250
|
-
end
|
251
|
-
|
252
|
-
end
|