


DingTalk/Enterprise WeChat + Jiandao Cloud, customized and built enterprise-specific document collection management platform
Based on DingTalk/Enterprise Momo Jiandao Cloud, the company has customized and built its own dedicated document collection management platform. In addition to meeting diversified work scenarios, it also improves the collaboration efficiency among company employees. Android Linux makes it much easier to discuss workflows and notify related matters.
1. Introduction to the background of the case company
The protagonist of this case comes from a private expressway unit in Shandong. The main business includes investment, construction, operation, maintenance, management, rescue and clearing, cleaning and toll services of ordinary roads, tunnels, and bridges; cargo warehousing (except for physical hazards) products); foreign land cargo transportation agency.
2. What customers say
"Our unit has many levels of organizational structure. In the unit, after a document is received from the office, it is like walking through a maze. The process is very complicated. From the chief supervisor, general director, deputy general director, secretary, chief engineer to human resources There are nearly 10 departments including the Department, Planning and Finance Department, Discipline Inspection and Supervision Office, and more than 10 headquarters under the unit, including the main channel headquarters, maintenance management center, and bridge management office. The circulation path of each document is not fixed. How to efficiently manage the collection of documents and further improve collaboration efficiency is a work challenge that our unit needs to solve in the short term."
3. Use comparison
1. Before use
The paper delivery process is complicated, timeliness is poor, and work lags behind
Before using the system built through Jiandao Cloud, our collection management was particularly messy, slow, and limited.
Whether it is the headquarters or various headquarters, after receiving the official documents, they will copy the paper documents in batches and send them out by a dedicated person, or they will find all the contact information, sit in front of the laptop and start sending text messages in batchesOfficial Document Circulation System Open sourceOpen document circulation system, even need to call again to confirm one by one. It often happens that the person in charge is not in the office, is on a business trip, or the phone is always unreachable, which can easily lead to delays in issuing notifications and delays in work.
Low compliance with finished software management
We have also tried other systems, but they can only be used on laptops, which cannot meet our urgent Unicom office needs. We have inspected some of the current APPs and found that most of the processes are fixed and match the actual management processes of our unit. It was very low, so I discarded them all.
2. After use
Use Jiandao Cloud to realize process customization and fully meet actual management needs
(1) Free, flexible and rapid flow between headquarters flow and grassroots flow
Headquarters stream:
Figure 1. Schematic diagram of internal circulation
Figure 2. Document collection flow chart implemented by Jiandao Cloud backend
After receiving the official document, the office receiving staff directly initiates the process on the DingTalk workbench and selects the type of official document circulation and the person to whom it will be transferred. The process is then submitted to the office section chief according to the set direction. The office section chief reviews the changes. , manually transfer to the designated department or person in charge, everyone can receive DingTalk official document reminders in real time, and the whole process only takes 3-5 minutes to complete.
Transfer type:
Figure 3. Screenshot of quick operation and reminder interface on mobile phone
Grassroots flow:
After each grassroots unit receives the official document, the office receiving personnel initiates the process, selects whether the source of the document is to be received by the headquarters or independently, chooses to enter the sending unit and other information, and submits it to the office team leader. After receiving the reminder, the team leader chooses to transfer it When working with leaders, they can simultaneously send copies to key persons in charge to ensure the timeliness of official document delivery. The unit leader can choose which department leader or specific person in charge to send it to. He can also initiate a secondary review and approval and designate other unit leaders to review it again, and then transfer it to the designated department leader. After department leaders receive it, they can freely choose to transfer it to a specific person in charge or end the process directly. The process flow is particularly flexible.
Figure 4. Interface display of free circulation of official documents
(2) Process custom copy
The entire document collection process is designed on demand to meet the needs of paper retention.
Figure 5. Customize copy template settings as needed to meet archiving requirements
(3) Manually leave traces of transfer records in Red Hat Linux, and control them in real time.
Figure 6. Conveniently search via mobile phone
For more sharing of Jiandao Cloud’s customized example scenarios, please continue to pay attention. You can also search DingTalk group number: 11770207 for communication and knowledge sharing. Remember to like and leave a comment!
The above is the detailed content of DingTalk/Enterprise WeChat + Jiandao Cloud, customized and built enterprise-specific document collection management platform. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The key differences between CentOS and Ubuntu are: origin (CentOS originates from Red Hat, for enterprises; Ubuntu originates from Debian, for individuals), package management (CentOS uses yum, focusing on stability; Ubuntu uses apt, for high update frequency), support cycle (CentOS provides 10 years of support, Ubuntu provides 5 years of LTS support), community support (CentOS focuses on stability, Ubuntu provides a wide range of tutorials and documents), uses (CentOS is biased towards servers, Ubuntu is suitable for servers and desktops), other differences include installation simplicity (CentOS is thin)

How to use Docker Desktop? Docker Desktop is a tool for running Docker containers on local machines. The steps to use include: 1. Install Docker Desktop; 2. Start Docker Desktop; 3. Create Docker image (using Dockerfile); 4. Build Docker image (using docker build); 5. Run Docker container (using docker run).

CentOS installation steps: Download the ISO image and burn bootable media; boot and select the installation source; select the language and keyboard layout; configure the network; partition the hard disk; set the system clock; create the root user; select the software package; start the installation; restart and boot from the hard disk after the installation is completed.

CentOS has been discontinued, alternatives include: 1. Rocky Linux (best compatibility); 2. AlmaLinux (compatible with CentOS); 3. Ubuntu Server (configuration required); 4. Red Hat Enterprise Linux (commercial version, paid license); 5. Oracle Linux (compatible with CentOS and RHEL). When migrating, considerations are: compatibility, availability, support, cost, and community support.

Troubleshooting steps for failed Docker image build: Check Dockerfile syntax and dependency version. Check if the build context contains the required source code and dependencies. View the build log for error details. Use the --target option to build a hierarchical phase to identify failure points. Make sure to use the latest version of Docker engine. Build the image with --t [image-name]:debug mode to debug the problem. Check disk space and make sure it is sufficient. Disable SELinux to prevent interference with the build process. Ask community platforms for help, provide Dockerfiles and build log descriptions for more specific suggestions.

Docker process viewing method: 1. Docker CLI command: docker ps; 2. Systemd CLI command: systemctl status docker; 3. Docker Compose CLI command: docker-compose ps; 4. Process Explorer (Windows); 5. /proc directory (Linux).

Docker uses Linux kernel features to provide an efficient and isolated application running environment. Its working principle is as follows: 1. The mirror is used as a read-only template, which contains everything you need to run the application; 2. The Union File System (UnionFS) stacks multiple file systems, only storing the differences, saving space and speeding up; 3. The daemon manages the mirrors and containers, and the client uses them for interaction; 4. Namespaces and cgroups implement container isolation and resource limitations; 5. Multiple network modes support container interconnection. Only by understanding these core concepts can you better utilize Docker.

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)
