@szjy/workflow 0.1.21 → 0.1.22

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  };
@@ -50,10 +50,14 @@ export type ConditionValueJSON = {
50
50
  export type WorkflowStatusType = keyof typeof WORKFLOW_STATUS_TYPES;
51
51
  export type SearchWithCompanyAndTitleInfo = {
52
52
  searchWithCompanyType: SearchWithCompanyType;
53
+ filterWithDepartment: boolean;
54
+ departmentName: string;
53
55
  titleList: string[];
54
56
  };
55
57
  export type SearchWithCompanyAndRoleNameInfo = {
56
58
  searchWithCompanyType: SearchWithCompanyType;
59
+ filterWithDepartment: boolean;
60
+ departmentName: string;
57
61
  roleNameList: string[];
58
62
  };
59
63
  export type UserSearchInfoType = {
@@ -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
  };