Problem management helper for Creatio

Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).

Problem management helper for Creatio là gì?

Problem management helper for Creatio là một tiện ích mở rộng Chrome được phát triển bởi creatiornd, và tính năng chính của nó là "Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Problem management helper for Creatio

Tải xuống các tệp mở rộng Problem management helper for Creatio dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        It enhances the next interfaces:
1. In the "Cases" section helps you manage problems connected to the selected case without opening the case page.
2. In the "Case" page helps you add problems connected with the current case.

In the "Cases" section, once you select a case record, it will:
- Replace usual contents of the "Problem" column with a list of all problems connected to this case.
- Display "Subject", "Owner" and "Status" fields for each connected problem.
- Highlight "Status" field with different colors depending on its status (only for out-of-the box statuses).
- Allow you to delete any of the connected problems with a single click. It deletes only connection to the selected case, not the entire "Problem" record.
- Allow you to add connected problems to the selected case using "Add problem" button. This button opens a search dialog with much better search algorithm than stock Creatio lookup. For example, if your query is "performance%indicator%calc", extension will run queries for all order combinations of search terms "performance", "indicator" and "calc" automatically. The first search results will be for "performance%indicator%calc" query using "starts with" comparison type. The following results will be for all combinations of search terms using "contains" comparison type (6 in this example).

In the "Case" page it adds "Quick problem search" button to the "Problems" detail. This button opens the same search dialog as in "Cases" section.

Set it up in 2 simple steps:
1. Install the extension.
2. Set up problem column in the "Cases" section.
That's it! Select a record and see how it works :)


What's new:
- You can search for canceled problems.
- Works with the new Freedom UI shell (available in Creatio 8.0.6+).

Further development is focused on:
- Adapting the plugin to the new Freedom UI Case pages (not to confuse with overall Freedom UI shell, that is supported).

Known restrictions:
Only works with:
- Classic UI pages.
- Records list in "Cases" section (out of the box section in some Creatio products) and out of the box Case record page ("CasePage").
- Sites in Creatio cloud (*.creatio.com domains).
- Creatio version 7.11.3 and higher.
Other restrictions:
- "Add problem" button only adds existing problems to the case. If you need to create a new problem, please use built-in Creatio functions.
- Columns setup in problem search window is fixed.
- In case when: 1. You use tiled view. 2. There is no connected problems when selecting the case for the first time. 3. You connect it to the problem.
Connections to the problems will be successfully saved in database but will not show up in the "Problem" column. Refresh cases list if you want to see it.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Problem management helper for Creatio Problem management helper for Creatio
ID gkjlfpnicbjbckkclciipeojmlghjcni
URL Chính Thức https://chromewebstore.google.com/detail/problem-management-helper/gkjlfpnicbjbckkclciipeojmlghjcni
Mô tả Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).
Kích Thước Tệp 29.7 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 1.5.1
Cập Nhật Lần Cuối 2023-03-18
Ngày Phát Hành 2020-06-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển creatiornd
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Problem management helper for Creatio",
    "description": "Helps you manage problems connected to \"Cases\" records in Creatio system (https:\/\/creatio.com).",
    "version": "1.5.1",
    "manifest_version": 2,
    "author": "Creatio labs",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/[email protected]",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bpmonline.com\/0\/Nui\/ViewModule.aspx*",
                "https:\/\/*.creatio.com\/0\/Nui\/ViewModule.aspx*",
                "https:\/\/*.terrasoft.ua\/0\/Nui\/ViewModule.aspx*",
                "https:\/\/*.bpmonline.com\/0\/Shell*",
                "https:\/\/*.creatio.com\/0\/Shell*",
                "https:\/\/*.terrasoft.ua\/0\/Shell*",
                "https:\/\/*.bpmonline.com\/0\/shell*",
                "https:\/\/*.creatio.com\/0\/shell*",
                "https:\/\/*.terrasoft.ua\/0\/shell*"
            ],
            "css": [
                "problemManagementHelper.css"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "problemManagementHelper.js"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon19.png",
            "32": "images\/[email protected]",
            "38": "images\/[email protected]"
        },
        "default_title": "Problem management helper for Creatio"
    },
    "permissions": [
        "file:\/\/\/*"
    ]
}