@kmkf-fe-packages/kmkf-work-order-service-component 2.0.79-beta.2 → 2.0.79-beta.4

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.
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const AutoTaskDetail: ({ flowEventData }: {
3
+ flowEventData: any;
4
+ }) => React.JSX.Element;
@@ -0,0 +1,34 @@
1
+ import React from 'react';
2
+ import { isNumber } from 'lodash';
3
+ import { Divider } from 'antd';
4
+ export var AutoTaskDetail = function AutoTaskDetail(_ref) {
5
+ var flowEventData = _ref.flowEventData;
6
+ var mapping = {
7
+ 0: '执行中',
8
+ 1: '部分成功',
9
+ 2: '全部成功',
10
+ 4: '全部失败'
11
+ };
12
+ var eventStatus = flowEventData === null || flowEventData === void 0 ? void 0 : flowEventData.eventStatus;
13
+ var renderRules = function renderRules() {
14
+ var _flowEventData$eventD, _flowEventData$eventD2, _flowEventData$eventD3;
15
+ return /*#__PURE__*/React.createElement("div", null, flowEventData === null || flowEventData === void 0 ? void 0 : (_flowEventData$eventD = flowEventData.eventData) === null || _flowEventData$eventD === void 0 ? void 0 : (_flowEventData$eventD2 = _flowEventData$eventD.otherBusinessData) === null || _flowEventData$eventD2 === void 0 ? void 0 : (_flowEventData$eventD3 = _flowEventData$eventD2.ruleDomainList) === null || _flowEventData$eventD3 === void 0 ? void 0 : _flowEventData$eventD3.map(function (item) {
16
+ var _flowEventData$eventD4, _flowEventData$eventD5, _item$passConditionLi;
17
+ var result = flowEventData === null || flowEventData === void 0 ? void 0 : (_flowEventData$eventD4 = flowEventData.eventData) === null || _flowEventData$eventD4 === void 0 ? void 0 : (_flowEventData$eventD5 = _flowEventData$eventD4.businessStatus) === null || _flowEventData$eventD5 === void 0 ? void 0 : _flowEventData$eventD5.find(function (k) {
18
+ return k.businessKey === item.businessKey;
19
+ });
20
+ return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Divider, {
21
+ dashed: true
22
+ }), item.ruleName && /*#__PURE__*/React.createElement("p", null, "\u547D\u4E2D\u89C4\u5219\u540D\u79F0: ", item.ruleName), /*#__PURE__*/React.createElement("p", null, (_item$passConditionLi = item.passConditionList) === null || _item$passConditionLi === void 0 ? void 0 : _item$passConditionLi.map(function (condition) {
23
+ return /*#__PURE__*/React.createElement("p", null, condition);
24
+ })), /*#__PURE__*/React.createElement("p", null, result.remark));
25
+ }));
26
+ };
27
+ var renderReason = function renderReason() {
28
+ var _flowEventData$eventD6, _flowEventData$eventD7, _flowEventData$eventD8;
29
+ return /*#__PURE__*/React.createElement("p", null, flowEventData === null || flowEventData === void 0 ? void 0 : (_flowEventData$eventD6 = flowEventData.eventData) === null || _flowEventData$eventD6 === void 0 ? void 0 : (_flowEventData$eventD7 = _flowEventData$eventD6.businessStatus) === null || _flowEventData$eventD7 === void 0 ? void 0 : (_flowEventData$eventD8 = _flowEventData$eventD7.map(function (item) {
30
+ return item === null || item === void 0 ? void 0 : item.remark;
31
+ })) === null || _flowEventData$eventD8 === void 0 ? void 0 : _flowEventData$eventD8.join(','));
32
+ };
33
+ return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("p", null, isNumber(eventStatus) && "\u6267\u884C\u72B6\u6001: ".concat(mapping[eventStatus])), isNumber(eventStatus) && [1, 2].includes(eventStatus) && renderRules(), isNumber(eventStatus) && [4].includes(eventStatus) && renderReason());
34
+ };
@@ -34,6 +34,7 @@ import { selectCurrentNodeDetail, selectTid, selectPlatInfo, selectFlowStatus, s
34
34
  import { fetchCurrentTradeIdLinkWorkOrder, fetchPanelInfo } from "../../store/reducers";
35
35
  import { useSelector } from "../../context/useSelector";
36
36
  import { Context } from "../../context";
37
+ import { AutoTaskDetail } from "../AutoTaskDetail";
37
38
  var formProps = {
38
39
  className: 'customizeFormModalClassName',
39
40
  layout: 'vertical'
@@ -274,23 +275,6 @@ var CurrentNode = function CurrentNode(props, ref) {
274
275
  return _ref2.apply(this, arguments);
275
276
  };
276
277
  }();
277
- var renderFail = function renderFail() {
278
- var _currentNodeDetail$fl, _currentNodeDetail$fl2, _currentNodeDetail$fl3, _currentNodeDetail$fl4;
279
- return currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : (_currentNodeDetail$fl = currentNodeDetail.flowEventData) === null || _currentNodeDetail$fl === void 0 ? void 0 : (_currentNodeDetail$fl2 = _currentNodeDetail$fl.eventData) === null || _currentNodeDetail$fl2 === void 0 ? void 0 : (_currentNodeDetail$fl3 = _currentNodeDetail$fl2.businessStatus) === null || _currentNodeDetail$fl3 === void 0 ? void 0 : (_currentNodeDetail$fl4 = _currentNodeDetail$fl3[0]) === null || _currentNodeDetail$fl4 === void 0 ? void 0 : _currentNodeDetail$fl4.remark;
280
- };
281
- var renderSuccess = function renderSuccess() {
282
- var _currentNodeDetail$fl5, _currentNodeDetail$fl6, _currentNodeDetail$fl7, _currentNodeDetail$fl8;
283
- return /*#__PURE__*/React.createElement("div", null, currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : (_currentNodeDetail$fl5 = currentNodeDetail.flowEventData) === null || _currentNodeDetail$fl5 === void 0 ? void 0 : (_currentNodeDetail$fl6 = _currentNodeDetail$fl5.eventData) === null || _currentNodeDetail$fl6 === void 0 ? void 0 : (_currentNodeDetail$fl7 = _currentNodeDetail$fl6.otherBusinessData) === null || _currentNodeDetail$fl7 === void 0 ? void 0 : (_currentNodeDetail$fl8 = _currentNodeDetail$fl7.ruleDomainList) === null || _currentNodeDetail$fl8 === void 0 ? void 0 : _currentNodeDetail$fl8.map(function (item) {
284
- var _item$passConditionLi;
285
- return /*#__PURE__*/React.createElement("div", null, item.ruleName && /*#__PURE__*/React.createElement("p", null, "\u547D\u4E2D\u89C4\u5219\u540D\u79F0: ", item.ruleName), /*#__PURE__*/React.createElement("p", null, (_item$passConditionLi = item.passConditionList) === null || _item$passConditionLi === void 0 ? void 0 : _item$passConditionLi.map(function (item) {
286
- return /*#__PURE__*/React.createElement("p", null, item);
287
- })));
288
- }));
289
- };
290
- var renderAutoNodeDetail = function renderAutoNodeDetail() {
291
- var _currentNodeDetail$fl9, _currentNodeDetail$fl10, _currentNodeDetail$fl11, _currentNodeDetail$fl12, _currentNodeDetail$fl13, _currentNodeDetail$fl14, _currentNodeDetail$fl15, _currentNodeDetail$fl16, _currentNodeDetail$fl17, _currentNodeDetail$fl18, _currentNodeDetail$fl19, _currentNodeDetail$fl20;
292
- return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("p", null, (currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : (_currentNodeDetail$fl9 = currentNodeDetail.flowEventData) === null || _currentNodeDetail$fl9 === void 0 ? void 0 : (_currentNodeDetail$fl10 = _currentNodeDetail$fl9.eventData) === null || _currentNodeDetail$fl10 === void 0 ? void 0 : (_currentNodeDetail$fl11 = _currentNodeDetail$fl10.businessStatus) === null || _currentNodeDetail$fl11 === void 0 ? void 0 : (_currentNodeDetail$fl12 = _currentNodeDetail$fl11[0]) === null || _currentNodeDetail$fl12 === void 0 ? void 0 : _currentNodeDetail$fl12.businessStatusDesc) && "\u6267\u884C\u72B6\u6001: ".concat(currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : (_currentNodeDetail$fl13 = currentNodeDetail.flowEventData) === null || _currentNodeDetail$fl13 === void 0 ? void 0 : (_currentNodeDetail$fl14 = _currentNodeDetail$fl13.eventData) === null || _currentNodeDetail$fl14 === void 0 ? void 0 : (_currentNodeDetail$fl15 = _currentNodeDetail$fl14.businessStatus) === null || _currentNodeDetail$fl15 === void 0 ? void 0 : (_currentNodeDetail$fl16 = _currentNodeDetail$fl15[0]) === null || _currentNodeDetail$fl16 === void 0 ? void 0 : _currentNodeDetail$fl16.businessStatusDesc)), [1, 2].includes(currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : (_currentNodeDetail$fl17 = currentNodeDetail.flowEventData) === null || _currentNodeDetail$fl17 === void 0 ? void 0 : (_currentNodeDetail$fl18 = _currentNodeDetail$fl17.eventData) === null || _currentNodeDetail$fl18 === void 0 ? void 0 : (_currentNodeDetail$fl19 = _currentNodeDetail$fl18.businessStatus) === null || _currentNodeDetail$fl19 === void 0 ? void 0 : (_currentNodeDetail$fl20 = _currentNodeDetail$fl19[0]) === null || _currentNodeDetail$fl20 === void 0 ? void 0 : _currentNodeDetail$fl20.businessStatus) ? renderSuccess() : renderFail());
293
- };
294
278
  var isArtificialNode = tag === 'artificial';
295
279
  var isAutoNode = tag === 'auto';
296
280
  var showEdit = isArtificialNode && isCurrentNodeHandler && !readonly && (currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : (_currentNodeDetail$wo12 = currentNodeDetail.workOrder) === null || _currentNodeDetail$wo12 === void 0 ? void 0 : _currentNodeDetail$wo12.flowStatus) === FlowStatus.COMPLETED;
@@ -347,6 +331,8 @@ var CurrentNode = function CurrentNode(props, ref) {
347
331
  flowAllShowHideRules: allShowHideRules,
348
332
  firstOrderBackfill: flowStatus !== FlowStatus.COMPLETED,
349
333
  autoSubmit: autoSubmit
350
- })), isAutoNode && renderAutoNodeDetail()));
334
+ })), isAutoNode && /*#__PURE__*/React.createElement(AutoTaskDetail, {
335
+ flowEventData: currentNodeDetail === null || currentNodeDetail === void 0 ? void 0 : currentNodeDetail.flowEventData
336
+ })));
351
337
  };
352
338
  export default /*#__PURE__*/forwardRef(CurrentNode);
@@ -32,8 +32,9 @@ import { PlatForm } from "../../../WorkOrder/types";
32
32
  import { currentUserHasOperatorAuth } from "../../common";
33
33
  import { useSelector } from "../../context/useSelector";
34
34
  import { Context } from "../../context";
35
+ import { AutoTaskDetail } from "../AutoTaskDetail";
35
36
  var NodeItem = function NodeItem(props) {
36
- var _data$data15, _data$data16, _data$data16$workOrde, _data$data17, _data$data17$workOrde, _data$data18, _data$data18$nodeInfo, _data$data19, _data$data20, _data$data20$nodeInfo, _data$data21, _data$data22, _data$data23, _data$data23$workOrde, _data$data24;
37
+ var _data$data15, _data$data16, _data$data16$workOrde, _data$data17, _data$data17$workOrde, _data$data18, _data$data18$nodeInfo, _data$data19, _data$data20, _data$data20$nodeInfo, _data$data21, _data$data22, _data$data23, _data$data23$workOrde, _data$data24, _data$data25;
37
38
  var tag = props.tag,
38
39
  nodeId = props.nodeId,
39
40
  nodeName = props.nodeName,
@@ -326,6 +327,8 @@ var NodeItem = function NodeItem(props) {
326
327
  transData: transData,
327
328
  platform: plat.platform,
328
329
  onOpenWangWang: onOpenWangWang
329
- })), isAutoNode && renderAutoNodeDetail()));
330
+ })), isAutoNode && /*#__PURE__*/React.createElement(AutoTaskDetail, {
331
+ flowEventData: data === null || data === void 0 ? void 0 : (_data$data25 = data.data) === null || _data$data25 === void 0 ? void 0 : _data$data25.flowEventData
332
+ })));
330
333
  };
331
334
  export default NodeItem;
@@ -217,6 +217,7 @@ export declare const selectCurrentNodeDetail: (state: FlowTemplateDetailState) =
217
217
  }[] | undefined;
218
218
  };
219
219
  flowEventData?: {
220
+ eventStatus: 0 | 1 | 2 | 4;
220
221
  eventData?: {
221
222
  businessStatus?: {
222
223
  businessKey: string;
@@ -797,6 +797,7 @@ export interface QyFlowPanelInfoResponse {
797
797
  [k: string]: any;
798
798
  };
799
799
  flowEventData?: {
800
+ eventStatus: 0 | 1 | 2 | 4;
800
801
  eventData?: {
801
802
  businessStatus?: Array<{
802
803
  businessKey: string;
@@ -6,7 +6,6 @@ export declare const selectFlowList: ((state: {
6
6
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
7
7
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
8
8
  logicFlow: import("./types").LogicFlowState;
9
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
10
9
  }) => import("./types").LogicFlow[]) & import("reselect").OutputSelectorFields<(args_0: import("./types").LogicFlowState) => import("./types").LogicFlow[], {
11
10
  clearCache: () => void;
12
11
  }> & {
@@ -20,7 +19,6 @@ export declare const selectGroupFlowList: ((state: {
20
19
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
21
20
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
22
21
  logicFlow: import("./types").LogicFlowState;
23
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
24
22
  }) => import("./types").Option[]) & import("reselect").OutputSelectorFields<(args_0: import("./types").LogicFlowState) => import("./types").Option[], {
25
23
  clearCache: () => void;
26
24
  }> & {
@@ -34,7 +32,6 @@ export declare const selectFlowTemplateGroupWorkOrderTemplateList: ((state: {
34
32
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
35
33
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
36
34
  logicFlow: import("./types").LogicFlowState;
37
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
38
35
  }) => import("./types").Option[]) & import("reselect").OutputSelectorFields<(args_0: import("./types").LogicFlowState) => import("./types").Option[], {
39
36
  clearCache: () => void;
40
37
  }> & {
@@ -6,7 +6,6 @@ export declare const selectPaymentWorkOrderExamineModalVisible: ((state: {
6
6
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
7
7
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
8
8
  logicFlow: import("../logicFlow/types").LogicFlowState;
9
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
10
9
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
11
10
  clearCache: () => void;
12
11
  }> & {
@@ -20,7 +19,6 @@ export declare const selectCurrentPaymentRecord: ((state: {
20
19
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
21
20
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
22
21
  logicFlow: import("../logicFlow/types").LogicFlowState;
23
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
24
22
  }) => any) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => any, {
25
23
  clearCache: () => void;
26
24
  }> & {
@@ -34,7 +32,6 @@ export declare const selectPaymentWorkOrderUnExamineModalVisible: ((state: {
34
32
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
35
33
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
36
34
  logicFlow: import("../logicFlow/types").LogicFlowState;
37
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
38
35
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
39
36
  clearCache: () => void;
40
37
  }> & {
@@ -48,7 +45,6 @@ export declare const selectDeletePaymentWorkOrderVisible: ((state: {
48
45
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
49
46
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
50
47
  logicFlow: import("../logicFlow/types").LogicFlowState;
51
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
52
48
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
53
49
  clearCache: () => void;
54
50
  }> & {
@@ -62,7 +58,6 @@ export declare const selectFlagPayModalVisible: ((state: {
62
58
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
63
59
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
64
60
  logicFlow: import("../logicFlow/types").LogicFlowState;
65
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
66
61
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
67
62
  clearCache: () => void;
68
63
  }> & {
@@ -76,7 +71,6 @@ export declare const selectLogModalVisible: ((state: {
76
71
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
77
72
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
78
73
  logicFlow: import("../logicFlow/types").LogicFlowState;
79
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
80
74
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
81
75
  clearCache: () => void;
82
76
  }> & {
@@ -90,7 +84,6 @@ export declare const selectPaymentFormModalVisible: ((state: {
90
84
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
91
85
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
92
86
  logicFlow: import("../logicFlow/types").LogicFlowState;
93
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
94
87
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
95
88
  clearCache: () => void;
96
89
  }> & {
@@ -104,7 +97,6 @@ export declare const selectRepeatVisible: ((state: {
104
97
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
105
98
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
106
99
  logicFlow: import("../logicFlow/types").LogicFlowState;
107
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
108
100
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => boolean, {
109
101
  clearCache: () => void;
110
102
  }> & {
@@ -118,7 +110,6 @@ export declare const selectRepeatWorkOrderList: ((state: {
118
110
  paymentWorkOrder: import("./types").PaymentWorkOrderState;
119
111
  singleWorkOrder: import("../singleShopWorkOrder/types").SingleWorkOrderState;
120
112
  logicFlow: import("../logicFlow/types").LogicFlowState;
121
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
122
113
  }) => string[]) & import("reselect").OutputSelectorFields<(args_0: import("./types").PaymentWorkOrderState) => string[], {
123
114
  clearCache: () => void;
124
115
  }> & {
@@ -6,7 +6,6 @@ export declare const selectorSingleTemplateList: ((state: {
6
6
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
7
7
  singleWorkOrder: import("./types").SingleWorkOrderState;
8
8
  logicFlow: import("../logicFlow/types").LogicFlowState;
9
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
10
9
  }) => import("./types").SelectI[]) & import("reselect").OutputSelectorFields<(args_0: import("./types").SingleWorkOrderState) => import("./types").SelectI[], {
11
10
  clearCache: () => void;
12
11
  }> & {
@@ -20,7 +19,6 @@ export declare const selectDeleteCustomizeWorkOrderModalVisible: ((state: {
20
19
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
21
20
  singleWorkOrder: import("./types").SingleWorkOrderState;
22
21
  logicFlow: import("../logicFlow/types").LogicFlowState;
23
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
24
22
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").SingleWorkOrderState) => boolean, {
25
23
  clearCache: () => void;
26
24
  }> & {
@@ -34,7 +32,6 @@ export declare const selectorCurrentCustomizeRecord: ((state: {
34
32
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
35
33
  singleWorkOrder: import("./types").SingleWorkOrderState;
36
34
  logicFlow: import("../logicFlow/types").LogicFlowState;
37
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
38
35
  }) => any) & import("reselect").OutputSelectorFields<(args_0: import("./types").SingleWorkOrderState) => any, {
39
36
  clearCache: () => void;
40
37
  }> & {
@@ -48,7 +45,6 @@ export declare const selectorTemplateId: ((state: {
48
45
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
49
46
  singleWorkOrder: import("./types").SingleWorkOrderState;
50
47
  logicFlow: import("../logicFlow/types").LogicFlowState;
51
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
52
48
  }) => string) & import("reselect").OutputSelectorFields<(args_0: import("./types").SingleWorkOrderState) => string, {
53
49
  clearCache: () => void;
54
50
  }> & {
@@ -62,7 +58,6 @@ export declare const selectorFormModalVisible: ((state: {
62
58
  paymentWorkOrder: import("../paymentWorkOrder/types").PaymentWorkOrderState;
63
59
  singleWorkOrder: import("./types").SingleWorkOrderState;
64
60
  logicFlow: import("../logicFlow/types").LogicFlowState;
65
- flowWOrkOrderDetail: import("../flowTemplateDetail/types").FlowTemplateDetailState;
66
61
  }) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./types").SingleWorkOrderState) => boolean, {
67
62
  clearCache: () => void;
68
63
  }> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/kmkf-work-order-service-component",
3
- "version": "2.0.79-beta.2",
3
+ "version": "2.0.79-beta.4",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -73,7 +73,7 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "f857118aff6aae6c75ba9f9e249399e5cd5b11fe",
76
+ "gitHead": "868f4d30d09f521cb3399e79a5a26e8e83e93938",
77
77
  "gitHooks": {
78
78
  "pre-commit": "lint-staged"
79
79
  }