@szjy/workflow 0.1.21 → 0.1.23
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.mjs +15450 -15282
- package/dist/index.umd.js +610 -569
- package/dist/packages/components/Workflow/biz-logic/leave/constant.d.ts +4 -0
- package/dist/packages/components/Workflow/biz-logic/leave/types.d.ts +5 -0
- package/dist/packages/components/Workflow/biz-logic/leave/utils/counterSignUtil.d.ts +1 -0
- package/dist/packages/components/Workflow/biz-logic/leave/utils/userUtil.d.ts +1 -0
- package/dist/packages/components/Workflow/components/biz/ui/UserSearchInfo.vue.d.ts +4 -0
- package/dist/packages/components/Workflow/components/biz/ui/UserSearchWithRole.vue.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -55,6 +55,8 @@ export declare const DEFAULT_USER_SEARCH_INFO: {
|
|
55
55
|
searchType: SearchType;
|
56
56
|
searchWithCompanyAndTitleinfo: {
|
57
57
|
searchWithCompanyType: SearchWithCompanyType;
|
58
|
+
filterWithDepartment: boolean;
|
59
|
+
departmentName: string;
|
58
60
|
titleList: never[];
|
59
61
|
};
|
60
62
|
};
|
@@ -63,6 +65,8 @@ export declare const DEFAULT_USER_SEARCH_WITH_ROLE: {
|
|
63
65
|
searchType: SearchType;
|
64
66
|
searchWithCompanyAndRoleNameInfo: {
|
65
67
|
searchWithCompanyType: SearchWithCompanyType;
|
68
|
+
filterWithDepartment: boolean;
|
69
|
+
departmentName: string;
|
66
70
|
roleNameList: never[];
|
67
71
|
};
|
68
72
|
};
|
@@ -23,6 +23,7 @@ export type CounterSignConditionJSON = {
|
|
23
23
|
orgBased: boolean;
|
24
24
|
minApprovedPerOrg: number;
|
25
25
|
maxRejectedPerOrg: number;
|
26
|
+
needAllApproved: boolean;
|
26
27
|
};
|
27
28
|
export type ConditionJSON = {
|
28
29
|
conditionType: GATEWAY_CONDITION_KEYS;
|
@@ -50,10 +51,14 @@ export type ConditionValueJSON = {
|
|
50
51
|
export type WorkflowStatusType = keyof typeof WORKFLOW_STATUS_TYPES;
|
51
52
|
export type SearchWithCompanyAndTitleInfo = {
|
52
53
|
searchWithCompanyType: SearchWithCompanyType;
|
54
|
+
filterWithDepartment: boolean;
|
55
|
+
departmentName: string;
|
53
56
|
titleList: string[];
|
54
57
|
};
|
55
58
|
export type SearchWithCompanyAndRoleNameInfo = {
|
56
59
|
searchWithCompanyType: SearchWithCompanyType;
|
60
|
+
filterWithDepartment: boolean;
|
61
|
+
departmentName: string;
|
57
62
|
roleNameList: string[];
|
58
63
|
};
|
59
64
|
export type UserSearchInfoType = {
|
@@ -8,6 +8,7 @@ export declare const DEFAULT_COMPLETE_CONDITION: {
|
|
8
8
|
orgBased: boolean;
|
9
9
|
minApprovedPerOrg: number;
|
10
10
|
maxRejectedPerOrg: number;
|
11
|
+
needAllApproved: boolean;
|
11
12
|
};
|
12
13
|
export declare const initCounterSignrItems: (element: Element) => void;
|
13
14
|
export declare const initMultiSignReceiptItems: (element: Element) => void;
|
@@ -13,5 +13,6 @@ export declare const DEFAULT_USER_JSON: {
|
|
13
13
|
};
|
14
14
|
export declare const addUserItem: (element: Element, userJson: Partial<UserJSON>) => void;
|
15
15
|
export declare const fixUserRelated: (userJson: Partial<UserJSON>) => void;
|
16
|
+
export declare const reformatUserJson: (userJson: Partial<UserJSON>) => void;
|
16
17
|
export declare const getUserValue: (element: Element) => Partial<UserJSON>;
|
17
18
|
export declare const updateUserValue: (element: Element, userJson: UserJSON) => void;
|
@@ -9,6 +9,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
9
9
|
searchType: SearchType;
|
10
10
|
searchWithCompanyAndTitleinfo: {
|
11
11
|
searchWithCompanyType: SearchWithCompanyType;
|
12
|
+
filterWithDepartment: boolean;
|
13
|
+
departmentName: string;
|
12
14
|
titleList: never[];
|
13
15
|
};
|
14
16
|
};
|
@@ -23,6 +25,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
23
25
|
searchType: SearchType;
|
24
26
|
searchWithCompanyAndTitleinfo: {
|
25
27
|
searchWithCompanyType: SearchWithCompanyType;
|
28
|
+
filterWithDepartment: boolean;
|
29
|
+
departmentName: string;
|
26
30
|
titleList: never[];
|
27
31
|
};
|
28
32
|
};
|
@@ -9,6 +9,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
9
9
|
searchType: import("../../../biz-logic/leave/constant").SearchType;
|
10
10
|
searchWithCompanyAndRoleNameInfo: {
|
11
11
|
searchWithCompanyType: SearchWithCompanyType;
|
12
|
+
filterWithDepartment: boolean;
|
13
|
+
departmentName: string;
|
12
14
|
roleNameList: never[];
|
13
15
|
};
|
14
16
|
};
|
@@ -23,6 +25,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
23
25
|
searchType: import("../../../biz-logic/leave/constant").SearchType;
|
24
26
|
searchWithCompanyAndRoleNameInfo: {
|
25
27
|
searchWithCompanyType: SearchWithCompanyType;
|
28
|
+
filterWithDepartment: boolean;
|
29
|
+
departmentName: string;
|
26
30
|
roleNameList: never[];
|
27
31
|
};
|
28
32
|
};
|