@steedos-labs/plugin-workflow 3.0.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +706 -0
- package/README.md +9 -0
- package/main/default/applications/admin.app.yml +32 -0
- package/main/default/applications/approve_workflow.app.yml +89 -0
- package/main/default/client/instance.client.js +145 -0
- package/main/default/client/instanceAmisView.client.js +257 -0
- package/main/default/client/instanceFile.client.js +169 -0
- package/main/default/client/object_workflows.client.js +7 -0
- package/main/default/client/socket.client.js +40 -0
- package/main/default/client/workflow.client.js +18 -0
- package/main/default/manager/approve_manager.js +36 -0
- package/main/default/manager/export.js +182 -0
- package/main/default/manager/flow_manager.js +46 -0
- package/main/default/manager/form_manager.js +47 -0
- package/main/default/manager/handlers_manager.js +796 -0
- package/main/default/manager/import.js +710 -0
- package/main/default/manager/index.js +23 -0
- package/main/default/manager/instance_manager.js +182 -0
- package/main/default/manager/instance_tasks_manager.js +285 -0
- package/main/default/manager/permission_manager.js +140 -0
- package/main/default/manager/push_manager.js +905 -0
- package/main/default/manager/step_manager.js +54 -0
- package/main/default/manager/uuflow_manager.js +4278 -0
- package/main/default/manager/workflow_manager.js +774 -0
- package/main/default/objectTranslations/flow_positions.en/flow_positions.en.objectTranslation.yml +19 -0
- package/main/default/objectTranslations/flow_positions.zh-CN/flow_positions.zh-CN.objectTranslation.yml +19 -0
- package/main/default/objectTranslations/flow_roles.en/flow_roles.en.objectTranslation.yml +11 -0
- package/main/default/objectTranslations/flow_roles.zh-CN/flow_roles.zh-CN.objectTranslation.yml +14 -0
- package/main/default/objectTranslations/flows.en/flows.en.objectTranslation.yml +317 -0
- package/main/default/objectTranslations/flows.zh-CN/flows.zh-CN.objectTranslation.yml +314 -0
- package/main/default/objects/approvals.object.yml +99 -0
- package/main/default/objects/categories.object.yml +52 -0
- package/main/default/objects/cfs.instances.filerecord.object.yml +16 -0
- package/main/default/objects/flow_positions.object.yml +79 -0
- package/main/default/objects/flow_roles.object.yml +63 -0
- package/main/default/objects/flows/buttons/del.button.yml +154 -0
- package/main/default/objects/flows/buttons/design_form_layout.button.js +35 -0
- package/main/default/objects/flows/buttons/design_form_layout.button.yml +4 -0
- package/main/default/objects/flows/buttons/distributeAdmin.button.yml +88 -0
- package/main/default/objects/flows/buttons/newexport.button.yml +45 -0
- package/main/default/objects/flows/buttons/newimport.button.yml +92 -0
- package/main/default/objects/flows/buttons/showDesign.button.js +33 -0
- package/main/default/objects/flows/buttons/showDesign.button.yml +6 -0
- package/main/default/objects/flows/flows.object.yml +941 -0
- package/main/default/objects/forms/fields/amis_schema.field.yml +7 -0
- package/main/default/objects/forms/forms.object.yml +266 -0
- package/main/default/objects/instance_number_rules.object.yml +85 -0
- package/main/default/objects/instance_tasks/buttons/instance_new.button.js +14 -0
- package/main/default/objects/instance_tasks/buttons/instance_new.button.yml +96 -0
- package/main/default/objects/instance_tasks/fields/applicant.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/applicant_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/applicant_organization_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/category.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/category_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/cost_time.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/deadline.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/description.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/distribute_from_instance.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/due_date.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/extras.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/finish_date.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/flow.field.yml +8 -0
- package/main/default/objects/instance_tasks/fields/flow_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/form.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/forward_from_instance.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/handler.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/handler_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/handler_organization.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/handler_organization_fullname.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/handler_organization_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/instance.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/instance_name.field.yml +13 -0
- package/main/default/objects/instance_tasks/fields/instance_state.field.yml +13 -0
- package/main/default/objects/instance_tasks/fields/is_archived.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/is_error.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/is_finished.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/is_latest_approve.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/is_read.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/keywords.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/next_steps.$.step.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/next_steps.$.users.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/next_steps.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/read_date.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/remind_date.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/reminded_count.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/sign_show.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/start_date.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/step.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/step_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/submit_date.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/submitter.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/submitter_name.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/trace.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/type.field.yml +2 -0
- package/main/default/objects/instance_tasks/fields/user.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/user_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/values.field.yml +5 -0
- package/main/default/objects/instance_tasks/instance_tasks.object.yml +7 -0
- package/main/default/objects/instance_tasks/listviews/inbox.listview.yml +41 -0
- package/main/default/objects/instance_tasks/listviews/outbox.listview.yml +38 -0
- package/main/default/objects/instance_tasks/permissions/admin.permission.yml +8 -0
- package/main/default/objects/instance_tasks/permissions/user.permission.yml +10 -0
- package/main/default/objects/instance_tasks/tabs/object_instance_tasks.tab.yml +7 -0
- package/main/default/objects/instance_tasks/tabs/object_instances.tab.yml +7 -0
- package/main/default/objects/instances/buttons/instance_cc.button.yml +160 -0
- package/main/default/objects/instances/buttons/instance_delete.button.yml +77 -0
- package/main/default/objects/instances/buttons/instance_delete_many.button.yml +124 -0
- package/main/default/objects/instances/buttons/instance_distribute.button.yml +310 -0
- package/main/default/objects/instances/buttons/instance_filter_flow.button.js +13 -0
- package/main/default/objects/instances/buttons/instance_filter_flow.button.yml +75 -0
- package/main/default/objects/instances/buttons/instance_flow_chart.button.yml +38 -0
- package/main/default/objects/instances/buttons/instance_forward.button.yml +163 -0
- package/main/default/objects/instances/buttons/instance_hide.button.yml +6 -0
- package/main/default/objects/instances/buttons/instance_new.button.js +16 -0
- package/main/default/objects/instances/buttons/instance_new.button.yml +108 -0
- package/main/default/objects/instances/buttons/instance_print.button.todo.yml +40 -0
- package/main/default/objects/instances/buttons/instance_query.button.js +17 -0
- package/main/default/objects/instances/buttons/instance_query.button.yml +186 -0
- package/main/default/objects/instances/buttons/instance_reassign.button.yml +123 -0
- package/main/default/objects/instances/buttons/instance_related.button.yml +166 -0
- package/main/default/objects/instances/buttons/instance_relocate.button.yml +127 -0
- package/main/default/objects/instances/buttons/instance_remind.button.yml +7 -0
- package/main/default/objects/instances/buttons/instance_reopen.button.yml +7 -0
- package/main/default/objects/instances/buttons/instance_retrieve.button.yml +7 -0
- package/main/default/objects/instances/buttons/instance_return.button.yml +121 -0
- package/main/default/objects/instances/buttons/instance_save.button.yml +78 -0
- package/main/default/objects/instances/buttons/instance_submit.button.yml +37 -0
- package/main/default/objects/instances/buttons/instance_terminate.button.yml +143 -0
- package/main/default/objects/instances/buttons/view_instance.button.yml +56 -0
- package/main/default/objects/instances/fields/keywords.field.yml +5 -0
- package/main/default/objects/instances/instances.object.yml +295 -0
- package/main/default/objects/instances/listviews/completed.listview.yml +38 -0
- package/main/default/objects/instances/listviews/draft.listview.yml +27 -0
- package/main/default/objects/instances/listviews/lookup.listview.yml +17 -0
- package/main/default/objects/instances/listviews/monitor.listview.yml +39 -0
- package/main/default/objects/instances/listviews/pending.listview.yml +38 -0
- package/main/default/objects/instances_statistic.object.yml +121 -0
- package/main/default/objects/object_workflows.action.js +28 -0
- package/main/default/objects/object_workflows.object.yml +263 -0
- package/main/default/objects/process_delegation_rules.object.yml +71 -0
- package/main/default/objects/space_user_signs.object.yml +61 -0
- package/main/default/objects/webhooks.object.yml +78 -0
- package/main/default/pages/flowdetail.page.amis.json +719 -0
- package/main/default/pages/flowdetail.page.yml +14 -0
- package/main/default/pages/flows_form.page.amis.json +25 -0
- package/main/default/pages/flows_form.page.yml +12 -0
- package/main/default/pages/instance_detail.page.amis.json +149 -0
- package/main/default/pages/instance_detail.page.yml +12 -0
- package/main/default/pages/instance_tasks_detail.page.amis.json +158 -0
- package/main/default/pages/instance_tasks_detail.page.yml +12 -0
- package/main/default/pages/instance_tasks_list.page.amis.json +280 -0
- package/main/default/pages/instance_tasks_list.page.yml +12 -0
- package/main/default/pages/instances_list.page.amis.json +278 -0
- package/main/default/pages/instances_list.page.yml +12 -0
- package/main/default/routes/am.router.js +1074 -0
- package/main/default/routes/amis_form_design.ejs +434 -0
- package/main/default/routes/amis_form_design.router.js +79 -0
- package/main/default/routes/api_cc.router.js +43 -0
- package/main/default/routes/api_cc_submit.router.js +59 -0
- package/main/default/routes/api_designer_startup.router.js +159 -0
- package/main/default/routes/api_flow_permission.router.js +29 -0
- package/main/default/routes/api_formula_organizations.router.js +72 -0
- package/main/default/routes/api_formula_users.router.js +73 -0
- package/main/default/routes/api_get_object_workflows.router.js +46 -0
- package/main/default/routes/api_object_workflow_drafts.router.js +48 -0
- package/main/default/routes/api_sub_table_sort.router.js +113 -0
- package/main/default/routes/api_workflow_approve_save.router.js +151 -0
- package/main/default/routes/api_workflow_archive.router.js +82 -0
- package/main/default/routes/api_workflow_box_filter.router.js +27 -0
- package/main/default/routes/api_workflow_draft.router.js +60 -0
- package/main/default/routes/api_workflow_drafts.router.js +72 -0
- package/main/default/routes/api_workflow_engine.router.js +104 -0
- package/main/default/routes/api_workflow_export.router.js +197 -0
- package/main/default/routes/api_workflow_forcesync.router.js +61 -0
- package/main/default/routes/api_workflow_forward.router.js +672 -0
- package/main/default/routes/api_workflow_forward_refill.router.js +127 -0
- package/main/default/routes/api_workflow_forward_table_refill.router.js +283 -0
- package/main/default/routes/api_workflow_instance.router.js +110 -0
- package/main/default/routes/api_workflow_instance_change_related.router.js +54 -0
- package/main/default/routes/api_workflow_instance_check_is_removed.router.js +58 -0
- package/main/default/routes/api_workflow_instance_forward.router.js +610 -0
- package/main/default/routes/api_workflow_instance_return.router.js +202 -0
- package/main/default/routes/api_workflow_instance_save.router.js +33 -0
- package/main/default/routes/api_workflow_instance_terminate.router.js +216 -0
- package/main/default/routes/api_workflow_nav.router.js +335 -0
- package/main/default/routes/api_workflow_next_step.router.js +218 -0
- package/main/default/routes/api_workflow_next_step_users.router.js +212 -0
- package/main/default/routes/api_workflow_open_cfs.router.js +352 -0
- package/main/default/routes/api_workflow_open_drafts.router.js +183 -0
- package/main/default/routes/api_workflow_open_get.router.js +123 -0
- package/main/default/routes/api_workflow_open_get_by_stepname.router.js +136 -0
- package/main/default/routes/api_workflow_open_pending.router.js +252 -0
- package/main/default/routes/api_workflow_open_save.router.js +112 -0
- package/main/default/routes/api_workflow_open_submit.router.js +147 -0
- package/main/default/routes/api_workflow_print.ejs +143 -0
- package/main/default/routes/api_workflow_print.router.js +42 -0
- package/main/default/routes/api_workflow_reassign.router.js +247 -0
- package/main/default/routes/api_workflow_redirect.router.js +39 -0
- package/main/default/routes/api_workflow_relocate.router.js +60 -0
- package/main/default/routes/api_workflow_remove.router.js +103 -0
- package/main/default/routes/api_workflow_retrieve.router.js +294 -0
- package/main/default/routes/api_workflow_space_changeset.router.js +72 -0
- package/main/default/routes/api_workflow_submit.router.js +91 -0
- package/main/default/routes/api_workflow_terminate.router.js +217 -0
- package/main/default/routes/api_workflow_v2_remove.router.js +83 -0
- package/main/default/routes/designer.router.js +201 -0
- package/main/default/routes/export.router.js +147 -0
- package/main/default/routes/export_table_template.router.js +125 -0
- package/main/default/routes/flow.settings.router.js +110 -0
- package/main/default/routes/flow_form_design.ejs +441 -0
- package/main/default/routes/flow_form_design.router.js +127 -0
- package/main/default/routes/getContactInfoForUser.router.js +59 -0
- package/main/default/routes/getFormulaUserObjects.router.js +63 -0
- package/main/default/routes/getNameForUser.router.js +57 -0
- package/main/default/routes/getSpaceUsers.router.js +64 -0
- package/main/default/routes/import.router.js +174 -0
- package/main/default/routes/init_formula_values.router.js +69 -0
- package/main/default/routes/nextStepUsers.router.js +220 -0
- package/main/default/routes/object_workflows.router.js +128 -0
- package/main/default/server/ejs/export_instances.ejs +424 -0
- package/main/default/services/flows.service.js +279 -0
- package/main/default/services/instance.service.js +319 -0
- package/main/default/tabs/admin_categories.tab.yml +21 -0
- package/main/default/tabs/admin_flow_positions.tab.yml +21 -0
- package/main/default/tabs/admin_flow_roles.tab.yml +21 -0
- package/main/default/tabs/admin_flows.tab.yml +21 -0
- package/main/default/tabs/admin_instance_number_rules.tab.yml +23 -0
- package/main/default/tabs/admin_instances_statistic.tab.yml +24 -0
- package/main/default/tabs/admin_process_delegation_rules.tab.yml +24 -0
- package/main/default/tabs/admin_roles.tab.yml +21 -0
- package/main/default/tabs/admin_space_user_signs.tab.yml +25 -0
- package/main/default/tabs/admin_webhooks.tab.yml +21 -0
- package/main/default/translations/en.translation.yml +2 -0
- package/main/default/translations/zh-CN.translation.yml +2 -0
- package/main/default/triggers/amis_form_design.trigger.js +538 -0
- package/main/default/triggers/flows.trigger.js +97 -0
- package/main/default/triggers/instance_tasks.trigger.js +37 -0
- package/main/default/triggers/instances.trigger.js +36 -0
- package/main/default/utils/collection.js +17 -0
- package/main/default/utils/convert.js +11 -0
- package/main/default/utils/designerManager.js +639 -0
- package/main/default/utils/trigger.js +63 -0
- package/main/default/utils/workingTime.js +125 -0
- package/main/default/uuflowManager/index.js +47 -0
- package/package.json +23 -0
- package/package.service.js +142 -0
- package/package.service.yml +6 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/en-us/javascript-strings.js +1 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/en-us/javascript.js +1 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/zh-cn/javascript-strings.js +1 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/zh-cn/javascript.js +1 -0
- package/public/applications/designer/5410/cloudkit/runtime/5410/en-us/resources/iCloud.cab +0 -0
- package/public/applications/designer/5410/cloudkit/runtime/5410/zh-cn/resources/iCloud.cab +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/load_views/images/attachment_delete.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/load_views/images/attachment_delete@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/backgrounds/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/blue-sky.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/bosque_wood.jpg +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_normal_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_normal_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_selected_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_selected_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-5.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-6.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-7.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-9.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/spinner.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/spinner@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/stylesheet-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/backGround.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/email.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/exit.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/icon.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/icon_enter.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/list_line.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/point.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/top_title.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/clear_search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/clear_search_active.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/search_background.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/search_background@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/PersonalUserSelect.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet.css +26 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet@2x.css +56 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/load_views/images/attachment_delete.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/load_views/images/attachment_delete@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/backgrounds/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/blue-sky.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/bosque_wood.jpg +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_normal_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_normal_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_selected_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_selected_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-5.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-6.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-7.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-9.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/spinner.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/spinner@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/stylesheet-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/backGround.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/email.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/exit.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/icon.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/icon_enter.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/list_line.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/point.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/top_title.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/clear_search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/clear_search_active.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/search_background.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/search_background@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/PersonalUserSelect.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet.css +26 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet@2x.css +56 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/en-us/javascript-strings.js +1 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/en-us/javascript.js +1 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/zh-cn/javascript-strings.js +1 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/zh-cn/javascript.js +1 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/css3pie/PIE.htc +85 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/FontAwesome.otf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.eot +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.svg +565 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.woff +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-alert.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-alert@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-info.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-info@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeReceived.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeReceived@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeSent.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeSent@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhiteSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhiteSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newGreenBubble.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newGreenBubble@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_closed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_closed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_open.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_open_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/ios8.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/ios8@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-3@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-4@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/ios/notification/images/ios_notification_spinner.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/ios/sectioned/UISectionedBackground.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/ios/sectioned/UISectionedBackground@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/list/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/checkmark.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/checkmark_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/down.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/menu_item.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/up.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/panel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/pointers.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/popover_empty.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/popover_pointers_notoolbar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/progress/progress_view_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/progress/progress_view_indeterminate_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/progress/progress_view_track.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_mixed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_mixed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_unselected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel_higher.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel_higher@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/select/active_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/select/normal_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/select/select_after.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_dfe1e3@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ebebeb.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f8f8f8@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_message_window.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_message_window@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_sidebar_sel.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_18px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_18px_e8ebf2.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_18px_e8ebf2@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_20px_d3d5dc.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_20px_d3d5dc@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_20px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_30466a.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_30466a@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_e9ddc5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_2b3d5e.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_2b3d5e@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_42px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_42px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-y.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-y@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/menu/menu@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet.css +262 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet@2x.css +364 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/css3pie/PIE.htc +85 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/FontAwesome.otf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.eot +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.svg +565 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.woff +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-alert.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-alert@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-info.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-info@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeReceived.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeReceived@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeSent.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeSent@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhiteSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhiteSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newGreenBubble.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newGreenBubble@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_closed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_closed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_open.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_open_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/ios8.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/ios8@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-3@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-4@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/ios/notification/images/ios_notification_spinner.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/ios/sectioned/UISectionedBackground.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/ios/sectioned/UISectionedBackground@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/list/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/checkmark.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/checkmark_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/down.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/menu_item.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/up.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/panel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/pointers.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/popover_empty.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/popover_pointers_notoolbar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/progress/progress_view_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/progress/progress_view_indeterminate_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/progress/progress_view_track.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_mixed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_mixed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_unselected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel_higher.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel_higher@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/select/active_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/select/normal_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/select/select_after.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_dfe1e3@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ebebeb.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f8f8f8@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_message_window.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_message_window@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_sidebar_sel.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_18px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_18px_e8ebf2.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_18px_e8ebf2@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_20px_d3d5dc.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_20px_d3d5dc@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_20px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_30466a.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_30466a@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_e9ddc5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_2b3d5e.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_2b3d5e@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_42px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_42px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-y.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-y@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/menu/menu@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet.css +262 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet@2x.css +364 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/loading.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/loading@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinner.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinner_white_32.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinning.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinning@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/loading.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/loading@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinner.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinner_white_32.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinning.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinning@2x.png +0 -0
- package/public/applications/designer/5410/en-us/index.html +64 -0
- package/public/applications/designer/5410/en-us/javascript-packed.js +87 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/active_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/normal_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_active_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/images/navbar.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/images/navbar@2x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-packed.css +439 -0
- package/public/applications/designer/5410/en-us/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet.css +69 -0
- package/public/applications/designer/5410/en-us/stylesheet@2x-packed.css +583 -0
- package/public/applications/designer/5410/en-us/stylesheet@2x.css +78 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_counterSign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_delete.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/canvas_bg.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/condition_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/countersign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/countersign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/delete_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/delete_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/delete_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/end_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_archive_nor.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/link_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/link_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/link_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/sign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/sign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/start_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/submit_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/warning_sma.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/link_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/pickup-add-active.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/pickup-add.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-resources/images/canvas_bg@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet.css +22 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_counterSign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_delete.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/canvas_bg.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/condition_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/countersign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/countersign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/delete_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/delete_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/delete_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/end_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_archive_nor.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/link_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/link_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/link_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/sign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/sign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/start_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/submit_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/warning_sma.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/link_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/pickup-add-active.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/pickup-add.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-resources/images/canvas_bg@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet.css +22 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/bg_wood.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/bg_wood@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_checked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_checked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_mixed.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_mixed_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_unchecked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_unchecked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/currency.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/datePicker.gif +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/datePicker.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/delete_button@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/percentage.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/sprite.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/warning_sma.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet.css +5 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet@2x.css +8 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/bg_wood.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/bg_wood@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_checked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_checked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_mixed.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_mixed_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_unchecked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_unchecked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/currency.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/datePicker.gif +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/datePicker.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/delete_button@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/percentage.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/sprite.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/warning_sma.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet.css +5 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet@2x.css +8 -0
- package/public/applications/designer/5410/index.html +64 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/cap.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/downbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-alert-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-alert-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-alert-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-bookmark-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-bookmark-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-cancel-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-document-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-document-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-down-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-error-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-favorite-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-favorite-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-folder-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-folder-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-group-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-group-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-help-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-help-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-info-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-info-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-info-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-left-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-options-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-options-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-redo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-right-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-tools-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-trash-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-trash-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-undo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-up-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-user-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-user-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/thumb-bottom.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/thumb-center.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/thumb-top.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/track.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/upbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/stylesheet.css +35 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/cap.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/downbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-alert-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-alert-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-alert-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-bookmark-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-bookmark-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-cancel-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-document-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-document-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-down-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-error-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-favorite-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-favorite-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-folder-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-folder-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-group-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-group-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-help-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-help-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-info-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-info-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-info-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-left-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-options-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-options-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-redo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-right-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-tools-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-trash-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-trash-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-undo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-up-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-user-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-user-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/thumb-bottom.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/thumb-center.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/thumb-top.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/track.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/upbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/stylesheet.css +35 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/resources/images/favicon.ico +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/blank.gif +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-logo.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-landscape.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-landscape.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-portrait.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-portrait.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/stylesheet.css +2 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/resources/images/favicon.ico +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/blank.gif +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-logo.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-landscape.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-landscape.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-portrait.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-portrait.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/stylesheet.css +2 -0
- package/public/applications/designer/5410/sproutcore/yuireset/5410/en-us/stylesheet.css +2 -0
- package/public/applications/designer/5410/sproutcore/yuireset/5410/zh-cn/stylesheet.css +2 -0
- package/public/applications/designer/5410/zh-cn/index.html +64 -0
- package/public/applications/designer/5410/zh-cn/javascript-packed.js +87 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/active_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/normal_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_active_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/images/navbar.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/images/navbar@2x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-packed.css +439 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet.css +69 -0
- package/public/applications/designer/5410/zh-cn/stylesheet@2x-packed.css +583 -0
- package/public/applications/designer/5410/zh-cn/stylesheet@2x.css +78 -0
- package/public/applications/designer/current/en-us/index.html +64 -0
- package/public/applications/designer/current/index.html +64 -0
- package/public/applications/designer/current/zh-cn/index.html +64 -0
- package/public/applications/designer/index.html +64 -0
- package/public/workflow/index.css +369 -0
- package/src/instance_record_queue.js +1171 -0
- package/src/rests/api_workflow_instance_batch_remove.js +70 -0
- package/src/rests/getInstanceServiceSchema.js +72 -0
- package/src/rests/index.js +13 -0
- package/src/rests/updateFormFields.js +110 -0
- package/src/schema/instance_form_schema.amis.js +120 -0
- package/src/schema/steedos_form_schema.amis.js +205 -0
- package/src/schema/steedos_form_schema.table.amis.js +123 -0
- package/src/util/index.js +125 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: sunhaolin@hotoa.com
|
|
3
|
+
* @Date: 2022-12-24 13:25:04
|
|
4
|
+
* @LastEditors: sunhaolin@hotoa.com
|
|
5
|
+
* @LastEditTime: 2022-12-24 13:30:32
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
'use strict';
|
|
9
|
+
// @ts-check
|
|
10
|
+
const express = require('express');
|
|
11
|
+
const router = express.Router();
|
|
12
|
+
const { requireAuthentication } = require("@steedos/auth");
|
|
13
|
+
const _ = require('lodash');
|
|
14
|
+
const Fiber = function(fun){console.log('TODO Fiber...')}
|
|
15
|
+
/**
|
|
16
|
+
@api {post} /api/workflow/forward_refill 转发数据回填
|
|
17
|
+
@apiVersion 0.0.0
|
|
18
|
+
@apiName /api/workflow/forward_refill
|
|
19
|
+
@apiGroup service-workflow
|
|
20
|
+
@apiBody {Object} instance 申请单信息
|
|
21
|
+
@apiQuery {String} subTable 回填子表
|
|
22
|
+
@apiQuery {String} column 分发回填的列
|
|
23
|
+
@apiSuccessExample {json} Success-Response:
|
|
24
|
+
HTTP/1.1 200 OK
|
|
25
|
+
{
|
|
26
|
+
'success': '回填成功'
|
|
27
|
+
}
|
|
28
|
+
@apiErrorExample {json} Error-Response:
|
|
29
|
+
HTTP/1.1 200 OK
|
|
30
|
+
{
|
|
31
|
+
error: ''
|
|
32
|
+
}
|
|
33
|
+
*/
|
|
34
|
+
router.post('/api/workflow/forward_refill', requireAuthentication, async function (req, res) {
|
|
35
|
+
try {
|
|
36
|
+
let userSession = req.user;
|
|
37
|
+
const spaceId = userSession.spaceId;
|
|
38
|
+
const userId = userSession.userId;
|
|
39
|
+
const isSpaceAdmin = userSession.is_space_admin;
|
|
40
|
+
Fiber(async function () {
|
|
41
|
+
try {
|
|
42
|
+
var approve, columns, forward_ins, forward_ins_values, original_ins, original_ins_fields, original_ins_form, original_ins_id, original_subtable_fields, ref, ref1, ref2, ref3, ref4, ref5, ref6, ref7, ref8, ref9, row_data, subTable, table_data, trace, traces;
|
|
43
|
+
columns = req != null ? (ref2 = req.query) != null ? ref2.column.split(';') : void 0 : void 0;
|
|
44
|
+
// 分发的申请单
|
|
45
|
+
forward_ins = req != null ? (ref3 = req.body) != null ? ref3.instance : void 0 : void 0;
|
|
46
|
+
subTable = req != null ? (ref4 = req.query) != null ? ref4.subTable : void 0 : void 0;
|
|
47
|
+
if ((forward_ins != null ? forward_ins.state : void 0) === "completed" && (forward_ins != null ? (ref5 = forward_ins.distribute_from_instances) != null ? ref5.length : void 0 : void 0) > 0 && subTable && columns) {
|
|
48
|
+
|
|
49
|
+
// 分发回来的值
|
|
50
|
+
forward_ins_values = forward_ins != null ? forward_ins.values : void 0;
|
|
51
|
+
// # 原申请单字段
|
|
52
|
+
original_ins_id = _.last(forward_ins != null ? forward_ins.distribute_from_instances : void 0);
|
|
53
|
+
original_ins = db.instances.findOne(original_ins_id);
|
|
54
|
+
original_ins_form = db.forms.findOne(original_ins != null ? original_ins.form : void 0);
|
|
55
|
+
original_ins_fields = [];
|
|
56
|
+
original_subtable_fields = [];
|
|
57
|
+
// 查看原申请单是否有对应的子表
|
|
58
|
+
if ((original_ins != null ? original_ins.form_version : void 0) === (original_ins_form != null ? (ref7 = original_ins_form.current) != null ? ref7._id : void 0 : void 0)) {
|
|
59
|
+
original_ins_fields = (ref8 = original_ins_form.current) != null ? ref8.fields : void 0;
|
|
60
|
+
original_ins_fields.forEach(function (original_ins_field) {
|
|
61
|
+
if ((original_ins_field != null ? original_ins_field.code : void 0) === subTable && (original_ins_field != null ? original_ins_field.type : void 0) === 'table') {
|
|
62
|
+
return original_subtable_fields = original_ins_field != null ? original_ins_field.fields : void 0;
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
} else {
|
|
66
|
+
if ((original_ins_form != null ? (ref9 = original_ins_form.historys) != null ? ref9.length : void 0 : void 0) > 0) {
|
|
67
|
+
original_ins_form.historys.forEach(function (oh) {
|
|
68
|
+
if ((original_ins != null ? original_ins.form_version : void 0) === oh._id) {
|
|
69
|
+
original_ins_fields = oh != null ? oh.fields : void 0;
|
|
70
|
+
return original_ins_fields.forEach(function (original_ins_field) {
|
|
71
|
+
if ((original_ins_field != null ? original_ins_field.code : void 0) === subTable && (original_ins_field != null ? original_ins_field.type : void 0) === 'table') {
|
|
72
|
+
return original_subtable_fields = original_ins_field != null ? original_ins_field.fields : void 0;
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
if (original_subtable_fields) {
|
|
80
|
+
// # 更新步骤的值
|
|
81
|
+
// 1.找到当前的步骤
|
|
82
|
+
// 2.当前步骤中approves中的values
|
|
83
|
+
// 3.在values中找到表格
|
|
84
|
+
// 4.根据表格的fields属性,一个个的赋值
|
|
85
|
+
// 5.把复制的push到表格数组的后面
|
|
86
|
+
traces = original_ins != null ? original_ins.traces : void 0;
|
|
87
|
+
trace = traces[traces.length - 1];
|
|
88
|
+
approve = trace != null ? trace.approves[0] : void 0;
|
|
89
|
+
table_data = (approve != null ? approve.values[subTable] : void 0) || [];
|
|
90
|
+
row_data = {};
|
|
91
|
+
columns.forEach(function (column) {
|
|
92
|
+
return row_data[column] = forward_ins_values[column] || "";
|
|
93
|
+
});
|
|
94
|
+
if (row_data && row_data !== {}) {
|
|
95
|
+
table_data.push(row_data);
|
|
96
|
+
traces[traces.length - 1].approves[0].values[subTable] = table_data;
|
|
97
|
+
db.instances.update(original_ins_id, {
|
|
98
|
+
$set: {
|
|
99
|
+
'traces': traces
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
return res.status(200).send({ 'success': '回填成功' });
|
|
103
|
+
} else {
|
|
104
|
+
return res.status(200).send({ 'info': '回填数据为空' });
|
|
105
|
+
}
|
|
106
|
+
} else {
|
|
107
|
+
return res.status(200).send({ 'error': '原申请单无相关子表' });
|
|
108
|
+
}
|
|
109
|
+
} else {
|
|
110
|
+
return res.status(200).send({ 'success': '申请单未结束' });
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
} catch (e) {
|
|
115
|
+
console.error(e);
|
|
116
|
+
res.status(200).send({
|
|
117
|
+
errors: [{ errorMessage: e.message }]
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
}).run()
|
|
121
|
+
} catch (e) {
|
|
122
|
+
res.status(200).send({
|
|
123
|
+
errors: [{ errorMessage: e.message }]
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
});
|
|
127
|
+
exports.default = router;
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: sunhaolin@hotoa.com
|
|
3
|
+
* @Date: 2022-12-24 13:32:54
|
|
4
|
+
* @LastEditors: sunhaolin@hotoa.com
|
|
5
|
+
* @LastEditTime: 2022-12-24 13:43:18
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
'use strict';
|
|
9
|
+
// @ts-check
|
|
10
|
+
const express = require('express');
|
|
11
|
+
const router = express.Router();
|
|
12
|
+
const { requireAuthentication } = require("@steedos/auth");
|
|
13
|
+
const _ = require('underscore');
|
|
14
|
+
const Fiber = function(fun){console.log('TODO Fiber...')}
|
|
15
|
+
/**
|
|
16
|
+
@api {post} /api/workflow/forward_table_refill 子表重新回填
|
|
17
|
+
@apiVersion 0.0.0
|
|
18
|
+
@apiName /api/workflow/forward_table_refill
|
|
19
|
+
@apiGroup service-workflow
|
|
20
|
+
@apiBody {Object} instance 分发的申请单
|
|
21
|
+
@apiQuery {String} oTable 原表子表
|
|
22
|
+
@apiQuery {String} dTable 现表子表
|
|
23
|
+
@apiQuery {String} oMatchCol 原表单的子表匹配列
|
|
24
|
+
@apiQuery {String} dMatchCol 现表单的子表匹配列
|
|
25
|
+
@apiQuery {String} refillCol 需要回填的列
|
|
26
|
+
@apiSuccessExample {json} Success-Response:
|
|
27
|
+
HTTP/1.1 200 OK
|
|
28
|
+
{
|
|
29
|
+
'success': '回填成功',
|
|
30
|
+
}
|
|
31
|
+
@apiErrorExample {json} Error-Response:
|
|
32
|
+
HTTP/1.1 200 OK
|
|
33
|
+
{
|
|
34
|
+
errors: [e]
|
|
35
|
+
}
|
|
36
|
+
*/
|
|
37
|
+
router.post('/api/workflow/forward_table_refill', requireAuthentication, async function (req, res) {
|
|
38
|
+
try {
|
|
39
|
+
let userSession = req.user;
|
|
40
|
+
const spaceId = userSession.spaceId;
|
|
41
|
+
const userId = userSession.userId;
|
|
42
|
+
const isSpaceAdmin = userSession.is_space_admin;
|
|
43
|
+
var hashData = req.body;
|
|
44
|
+
Fiber(async function () {
|
|
45
|
+
try {
|
|
46
|
+
var a_table, a_table_values, approve, column_list, columns, d_ins, d_ins_fields, d_ins_form, d_ins_values, d_match_col, d_match_col_field, d_match_col_fields, d_subtable_fields, d_table, d_table_values, e, o_ins, o_ins_fields, o_ins_form, o_ins_id, o_match_col, o_match_col_field, o_match_col_fields, o_subtable_fields, o_table, ref, ref1, ref10, ref11, ref12, ref13, ref14, ref15, ref16, ref17, ref18, ref19, ref2, ref20, ref21, ref22, ref3, ref4, ref5, ref6, ref7, ref8, ref9, table_data, trace, traces;
|
|
47
|
+
// 分发的申请单
|
|
48
|
+
d_ins = req != null ? (ref5 = req.body) != null ? ref5.instance : void 0 : void 0;
|
|
49
|
+
if ((d_ins != null ? d_ins.state : void 0) === "completed") {
|
|
50
|
+
if (req != null ? (ref6 = req.query) != null ? ref6.oTable : void 0 : void 0) {
|
|
51
|
+
o_table = req != null ? (ref7 = req.query) != null ? ref7.oTable : void 0 : void 0;
|
|
52
|
+
if (req != null ? (ref8 = req.query) != null ? ref8.dTable : void 0 : void 0) {
|
|
53
|
+
d_table = req != null ? (ref9 = req.query) != null ? ref9.dTable : void 0 : void 0;
|
|
54
|
+
} else {
|
|
55
|
+
d_table = o_table;
|
|
56
|
+
}
|
|
57
|
+
if (req != null ? (ref10 = req.query) != null ? ref10.aTable : void 0 : void 0) {
|
|
58
|
+
a_table = req != null ? (ref11 = req.query) != null ? ref11.aTable : void 0 : void 0;
|
|
59
|
+
}
|
|
60
|
+
if (req != null ? (ref12 = req.query) != null ? ref12.oMatchCol : void 0 : void 0) {
|
|
61
|
+
o_match_col = req != null ? (ref13 = req.query) != null ? ref13.oMatchCol : void 0 : void 0;
|
|
62
|
+
if (req != null ? (ref14 = req.query) != null ? ref14.dMatchCol : void 0 : void 0) {
|
|
63
|
+
d_match_col = req != null ? (ref15 = req.query) != null ? ref15.dMatchCol : void 0 : void 0;
|
|
64
|
+
} else {
|
|
65
|
+
d_match_col = o_match_col;
|
|
66
|
+
}
|
|
67
|
+
columns = (req != null ? (ref16 = req.query) != null ? ref16.refillCol.split(';') : void 0 : void 0) || [];
|
|
68
|
+
if (columns || columns.length < 1) {
|
|
69
|
+
// 分发回来的值
|
|
70
|
+
d_ins_values = d_ins != null ? d_ins.values : void 0;
|
|
71
|
+
// 原申请单 form 表字段
|
|
72
|
+
o_ins_id = _.last(d_ins != null ? d_ins.distribute_from_instances : void 0);
|
|
73
|
+
o_ins = db.instances.findOne(o_ins_id);
|
|
74
|
+
o_ins_form = db.forms.findOne(o_ins != null ? o_ins.form : void 0);
|
|
75
|
+
d_ins_form = db.forms.findOne(d_ins != null ? d_ins.form : void 0);
|
|
76
|
+
// 原申请单的 fields
|
|
77
|
+
o_ins_fields = [];
|
|
78
|
+
// 原子表字段
|
|
79
|
+
o_subtable_fields = [];
|
|
80
|
+
// 分发申请单的 fields
|
|
81
|
+
d_ins_fields = [];
|
|
82
|
+
// 现申请单字表字段
|
|
83
|
+
d_subtable_fields = [];
|
|
84
|
+
// 赋值对应的字段
|
|
85
|
+
column_list = [];
|
|
86
|
+
|
|
87
|
+
// 分发后申请单的 子表值
|
|
88
|
+
d_table_values = [];
|
|
89
|
+
// 查看原申请单是否有对应的子表
|
|
90
|
+
if ((o_ins != null ? o_ins.form_version : void 0) === (o_ins_form != null ? (ref17 = o_ins_form.current) != null ? ref17._id : void 0 : void 0)) {
|
|
91
|
+
o_ins_fields = o_ins_form != null ? (ref18 = o_ins_form.current) != null ? ref18.fields : void 0 : void 0;
|
|
92
|
+
o_ins_fields.forEach(function (o_ins_field) {
|
|
93
|
+
if ((o_ins_field != null ? o_ins_field.type : void 0) === 'table' && (o_ins_field != null ? o_ins_field.code : void 0) === o_table) {
|
|
94
|
+
return o_subtable_fields = o_ins_field != null ? o_ins_field.fields : void 0;
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
} else {
|
|
98
|
+
if ((o_ins_form != null ? (ref19 = o_ins_form.historys) != null ? ref19.length : void 0 : void 0) > 0) {
|
|
99
|
+
o_ins_form.historys.forEach(function (oh) {
|
|
100
|
+
if ((o_ins != null ? o_ins.form_version : void 0) === oh._id) {
|
|
101
|
+
o_ins_fields = oh != null ? oh.fields : void 0;
|
|
102
|
+
return o_ins_fields.forEach(function (o_ins_field) {
|
|
103
|
+
if ((o_ins_field != null ? o_ins_field.type : void 0) === 'table' && (o_ins_field != null ? o_ins_field.code : void 0) === o_table) {
|
|
104
|
+
return o_subtable_fields = o_ins_field != null ? o_ins_field.fields : void 0;
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// 查看分发的申请单是否有对应的字表
|
|
113
|
+
if ((d_ins != null ? d_ins.form_version : void 0) === (d_ins_form != null ? (ref20 = d_ins_form.current) != null ? ref20._id : void 0 : void 0)) {
|
|
114
|
+
d_ins_fields = d_ins_form != null ? (ref21 = d_ins_form.current) != null ? ref21.fields : void 0 : void 0;
|
|
115
|
+
d_ins_fields.forEach(function (d_ins_field) {
|
|
116
|
+
if (((d_ins_field != null ? d_ins_field.type : void 0) === 'table' && (d_ins_field != null ? d_ins_field.code : void 0) === d_table) || (a_table && (d_ins_field != null ? d_ins_field.type : void 0) === 'table' && (d_ins_field != null ? d_ins_field.code : void 0) === a_table)) {
|
|
117
|
+
return d_subtable_fields = d_subtable_fields.concat(d_ins_field != null ? d_ins_field.fields : void 0);
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
} else {
|
|
121
|
+
if ((d_ins_form != null ? (ref22 = d_ins_form.historys) != null ? ref22.length : void 0 : void 0) > 0) {
|
|
122
|
+
d_ins_form.historys.forEach(function (dh) {
|
|
123
|
+
if ((d_ins != null ? d_ins.form_version : void 0) === dh._id) {
|
|
124
|
+
d_ins_fields = dh != null ? dh.fields : void 0;
|
|
125
|
+
return d_ins_fields.forEach(function (d_ins_field) {
|
|
126
|
+
if (((d_ins_field != null ? d_ins_field.type : void 0) === 'table' && (d_ins_field != null ? d_ins_field.code : void 0) === d_table) || (a_table && (d_ins_field != null ? d_ins_field.type : void 0) === 'table' && (d_ins_field != null ? d_ins_field.code : void 0) === a_table)) {
|
|
127
|
+
return d_subtable_fields = d_subtable_fields.concat(d_ins_field != null ? d_ins_field.fields : void 0);
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
if (o_subtable_fields.length === 0) {
|
|
135
|
+
throw new Error('forward table refill error!', '原申请单无对应子表');
|
|
136
|
+
}
|
|
137
|
+
if (d_subtable_fields.length === 0) {
|
|
138
|
+
throw new Error('forward table refill error!', '分发的申请单无对应子表');
|
|
139
|
+
}
|
|
140
|
+
d_table_values = (d_ins != null ? d_ins.values[d_table] : void 0) || [];
|
|
141
|
+
if (a_table) {
|
|
142
|
+
a_table_values = (d_ins != null ? d_ins.values[a_table] : void 0) || [];
|
|
143
|
+
if (a_table_values && (a_table_values != null ? a_table_values.length : void 0) === (d_table_values != null ? d_table_values.length : void 0)) {
|
|
144
|
+
a_table_values.forEach(function (a_row, index) {
|
|
145
|
+
var key, results, value;
|
|
146
|
+
results = [];
|
|
147
|
+
for (key in a_row) {
|
|
148
|
+
value = a_row[key];
|
|
149
|
+
results.push(d_table_values[index][key] = value);
|
|
150
|
+
}
|
|
151
|
+
return results;
|
|
152
|
+
});
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
if (d_table_values.length === 0) {
|
|
156
|
+
throw new Error('forward table refill error!', '分发的申请单子表数据为空');
|
|
157
|
+
}
|
|
158
|
+
o_match_col_fields = o_subtable_fields.filter(function (m) {
|
|
159
|
+
return m.code === o_match_col;
|
|
160
|
+
});
|
|
161
|
+
d_match_col_fields = d_subtable_fields.filter(function (m) {
|
|
162
|
+
return m.code === d_match_col;
|
|
163
|
+
});
|
|
164
|
+
// 匹配列判断
|
|
165
|
+
if (o_match_col_fields.length === 0) {
|
|
166
|
+
throw new Error('forward table refill error!', '原申请单子表无对应匹配列');
|
|
167
|
+
}
|
|
168
|
+
if (d_match_col_fields.length === 0) {
|
|
169
|
+
throw new Error('forward table refill error!', '分发的申请单子表无对应匹配列');
|
|
170
|
+
}
|
|
171
|
+
o_match_col_field = o_match_col_fields[0];
|
|
172
|
+
d_match_col_field = d_match_col_fields[0];
|
|
173
|
+
if ((o_match_col_field != null ? o_match_col_field.type : void 0) !== (d_match_col_field != null ? d_match_col_field.type : void 0)) {
|
|
174
|
+
throw new Error('forward table refill error!', '分发的申请单和原申请单子表的匹配列字段不一致');
|
|
175
|
+
}
|
|
176
|
+
columns.forEach(function (column) {
|
|
177
|
+
var col, cols, d_col, d_col_fields, o_col, o_col_fields;
|
|
178
|
+
cols = column.split('-') || [];
|
|
179
|
+
if (cols.length === 2) {
|
|
180
|
+
o_col = cols[0];
|
|
181
|
+
d_col = cols[1];
|
|
182
|
+
o_col_fields = o_subtable_fields.filter(function (m) {
|
|
183
|
+
return m.code === o_col;
|
|
184
|
+
});
|
|
185
|
+
d_col_fields = d_subtable_fields.filter(function (m) {
|
|
186
|
+
return m.code === d_col;
|
|
187
|
+
});
|
|
188
|
+
// 判断是否有对应的回填列
|
|
189
|
+
if (o_col_fields.length === 0) {
|
|
190
|
+
throw new Error('forward table refill error!', '原申请单子表无对应回填列');
|
|
191
|
+
}
|
|
192
|
+
if (d_col_fields.length === 0) {
|
|
193
|
+
throw new Error('forward table refill error!', '分发的申请单子表无对应回填列');
|
|
194
|
+
}
|
|
195
|
+
if ((o_col_fields != null ? o_col_fields.type : void 0) !== (d_col_fields != null ? d_col_fields.type : void 0)) {
|
|
196
|
+
throw new Error('forward table refill error!', '回填列字段类型不一致');
|
|
197
|
+
}
|
|
198
|
+
col = {
|
|
199
|
+
o_col: o_col,
|
|
200
|
+
d_col: d_col
|
|
201
|
+
};
|
|
202
|
+
return column_list.push(col);
|
|
203
|
+
} else {
|
|
204
|
+
throw new Error('forward table refill error!', '回填列不匹配');
|
|
205
|
+
}
|
|
206
|
+
});
|
|
207
|
+
traces = o_ins != null ? o_ins.traces : void 0;
|
|
208
|
+
// 原申请单的 step
|
|
209
|
+
trace = traces[traces.length - 1];
|
|
210
|
+
// 原申请单的当前步骤
|
|
211
|
+
approve = trace != null ? trace.approves[0] : void 0;
|
|
212
|
+
// 元申请单的当前 value 的 子表
|
|
213
|
+
table_data = (approve != null ? approve.values[o_table] : void 0) || [];
|
|
214
|
+
// 根据 column_list 赋值对应字段进行赋值
|
|
215
|
+
// 循环分发申请单的每行
|
|
216
|
+
d_table_values.forEach(function (d_row) {
|
|
217
|
+
var count, has_obj, row_data;
|
|
218
|
+
// console.log "d_row",d_row
|
|
219
|
+
// 查找匹配的列是否与当前的匹配列一致
|
|
220
|
+
has_obj = false;
|
|
221
|
+
count = -1;
|
|
222
|
+
|
|
223
|
+
// 看原子表是否有该匹配列
|
|
224
|
+
table_data.forEach(function (o_row, index) {
|
|
225
|
+
// console.log "o_row", o_row
|
|
226
|
+
// console.log "index",index
|
|
227
|
+
// console.log "o_row[o_match_col]",o_row[o_match_col]
|
|
228
|
+
// console.log "d_row[d_match_col]",d_row[d_match_col]
|
|
229
|
+
// console.log "o_row[o_match_col] == d_row[d_match_col]",o_row[o_match_col] == d_row[d_match_col]
|
|
230
|
+
if (o_row[o_match_col] === d_row[d_match_col]) {
|
|
231
|
+
has_obj = true;
|
|
232
|
+
return count = index;
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
// 原申请单的匹配字段有值
|
|
236
|
+
// console.log "has_obj",has_obj
|
|
237
|
+
if (has_obj === true) {
|
|
238
|
+
return column_list.forEach(function (col) {
|
|
239
|
+
return table_data[count][col != null ? col.o_col : void 0] = d_row[col != null ? col.d_col : void 0];
|
|
240
|
+
});
|
|
241
|
+
} else {
|
|
242
|
+
row_data = {};
|
|
243
|
+
row_data[o_match_col] = d_row[d_match_col];
|
|
244
|
+
column_list.forEach(function (col) {
|
|
245
|
+
return row_data[col != null ? col.o_col : void 0] = d_row[col != null ? col.d_col : void 0];
|
|
246
|
+
});
|
|
247
|
+
return table_data.push(row_data);
|
|
248
|
+
}
|
|
249
|
+
});
|
|
250
|
+
traces[traces.length - 1].approves[0].values = o_ins != null ? o_ins.values : void 0;
|
|
251
|
+
traces[traces.length - 1].approves[0].values[o_table] = table_data;
|
|
252
|
+
db.instances.update(o_ins_id, {
|
|
253
|
+
$set: {
|
|
254
|
+
'traces': traces
|
|
255
|
+
}
|
|
256
|
+
});
|
|
257
|
+
res.status(200).send({ 'success': '回填成功' });
|
|
258
|
+
} else {
|
|
259
|
+
throw new Error('forward table refill error!', 'webhook未配置子表回填列字段 columns 值');
|
|
260
|
+
}
|
|
261
|
+
} else {
|
|
262
|
+
throw new Error('forward table refill error!', 'webhook未配置匹配列字段 oMatchCol 值');
|
|
263
|
+
}
|
|
264
|
+
} else {
|
|
265
|
+
throw new Error('forward table refill error!', 'webhook未配置原表单子表 oTable 值');
|
|
266
|
+
}
|
|
267
|
+
} else {
|
|
268
|
+
throw new Error('forward table refill error!', '申请单未结束');
|
|
269
|
+
}
|
|
270
|
+
} catch (e) {
|
|
271
|
+
console.error(e);
|
|
272
|
+
res.status(200).send({
|
|
273
|
+
errors: [e]
|
|
274
|
+
});
|
|
275
|
+
}
|
|
276
|
+
}).run()
|
|
277
|
+
} catch (e) {
|
|
278
|
+
res.status(200).send({
|
|
279
|
+
errors: [e]
|
|
280
|
+
});
|
|
281
|
+
}
|
|
282
|
+
});
|
|
283
|
+
exports.default = router;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// @ts-check
|
|
3
|
+
const express = require('express');
|
|
4
|
+
const router = express.Router();
|
|
5
|
+
const { requireAuthentication } = require("@steedos/auth");
|
|
6
|
+
const objectql = require('@steedos/objectql');
|
|
7
|
+
const PermissionManager = require('../manager/permission_manager');
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
@api {post} /api/workflow/instance/:instanceId 查看审批单
|
|
11
|
+
@apiVersion 0.0.0
|
|
12
|
+
@apiName /api/workflow/instance/:instanceId
|
|
13
|
+
@apiGroup service-workflow
|
|
14
|
+
@apiQuery string instanceId 申请单ID
|
|
15
|
+
@apiSuccessExample {json} Success-Response:
|
|
16
|
+
HTTP/1.1 302 OK
|
|
17
|
+
@apiErrorExample {json} Error-Response:
|
|
18
|
+
HTTP/1.1 500 OK
|
|
19
|
+
e.message
|
|
20
|
+
*/
|
|
21
|
+
router.get('/api/workflow/instance/:instanceId', requireAuthentication, async function (req, res) {
|
|
22
|
+
try {
|
|
23
|
+
const userSession = req.user;
|
|
24
|
+
const userId = userSession.userId;
|
|
25
|
+
const insId = req.params.instanceId;
|
|
26
|
+
const insObj = objectql.getObject('instances');
|
|
27
|
+
const catObj = objectql.getObject('categories');
|
|
28
|
+
const spaceObj = objectql.getObject('spaces');
|
|
29
|
+
const insTaskObj = objectql.getObject('instance_tasks');
|
|
30
|
+
const ins = await insObj.findOne(insId);
|
|
31
|
+
if (ins) {
|
|
32
|
+
let box = '';
|
|
33
|
+
let appCode = 'approve_workflow'; // 默认值
|
|
34
|
+
let objectName = 'instances';
|
|
35
|
+
let docId = insId;
|
|
36
|
+
const spaceId = ins.space;
|
|
37
|
+
const flowId = ins.flow;
|
|
38
|
+
const categoryId = ins.category;
|
|
39
|
+
if (categoryId) {
|
|
40
|
+
const catDoc = await catObj.findOne(categoryId);
|
|
41
|
+
if (catDoc && catDoc.app) {
|
|
42
|
+
appCode = catDoc.app; // 查出需要跳转的应用
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
if ((ins.inbox_users && ins.inbox_users.includes(userId)) || (ins.cc_users && ins.cc_users.includes(userId))) {
|
|
46
|
+
box = 'inbox';
|
|
47
|
+
objectName = 'instance_tasks'
|
|
48
|
+
const insTaskDocs = await insTaskObj.find({
|
|
49
|
+
filters: [
|
|
50
|
+
['instance', '=', insId],
|
|
51
|
+
['handler', '=', userId],
|
|
52
|
+
['is_finished', '!=', true]
|
|
53
|
+
],
|
|
54
|
+
fields: ['_id']
|
|
55
|
+
})
|
|
56
|
+
docId = insTaskDocs[0]._id;
|
|
57
|
+
} else if (ins.outbox_users && ins.outbox_users.includes(userId)) {
|
|
58
|
+
const insTaskDocs = await insTaskObj.find({
|
|
59
|
+
filters: [
|
|
60
|
+
['instance', '=', insId],
|
|
61
|
+
['handler', '=', userId],
|
|
62
|
+
['is_finished', '=', true],
|
|
63
|
+
['is_latest_approve', '=', true]
|
|
64
|
+
],
|
|
65
|
+
fields: ['_id']
|
|
66
|
+
})
|
|
67
|
+
if (!_.isEmpty(insTaskDocs)) {
|
|
68
|
+
box = 'outbox';
|
|
69
|
+
objectName = 'instance_tasks'
|
|
70
|
+
docId = insTaskDocs[0]._id;
|
|
71
|
+
}
|
|
72
|
+
} else if (ins.state === 'draft' && ins.submitter === userId) {
|
|
73
|
+
box = 'draft';
|
|
74
|
+
} else if (ins.state === 'pending' && (ins.submitter === userId || ins.applicant === userId)) {
|
|
75
|
+
box = 'pending';
|
|
76
|
+
} else if (ins.state === 'completed' && ins.submitter === userId) {
|
|
77
|
+
box = 'completed';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (!box) {
|
|
81
|
+
// 验证login user_id对该流程有管理、观察申请单的权限
|
|
82
|
+
const permissions = await new Promise((resolve, reject) => {
|
|
83
|
+
Fiber(function () {
|
|
84
|
+
try {
|
|
85
|
+
const permissions = PermissionManager.getFlowPermissions(flowId, userId);
|
|
86
|
+
resolve(permissions);
|
|
87
|
+
} catch (error) {
|
|
88
|
+
reject(error);
|
|
89
|
+
}
|
|
90
|
+
}).run();
|
|
91
|
+
});
|
|
92
|
+
const space = await spaceObj.findOne(spaceId, {
|
|
93
|
+
fields: ['admins']
|
|
94
|
+
});
|
|
95
|
+
if (permissions.includes("admin") || permissions.includes("monitor") || space.admins.includes(userId)) {
|
|
96
|
+
box = 'monitor';
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
let redirectPath = `app/${appCode}/${objectName}/view/${docId}?display=grid&side_object=${objectName}&side_listview_id=${box}`;
|
|
100
|
+
// console.log('redirectPath', redirectPath);
|
|
101
|
+
res.redirect(302, objectql.absoluteUrl(redirectPath));
|
|
102
|
+
} else {
|
|
103
|
+
throw new Error('未找到申请单,请确认。');
|
|
104
|
+
}
|
|
105
|
+
} catch (e) {
|
|
106
|
+
console.error(e);
|
|
107
|
+
res.status(500).send(e.message);
|
|
108
|
+
}
|
|
109
|
+
});
|
|
110
|
+
exports.default = router;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: baozhoutao@steedos.com
|
|
3
|
+
* @Date: 2022-09-15 13:09:51
|
|
4
|
+
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
+
* @LastEditTime: 2022-09-23 11:45:42
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
const express = require("express");
|
|
9
|
+
const router = express.Router();
|
|
10
|
+
const { requireAuthentication } = require("@steedos/auth");
|
|
11
|
+
const _ = require('lodash');
|
|
12
|
+
const Fiber = function(fun){console.log('TODO Fiber...')}
|
|
13
|
+
const objectql = require('@steedos/objectql');
|
|
14
|
+
|
|
15
|
+
router.post('/api/workflow/v2/instance/change/related', requireAuthentication, async function (req, res) {
|
|
16
|
+
try {
|
|
17
|
+
let userSession = req.user;
|
|
18
|
+
const { userId } = userSession;
|
|
19
|
+
const { id, related_instances } = req.body;
|
|
20
|
+
const count = await objectql.getObject('instances').count({filters: [
|
|
21
|
+
['_id', '=', id],
|
|
22
|
+
[
|
|
23
|
+
['submitter', '=', userId],
|
|
24
|
+
'or',
|
|
25
|
+
['applicant', '=', userId],
|
|
26
|
+
'or',
|
|
27
|
+
['inbox_users', '=', userId],
|
|
28
|
+
'or',
|
|
29
|
+
['cc_users', '=', userId]
|
|
30
|
+
]
|
|
31
|
+
]})
|
|
32
|
+
if(count > 0){
|
|
33
|
+
const record = await objectql.getObject('instances').update(id, {
|
|
34
|
+
related_instances: related_instances,
|
|
35
|
+
modified: new Date(),
|
|
36
|
+
modified_by: userId
|
|
37
|
+
})
|
|
38
|
+
return res.status(200).send({
|
|
39
|
+
'instance': record
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
res.status(500).send({
|
|
44
|
+
error: 'No permission'
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
} catch (error) {
|
|
48
|
+
console.error(error);
|
|
49
|
+
res.status(500).send({
|
|
50
|
+
error: error.message
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
exports.default = router;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 孙浩林 sunhaolin@steedos.com
|
|
3
|
+
* @Date: 2023-11-23 15:01:55
|
|
4
|
+
* @LastEditors: 孙浩林 sunhaolin@steedos.com
|
|
5
|
+
* @LastEditTime: 2023-11-23 15:11:50
|
|
6
|
+
* @FilePath: /steedos-platform-2.3/services/service-workflow/main/default/routes/api_workflow_instance_check_is_removed.router.js
|
|
7
|
+
* @Description:
|
|
8
|
+
*/
|
|
9
|
+
'use strict';
|
|
10
|
+
// @ts-check
|
|
11
|
+
const express = require('express');
|
|
12
|
+
const router = express.Router();
|
|
13
|
+
const { requireAuthentication } = require("@steedos/auth");
|
|
14
|
+
const objectql = require('@steedos/objectql');
|
|
15
|
+
/**
|
|
16
|
+
@api {post} /api/workflow/instance/check_is_removed/:instanceId 检查申请单是否已被删除,及删除后处理相关数据
|
|
17
|
+
@apiVersion 0.0.0
|
|
18
|
+
@apiName /api/workflow/instance/check_is_removed/:instanceId
|
|
19
|
+
@apiGroup service-workflow
|
|
20
|
+
@apiQuery string instanceId 申请单ID
|
|
21
|
+
@apiSuccessExample {json} Success-Response:
|
|
22
|
+
HTTP/1.1 302 OK
|
|
23
|
+
@apiErrorExample {json} Error-Response:
|
|
24
|
+
HTTP/1.1 500 OK
|
|
25
|
+
e.message
|
|
26
|
+
*/
|
|
27
|
+
router.post('/api/workflow/instance/check_is_removed/:instanceId', requireAuthentication, async function (req, res) {
|
|
28
|
+
try {
|
|
29
|
+
const insId = req.params.instanceId;
|
|
30
|
+
const { objectName, recordId } = req.body;
|
|
31
|
+
const insObj = objectql.getObject('instances');
|
|
32
|
+
const ins = await insObj.findOne(insId);
|
|
33
|
+
if (!ins) {
|
|
34
|
+
// 申请单不存在,清空台账记录中的records等信息
|
|
35
|
+
const recordObj = objectql.getObject(objectName);
|
|
36
|
+
await recordObj.directUpdate(recordId, {
|
|
37
|
+
"instances": null,
|
|
38
|
+
"instance_state": null,
|
|
39
|
+
"locked": null
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
return res.status(500).send({
|
|
43
|
+
"status": -1,
|
|
44
|
+
"msg": "未找到申请单,请确认。",
|
|
45
|
+
"data": {}
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
res.status(200).send({
|
|
49
|
+
"status": 0,
|
|
50
|
+
"msg": "存在申请单",
|
|
51
|
+
"data": {}
|
|
52
|
+
});
|
|
53
|
+
} catch (e) {
|
|
54
|
+
console.error(e);
|
|
55
|
+
res.status(500).send(e.message);
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
exports.default = router;
|