@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,1171 @@
|
|
|
1
|
+
// 审批单同步到台账
|
|
2
|
+
|
|
3
|
+
const objectql = require('@steedos/objectql');
|
|
4
|
+
|
|
5
|
+
async function getCollection(name) {
|
|
6
|
+
const adapter = objectql.getDataSource('default').adapter
|
|
7
|
+
await adapter.connect()
|
|
8
|
+
return adapter.collection(name)
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const InstanceRecordQueue = {};
|
|
12
|
+
|
|
13
|
+
async function init(){
|
|
14
|
+
const adapter = objectql.getDataSource('default').adapter
|
|
15
|
+
await adapter.connect()
|
|
16
|
+
InstanceRecordQueue.collection = adapter.collection('instance_record_queue')
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
init()
|
|
20
|
+
|
|
21
|
+
var runQuoted = async function (objectName, recordId) {
|
|
22
|
+
await objectql.runQuotedByObjectFieldFormulas(objectName, recordId);
|
|
23
|
+
await objectql.runQuotedByObjectFieldSummaries(objectName, recordId);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const getObjectFields = async function (objectApiName) {
|
|
27
|
+
return await objectql.getObject(objectApiName).getFields()
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const getObjectNameFieldKey = async function (objectApiName) {
|
|
31
|
+
return await objectql.getObject(objectApiName).getNameFieldKey()
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const getObjectConfig = async function (objectApiName) {
|
|
35
|
+
return await objectql.getObject(objectApiName).toConfig()
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const makeNewID = async function (objectApiName) {
|
|
39
|
+
return await objectql.getObject(objectApiName)._makeNewID()
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const objectInsert = async function (objectApiName, data) {
|
|
43
|
+
return await objectql.getObject(objectApiName).insert(data)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const objectUpdate = async function (objectApiName, id, data) {
|
|
47
|
+
return await objectql.getObject(objectApiName).update(id, data);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const objectUpdateMany = async function (objectApiName, filters, data) {
|
|
51
|
+
return await objectql.getObject(objectApiName).updateMany(filters, data);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const objectRemove = async function (objectApiName, id) {
|
|
55
|
+
return await objectql.getObject(objectApiName).delete(id);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const getRelateds = async function (objectApiName) {
|
|
59
|
+
return await objectql.getObject(objectApiName).getRelateds();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const objectFindOne = async function (objectApiName, query) {
|
|
63
|
+
const result = await objectql.getObject(objectApiName).find(query);
|
|
64
|
+
if (result && result.length > 0) {
|
|
65
|
+
return result[0];
|
|
66
|
+
}
|
|
67
|
+
return null;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const objectFind = async function (objectApiName, query) {
|
|
71
|
+
return await objectql.getObject(objectApiName).find(query);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
var _eval = require('eval');
|
|
75
|
+
var isConfigured = false;
|
|
76
|
+
|
|
77
|
+
var sendWorker = function (task, interval) {
|
|
78
|
+
if (InstanceRecordQueue.debug) {
|
|
79
|
+
console.log('InstanceRecordQueue: Send worker started, using interval: ' + interval);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return setInterval(async function () {
|
|
83
|
+
try {
|
|
84
|
+
await task();
|
|
85
|
+
} catch (error) {
|
|
86
|
+
console.log('InstanceRecordQueue: Error while sending: ', error);
|
|
87
|
+
}
|
|
88
|
+
}, interval);
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
const getRelatedObjectField = function (relatedObjectsKeys, key) {
|
|
92
|
+
return _.find(relatedObjectsKeys, function (relatedObjectsKey) {
|
|
93
|
+
return key.startsWith(relatedObjectsKey + '.');
|
|
94
|
+
})
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
const getFormTableField = function (formTableFieldsCode, key) {
|
|
98
|
+
return _.find(formTableFieldsCode, function (formTableFieldCode) {
|
|
99
|
+
return key.startsWith(formTableFieldCode + '.');
|
|
100
|
+
})
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
const getFormField = function (_formFields, _fieldCode) {
|
|
104
|
+
var formField = null;
|
|
105
|
+
_.each(_formFields, function (ff) {
|
|
106
|
+
if (!formField) {
|
|
107
|
+
if (ff.code === _fieldCode) {
|
|
108
|
+
formField = ff;
|
|
109
|
+
} else if (ff.type === 'section') {
|
|
110
|
+
_.each(ff.fields, function (f) {
|
|
111
|
+
if (!formField) {
|
|
112
|
+
if (f.code === _fieldCode) {
|
|
113
|
+
formField = f;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
})
|
|
117
|
+
} else if (ff.type === 'table') {
|
|
118
|
+
_.each(ff.fields, function (f) {
|
|
119
|
+
if (!formField) {
|
|
120
|
+
if (f.code === _fieldCode) {
|
|
121
|
+
formField = f;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
})
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
});
|
|
128
|
+
return formField;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const getFileFieldValue = async function (recordFieldId, fType) {
|
|
132
|
+
var collection, files, query, value;
|
|
133
|
+
if (_.isEmpty(recordFieldId)) {
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
if (fType === 'image') {
|
|
137
|
+
collection = 'images';
|
|
138
|
+
} else if (fType === 'file') {
|
|
139
|
+
collection = 'files';
|
|
140
|
+
}
|
|
141
|
+
if (_.isString(recordFieldId)) {
|
|
142
|
+
query = {
|
|
143
|
+
_id: {
|
|
144
|
+
$in: [recordFieldId]
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
} else {
|
|
148
|
+
query = {
|
|
149
|
+
_id: {
|
|
150
|
+
$in: recordFieldId
|
|
151
|
+
}
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
//TODO 同步附
|
|
156
|
+
console.log('TODO, 同步附件')
|
|
157
|
+
value = [];
|
|
158
|
+
// files = await Creator.Collections["cfs." + collection + ".filerecord"].find(query).toArray();
|
|
159
|
+
// for (const f of files) {
|
|
160
|
+
// console.log('TODO, 同步附件')
|
|
161
|
+
// var newFile;
|
|
162
|
+
// newFile = new FS.File();
|
|
163
|
+
// await new Promise((resolve, reject) => {
|
|
164
|
+
// newFile.attachData(f.createReadStream('files'), {
|
|
165
|
+
// type: f.original.type
|
|
166
|
+
// }, function (err) {
|
|
167
|
+
// if (err) return reject(err);
|
|
168
|
+
// var metadata;
|
|
169
|
+
// newFile.name(f.name());
|
|
170
|
+
// newFile.size(f.size());
|
|
171
|
+
// metadata = {
|
|
172
|
+
// owner: f.metadata.owner
|
|
173
|
+
// };
|
|
174
|
+
// newFile.metadata = metadata;
|
|
175
|
+
// newFile._id = Creator.Collections.instances._makeNewID();
|
|
176
|
+
// cfs[collection].insert(newFile);
|
|
177
|
+
// value.push(newFile._id);
|
|
178
|
+
// resolve();
|
|
179
|
+
// });
|
|
180
|
+
// });
|
|
181
|
+
// }
|
|
182
|
+
if (value.length > 0) {
|
|
183
|
+
if (_.isString(recordFieldId)) {
|
|
184
|
+
return value[0];
|
|
185
|
+
} else {
|
|
186
|
+
return value;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
const getRecordFieldValue = async function (oField, wField, ofValue, wfValue, spaceId, enableAmisform) {
|
|
192
|
+
if (enableAmisform && wField.steedos_field) {
|
|
193
|
+
return wfValue
|
|
194
|
+
}
|
|
195
|
+
let value;
|
|
196
|
+
var oFieldType = oField.data_type || oField.type;
|
|
197
|
+
// 表单选人选组字段 至 对象 lookup master_detail类型字段同步
|
|
198
|
+
if (['user', 'group'].includes(wField.type) && ['lookup', 'master_detail'].includes(oFieldType)
|
|
199
|
+
&& (['users', 'organizations'].includes(oField.reference_to) || ('space_users' == oField.reference_to && 'user' == oField.reference_to_field))) {
|
|
200
|
+
if (!_.isEmpty(wfValue)) {
|
|
201
|
+
if (oField.multiple && wField.is_multiselect) {
|
|
202
|
+
value = _.compact(_.pluck(wfValue, 'id'))
|
|
203
|
+
} else if (!oField.multiple && !wField.is_multiselect) {
|
|
204
|
+
value = wfValue.id
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
else if (!oField.multiple && ['lookup', 'master_detail'].includes(oFieldType) && _.isString(oField.reference_to) && _.isString(wfValue)) {
|
|
209
|
+
var oCollection = objectql.getObject(oField.reference_to)
|
|
210
|
+
var referObjectNameFieldKey = await getObjectNameFieldKey(oField.reference_to);
|
|
211
|
+
if (oCollection && referObjectNameFieldKey) {
|
|
212
|
+
// 先认为此值是referObject _id字段值
|
|
213
|
+
let referToField = oField.reference_to_field || '_id'
|
|
214
|
+
var referData = await objectFindOne(oField.reference_to, { filters: [[referToField, '=', wfValue]], fields: [referToField] });
|
|
215
|
+
if (referData) {
|
|
216
|
+
value = referData[referToField];
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// 其次认为此值是referObject NAME_FIELD_KEY值
|
|
220
|
+
if (!referData) {
|
|
221
|
+
var nameFieldKey = referObjectNameFieldKey;
|
|
222
|
+
var referData = await objectFindOne(oField.reference_to, { filters: [['space', '=', spaceId], [nameFieldKey, '=', wfValue]], fields: ['_id'] });
|
|
223
|
+
if (referData) {
|
|
224
|
+
value = referData._id;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
else if (oFieldType === "boolean") {
|
|
230
|
+
var tmp_field_value = wfValue;
|
|
231
|
+
if (['true', '是'].includes(tmp_field_value)) {
|
|
232
|
+
value = true;
|
|
233
|
+
} else if (['false', '否'].includes(tmp_field_value)) {
|
|
234
|
+
value = false;
|
|
235
|
+
} else {
|
|
236
|
+
value = tmp_field_value;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
else if (oFieldType === 'number' || oFieldType === 'currency' || oFieldType === 'percent') {
|
|
240
|
+
if (typeof (Number(wfValue)) === 'number' && !isNaN(Number(wfValue))) {
|
|
241
|
+
value = Number(wfValue);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
else if (['lookup', 'master_detail'].includes(oFieldType) && wField.type === 'odata') {
|
|
245
|
+
let referToField = oField.reference_to_field || '_id'
|
|
246
|
+
if (oField.multiple && wField.is_multiselect) {
|
|
247
|
+
value = _.compact(_.pluck(wfValue, referToField))
|
|
248
|
+
} else if (!oField.multiple && !wField.is_multiselect) {
|
|
249
|
+
if (!_.isEmpty(wfValue)) {
|
|
250
|
+
value = wfValue[referToField]
|
|
251
|
+
}
|
|
252
|
+
} else {
|
|
253
|
+
value = wfValue;
|
|
254
|
+
}
|
|
255
|
+
} else if (oFieldType == 'image' && wField.type == 'image') {
|
|
256
|
+
var ids = ofValue;
|
|
257
|
+
if (_.isString(ids)) {
|
|
258
|
+
ids = [ids];
|
|
259
|
+
}
|
|
260
|
+
if (ids) {
|
|
261
|
+
await new Promise((resolve, reject) => {
|
|
262
|
+
cfs.images.remove({
|
|
263
|
+
'_id': { $in: ids }
|
|
264
|
+
}, function(err) {
|
|
265
|
+
if (err) return reject(err);
|
|
266
|
+
resolve();
|
|
267
|
+
});
|
|
268
|
+
});
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
value = await getFileFieldValue(wfValue, 'image')
|
|
272
|
+
|
|
273
|
+
} else if (oFieldType == 'file' && wField.type == 'file') {
|
|
274
|
+
var ids = ofValue;
|
|
275
|
+
if (_.isString(ids)) {
|
|
276
|
+
ids = [ids];
|
|
277
|
+
}
|
|
278
|
+
if (ids) {
|
|
279
|
+
await new Promise((resolve, reject) => {
|
|
280
|
+
cfs.files.remove({
|
|
281
|
+
'_id': { $in: ids }
|
|
282
|
+
}, function(err) {
|
|
283
|
+
if (err) return reject(err);
|
|
284
|
+
resolve();
|
|
285
|
+
});
|
|
286
|
+
});
|
|
287
|
+
}
|
|
288
|
+
value = await getFileFieldValue(wfValue, 'file')
|
|
289
|
+
} else if (['lookup', 'master_detail'].includes(oFieldType) && wField.type == 'lookup') {
|
|
290
|
+
value = wfValue ? wfValue : null
|
|
291
|
+
}
|
|
292
|
+
// 日期、日期时间
|
|
293
|
+
else if (oFieldType === 'date' || oFieldType === 'datetime' || oFieldType === 'time') {
|
|
294
|
+
if (wfValue && _.isDate(new Date(wfValue))) {
|
|
295
|
+
value = new Date(wfValue);
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
else if (oField.multiple && oFieldType == 'select' && wField.type == 'multiSelect') {
|
|
299
|
+
value = wfValue ? wfValue.split(',') : null;
|
|
300
|
+
}
|
|
301
|
+
else {
|
|
302
|
+
value = wfValue;
|
|
303
|
+
}
|
|
304
|
+
return value;
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
const updateLookupOrMasterDetailFieldValues = async function (field_map_back, values, ins, objectInfo, record) {
|
|
308
|
+
var field_map_back = field_map_back || [];
|
|
309
|
+
var objectFields = objectInfo.fields;
|
|
310
|
+
|
|
311
|
+
for (const fm of field_map_back) {
|
|
312
|
+
if (values.hasOwnProperty(fm.workflow_field)) {
|
|
313
|
+
if (fm.object_field.indexOf('.') > -1) {
|
|
314
|
+
var temObjFields = fm.object_field.split('.');
|
|
315
|
+
if (temObjFields.length === 2) {
|
|
316
|
+
var objField = temObjFields[0];
|
|
317
|
+
var referObjField = temObjFields[1];
|
|
318
|
+
var oField = objectFields[objField];
|
|
319
|
+
if (oField && !oField.multiple && ['lookup', 'master_detail'].includes(oField.type) && _.isString(oField.reference_to)) {
|
|
320
|
+
var oCollection = objectql.getObject(oField.reference_to)
|
|
321
|
+
if (oCollection && record && record[objField]) {
|
|
322
|
+
var referSetObj = {};
|
|
323
|
+
referSetObj[referObjField] = values[fm.workflow_field];
|
|
324
|
+
await objectUpdate(oField.reference_to, record[objField], referSetObj)
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
} else if (fm.workflow_field.startsWith('instance.')) {
|
|
330
|
+
var insField = fm.workflow_field.split('instance.')[1];
|
|
331
|
+
if (InstanceRecordQueue.syncInsFields.includes(insField)) {
|
|
332
|
+
if (fm.object_field.indexOf('.') > -1) {
|
|
333
|
+
var temObjFields = fm.object_field.split('.');
|
|
334
|
+
if (temObjFields.length === 2) {
|
|
335
|
+
var objField = temObjFields[0];
|
|
336
|
+
var referObjField = temObjFields[1];
|
|
337
|
+
var oField = objectFields[objField];
|
|
338
|
+
if (oField && !oField.multiple && ['lookup', 'master_detail'].includes(oField.type) && _.isString(oField.reference_to)) {
|
|
339
|
+
var oCollection = objectql.getObject(oField.reference_to)
|
|
340
|
+
if (oCollection && record && record[objField]) {
|
|
341
|
+
var referSetObj = {};
|
|
342
|
+
referSetObj[referObjField] = ins[insField];
|
|
343
|
+
await objectUpdate(oField.reference_to, record[objField], referSetObj)
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
InstanceRecordQueue.Configure = function (options) {
|
|
354
|
+
var self = this;
|
|
355
|
+
options = _.extend({
|
|
356
|
+
sendTimeout: 60000, // Timeout period
|
|
357
|
+
}, options);
|
|
358
|
+
|
|
359
|
+
// Block multiple calls
|
|
360
|
+
if (isConfigured) {
|
|
361
|
+
throw new Error('InstanceRecordQueue.Configure should not be called more than once!');
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
isConfigured = true;
|
|
365
|
+
|
|
366
|
+
// Add debug info
|
|
367
|
+
if (InstanceRecordQueue.debug) {
|
|
368
|
+
console.log('InstanceRecordQueue.Configure', options);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
// Universal send function
|
|
372
|
+
var _querySend = function (doc) {
|
|
373
|
+
if (InstanceRecordQueue.sendDoc) {
|
|
374
|
+
InstanceRecordQueue.sendDoc(doc);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
return {
|
|
378
|
+
doc: [doc._id]
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
|
|
382
|
+
self.serverSend = function (doc) {
|
|
383
|
+
doc = doc || {};
|
|
384
|
+
return _querySend(doc);
|
|
385
|
+
};
|
|
386
|
+
|
|
387
|
+
var isSendingDoc = false;
|
|
388
|
+
|
|
389
|
+
if (options.sendInterval !== null) {
|
|
390
|
+
var sendDoc = async function (doc) {
|
|
391
|
+
// Reserve doc
|
|
392
|
+
var now = +new Date();
|
|
393
|
+
var timeoutAt = now + options.sendTimeout;
|
|
394
|
+
var reserved = await InstanceRecordQueue.collection.update({
|
|
395
|
+
_id: doc._id,
|
|
396
|
+
sent: false, // xxx: need to make sure this is set on create
|
|
397
|
+
sending: {
|
|
398
|
+
$lt: now
|
|
399
|
+
}
|
|
400
|
+
}, {
|
|
401
|
+
$set: {
|
|
402
|
+
sending: timeoutAt,
|
|
403
|
+
}
|
|
404
|
+
});
|
|
405
|
+
|
|
406
|
+
// Make sure we only handle docs reserved by this instance
|
|
407
|
+
if (reserved) {
|
|
408
|
+
// Send
|
|
409
|
+
var result = await self.serverSend(doc);
|
|
410
|
+
|
|
411
|
+
if (!options.keepDocs) {
|
|
412
|
+
// Pr. Default we will remove docs
|
|
413
|
+
await InstanceRecordQueue.collection.remove({
|
|
414
|
+
_id: doc._id
|
|
415
|
+
});
|
|
416
|
+
} else {
|
|
417
|
+
// Update
|
|
418
|
+
await InstanceRecordQueue.collection.update({
|
|
419
|
+
_id: doc._id
|
|
420
|
+
}, {
|
|
421
|
+
$set: {
|
|
422
|
+
// Mark as sent
|
|
423
|
+
sent: true,
|
|
424
|
+
// Set the sent date
|
|
425
|
+
sentAt: new Date(),
|
|
426
|
+
// Not being sent anymore
|
|
427
|
+
sending: 0
|
|
428
|
+
}
|
|
429
|
+
});
|
|
430
|
+
}
|
|
431
|
+
} // Else could not reserve
|
|
432
|
+
}; // EO sendDoc
|
|
433
|
+
|
|
434
|
+
sendWorker(async function () {
|
|
435
|
+
if (isSendingDoc) {
|
|
436
|
+
return;
|
|
437
|
+
}
|
|
438
|
+
// Set send fence
|
|
439
|
+
isSendingDoc = true;
|
|
440
|
+
|
|
441
|
+
var batchSize = options.sendBatchSize || 1;
|
|
442
|
+
|
|
443
|
+
var now = +new Date();
|
|
444
|
+
|
|
445
|
+
// Find docs that are not being or already sent
|
|
446
|
+
var pendingDocs = await InstanceRecordQueue.collection.find({
|
|
447
|
+
$and: [
|
|
448
|
+
// Message is not sent
|
|
449
|
+
{
|
|
450
|
+
sent: false
|
|
451
|
+
},
|
|
452
|
+
// And not being sent by other instances
|
|
453
|
+
{
|
|
454
|
+
sending: {
|
|
455
|
+
$lt: now
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
// And no error
|
|
459
|
+
{
|
|
460
|
+
errMsg: {
|
|
461
|
+
$exists: false
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
]
|
|
465
|
+
}, {
|
|
466
|
+
// Sort by created date
|
|
467
|
+
sort: {
|
|
468
|
+
createdAt: 1
|
|
469
|
+
},
|
|
470
|
+
limit: batchSize
|
|
471
|
+
}).toArray();
|
|
472
|
+
for (const doc of pendingDocs) {
|
|
473
|
+
try {
|
|
474
|
+
await sendDoc(doc);
|
|
475
|
+
} catch (error) {
|
|
476
|
+
console.error(error.stack);
|
|
477
|
+
console.log('InstanceRecordQueue: Could not send doc id: "' + doc._id + '", Error: ' + error.message);
|
|
478
|
+
await InstanceRecordQueue.collection.update({
|
|
479
|
+
_id: doc._id
|
|
480
|
+
}, {
|
|
481
|
+
$set: {
|
|
482
|
+
// error message
|
|
483
|
+
errMsg: error.message
|
|
484
|
+
}
|
|
485
|
+
});
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
// Remove the send fence
|
|
490
|
+
isSendingDoc = false;
|
|
491
|
+
}, options.sendInterval || 15000); // Default every 15th sec
|
|
492
|
+
} else {
|
|
493
|
+
if (InstanceRecordQueue.debug) {
|
|
494
|
+
console.log('InstanceRecordQueue: Send server is disabled');
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
};
|
|
498
|
+
|
|
499
|
+
//TODO 同步附件
|
|
500
|
+
InstanceRecordQueue.syncAttach = async function (sync_attachment, insId, spaceId, newRecordId, objectName) {
|
|
501
|
+
console.log(`TODO 同步附件 syncAttach`)
|
|
502
|
+
// if (sync_attachment == "lastest") {
|
|
503
|
+
// const files = await cfs.instances.find({
|
|
504
|
+
// 'metadata.instance': insId,
|
|
505
|
+
// 'metadata.current': true
|
|
506
|
+
// }).toArray();
|
|
507
|
+
|
|
508
|
+
// for (const f of files) {
|
|
509
|
+
// if (!f.hasStored('instances')) {
|
|
510
|
+
// console.error('syncAttach-file not stored: ', f._id);
|
|
511
|
+
// continue;
|
|
512
|
+
// }
|
|
513
|
+
// var newFile = new FS.File(),
|
|
514
|
+
// cmsFileId = Creator.getCollection('cms_files')._makeNewID();
|
|
515
|
+
|
|
516
|
+
// await new Promise((resolve, reject) => {
|
|
517
|
+
// newFile.attachData(f.createReadStream('instances'), {
|
|
518
|
+
// type: f.original.type
|
|
519
|
+
// }, function (err) {
|
|
520
|
+
// if (err) return reject(err);
|
|
521
|
+
// newFile.name(f.name());
|
|
522
|
+
// newFile.size(f.size());
|
|
523
|
+
// var metadata = {
|
|
524
|
+
// owner: f.metadata.owner,
|
|
525
|
+
// owner_name: f.metadata.owner_name,
|
|
526
|
+
// space: spaceId,
|
|
527
|
+
// record_id: newRecordId,
|
|
528
|
+
// object_name: objectName,
|
|
529
|
+
// parent: cmsFileId
|
|
530
|
+
// };
|
|
531
|
+
|
|
532
|
+
// newFile.metadata = metadata;
|
|
533
|
+
// cfs.files.insert(newFile);
|
|
534
|
+
// resolve();
|
|
535
|
+
// });
|
|
536
|
+
// });
|
|
537
|
+
|
|
538
|
+
// await new Promise((resolve, reject) => {
|
|
539
|
+
// newFile.once('stored', function (storeName) {
|
|
540
|
+
// Creator.getCollection('cms_files').insert({
|
|
541
|
+
// _id: cmsFileId,
|
|
542
|
+
// parent: {
|
|
543
|
+
// o: objectName,
|
|
544
|
+
// ids: [newRecordId]
|
|
545
|
+
// },
|
|
546
|
+
// size: newFile.size(),
|
|
547
|
+
// name: newFile.name(),
|
|
548
|
+
// extention: newFile.extension(),
|
|
549
|
+
// space: spaceId,
|
|
550
|
+
// versions: [newFile._id],
|
|
551
|
+
// owner: f.metadata.owner,
|
|
552
|
+
// created_by: f.metadata.owner,
|
|
553
|
+
// modified_by: f.metadata.owner
|
|
554
|
+
// });
|
|
555
|
+
// resolve();
|
|
556
|
+
// });
|
|
557
|
+
// newFile.once('error', function (error) {
|
|
558
|
+
// console.error('syncAttach-error: ', error);
|
|
559
|
+
// reject(error);
|
|
560
|
+
// });
|
|
561
|
+
// });
|
|
562
|
+
// }
|
|
563
|
+
// } else if (sync_attachment == "all") {
|
|
564
|
+
// var parents = [];
|
|
565
|
+
// const files = await cfs.instances.find({
|
|
566
|
+
// 'metadata.instance': insId
|
|
567
|
+
// }).toArray();
|
|
568
|
+
|
|
569
|
+
// for (const f of files) {
|
|
570
|
+
// if (!f.hasStored('instances')) {
|
|
571
|
+
// console.error('syncAttach-file not stored: ', f._id);
|
|
572
|
+
// continue;
|
|
573
|
+
// }
|
|
574
|
+
// var newFile = new FS.File(),
|
|
575
|
+
// cmsFileId = f.metadata.parent;
|
|
576
|
+
|
|
577
|
+
// if (!parents.includes(cmsFileId)) {
|
|
578
|
+
// parents.push(cmsFileId);
|
|
579
|
+
// await Creator.getCollection('cms_files').insert({
|
|
580
|
+
// _id: cmsFileId,
|
|
581
|
+
// parent: {
|
|
582
|
+
// o: objectName,
|
|
583
|
+
// ids: [newRecordId]
|
|
584
|
+
// },
|
|
585
|
+
// space: spaceId,
|
|
586
|
+
// versions: [],
|
|
587
|
+
// owner: f.metadata.owner,
|
|
588
|
+
// created_by: f.metadata.owner,
|
|
589
|
+
// modified_by: f.metadata.owner
|
|
590
|
+
// });
|
|
591
|
+
// }
|
|
592
|
+
|
|
593
|
+
// await new Promise((resolve, reject) => {
|
|
594
|
+
// newFile.attachData(f.createReadStream('instances'), {
|
|
595
|
+
// type: f.original.type
|
|
596
|
+
// }, function (err) {
|
|
597
|
+
// if (err) return reject(err);
|
|
598
|
+
// newFile.name(f.name());
|
|
599
|
+
// newFile.size(f.size());
|
|
600
|
+
// var metadata = {
|
|
601
|
+
// owner: f.metadata.owner,
|
|
602
|
+
// owner_name: f.metadata.owner_name,
|
|
603
|
+
// space: spaceId,
|
|
604
|
+
// record_id: newRecordId,
|
|
605
|
+
// object_name: objectName,
|
|
606
|
+
// parent: cmsFileId
|
|
607
|
+
// };
|
|
608
|
+
|
|
609
|
+
// newFile.metadata = metadata;
|
|
610
|
+
// cfs.files.insert(newFile);
|
|
611
|
+
// resolve();
|
|
612
|
+
// });
|
|
613
|
+
// });
|
|
614
|
+
|
|
615
|
+
// await new Promise((resolve, reject) => {
|
|
616
|
+
// newFile.once('stored', function (storeName) {
|
|
617
|
+
// if (f.metadata.current == true) {
|
|
618
|
+
// Creator.getCollection('cms_files').update(cmsFileId, {
|
|
619
|
+
// $set: {
|
|
620
|
+
// size: newFile.size(),
|
|
621
|
+
// name: newFile.name(),
|
|
622
|
+
// extention: newFile.extension(),
|
|
623
|
+
// },
|
|
624
|
+
// $addToSet: {
|
|
625
|
+
// versions: newFile._id
|
|
626
|
+
// }
|
|
627
|
+
// });
|
|
628
|
+
// } else {
|
|
629
|
+
// Creator.getCollection('cms_files').update(cmsFileId, {
|
|
630
|
+
// $addToSet: {
|
|
631
|
+
// versions: newFile._id
|
|
632
|
+
// },
|
|
633
|
+
// $set: {
|
|
634
|
+
// modified: new Date()
|
|
635
|
+
// }
|
|
636
|
+
// });
|
|
637
|
+
// }
|
|
638
|
+
// resolve();
|
|
639
|
+
// });
|
|
640
|
+
// newFile.once('error', function (error) {
|
|
641
|
+
// console.error('syncAttach-error: ', error);
|
|
642
|
+
// reject(error);
|
|
643
|
+
// });
|
|
644
|
+
// });
|
|
645
|
+
// }
|
|
646
|
+
// }
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
InstanceRecordQueue.syncInsFields = ['name', 'submitter_name', 'applicant_name', 'applicant_organization_name', 'applicant_organization_fullname', 'state',
|
|
650
|
+
'current_step_name', 'flow_name', 'category_name', 'submit_date', 'finish_date', 'final_decision', 'applicant_organization', 'applicant_company'
|
|
651
|
+
];
|
|
652
|
+
|
|
653
|
+
InstanceRecordQueue.syncValues = async function (field_map_back, values, ins, objectInfo, field_map_back_script, record, enableAmisform) {
|
|
654
|
+
var
|
|
655
|
+
obj = {},
|
|
656
|
+
tableFieldCodes = [],
|
|
657
|
+
tableFieldMap = [],
|
|
658
|
+
tableToRelatedMap = {};
|
|
659
|
+
|
|
660
|
+
field_map_back = field_map_back || [];
|
|
661
|
+
|
|
662
|
+
var spaceId = ins.space;
|
|
663
|
+
|
|
664
|
+
var form = await objectql.getObject("forms").findOne(ins.form);
|
|
665
|
+
var formFields = null;
|
|
666
|
+
if (form.current._id === ins.form_version) {
|
|
667
|
+
formFields = form.current.fields || [];
|
|
668
|
+
} else {
|
|
669
|
+
var formVersion = _.find(form.historys, function (h) {
|
|
670
|
+
return h._id === ins.form_version;
|
|
671
|
+
})
|
|
672
|
+
formFields = formVersion ? formVersion.fields : [];
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
var objectFields = objectInfo.fields;
|
|
676
|
+
var objectFieldKeys = _.keys(objectFields);
|
|
677
|
+
var relatedObjects = await getRelateds(objectInfo.name);
|
|
678
|
+
var relatedObjectsKeys = _.pluck(relatedObjects, 'object_name');
|
|
679
|
+
var formTableFields = _.filter(formFields, function (formField) {
|
|
680
|
+
return formField.type === 'table'
|
|
681
|
+
});
|
|
682
|
+
var formTableFieldsCode = _.pluck(formTableFields, 'code');
|
|
683
|
+
|
|
684
|
+
for (const fm of field_map_back) {
|
|
685
|
+
//workflow 的子表到creator object 的相关对象
|
|
686
|
+
var relatedObjectField = getRelatedObjectField(relatedObjectsKeys, fm.object_field);
|
|
687
|
+
var formTableField = getFormTableField(formTableFieldsCode, fm.workflow_field);
|
|
688
|
+
if (relatedObjectField) {
|
|
689
|
+
var oTableCode = fm.object_field.split('.')[0];
|
|
690
|
+
var oTableFieldCode = fm.object_field.split('.')[1];
|
|
691
|
+
var tableToRelatedMapKey = oTableCode;
|
|
692
|
+
if (!tableToRelatedMap[tableToRelatedMapKey]) {
|
|
693
|
+
tableToRelatedMap[tableToRelatedMapKey] = {}
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
if (formTableField) {
|
|
697
|
+
var wTableCode = fm.workflow_field.split('.')[0];
|
|
698
|
+
tableToRelatedMap[tableToRelatedMapKey]['_FROM_TABLE_CODE'] = wTableCode
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
tableToRelatedMap[tableToRelatedMapKey][oTableFieldCode] = fm.workflow_field
|
|
702
|
+
}
|
|
703
|
+
// 判断是否是子表字段
|
|
704
|
+
else if (fm.workflow_field.indexOf('.$.') > 0 && fm.object_field.indexOf('.$.') > 0) {
|
|
705
|
+
var wTableCode = fm.workflow_field.split('.$.')[0];
|
|
706
|
+
var oTableCode = fm.object_field.split('.$.')[0];
|
|
707
|
+
if (values.hasOwnProperty(wTableCode) && _.isArray(values[wTableCode])) {
|
|
708
|
+
tableFieldCodes.push(JSON.stringify({
|
|
709
|
+
workflow_table_field_code: wTableCode,
|
|
710
|
+
object_table_field_code: oTableCode
|
|
711
|
+
}));
|
|
712
|
+
tableFieldMap.push(fm);
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
else if (values.hasOwnProperty(fm.workflow_field)) {
|
|
716
|
+
var wField = null;
|
|
717
|
+
|
|
718
|
+
_.each(formFields, function (ff) {
|
|
719
|
+
if (!wField) {
|
|
720
|
+
if (ff.code === fm.workflow_field) {
|
|
721
|
+
wField = ff;
|
|
722
|
+
} else if (ff.type === 'section') {
|
|
723
|
+
_.each(ff.fields, function (f) {
|
|
724
|
+
if (!wField) {
|
|
725
|
+
if (f.code === fm.workflow_field) {
|
|
726
|
+
wField = f;
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
})
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
})
|
|
733
|
+
|
|
734
|
+
var oField = objectFields[fm.object_field];
|
|
735
|
+
|
|
736
|
+
if (oField) {
|
|
737
|
+
if (!wField) {
|
|
738
|
+
console.log('fm.workflow_field: ', fm.workflow_field)
|
|
739
|
+
}
|
|
740
|
+
const ofValue = record ? record[fm.object_field] : null
|
|
741
|
+
const wfValue = values[fm.workflow_field]
|
|
742
|
+
obj[fm.object_field] = await getRecordFieldValue(oField, wField, ofValue, wfValue, spaceId, enableAmisform)
|
|
743
|
+
} else {
|
|
744
|
+
if (fm.object_field.indexOf('.') > -1) {
|
|
745
|
+
var temObjFields = fm.object_field.split('.');
|
|
746
|
+
if (temObjFields.length === 2) {
|
|
747
|
+
var objField = temObjFields[0];
|
|
748
|
+
var referObjField = temObjFields[1];
|
|
749
|
+
var oField = objectFields[objField];
|
|
750
|
+
if (!oField.multiple && ['lookup', 'master_detail'].includes(oField.type) && _.isString(oField.reference_to)) {
|
|
751
|
+
var oCollection = objectql.getObject(oField.reference_to)
|
|
752
|
+
if (oCollection && record && record[objField]) {
|
|
753
|
+
var referSetObj = {};
|
|
754
|
+
referSetObj[referObjField] = values[fm.workflow_field];
|
|
755
|
+
await objectUpdate(oField.reference_to, record[objField], referSetObj)
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
else {
|
|
763
|
+
if (fm.workflow_field.startsWith('instance.')) {
|
|
764
|
+
var insField = fm.workflow_field.split('instance.')[1];
|
|
765
|
+
if (InstanceRecordQueue.syncInsFields.includes(insField)) {
|
|
766
|
+
if (fm.object_field.indexOf('.') < 0) {
|
|
767
|
+
obj[fm.object_field] = ins[insField];
|
|
768
|
+
} else {
|
|
769
|
+
var temObjFields = fm.object_field.split('.');
|
|
770
|
+
if (temObjFields.length === 2) {
|
|
771
|
+
var objField = temObjFields[0];
|
|
772
|
+
var referObjField = temObjFields[1];
|
|
773
|
+
var oField = objectFields[objField];
|
|
774
|
+
if (!oField.multiple && ['lookup', 'master_detail'].includes(oField.type) && _.isString(oField.reference_to)) {
|
|
775
|
+
var oCollection = objectql.getObject(oField.reference_to)
|
|
776
|
+
if (oCollection && record && record[objField]) {
|
|
777
|
+
var referSetObj = {};
|
|
778
|
+
referSetObj[referObjField] = ins[insField];
|
|
779
|
+
await objectUpdate(oField.reference_to, record[objField], referSetObj)
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
} else {
|
|
786
|
+
if (ins[fm.workflow_field]) {
|
|
787
|
+
obj[fm.object_field] = ins[fm.workflow_field];
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
for (const tfc of _.uniq(tableFieldCodes)) {
|
|
794
|
+
var c = JSON.parse(tfc);
|
|
795
|
+
obj[c.object_table_field_code] = [];
|
|
796
|
+
for (const tr of values[c.workflow_table_field_code]) {
|
|
797
|
+
var newTr = {};
|
|
798
|
+
_.each(tr, function (v, k) {
|
|
799
|
+
tableFieldMap.forEach(function (tfm) {
|
|
800
|
+
if (tfm.workflow_field == (c.workflow_table_field_code + '.$.' + k)) {
|
|
801
|
+
var oTdCode = tfm.object_field.split('.$.')[1];
|
|
802
|
+
newTr[oTdCode] = v;
|
|
803
|
+
}
|
|
804
|
+
})
|
|
805
|
+
})
|
|
806
|
+
if (!_.isEmpty(newTr)) {
|
|
807
|
+
obj[c.object_table_field_code].push(newTr);
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
var relatedObjs = {};
|
|
813
|
+
var getRelatedFieldValue = function (valueKey, parent) {
|
|
814
|
+
return valueKey.split('.').reduce(function (o, x) {
|
|
815
|
+
return o[x];
|
|
816
|
+
}, parent);
|
|
817
|
+
};
|
|
818
|
+
|
|
819
|
+
for (const [key, map] of Object.entries(tableToRelatedMap)) {
|
|
820
|
+
var tableCode = map._FROM_TABLE_CODE;
|
|
821
|
+
if (!tableCode) {
|
|
822
|
+
console.warn('tableToRelated: [' + key + '] missing corresponding table.')
|
|
823
|
+
} else {
|
|
824
|
+
var relatedObjectName = key;
|
|
825
|
+
var relatedObjectValues = [];
|
|
826
|
+
var relatedObjectFields = await getObjectFields(relatedObjectName)
|
|
827
|
+
for (const tableValueItem of values[tableCode]) {
|
|
828
|
+
let relateRecord;
|
|
829
|
+
if (tableValueItem._id) {
|
|
830
|
+
relateRecord = await objectFindOne(relatedObjectName, { filters: [['_id', '=', tableValueItem._id]] });
|
|
831
|
+
}
|
|
832
|
+
var relatedObjectValue = {};
|
|
833
|
+
for (const [fieldKey, valueKey] of Object.entries(map)) {
|
|
834
|
+
if (fieldKey != '_FROM_TABLE_CODE') {
|
|
835
|
+
if (valueKey.startsWith('instance.')) {
|
|
836
|
+
relatedObjectValue[fieldKey] = getRelatedFieldValue(valueKey, { 'instance': ins });
|
|
837
|
+
}
|
|
838
|
+
else {
|
|
839
|
+
var relatedObjectFieldValue, formFieldKey;
|
|
840
|
+
if (valueKey.startsWith(tableCode + '.')) {
|
|
841
|
+
formFieldKey = valueKey.split(".")[1];
|
|
842
|
+
relatedObjectFieldValue = getRelatedFieldValue(valueKey, { [tableCode]: tableValueItem });
|
|
843
|
+
} else {
|
|
844
|
+
formFieldKey = valueKey;
|
|
845
|
+
relatedObjectFieldValue = getRelatedFieldValue(valueKey, values)
|
|
846
|
+
}
|
|
847
|
+
var formField = getFormField(formFields, formFieldKey);
|
|
848
|
+
var relatedObjectField = relatedObjectFields[fieldKey];
|
|
849
|
+
if (!relatedObjectField || !formField) {
|
|
850
|
+
continue;
|
|
851
|
+
}
|
|
852
|
+
const ofValue = relateRecord ? relateRecord[fieldKey] : null;
|
|
853
|
+
relatedObjectValue[fieldKey] = await getRecordFieldValue(relatedObjectField, formField, ofValue, relatedObjectFieldValue, spaceId, enableAmisform);
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
relatedObjectValue['_table'] = {
|
|
858
|
+
_id: tableValueItem["_id"],
|
|
859
|
+
_code: tableCode
|
|
860
|
+
};
|
|
861
|
+
relatedObjectValues.push(relatedObjectValue);
|
|
862
|
+
}
|
|
863
|
+
relatedObjs[relatedObjectName] = relatedObjectValues;
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
if (field_map_back_script) {
|
|
868
|
+
_.extend(obj, InstanceRecordQueue.evalFieldMapBackScript(field_map_back_script, ins));
|
|
869
|
+
}
|
|
870
|
+
// 过滤掉非法的key
|
|
871
|
+
var filterObj = {};
|
|
872
|
+
|
|
873
|
+
_.each(_.keys(obj), function (k) {
|
|
874
|
+
if (objectFieldKeys.includes(k)) {
|
|
875
|
+
filterObj[k] = obj[k];
|
|
876
|
+
}
|
|
877
|
+
})
|
|
878
|
+
|
|
879
|
+
return {
|
|
880
|
+
mainObjectValue: filterObj,
|
|
881
|
+
relatedObjectsValue: relatedObjs
|
|
882
|
+
};
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
InstanceRecordQueue.evalFieldMapBackScript = function (field_map_back_script, ins) {
|
|
886
|
+
var script = "module.exports = function (instance) { " + field_map_back_script + " }";
|
|
887
|
+
var func = _eval(script, "field_map_script");
|
|
888
|
+
var values = func(ins);
|
|
889
|
+
if (_.isObject(values)) {
|
|
890
|
+
return values;
|
|
891
|
+
} else {
|
|
892
|
+
console.error("evalFieldMapBackScript: 脚本返回值类型不是对象");
|
|
893
|
+
}
|
|
894
|
+
return {}
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
InstanceRecordQueue.syncRelatedObjectsValue = async function (mainRecordId, relatedObjects, relatedObjectsValue, spaceId, ins, locked = false) {
|
|
898
|
+
var insId = ins._id;
|
|
899
|
+
|
|
900
|
+
for (const relatedObject of relatedObjects) {
|
|
901
|
+
var tableMap = {};
|
|
902
|
+
for (const relatedObjectValue of (relatedObjectsValue[relatedObject.object_name] || [])) {
|
|
903
|
+
var table_id = relatedObjectValue._table._id;
|
|
904
|
+
var table_code = relatedObjectValue._table._code;
|
|
905
|
+
if (!tableMap[table_code]) {
|
|
906
|
+
tableMap[table_code] = []
|
|
907
|
+
};
|
|
908
|
+
tableMap[table_code].push(table_id);
|
|
909
|
+
var oldRelatedRecord = await objectFindOne(relatedObject.object_name, {
|
|
910
|
+
filters: [
|
|
911
|
+
[relatedObject.foreign_key, '=', mainRecordId],
|
|
912
|
+
[['_id', '=', relatedObjectValue._table._id], 'or', [['_table._id', '=', relatedObjectValue._table._id], ['_table._code', '=', relatedObjectValue._table._code]]]
|
|
913
|
+
]
|
|
914
|
+
})
|
|
915
|
+
if (oldRelatedRecord) {
|
|
916
|
+
await objectUpdate(relatedObject.object_name, oldRelatedRecord._id, relatedObjectValue)
|
|
917
|
+
} else {
|
|
918
|
+
relatedObjectValue[relatedObject.foreign_key] = mainRecordId;
|
|
919
|
+
relatedObjectValue.space = spaceId;
|
|
920
|
+
relatedObjectValue.owner = relatedObjectValue.owner || ins.applicant;
|
|
921
|
+
relatedObjectValue.created_by = ins.applicant;
|
|
922
|
+
relatedObjectValue.modified_by = ins.applicant;
|
|
923
|
+
relatedObjectValue._id = await makeNewID(relatedObject.object_name);
|
|
924
|
+
relatedObjectValue.locked = locked
|
|
925
|
+
await objectInsert(relatedObject.object_name, relatedObjectValue)
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
//清理申请单上被删除子表记录对应的相关表记录
|
|
929
|
+
for (const [tableCode, tableIds] of Object.entries(tableMap)) {
|
|
930
|
+
tableIds = _.compact(tableIds);
|
|
931
|
+
var docsForRemove = await objectFind(relatedObject.object_name, { filters: [[relatedObject.foreign_key, '=', mainRecordId], ['_table._code', '=', tableCode]] });
|
|
932
|
+
for (const doc of docsForRemove) {
|
|
933
|
+
if (!tableIds.includes(doc._table._id)) {
|
|
934
|
+
await objectRemove(relatedObject.object_name, doc._id)
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
InstanceRecordQueue.sendDoc = async function (doc) {
|
|
942
|
+
if (InstanceRecordQueue.debug) {
|
|
943
|
+
console.log("sendDoc");
|
|
944
|
+
console.log(doc);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
var insId = doc.info.instance_id,
|
|
948
|
+
records = doc.info.records;
|
|
949
|
+
var fields = {
|
|
950
|
+
flow: 1,
|
|
951
|
+
values: 1,
|
|
952
|
+
applicant: 1,
|
|
953
|
+
space: 1,
|
|
954
|
+
form: 1,
|
|
955
|
+
form_version: 1,
|
|
956
|
+
traces: 1
|
|
957
|
+
};
|
|
958
|
+
InstanceRecordQueue.syncInsFields.forEach(function (f) {
|
|
959
|
+
fields[f] = 1;
|
|
960
|
+
})
|
|
961
|
+
|
|
962
|
+
var ins = await objectql.getObject('instances').findOne(insId, {
|
|
963
|
+
fields: fields
|
|
964
|
+
})
|
|
965
|
+
|
|
966
|
+
var values = ins.values,
|
|
967
|
+
spaceId = ins.space;
|
|
968
|
+
|
|
969
|
+
const flowId = ins.flow
|
|
970
|
+
const flow = await objectql.getObject('flows').findOne(flowId, { fields: { enable_amisform: 1 } })
|
|
971
|
+
const enableAmisform = flow.enable_amisform
|
|
972
|
+
|
|
973
|
+
if (records && !_.isEmpty(records)) {
|
|
974
|
+
// 此情况属于从creator中发起审批,或者已经从Apps同步到了creator
|
|
975
|
+
var objectName = records[0].o;
|
|
976
|
+
var ow = await objectql.getObject('object_workflows').findOne({
|
|
977
|
+
object_name: objectName,
|
|
978
|
+
flow_id: ins.flow
|
|
979
|
+
});
|
|
980
|
+
|
|
981
|
+
var objectCollection = objectql.getObject(objectName),
|
|
982
|
+
sync_attachment = ow.sync_attachment;
|
|
983
|
+
syncDirection = ow.sync_direction || 'both';
|
|
984
|
+
var objectInfo = await getObjectConfig(objectName);
|
|
985
|
+
|
|
986
|
+
const recordsToProcess = await objectFind(objectName, { filters: [['_id', 'in', records[0].ids]] });
|
|
987
|
+
|
|
988
|
+
for (const record of recordsToProcess) {
|
|
989
|
+
try {
|
|
990
|
+
if (!['both', 'ins_to_obj'].includes(syncDirection)) {
|
|
991
|
+
continue;
|
|
992
|
+
}
|
|
993
|
+
var lock_record_after_approval = ow.lock_record_after_approval || false;
|
|
994
|
+
var syncValues = await InstanceRecordQueue.syncValues(ow.field_map_back, values, ins, objectInfo, ow.field_map_back_script, record, enableAmisform)
|
|
995
|
+
var setObj = syncValues.mainObjectValue;
|
|
996
|
+
|
|
997
|
+
var instance_state = ins.state;
|
|
998
|
+
if (ins.state === 'completed') {
|
|
999
|
+
setObj.locked = lock_record_after_approval
|
|
1000
|
+
if (ins.final_decision) {
|
|
1001
|
+
instance_state = ins.final_decision;
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
setObj['instances.0.state'] = setObj.instance_state = instance_state;
|
|
1005
|
+
await objectUpdate(objectName, record._id, setObj);
|
|
1006
|
+
|
|
1007
|
+
var relatedObjects = await getRelateds(ow.object_name);
|
|
1008
|
+
var relatedObjectsValue = syncValues.relatedObjectsValue;
|
|
1009
|
+
await InstanceRecordQueue.syncRelatedObjectsValue(record._id, relatedObjects, relatedObjectsValue, spaceId, ins);
|
|
1010
|
+
|
|
1011
|
+
// 以最终申请单附件为准,旧的record中附件删除
|
|
1012
|
+
|
|
1013
|
+
const cfColl = await getCollection('cms_files');
|
|
1014
|
+
await cfColl.deleteMany({
|
|
1015
|
+
'parent': {
|
|
1016
|
+
o: objectName,
|
|
1017
|
+
ids: [record._id]
|
|
1018
|
+
}
|
|
1019
|
+
});
|
|
1020
|
+
|
|
1021
|
+
const cfsColl = await getCollection('cfs.files.filerecord');
|
|
1022
|
+
await cfsColl.deleteMany({
|
|
1023
|
+
'metadata.record_id': record._id
|
|
1024
|
+
})
|
|
1025
|
+
|
|
1026
|
+
// 同步新附件
|
|
1027
|
+
await InstanceRecordQueue.syncAttach(sync_attachment, insId, record.space, record._id, objectName);
|
|
1028
|
+
console.log(`1031 ===>`)
|
|
1029
|
+
// 执行公式
|
|
1030
|
+
await runQuoted(objectName, record._id);
|
|
1031
|
+
console.log(`runQuoted===>`)
|
|
1032
|
+
} catch (error) {
|
|
1033
|
+
console.error(error);
|
|
1034
|
+
|
|
1035
|
+
await objectUpdateMany(objectName, [['_id', '=', record._id], ['instances._id', '=', insId]], {
|
|
1036
|
+
'instances.$.state': 'pending',
|
|
1037
|
+
'instance_state': 'pending'
|
|
1038
|
+
})
|
|
1039
|
+
|
|
1040
|
+
const cfColl = await getCollection('cms_files');
|
|
1041
|
+
await cfColl.deleteMany({
|
|
1042
|
+
'parent': {
|
|
1043
|
+
o: objectName,
|
|
1044
|
+
ids: [record._id]
|
|
1045
|
+
}
|
|
1046
|
+
});
|
|
1047
|
+
|
|
1048
|
+
const cfsColl = await getCollection('cfs.files.filerecord');
|
|
1049
|
+
await cfsColl.deleteMany({
|
|
1050
|
+
'metadata.record_id': record._id
|
|
1051
|
+
})
|
|
1052
|
+
|
|
1053
|
+
throw error;
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
} else {
|
|
1057
|
+
// 此情况属于从apps中发起审批
|
|
1058
|
+
const owsColl = await getCollection('object_workflows');
|
|
1059
|
+
const ows = await owsColl.find({
|
|
1060
|
+
flow_id: ins.flow
|
|
1061
|
+
}).toArray();
|
|
1062
|
+
|
|
1063
|
+
for (const ow of ows) {
|
|
1064
|
+
try {
|
|
1065
|
+
var sync_attachment = ow.sync_attachment,
|
|
1066
|
+
newRecordId = await makeNewID(ow.object_name),
|
|
1067
|
+
objectName = ow.object_name,
|
|
1068
|
+
syncDirection = ow.sync_direction || 'both';
|
|
1069
|
+
lock_record_after_approval = ow.lock_record_after_approval || false;
|
|
1070
|
+
|
|
1071
|
+
if (!['both', 'ins_to_obj'].includes(syncDirection)) {
|
|
1072
|
+
continue;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
var objectInfo = await getObjectConfig(ow.object_name);
|
|
1076
|
+
var syncValues = await InstanceRecordQueue.syncValues(ow.field_map_back, values, ins, objectInfo, ow.field_map_back_script, null, enableAmisform);
|
|
1077
|
+
var newObj = syncValues.mainObjectValue;
|
|
1078
|
+
|
|
1079
|
+
newObj._id = newRecordId;
|
|
1080
|
+
newObj.space = spaceId;
|
|
1081
|
+
newObj.name = newObj.name || ins.name;
|
|
1082
|
+
|
|
1083
|
+
newObj.locked = true;
|
|
1084
|
+
|
|
1085
|
+
var instance_state = ins.state;
|
|
1086
|
+
if (ins.state === 'completed' && ins.final_decision) {
|
|
1087
|
+
instance_state = ins.final_decision;
|
|
1088
|
+
newObj.locked = lock_record_after_approval;
|
|
1089
|
+
}
|
|
1090
|
+
newObj.instances = [{
|
|
1091
|
+
_id: insId,
|
|
1092
|
+
state: instance_state
|
|
1093
|
+
}];
|
|
1094
|
+
newObj.instance_state = instance_state;
|
|
1095
|
+
|
|
1096
|
+
newObj.owner = newObj.owner || ins.applicant;
|
|
1097
|
+
newObj.created_by = ins.applicant;
|
|
1098
|
+
newObj.modified_by = ins.applicant;
|
|
1099
|
+
|
|
1100
|
+
var r = await objectInsert(ow.object_name, newObj);
|
|
1101
|
+
const insColl = await getCollection('instances');
|
|
1102
|
+
if (r) {
|
|
1103
|
+
await insColl.update({_id: ins._id}, {
|
|
1104
|
+
$push: {
|
|
1105
|
+
record_ids: {
|
|
1106
|
+
o: objectName,
|
|
1107
|
+
ids: [newRecordId]
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1110
|
+
$set: {
|
|
1111
|
+
modified: new Date()
|
|
1112
|
+
}
|
|
1113
|
+
});
|
|
1114
|
+
|
|
1115
|
+
var relatedObjects = await getRelateds(ow.object_name);
|
|
1116
|
+
var relatedObjectsValue = syncValues.relatedObjectsValue;
|
|
1117
|
+
await InstanceRecordQueue.syncRelatedObjectsValue(newRecordId, relatedObjects, relatedObjectsValue, spaceId, ins, newObj.locked);
|
|
1118
|
+
|
|
1119
|
+
// workflow里发起审批后,同步时也可以修改相关表的字段值 #1183
|
|
1120
|
+
var record = await objectFindOne(objectName, { filters: [['_id', '=', newRecordId]] });
|
|
1121
|
+
await updateLookupOrMasterDetailFieldValues(ow.field_map_back, values, ins, objectInfo, record)
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
// 附件同步
|
|
1125
|
+
await InstanceRecordQueue.syncAttach(sync_attachment, insId, spaceId, newRecordId, objectName);
|
|
1126
|
+
// 执行公式
|
|
1127
|
+
await runQuoted(objectName, newRecordId);
|
|
1128
|
+
} catch (error) {
|
|
1129
|
+
console.error(error);
|
|
1130
|
+
|
|
1131
|
+
await objectRemove(ow.object_name, newRecordId);
|
|
1132
|
+
const insColl = await getObject('instances');
|
|
1133
|
+
await insColl.update(ins._id, {
|
|
1134
|
+
$pull: {
|
|
1135
|
+
record_ids: {
|
|
1136
|
+
o: objectName,
|
|
1137
|
+
ids: [newRecordId]
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
$set: {
|
|
1141
|
+
modified: new Date()
|
|
1142
|
+
}
|
|
1143
|
+
});
|
|
1144
|
+
|
|
1145
|
+
const cfColl = await getCollection('cms_files');
|
|
1146
|
+
await cfColl.deleteMany({
|
|
1147
|
+
'parent': {
|
|
1148
|
+
o: objectName,
|
|
1149
|
+
ids: [newRecordId]
|
|
1150
|
+
}
|
|
1151
|
+
});
|
|
1152
|
+
|
|
1153
|
+
const cfsColl = await getCollection('cfs.files.filerecord');
|
|
1154
|
+
await cfsColl.deleteMany({
|
|
1155
|
+
'metadata.record_id': newRecordId
|
|
1156
|
+
})
|
|
1157
|
+
throw error;
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
if (doc._id) {
|
|
1163
|
+
await InstanceRecordQueue.collection.update({_id: doc._id}, {
|
|
1164
|
+
$set: {
|
|
1165
|
+
'info.sync_date': new Date()
|
|
1166
|
+
}
|
|
1167
|
+
});
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
module.exports = InstanceRecordQueue;
|