erp_products 3.0.5 → 3.1.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.
- data/app/models/prod_availability_status_type.rb +2 -0
- data/app/models/prod_instance_reln.rb +1 -0
- data/app/models/prod_instance_reln_type.rb +2 -0
- data/app/models/prod_instance_role_type.rb +2 -0
- data/app/models/prod_type_reln.rb +1 -0
- data/app/models/prod_type_reln_type.rb +2 -0
- data/app/models/prod_type_role_type.rb +2 -0
- data/app/models/product_instance.rb +2 -0
- data/app/models/product_offer.rb +1 -0
- data/app/models/product_type.rb +2 -0
- data/app/models/simple_product_offer.rb +2 -0
- data/db/migrate/20080805000040_base_products.rb +1 -0
- data/lib/erp_products.rb +2 -0
- data/lib/erp_products/version.rb +2 -2
- data/spec/dummy/config/application.rb +6 -0
- data/spec/dummy/config/environments/spec.rb +3 -0
- data/spec/dummy/db/data_migrations/20101011152441_payment_gateway_actions.erp_commerce.rb +28 -0
- data/spec/dummy/db/data_migrations/20101014142230_financial_txn_types.erp_txns_and_accts.rb +16 -0
- data/spec/dummy/db/data_migrations/20110109173616_create_capability_scope_types.erp_tech_svcs.rb +15 -0
- data/spec/dummy/db/data_migrations/20110324010232_product_role_types.erp_products.rb +24 -0
- data/spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb +12 -0
- data/spec/dummy/db/data_migrations/20110527160807_add_default_prod_avail_types.erp_products.rb +27 -0
- data/spec/dummy/db/data_migrations/20110605231556_create_order_party_roles.erp_orders.rb +24 -0
- data/spec/dummy/db/data_migrations/20110609150135_add_iso_codes.erp_base_erp_svcs.rb +19 -0
- data/spec/dummy/db/data_migrations/20110728201729_erp_app_setup.erp_app.rb +252 -0
- data/spec/dummy/db/data_migrations/20110728201730_create_desktop_app_product_manager.erp_products.rb +26 -0
- data/spec/dummy/db/data_migrations/20110728201731_create_desktop_app_order_manager.erp_orders.rb +26 -0
- data/spec/dummy/db/data_migrations/20110728201732_create_organizer_app_order_management.erp_orders.rb +15 -0
- data/spec/dummy/db/data_migrations/20110728201733_update_preferences.erp_app.rb +53 -0
- data/spec/dummy/db/data_migrations/20110802200222_schedule_delete_expired_sessions_job.erp_tech_svcs.rb +16 -0
- data/spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb +21 -0
- data/spec/dummy/db/data_migrations/20110817160743_add_file_manager_application.erp_app.rb +32 -0
- data/spec/dummy/db/data_migrations/20110913145838_setup_compass_ae_instance.erp_base_erp_svcs.rb +12 -0
- data/spec/dummy/db/data_migrations/20111108183739_add_default_capabilities.erp_app.rb +23 -0
- data/spec/dummy/db/data_migrations/20111108183740_add_new_contact_widgets.erp_app.rb +42 -0
- data/spec/dummy/db/data_migrations/20111111144706_setup_audit_log_types.erp_tech_svcs.rb +22 -0
- data/spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb +14 -0
- data/spec/dummy/db/data_migrations/20120229160222_add_userinfo_widget.erp_app.rb +29 -0
- data/spec/dummy/db/data_migrations/20120229174343_add_orders_widget.erp_orders.rb +29 -0
- data/spec/dummy/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.erp_app.rb +11 -0
- data/spec/dummy/db/data_migrations/20120411180756_create_user_management_mobile_application.erp_app.rb +19 -0
- data/spec/dummy/db/data_migrations/20120418164215_create_configuration_management_desktop_application.erp_app.rb +23 -0
- data/spec/dummy/db/data_migrations/20121116155018_create_group_relationship_and_role_types.erp_tech_svcs.rb +20 -0
- data/spec/dummy/db/data_migrations/20121130201859_upgrade_remove_system_mgmt_app.erp_app.rb +16 -0
- data/spec/dummy/db/data_migrations/20121130212146_note_capabilities.erp_tech_svcs.rb +24 -0
- data/spec/dummy/db/data_migrations/20121218175028_create_security_management_desktop_application.erp_app.rb +23 -0
- data/spec/dummy/db/migrate/20130107214711_base_erp_services.erp_base_erp_svcs.rb +461 -0
- data/spec/dummy/db/migrate/20130107214712_base_products.erp_products.rb +234 -0
- data/spec/dummy/db/migrate/20130107214713_base_products_indexes.erp_products.rb +59 -0
- data/spec/dummy/db/migrate/20130107214714_base_tech_services.erp_tech_svcs.rb +271 -0
- data/spec/dummy/db/migrate/20130107214715_create_has_attribute_tables.erp_tech_svcs.rb +39 -0
- data/spec/dummy/db/migrate/20130107214716_create_groups.erp_tech_svcs.rb +19 -0
- data/spec/dummy/db/migrate/20130107214717_upgrade_security.erp_tech_svcs.rb +54 -0
- data/spec/dummy/db/migrate/20130107214718_upgrade_security2.erp_tech_svcs.rb +270 -0
- data/spec/dummy/db/migrate/20130107214719_base_orders.erp_orders.rb +178 -0
- data/spec/dummy/db/migrate/20130107214720_base_txns_and_accts.erp_txns_and_accts.rb +364 -0
- data/spec/dummy/db/migrate/20130107214721_agreements_services.erp_agreements.rb +160 -0
- data/spec/dummy/db/migrate/20130107214722_agreements_services_indexes.erp_agreements.rb +52 -0
- data/spec/dummy/db/migrate/20130107214723_base_app_framework.erp_app.rb +276 -0
- data/spec/dummy/db/migrate/20130107214724_erp_commerce_base.erp_commerce.rb +442 -0
- data/spec/dummy/db/schema.rb +1821 -0
- data/spec/dummy/db/spec.sqlite3 +0 -0
- data/spec/dummy/log/spec.log +12388 -0
- data/spec/spec_helper.rb +11 -3
- metadata +119 -10
- data/db/migrate/20120612195842_add_internal_identifier_to_product_type.rb +0 -9
    
        data/spec/dummy/db/data_migrations/20110728201730_create_desktop_app_product_manager.erp_products.rb
    ADDED
    
    | @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            # This migration comes from erp_products (originally 20110728201730)
         | 
| 2 | 
            +
            class CreateDesktopAppProductManager
         | 
| 3 | 
            +
              def self.up
         | 
| 4 | 
            +
                app = DesktopApplication.create(
         | 
| 5 | 
            +
                  :description => 'Products',
         | 
| 6 | 
            +
                  :icon => 'icon-product',
         | 
| 7 | 
            +
                  :javascript_class_name => 'Compass.ErpApp.Desktop.Applications.ProductManager',
         | 
| 8 | 
            +
                  :internal_identifier => 'product_manager',
         | 
| 9 | 
            +
                  :shortcut_id => 'product_manager-win'
         | 
| 10 | 
            +
                )
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                pt1 = PreferenceType.iid('desktop_shortcut')
         | 
| 13 | 
            +
                pt1.preferenced_records << app
         | 
| 14 | 
            +
                pt1.save
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                pt2 = PreferenceType.iid('autoload_application')
         | 
| 17 | 
            +
                pt2.preferenced_records << app
         | 
| 18 | 
            +
                pt2.save
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                app.save
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              def self.down
         | 
| 24 | 
            +
                DesktopApplication.destroy_all(:conditions => ['internal_identifier = ?','hello_world'])
         | 
| 25 | 
            +
              end
         | 
| 26 | 
            +
            end
         | 
    
        data/spec/dummy/db/data_migrations/20110728201731_create_desktop_app_order_manager.erp_orders.rb
    ADDED
    
    | @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            # This migration comes from erp_orders (originally 20110728201731)
         | 
| 2 | 
            +
            class CreateDesktopAppOrderManager
         | 
| 3 | 
            +
              def self.up
         | 
| 4 | 
            +
                app = DesktopApplication.create(
         | 
| 5 | 
            +
                  :description => 'Orders',
         | 
| 6 | 
            +
                  :icon => 'icon-package',
         | 
| 7 | 
            +
                  :javascript_class_name => 'Compass.ErpApp.Desktop.Applications.OrderManager',
         | 
| 8 | 
            +
                  :internal_identifier => 'order_manager',
         | 
| 9 | 
            +
                  :shortcut_id => 'order_manager-win'
         | 
| 10 | 
            +
                )
         | 
| 11 | 
            +
                
         | 
| 12 | 
            +
                pt = PreferenceType.iid('desktop_shortcut')
         | 
| 13 | 
            +
                pt.preferenced_records << app
         | 
| 14 | 
            +
                pt.save
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                pt = PreferenceType.iid('autoload_application')
         | 
| 17 | 
            +
                pt.preferenced_records << app
         | 
| 18 | 
            +
                pt.save
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                app.save
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              def self.down
         | 
| 24 | 
            +
                DesktopApplication.destroy_all(:conditions => ['internal_identifier = ?','hello_world'])
         | 
| 25 | 
            +
              end
         | 
| 26 | 
            +
            end
         | 
| @@ -0,0 +1,15 @@ | |
| 1 | 
            +
            # This migration comes from erp_orders (originally 20110728201732)
         | 
| 2 | 
            +
            class CreateOrganizerAppOrderManagement
         | 
| 3 | 
            +
              def self.up
         | 
| 4 | 
            +
                OrganizerApplication.create(
         | 
| 5 | 
            +
                  :description => 'Orders',
         | 
| 6 | 
            +
                  :icon => 'icon-package',
         | 
| 7 | 
            +
                  :javascript_class_name => 'Compass.ErpApp.Organizer.Applications.OrderManagement.Base',
         | 
| 8 | 
            +
                  :internal_identifier => 'order_management'
         | 
| 9 | 
            +
                )
         | 
| 10 | 
            +
              end
         | 
| 11 | 
            +
             | 
| 12 | 
            +
              def self.down
         | 
| 13 | 
            +
                OrganizerApplication.destroy_all(:conditions => ['internal_identifier = ?','order_management'])
         | 
| 14 | 
            +
              end
         | 
| 15 | 
            +
            end
         | 
| @@ -0,0 +1,53 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20110728201733)
         | 
| 2 | 
            +
            class UpdatePreferences
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
             | 
| 6 | 
            +
                truenorth_logo_po = PreferenceOption.where(:internal_identifier => 'truenorth_logo_background').first
         | 
| 7 | 
            +
                if(truenorth_logo_po.value == 'truenorth.png')
         | 
| 8 | 
            +
                  #update background
         | 
| 9 | 
            +
                  truenorth_logo_po.value = 'truenorth_tech.png'
         | 
| 10 | 
            +
                  truenorth_logo_po.save
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                  #remove backgrounds
         | 
| 13 | 
            +
                  %w{grey_gradient_desktop_background purple_desktop_background planet_desktop_background portablemind_desktop_background}.each do |background_iid|
         | 
| 14 | 
            +
                    pref_opt = PreferenceOption.find_by_internal_identifier(background_iid)
         | 
| 15 | 
            +
                    pref_opt.destroy unless pref_opt.nil?
         | 
| 16 | 
            +
                  end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                  #update themes
         | 
| 19 | 
            +
                  pref_opt = PreferenceOption.find_by_internal_identifier('access_extjs_theme')
         | 
| 20 | 
            +
                  pref_opt.value = 'extjs:ext-all-access'
         | 
| 21 | 
            +
                  pref_opt.save
         | 
| 22 | 
            +
             | 
| 23 | 
            +
                  pref_opt = PreferenceOption.find_by_internal_identifier('gray_extjs_theme')
         | 
| 24 | 
            +
                  pref_opt.value = 'extjs:ext-all-gray'
         | 
| 25 | 
            +
                  pref_opt.save
         | 
| 26 | 
            +
             | 
| 27 | 
            +
                  pref_opt = PreferenceOption.find_by_internal_identifier('blue_extjs_theme')
         | 
| 28 | 
            +
                  pref_opt.value = 'extjs:ext-all'
         | 
| 29 | 
            +
                  pref_opt.save
         | 
| 30 | 
            +
             | 
| 31 | 
            +
                  #add new themes
         | 
| 32 | 
            +
                  clifton_extjs_theme_po = PreferenceOption.create(:description => 'Clifton Default', :internal_identifier => 'clifton_extjs_theme', :value => 'clifton:clifton')
         | 
| 33 | 
            +
                  clifton_extjs_theme_green_po = PreferenceOption.create(:description => 'Clifton Green', :internal_identifier => 'clifton_extjs_theme', :value => 'clifton:clifton-green')
         | 
| 34 | 
            +
                  clifton_extjs_theme_yellow_po = PreferenceOption.create(:description => 'Clifton Yellow', :internal_identifier => 'clifton_extjs_theme', :value => 'clifton:clifton-yellow')
         | 
| 35 | 
            +
                  clifton_extjs_theme_pink_po = PreferenceOption.create(:description => 'Clifton Pink', :internal_identifier => 'clifton_extjs_theme', :value => 'clifton:clifton-pink')
         | 
| 36 | 
            +
                  clifton_extjs_theme_blue_po = PreferenceOption.create(:description => 'Clifton Blue', :internal_identifier => 'clifton_extjs_theme', :value => 'clifton:clifton-blue')
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                  extjs_theme_pt = PreferenceType.find_by_internal_identifier('extjs_theme')
         | 
| 39 | 
            +
                  extjs_theme_pt.preference_options << clifton_extjs_theme_po
         | 
| 40 | 
            +
                  extjs_theme_pt.preference_options << clifton_extjs_theme_green_po
         | 
| 41 | 
            +
                  extjs_theme_pt.preference_options << clifton_extjs_theme_yellow_po
         | 
| 42 | 
            +
                  extjs_theme_pt.preference_options << clifton_extjs_theme_pink_po
         | 
| 43 | 
            +
                  extjs_theme_pt.preference_options << clifton_extjs_theme_blue_po
         | 
| 44 | 
            +
                  extjs_theme_pt.save
         | 
| 45 | 
            +
                end
         | 
| 46 | 
            +
             | 
| 47 | 
            +
              end
         | 
| 48 | 
            +
              
         | 
| 49 | 
            +
              def self.down
         | 
| 50 | 
            +
                #remove data here
         | 
| 51 | 
            +
              end
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            end
         | 
| @@ -0,0 +1,16 @@ | |
| 1 | 
            +
            # This migration comes from erp_tech_svcs (originally 20110802200222)
         | 
| 2 | 
            +
            class ScheduleDeleteExpiredSessionsJob
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                #insert data here
         | 
| 6 | 
            +
                date = Date.tomorrow
         | 
| 7 | 
            +
                start_time = DateTime.civil(date.year, date.month, date.day, 2, 0, 1, -(5.0/24.0))
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                ErpTechSvcs::Sessions::DeleteExpiredSessionsJob.schedule_job(start_time)
         | 
| 10 | 
            +
              end
         | 
| 11 | 
            +
              
         | 
| 12 | 
            +
              def self.down
         | 
| 13 | 
            +
                #remove data here
         | 
| 14 | 
            +
              end
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            end
         | 
    
        data/spec/dummy/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.erp_app.rb
    ADDED
    
    | @@ -0,0 +1,21 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20110816161238)
         | 
| 2 | 
            +
            class CreateDesktopAppAuditLogViewer
         | 
| 3 | 
            +
              def self.up
         | 
| 4 | 
            +
                app = DesktopApplication.create(
         | 
| 5 | 
            +
                  :description => 'Audit Log Viewer',
         | 
| 6 | 
            +
                  :icon => 'icon-history',
         | 
| 7 | 
            +
                  :javascript_class_name => 'Compass.ErpApp.Desktop.Applications.AuditLogViewer',
         | 
| 8 | 
            +
                  :internal_identifier => 'audit_log_viewer',
         | 
| 9 | 
            +
                  :shortcut_id => 'audit_log_viewer-win'
         | 
| 10 | 
            +
                )
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                app.preference_types << PreferenceType.iid('desktop_shortcut')
         | 
| 13 | 
            +
                app.preference_types << PreferenceType.iid('autoload_application')
         | 
| 14 | 
            +
                app.save
         | 
| 15 | 
            +
             | 
| 16 | 
            +
              end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
              def self.down
         | 
| 19 | 
            +
                DesktopApplication.destroy_all(['internal_identifier = ?','audit_log_viewer'])
         | 
| 20 | 
            +
              end
         | 
| 21 | 
            +
            end
         | 
| @@ -0,0 +1,32 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20110817160743)
         | 
| 2 | 
            +
            class AddFileManagerApplication
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                if DesktopApplication.find_by_internal_identifier('file_manager').nil?
         | 
| 6 | 
            +
                  file_manager_app = DesktopApplication.create(
         | 
| 7 | 
            +
                    :description => 'File Manager',
         | 
| 8 | 
            +
                    :icon => 'icon-folders',
         | 
| 9 | 
            +
                    :javascript_class_name => 'Compass.ErpApp.Desktop.Applications.FileManager',
         | 
| 10 | 
            +
                    :internal_identifier => 'file_manager',
         | 
| 11 | 
            +
                    :shortcut_id => 'file_manager-win'
         | 
| 12 | 
            +
                  )
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                  file_manager_app.preference_types << PreferenceType.iid('desktop_shortcut')
         | 
| 15 | 
            +
                  file_manager_app.preference_types << PreferenceType.iid('autoload_application')
         | 
| 16 | 
            +
                  file_manager_app.save
         | 
| 17 | 
            +
                
         | 
| 18 | 
            +
                  admin_user = User.find_by_username('admin')
         | 
| 19 | 
            +
                  admin_user.desktop.applications << file_manager_app
         | 
| 20 | 
            +
                  admin_user.save
         | 
| 21 | 
            +
                
         | 
| 22 | 
            +
                  truenorth_user = User.find_by_username('truenorth')
         | 
| 23 | 
            +
                  truenorth_user.desktop.applications << file_manager_app
         | 
| 24 | 
            +
                  truenorth_user.save
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
              
         | 
| 28 | 
            +
              def self.down
         | 
| 29 | 
            +
                DesktopApplication.find_by_internal_identifier('file_manager').destroy
         | 
| 30 | 
            +
              end
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            end
         | 
| @@ -0,0 +1,23 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20111108183739)
         | 
| 2 | 
            +
            class AddDefaultCapabilities
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                admin = SecurityRole.find_by_internal_identifier('admin')
         | 
| 6 | 
            +
                employee = SecurityRole.find_by_internal_identifier('employee')
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                admin.add_capability('create', 'User')
         | 
| 9 | 
            +
                admin.add_capability('delete', 'User')
         | 
| 10 | 
            +
             | 
| 11 | 
            +
                admin.add_capability('create', 'Note')
         | 
| 12 | 
            +
                employee.add_capability('create', 'Note')
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                admin.add_capability('view', 'Note')
         | 
| 15 | 
            +
                employee.add_capability('view', 'Note')
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                admin.add_capability('delete', 'Note')
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
              
         | 
| 20 | 
            +
              def self.down
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            end
         | 
| @@ -0,0 +1,42 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20111108183740)
         | 
| 2 | 
            +
            class AddNewContactWidgets
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                crm_app = OrganizerApplication.find_by_internal_identifier('crm')
         | 
| 6 | 
            +
                 
         | 
| 7 | 
            +
                unless crm_app.nil?
         | 
| 8 | 
            +
                  Widget.find_by_internal_identifier('party_contact_management').destroy
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                  phone_number_managementt_widget = ::Widget.create(     
         | 
| 11 | 
            +
                    :description => 'Phone Number Management',
         | 
| 12 | 
            +
                    :icon => 'icon-grid',     
         | 
| 13 | 
            +
                    :xtype => 'phonenumbergrid',
         | 
| 14 | 
            +
                    :internal_identifier => 'phone_number_management'
         | 
| 15 | 
            +
                  )
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                  email_address_management_widget = ::Widget.create(
         | 
| 18 | 
            +
                    :description => 'Email Address Management',
         | 
| 19 | 
            +
                    :icon => 'icon-grid',
         | 
| 20 | 
            +
                    :xtype => 'emailaddressgrid',
         | 
| 21 | 
            +
                    :internal_identifier => 'email_address_management'
         | 
| 22 | 
            +
                  )
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                  postal_address_management_widget = ::Widget.create(
         | 
| 25 | 
            +
                    :description => 'Postal Address Management',
         | 
| 26 | 
            +
                    :icon => 'icon-grid',
         | 
| 27 | 
            +
                    :xtype => 'postaladdressgrid',
         | 
| 28 | 
            +
                    :internal_identifier => 'postal_address_management'
         | 
| 29 | 
            +
                  )
         | 
| 30 | 
            +
             | 
| 31 | 
            +
                  crm_app.widgets << phone_number_managementt_widget
         | 
| 32 | 
            +
                  crm_app.widgets << email_address_management_widget
         | 
| 33 | 
            +
                  crm_app.widgets << postal_address_management_widget
         | 
| 34 | 
            +
                  crm_app.save
         | 
| 35 | 
            +
             | 
| 36 | 
            +
                end
         | 
| 37 | 
            +
              end
         | 
| 38 | 
            +
              
         | 
| 39 | 
            +
              def self.down
         | 
| 40 | 
            +
              end
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            end
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            # This migration comes from erp_tech_svcs (originally 20111111144706)
         | 
| 2 | 
            +
            class SetupAuditLogTypes
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                application_alt = AuditLogType.create(:description => 'Application', :internal_identifier => 'application')
         | 
| 6 | 
            +
             | 
| 7 | 
            +
                [
         | 
| 8 | 
            +
                  {:description => 'Custom Message', :internal_identifier => 'custom_message'},
         | 
| 9 | 
            +
                  {:description => 'Successful Logout', :internal_identifier => 'successful_logout'},
         | 
| 10 | 
            +
                  {:description => 'Successful Login', :internal_identifier => 'successful_login'},
         | 
| 11 | 
            +
                  {:description => 'Accessed Area', :internal_identifier => 'accessed_area'},
         | 
| 12 | 
            +
                  {:description => 'Session Timeout', :internal_identifier => 'session_timeout'}
         | 
| 13 | 
            +
                ].each do |alt_hash|
         | 
| 14 | 
            +
                    AuditLogType.create(alt_hash).move_to_child_of(application_alt)
         | 
| 15 | 
            +
                end
         | 
| 16 | 
            +
              end
         | 
| 17 | 
            +
              
         | 
| 18 | 
            +
              def self.down
         | 
| 19 | 
            +
                AuditLogType.destroy_all
         | 
| 20 | 
            +
              end
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            end
         | 
    
        data/spec/dummy/db/data_migrations/20120109173616_create_download_capability_type.erp_tech_svcs.rb
    ADDED
    
    | @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            # This migration comes from erp_tech_svcs (originally 20120109173616)
         | 
| 2 | 
            +
            class CreateDownloadCapabilityType
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                CapabilityType.create(:internal_identifier => 'download', :description => 'Download')
         | 
| 6 | 
            +
                Role.create(:description => 'File Downloader', :internal_identifier => 'file_downloader')
         | 
| 7 | 
            +
              end
         | 
| 8 | 
            +
              
         | 
| 9 | 
            +
              def self.down
         | 
| 10 | 
            +
                CapabilityType.where("internal_identifier = 'download'").first.destroy unless Role.where("internal_identifier = 'download'").first.nil?
         | 
| 11 | 
            +
                Role.where("internal_identifier = 'file_downloader'").first.destroy  unless Role.where("internal_identifier = 'file_downloader'").first.nil?
         | 
| 12 | 
            +
              end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            end
         | 
| @@ -0,0 +1,29 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20120229160222)
         | 
| 2 | 
            +
            class AddUserinfoWidget
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                #insert data here
         | 
| 6 | 
            +
                if Widget.find_by_internal_identifier('userinfo').nil?
         | 
| 7 | 
            +
                  app = Application.find_by_internal_identifier('crm')
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  user = Widget.create(
         | 
| 10 | 
            +
                    :description => 'User Info',
         | 
| 11 | 
            +
                    :internal_identifier => 'userinfo',
         | 
| 12 | 
            +
                    :icon => 'icon-user',
         | 
| 13 | 
            +
                    :xtype => 'userinfo'
         | 
| 14 | 
            +
                  )
         | 
| 15 | 
            +
                 
         | 
| 16 | 
            +
                  unless app.nil?
         | 
| 17 | 
            +
                    app.widgets << user
         | 
| 18 | 
            +
                    app.save
         | 
| 19 | 
            +
                  end
         | 
| 20 | 
            +
             | 
| 21 | 
            +
                end
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
              
         | 
| 24 | 
            +
              def self.down
         | 
| 25 | 
            +
                #remove data here
         | 
| 26 | 
            +
                Widget.find_by_internal_identifier('userinfo').destroy
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            end
         | 
| @@ -0,0 +1,29 @@ | |
| 1 | 
            +
            # This migration comes from erp_orders (originally 20120229174343)
         | 
| 2 | 
            +
            class AddOrdersWidget
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                #insert data here
         | 
| 6 | 
            +
                if Widget.find_by_internal_identifier('order_management').nil?
         | 
| 7 | 
            +
                  app = Application.find_by_internal_identifier('crm')
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  orders = Widget.create(
         | 
| 10 | 
            +
                    :description => 'Order Managament',
         | 
| 11 | 
            +
                    :internal_identifier => 'order_management',
         | 
| 12 | 
            +
                    :icon => 'icon-grid',
         | 
| 13 | 
            +
                    :xtype => 'partyorderstab'
         | 
| 14 | 
            +
                  )
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                  unless app.nil?
         | 
| 17 | 
            +
                    app.widgets << orders
         | 
| 18 | 
            +
                    app.save
         | 
| 19 | 
            +
                  end
         | 
| 20 | 
            +
                  
         | 
| 21 | 
            +
                end
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
              
         | 
| 24 | 
            +
              def self.down
         | 
| 25 | 
            +
                #remove data here
         | 
| 26 | 
            +
                Widget.find_by_internal_identifier('order_management').destroy
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            end
         | 
| @@ -0,0 +1,11 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20120405193721)
         | 
| 2 | 
            +
            class CreatePartyAndRoleTypeForCommunicationEvents < ActiveRecord::Migration
         | 
| 3 | 
            +
              def up
         | 
| 4 | 
            +
                role_type = RoleType.find_or_create_by_description_and_internal_identifier('Application', 'application')
         | 
| 5 | 
            +
                party = Party.find_or_create_by_description('Compass AE')
         | 
| 6 | 
            +
                party.role_type << role_type
         | 
| 7 | 
            +
              end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              def down
         | 
| 10 | 
            +
              end
         | 
| 11 | 
            +
            end
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20120411180756)
         | 
| 2 | 
            +
            class CreateUserManagementMobileApplication
         | 
| 3 | 
            +
             | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                app = MobileApplication.create(
         | 
| 6 | 
            +
                  :description => 'User Management',
         | 
| 7 | 
            +
                  :icon => 'icon-user',
         | 
| 8 | 
            +
                  :internal_identifier => 'user_management',
         | 
| 9 | 
            +
                  :base_url => '/erp_app/mobile/user_management/index'
         | 
| 10 | 
            +
                )
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                app.save
         | 
| 13 | 
            +
              end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              def self.down
         | 
| 16 | 
            +
                MobileApplication.destroy_all("internal_identifier = 'user_management'")
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            end
         | 
| @@ -0,0 +1,23 @@ | |
| 1 | 
            +
            # This migration comes from erp_app (originally 20120418164215)
         | 
| 2 | 
            +
            class CreateConfigurationManagementDesktopApplication
         | 
| 3 | 
            +
              def self.up
         | 
| 4 | 
            +
                app = DesktopApplication.create(
         | 
| 5 | 
            +
                  :description => 'Configuration Management',
         | 
| 6 | 
            +
                  :icon => 'icon-grid',
         | 
| 7 | 
            +
                  :javascript_class_name => 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement',
         | 
| 8 | 
            +
                  :internal_identifier => 'configuration_management',
         | 
| 9 | 
            +
                  :shortcut_id => 'configuration_management-win'
         | 
| 10 | 
            +
                )
         | 
| 11 | 
            +
                pt1 = PreferenceType.iid('desktop_shortcut')
         | 
| 12 | 
            +
                pt1.preferenced_records << app
         | 
| 13 | 
            +
                pt1.save
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                pt2 = PreferenceType.iid('autoload_application')
         | 
| 16 | 
            +
                pt2.preferenced_records << app
         | 
| 17 | 
            +
                pt2.save
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              def self.down
         | 
| 21 | 
            +
                DesktopApplication.destroy_all(['internal_identifier = ?','configuration_management'])
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
            end
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            # This migration comes from erp_tech_svcs (originally 20121116155018)
         | 
| 2 | 
            +
            class CreateGroupRelationshipAndRoleTypes
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def self.up
         | 
| 5 | 
            +
                #insert data here
         | 
| 6 | 
            +
                to_role = RoleType.create(:description => 'Security Group', :internal_identifier => 'group')
         | 
| 7 | 
            +
                from_role = RoleType.create(:description => 'Security Group Member', :internal_identifier => 'group_member')
         | 
| 8 | 
            +
                RelationshipType.create(:description => 'Security Group Membership', 
         | 
| 9 | 
            +
                                        :name => 'Group Membership', 
         | 
| 10 | 
            +
                                        :internal_identifier => 'group_membership',
         | 
| 11 | 
            +
                                        :valid_from_role => from_role,
         | 
| 12 | 
            +
                                        :valid_to_role => to_role
         | 
| 13 | 
            +
                                      )
         | 
| 14 | 
            +
              end
         | 
| 15 | 
            +
              
         | 
| 16 | 
            +
              def self.down
         | 
| 17 | 
            +
                #remove data here
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            end
         |