@kmkf-fe-packages/kmkf-work-order-service-component 2.0.79-beta.2 → 2.0.79-beta.3
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.
- package/dist/esm/FlowTemplateDetailV2/components/AutoTaskDetail/index.d.ts +4 -0
- package/dist/esm/FlowTemplateDetailV2/components/AutoTaskDetail/index.js +28 -0
- package/dist/esm/FlowTemplateDetailV2/components/CurrentNode/index.js +4 -18
- package/dist/esm/FlowTemplateDetailV2/components/Item/index.js +5 -2
- package/dist/esm/FlowTemplateDetailV2/store/selector.d.ts +1 -0
- package/dist/esm/model/flowTemplateDetail/types.d.ts +1 -0
- package/dist/esm/model/logicFlow/selector.d.ts +0 -3
- package/dist/esm/model/paymentWorkOrder/selector.d.ts +0 -9
- package/dist/esm/model/singleShopWorkOrder/selector.d.ts +0 -5
- package/package.json +2 -2
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { isNumber } from 'lodash';
|
|
3
|
+
export var AutoTaskDetail = function AutoTaskDetail(_ref) {
|
|
4
|
+
var flowEventData = _ref.flowEventData;
|
|
5
|
+
var mapping = {
|
|
6
|
+
0: '执行中',
|
|
7
|
+
1: '部分成功',
|
|
8
|
+
2: '全部成功',
|
|
9
|
+
4: '全部失败'
|
|
10
|
+
};
|
|
11
|
+
var eventStatus = flowEventData === null || flowEventData === void 0 ? void 0 : flowEventData.eventStatus;
|
|
12
|
+
var renderRules = function renderRules() {
|
|
13
|
+
var _flowEventData$eventD, _flowEventData$eventD2, _flowEventData$eventD3;
|
|
14
|
+
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) {
|
|
15
|
+
var _item$passConditionLi;
|
|
16
|
+
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 (condition) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("p", null, condition);
|
|
18
|
+
})));
|
|
19
|
+
}));
|
|
20
|
+
};
|
|
21
|
+
var renderReason = function renderReason() {
|
|
22
|
+
var _flowEventData$eventD4, _flowEventData$eventD5, _flowEventData$eventD6;
|
|
23
|
+
return /*#__PURE__*/React.createElement("p", null, 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$eventD6 = _flowEventData$eventD5.map(function (item) {
|
|
24
|
+
return item === null || item === void 0 ? void 0 : item.remark;
|
|
25
|
+
})) === null || _flowEventData$eventD6 === void 0 ? void 0 : _flowEventData$eventD6.join(','));
|
|
26
|
+
};
|
|
27
|
+
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) && [1, 4].includes(eventStatus) && renderReason());
|
|
28
|
+
};
|
|
@@ -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 &&
|
|
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 &&
|
|
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;
|
|
@@ -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.
|
|
3
|
+
"version": "2.0.79-beta.3",
|
|
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": "
|
|
76
|
+
"gitHead": "227604eb47a2ceb599da3f7f73a38761f7a815ee",
|
|
77
77
|
"gitHooks": {
|
|
78
78
|
"pre-commit": "lint-staged"
|
|
79
79
|
}
|