erp_app 3.1.5 → 3.1.6
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/controllers/erp_app/desktop/job_tracker/base_controller.rb +6 -1
- data/app/controllers/erp_app/mobile/user_management/base_controller.rb +0 -3
- data/app/models/application.rb +1 -1
- data/app/views/erp_app/desktop/base/index.erb +11 -6
- data/app/views/erp_app/mobile/base/index.erb +37 -32
- data/app/views/erp_app/mobile/login/index.erb +1 -2
- data/app/views/erp_app/organizer/base/index.erb +6 -0
- data/db/data_migrations/20120411180756_create_user_management_mobile_application.rb +5 -7
- data/db/data_migrations/20130411200351_add_job_tracker_mobile_app.rb +16 -0
- data/db/migrate/20120920145259_add_job_tracker.rb +11 -7
- data/db/migrate/20130410182333_update_mobile_application.rb +27 -0
- data/lib/erp_app/version.rb +1 -1
- data/lib/generators/compass_ae_mobile/compass_ae_mobile_generator.rb +5 -2
- data/lib/generators/mobile_application/mobile_application_generator.rb +0 -2
- data/lib/generators/mobile_application/templates/controllers/controller_template.erb +1 -1
- data/lib/generators/mobile_application/templates/migrate/migration_template.erb +2 -2
- data/lib/generators/mobile_application/templates/public/app.js.erb +23 -34
- data/public/images/erp_app/mobile/green_light.png +0 -0
- data/public/images/erp_app/mobile/red_light.png +0 -0
- data/public/images/erp_app/mobile/yellow_light.png +0 -0
- data/public/javascripts/erp_app/desktop/applications/job_tracker/jobs_grid.js +2 -2
- data/public/javascripts/erp_app/login/mobile.js +55 -48
- data/public/javascripts/erp_app/mobile/app.js +71 -43
- data/public/javascripts/erp_app/mobile/applications/job_tracker/app.js +177 -0
- data/public/javascripts/erp_app/mobile/applications/job_tracker/model/job.js +15 -0
- data/public/javascripts/erp_app/mobile/applications/job_tracker/store/jobs.js +16 -0
- data/public/javascripts/erp_app/mobile/applications/job_tracker/store/view/templates.js +22 -0
- data/public/javascripts/erp_app/mobile/applications/user_management/app.js +103 -159
- data/public/javascripts/erp_app/mobile/applications/user_management/app/view/templates.js +32 -22
- data/public/stylesheets/erp_app/mobile/applications/user_management/main.css +20 -4
- data/public/stylesheets/erp_app/mobile/mobile.css +35 -324
- data/public/stylesheets/erp_app/shared/compass-ext-all.css +5 -11
- data/spec/dummy/db/data_migrations/20110109173616_create_capability_scope_types.erp_tech_svcs.rb +15 -0
- data/spec/dummy/db/data_migrations/20110525001935_add_usd_currency.erp_base_erp_svcs.rb +12 -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/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/20120229160222_add_userinfo_widget.erp_app.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/data_migrations/20130422153811_upgrade_compass_ae_instances_data.erp_base_erp_svcs.rb +19 -0
- data/spec/dummy/db/data_migrations/20130422153812_add_guid_to_instances.erp_base_erp_svcs.rb +10 -0
- data/spec/dummy/db/data_migrations/20130422153813_create_job_tracker_desktop_application.erp_app.rb +23 -0
- data/spec/dummy/db/data_migrations/20130422153814_created_tracked_jobs.erp_app.rb +15 -0
- data/spec/dummy/db/data_migrations/20130422153815_add_job_tracker_mobile_app.erp_app.rb +17 -0
- data/spec/dummy/db/migrate/20130105135833_base_erp_services.erp_base_erp_svcs.rb +461 -0
- data/spec/dummy/db/migrate/20130105135834_base_tech_services.erp_tech_svcs.rb +271 -0
- data/spec/dummy/db/migrate/20130105135835_create_has_attribute_tables.erp_tech_svcs.rb +39 -0
- data/spec/dummy/db/migrate/20130105135836_create_groups.erp_tech_svcs.rb +19 -0
- data/spec/dummy/db/migrate/20130105135837_upgrade_security.erp_tech_svcs.rb +54 -0
- data/spec/dummy/db/migrate/20130105135838_upgrade_security2.erp_tech_svcs.rb +270 -0
- data/spec/dummy/db/migrate/20130105135839_base_app_framework.erp_app.rb +276 -0
- data/spec/dummy/db/migrate/20130422153805_add_txn_status.erp_base_erp_svcs.rb +37 -0
- data/spec/dummy/db/migrate/20130422153806_upgrade_compass_ae_instances.erp_base_erp_svcs.rb +34 -0
- data/spec/dummy/db/migrate/20130422153807_add_uuid_compass_ae_instance.erp_base_erp_svcs.rb +17 -0
- data/spec/dummy/db/migrate/20130422153808_add_long_lat_to_address.erp_base_erp_svcs.rb +16 -0
- data/spec/dummy/db/migrate/20130422153809_add_queue_to_delayed_jobs.erp_tech_svcs.rb +14 -0
- data/spec/dummy/db/migrate/20130422153810_add_job_tracker.erp_app.rb +20 -0
- data/spec/dummy/db/migrate/20130422153811_update_mobile_application.erp_app.rb +28 -0
- data/spec/dummy/db/schema.rb +883 -0
- data/spec/dummy/db/spec.sqlite3 +0 -0
- data/spec/dummy/log/adam.log +1 -0
- data/spec/dummy/log/spec.log +107402 -0
- metadata +98 -46
- data/app/views/erp_app/mobile/user_management/base/index.html.erb +0 -28
- data/lib/generators/mobile_application/templates/INSTALL +0 -25
- data/lib/generators/mobile_application/templates/views/index.html.erb +0 -28
- data/public/images/icons/add/Thumbs.db +0 -0
- data/public/images/icons/calendar/Thumbs.db +0 -0
- data/public/images/icons/copy/Thumbs.db +0 -0
- data/public/images/icons/cut/Thumbs.db +0 -0
- data/public/images/icons/delete/Thumbs.db +0 -0
- data/public/images/icons/edit/Thumbs.db +0 -0
- data/public/images/icons/folder/Thumbs.db +0 -0
- data/public/images/icons/gear/Thumbs.db +0 -0
- data/public/images/icons/globe/Thumbs.db +0 -0
- data/public/images/icons/grid/Thumbs.db +0 -0
- data/public/images/icons/help/Thumbs.db +0 -0
- data/public/images/icons/information/Thumbs.db +0 -0
- data/public/images/icons/key/Thumbs.db +0 -0
- data/public/images/icons/log_out/Thumbs.db +0 -0
- data/public/images/icons/mail/Thumbs.db +0 -0
- data/public/images/icons/new/Thumbs.db +0 -0
- data/public/images/icons/next/Thumbs.db +0 -0
- data/public/images/icons/open/Thumbs.db +0 -0
- data/public/images/icons/paste/Thumbs.db +0 -0
- data/public/images/icons/picture/Thumbs.db +0 -0
- data/public/images/icons/presentation/Thumbs.db +0 -0
- data/public/images/icons/preview/Thumbs.db +0 -0
- data/public/images/icons/previous/Thumbs.db +0 -0
- data/public/images/icons/print/Thumbs.db +0 -0
- data/public/images/icons/properties/Thumbs.db +0 -0
- data/public/images/icons/redo/Thumbs.db +0 -0
- data/public/images/icons/refresh/Thumbs.db +0 -0
- data/public/images/icons/remove/Thumbs.db +0 -0
- data/public/images/icons/rename/Thumbs.db +0 -0
- data/public/images/icons/save/Thumbs.db +0 -0
- data/public/images/icons/search/Thumbs.db +0 -0
- data/public/images/icons/send/Thumbs.db +0 -0
- data/public/images/icons/settings/Thumbs.db +0 -0
- data/public/images/icons/synchronize/Thumbs.db +0 -0
- data/public/images/icons/undo/Thumbs.db +0 -0
- data/public/images/icons/upload/Thumbs.db +0 -0
- data/public/images/icons/user/Thumbs.db +0 -0
- data/public/images/icons/zoom_in/Thumbs.db +0 -0
- data/public/images/icons/zoom_out/Thumbs.db +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/Thumbs.db +0 -0
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
###########################################
|
|
2
|
-
##### Desktop Application Generator #######
|
|
3
|
-
##### Version 1.0 #######
|
|
4
|
-
###########################################
|
|
5
|
-
|
|
6
|
-
script/generate desktop_application [application_name] [description] [icon-cls] (optional fields) [plugin to create in]
|
|
7
|
-
|
|
8
|
-
What just happend
|
|
9
|
-
|
|
10
|
-
1. Created a controller
|
|
11
|
-
2. Created a public folder structures
|
|
12
|
-
|
|
13
|
-
vendor/plugins/[erp_app | plugin]/public/javascripts/erp_app/desktop/applications/[YOUR APP NAME]
|
|
14
|
-
vendor/plugins/[erp_app | plugin]/public/stylesheets/erp_app/desktop/applications/[YOUR APP NAME]
|
|
15
|
-
vendor/plugins/[erp_app | plugin]/public/images/erp_app/desktop/applications/[YOUR APP NAME]
|
|
16
|
-
|
|
17
|
-
3. Created a javscript file
|
|
18
|
-
4. Created a data migration
|
|
19
|
-
5. Appended the routes file
|
|
20
|
-
|
|
21
|
-
Run the migration with
|
|
22
|
-
|
|
23
|
-
rake db:migrate_data
|
|
24
|
-
|
|
25
|
-
and start adding functionality
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
3
|
-
<head>
|
|
4
|
-
<title><%=@description %></title>
|
|
5
|
-
<%=include_sencha_touch :debug => true%>
|
|
6
|
-
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
|
|
7
|
-
<%=static_javascript_include_tag('erp_app/utility.js')%>
|
|
8
|
-
<%=static_javascript_include_tag('erp_app/mobile/mobile_base.js')%>
|
|
9
|
-
<%#=setup_js_authentication(@user, @desktop)%>
|
|
10
|
-
<%=create_authenticity_token_sencha_touch_field%>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
<!-- application javascript resources -->
|
|
14
|
-
<%= static_javascript_include_tag(@application.locate_resources('javascripts'))%>
|
|
15
|
-
<!-- end application javascript resources -->
|
|
16
|
-
|
|
17
|
-
<!--stylesheets-->
|
|
18
|
-
<%= static_stylesheet_link_tag('erp_app/mobile/mobile.css') %>
|
|
19
|
-
<!--end stylesheets-->
|
|
20
|
-
|
|
21
|
-
<!-- application stylesheet resources -->
|
|
22
|
-
<%= static_stylesheet_link_tag(@application.locate_resources('stylesheets'))%>
|
|
23
|
-
<!-- end application stylesheet resources -->
|
|
24
|
-
|
|
25
|
-
</head>
|
|
26
|
-
<body>
|
|
27
|
-
</body>
|
|
28
|
-
</html>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|