@zeniai/client-epic-state 4.20.2 → 4.20.3-beta10ND

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.
Files changed (175) hide show
  1. package/lib/common/aiCfo/aiCfoSuggestedQuestionsPageContext.d.ts +19 -0
  2. package/lib/common/aiCfo/aiCfoSuggestedQuestionsPageContext.js +2 -0
  3. package/lib/commonStateTypes/animations.d.ts +1 -1
  4. package/lib/commonStateTypes/animations.js +3 -0
  5. package/lib/entity/aiCfo/aiCfoSelector.d.ts +1 -2
  6. package/lib/entity/billPay/billTransaction/billTransactionState.d.ts +2 -2
  7. package/lib/entity/jeSchedules/jeSchedulesPayload.d.ts +38 -0
  8. package/lib/entity/jeSchedules/jeSchedulesPayload.js +78 -0
  9. package/lib/entity/jeSchedules/jeSchedulesSelector.d.ts +4 -1
  10. package/lib/entity/jeSchedules/jeSchedulesSelector.js +5 -1
  11. package/lib/entity/jeSchedules/jeSchedulesState.d.ts +37 -0
  12. package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
  13. package/lib/entity/snackbar/snackbarTypes.js +5 -0
  14. package/lib/entity/tenant/tenantPayload.d.ts +1 -0
  15. package/lib/entity/tenant/tenantReducer.js +1 -0
  16. package/lib/entity/tenant/tenantSelector.d.ts +1 -0
  17. package/lib/entity/tenant/tenantSelector.js +9 -1
  18. package/lib/entity/tenant/tenantState.d.ts +1 -0
  19. package/lib/entity/transaction/payloadTypes/scheduleTransactionPayload.d.ts +4 -1
  20. package/lib/entity/transaction/payloadTypes/scheduleTransactionPayload.js +1 -0
  21. package/lib/entity/transaction/payloadTypes/transactionPayload.d.ts +3 -0
  22. package/lib/entity/transaction/payloadTypes/transactionPayload.js +17 -1
  23. package/lib/entity/transaction/stateTypes/scheduleTransaction.d.ts +1 -0
  24. package/lib/entity/transaction/stateTypes/transaction.d.ts +5 -0
  25. package/lib/entity/transaction/stateTypes/transactionLine.d.ts +1 -1
  26. package/lib/epic.d.ts +8 -1
  27. package/lib/epic.js +8 -1
  28. package/lib/esm/common/aiCfo/aiCfoSuggestedQuestionsPageContext.js +1 -0
  29. package/lib/esm/commonStateTypes/animations.js +3 -0
  30. package/lib/esm/entity/jeSchedules/jeSchedulesPayload.js +78 -0
  31. package/lib/esm/entity/jeSchedules/jeSchedulesSelector.js +5 -1
  32. package/lib/esm/entity/snackbar/snackbarTypes.js +5 -0
  33. package/lib/esm/entity/tenant/tenantReducer.js +1 -0
  34. package/lib/esm/entity/tenant/tenantSelector.js +7 -0
  35. package/lib/esm/entity/transaction/payloadTypes/scheduleTransactionPayload.js +1 -0
  36. package/lib/esm/entity/transaction/payloadTypes/transactionPayload.js +17 -1
  37. package/lib/esm/epic.js +8 -1
  38. package/lib/esm/index.js +10 -7
  39. package/lib/esm/reducer.js +3 -0
  40. package/lib/esm/view/aiCfoView/aiCfoViewReducer.js +82 -1
  41. package/lib/esm/view/aiCfoView/aiCfoViewSelector.js +8 -2
  42. package/lib/esm/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.js +29 -0
  43. package/lib/esm/view/classList/fetchClassListEpic.js +9 -2
  44. package/lib/esm/view/commonVendorView/vendorView/vendorViewSelector.js +18 -5
  45. package/lib/esm/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewSelector.js +6 -2
  46. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +2 -2
  47. package/lib/esm/view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic.js +2 -2
  48. package/lib/esm/view/expenseAutomationView/epics/missingReceipts/watchBulkUploadBatchStatusEpic.js +4 -3
  49. package/lib/esm/view/expenseAutomationView/expenseAutomationViewSelector.js +0 -1
  50. package/lib/esm/view/expenseAutomationView/helpers/saveTransactionHelper.js +2 -2
  51. package/lib/esm/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +2 -2
  52. package/lib/esm/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +17 -1
  53. package/lib/esm/view/expenseAutomationView/selectors/fluxAnalysisViewSelector.js +10 -2
  54. package/lib/esm/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +63 -6
  55. package/lib/esm/view/expenseAutomationView/selectors/missingReceiptsSelector.js +12 -4
  56. package/lib/esm/view/expenseAutomationView/selectors/reconciliationViewSelector.js +22 -9
  57. package/lib/esm/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +12 -6
  58. package/lib/esm/view/expenseAutomationView/types/jeSchedulesViewState.js +18 -1
  59. package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector.js +18 -1
  60. package/lib/esm/view/profitAndLossClassesView/profitAndLossHorizontalEnrichment.js +17 -14
  61. package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesPayload.js +26 -0
  62. package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesReducer.js +199 -0
  63. package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesSelector.js +52 -0
  64. package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesState.js +1 -0
  65. package/lib/esm/view/spendManagement/autotransferRules/epics/createAutoTransferRuleEpic.js +99 -0
  66. package/lib/esm/view/spendManagement/autotransferRules/epics/deleteAutoTransferRuleEpic.js +48 -0
  67. package/lib/esm/view/spendManagement/autotransferRules/epics/fetchAutoTransferReviewDetailEpic.js +36 -0
  68. package/lib/esm/view/spendManagement/autotransferRules/epics/fetchAutoTransferRuleHistory.js +45 -0
  69. package/lib/esm/view/spendManagement/autotransferRules/epics/fetchAutoTransferRulesEpic.js +50 -0
  70. package/lib/esm/view/spendManagement/autotransferRules/epics/updateAutoTransferRuleEpic.js +69 -0
  71. package/lib/esm/view/spendManagement/billPay/billList/billListSelector.js +10 -0
  72. package/lib/esm/view/spendManagement/billPay/billList/billListState.js +1 -0
  73. package/lib/esm/view/spendManagement/billPay/billPayReview/billPayReviewSelector.js +7 -3
  74. package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelector.js +5 -5
  75. package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversDetailsEpic.js +7 -2
  76. package/lib/esm/view/spendManagement/billPay/editBillView/editBillViewSelector.js +13 -6
  77. package/lib/esm/view/spendManagement/chargeCards/chargeCardList/chargeCardList.js +1 -0
  78. package/lib/esm/view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector.js +2 -0
  79. package/lib/esm/view/spendManagement/reimbursement/editRemiView/editRemiViewSelector.js +7 -4
  80. package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListSelector.js +12 -0
  81. package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListState.js +1 -0
  82. package/lib/esm/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryDetailEpic.js +2 -2
  83. package/lib/esm/view/spendManagement/treasury/treasuryList/treasuryDetailReducer.js +2 -1
  84. package/lib/esm/view/taskManager/taskDetailView/taskDetailSelector.js +2 -2
  85. package/lib/esm/view/transactionDetail/epics/saveTransactionHelper.js +2 -2
  86. package/lib/esm/view/transactionDetail/transactionDetailLocalDataHelper.js +16 -14
  87. package/lib/esm/view/transactionDetail/transactionDetailSelector.js +9 -2
  88. package/lib/index.d.ts +19 -12
  89. package/lib/index.js +54 -32
  90. package/lib/reducer.d.ts +3 -0
  91. package/lib/reducer.js +3 -0
  92. package/lib/tsconfig.typecheck.tsbuildinfo +1 -1
  93. package/lib/view/aiCfoView/aiCfoViewPayload.d.ts +7 -0
  94. package/lib/view/aiCfoView/aiCfoViewReducer.d.ts +15 -1
  95. package/lib/view/aiCfoView/aiCfoViewReducer.js +83 -2
  96. package/lib/view/aiCfoView/aiCfoViewSelector.d.ts +4 -1
  97. package/lib/view/aiCfoView/aiCfoViewSelector.js +9 -2
  98. package/lib/view/aiCfoView/aiCfoViewState.d.ts +15 -1
  99. package/lib/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.d.ts +8 -0
  100. package/lib/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.js +33 -0
  101. package/lib/view/auditReportView/auditReportViewState.d.ts +1 -1
  102. package/lib/view/classList/fetchClassListEpic.d.ts +1 -1
  103. package/lib/view/classList/fetchClassListEpic.js +8 -1
  104. package/lib/view/commonVendorView/vendorView/vendorViewSelector.d.ts +1 -0
  105. package/lib/view/commonVendorView/vendorView/vendorViewSelector.js +18 -5
  106. package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewSelector.d.ts +1 -0
  107. package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewSelector.js +6 -2
  108. package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +2 -2
  109. package/lib/view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic.js +1 -1
  110. package/lib/view/expenseAutomationView/epics/missingReceipts/watchBulkUploadBatchStatusEpic.js +4 -3
  111. package/lib/view/expenseAutomationView/expenseAutomationViewSelector.js +0 -1
  112. package/lib/view/expenseAutomationView/helpers/saveTransactionHelper.js +2 -2
  113. package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
  114. package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +2 -2
  115. package/lib/view/expenseAutomationView/payload/jeSchedulesPayload.d.ts +1 -1
  116. package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.d.ts +2 -2
  117. package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +18 -2
  118. package/lib/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.d.ts +2 -0
  119. package/lib/view/expenseAutomationView/selectors/fluxAnalysisViewSelector.js +10 -2
  120. package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +63 -6
  121. package/lib/view/expenseAutomationView/selectors/missingReceiptsSelector.js +12 -4
  122. package/lib/view/expenseAutomationView/selectors/reconciliationViewSelector.js +22 -9
  123. package/lib/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +11 -5
  124. package/lib/view/expenseAutomationView/types/jeSchedulesViewState.d.ts +5 -0
  125. package/lib/view/expenseAutomationView/types/jeSchedulesViewState.js +20 -0
  126. package/lib/view/onboardingView/cockpitView/types/onboardingCockpitViewTypes.d.ts +1 -1
  127. package/lib/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector.d.ts +2 -0
  128. package/lib/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector.js +19 -2
  129. package/lib/view/profitAndLossClassesView/profitAndLossHorizontalEnrichment.js +17 -14
  130. package/lib/view/scheduleView/scheduleListView/scheduleListTypes.d.ts +1 -1
  131. package/lib/view/spendManagement/autotransferRules/autoTransferRulesPayload.d.ts +75 -0
  132. package/lib/view/spendManagement/autotransferRules/autoTransferRulesPayload.js +30 -0
  133. package/lib/view/spendManagement/autotransferRules/autoTransferRulesReducer.d.ts +50 -0
  134. package/lib/view/spendManagement/autotransferRules/autoTransferRulesReducer.js +206 -0
  135. package/lib/view/spendManagement/autotransferRules/autoTransferRulesSelector.d.ts +24 -0
  136. package/lib/view/spendManagement/autotransferRules/autoTransferRulesSelector.js +61 -0
  137. package/lib/view/spendManagement/autotransferRules/autoTransferRulesState.d.ts +38 -0
  138. package/lib/view/spendManagement/autotransferRules/autoTransferRulesState.js +2 -0
  139. package/lib/view/spendManagement/autotransferRules/epics/createAutoTransferRuleEpic.d.ts +12 -0
  140. package/lib/view/spendManagement/autotransferRules/epics/createAutoTransferRuleEpic.js +105 -0
  141. package/lib/view/spendManagement/autotransferRules/epics/deleteAutoTransferRuleEpic.d.ts +8 -0
  142. package/lib/view/spendManagement/autotransferRules/epics/deleteAutoTransferRuleEpic.js +52 -0
  143. package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferReviewDetailEpic.d.ts +7 -0
  144. package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferReviewDetailEpic.js +40 -0
  145. package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRuleHistory.d.ts +7 -0
  146. package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRuleHistory.js +52 -0
  147. package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRulesEpic.d.ts +10 -0
  148. package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRulesEpic.js +54 -0
  149. package/lib/view/spendManagement/autotransferRules/epics/updateAutoTransferRuleEpic.d.ts +8 -0
  150. package/lib/view/spendManagement/autotransferRules/epics/updateAutoTransferRuleEpic.js +73 -0
  151. package/lib/view/spendManagement/billPay/billList/billListSelector.js +10 -0
  152. package/lib/view/spendManagement/billPay/billList/billListState.d.ts +1 -1
  153. package/lib/view/spendManagement/billPay/billList/billListState.js +1 -0
  154. package/lib/view/spendManagement/billPay/billPayReview/billPayReviewSelector.js +7 -3
  155. package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelector.js +5 -5
  156. package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversDetailsEpic.js +7 -2
  157. package/lib/view/spendManagement/billPay/editBillView/editBillViewSelector.js +13 -6
  158. package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetail.d.ts +1 -1
  159. package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardList.d.ts +1 -1
  160. package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardList.js +1 -0
  161. package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector.js +2 -0
  162. package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewSelector.js +6 -3
  163. package/lib/view/spendManagement/reimbursement/remiListView/remiListSelector.d.ts +1 -0
  164. package/lib/view/spendManagement/reimbursement/remiListView/remiListSelector.js +12 -0
  165. package/lib/view/spendManagement/reimbursement/remiListView/remiListState.d.ts +1 -1
  166. package/lib/view/spendManagement/reimbursement/remiListView/remiListState.js +1 -0
  167. package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryDetailEpic.js +2 -2
  168. package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailReducer.d.ts +2 -1
  169. package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailReducer.js +2 -1
  170. package/lib/view/taskManager/taskDetailView/taskDetailSelector.js +2 -2
  171. package/lib/view/transactionDetail/epics/saveTransactionHelper.js +2 -2
  172. package/lib/view/transactionDetail/transactionDetailLocalDataHelper.js +16 -14
  173. package/lib/view/transactionDetail/transactionDetailSelector.d.ts +1 -0
  174. package/lib/view/transactionDetail/transactionDetailSelector.js +9 -2
  175. package/package.json +1 -1
@@ -0,0 +1,199 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ import recordGet from 'lodash/get';
3
+ import { initialCommonHistory } from '../commonHistoryView/commonHistory';
4
+ import { toHistoricEvent, } from '../commonHistoryView/commonHistoryPayload';
5
+ import { mapReviewTransferMoneyPayloadToReviewTransferMoney, } from '../zeniAccounts/transferDetail/transferDetailPayload';
6
+ export const initialState = {
7
+ autoTransferReviewDetail: {
8
+ reviewTransferMoney: {
9
+ isShowDailyAchLimitWarning: false,
10
+ dailyAchDebitLimit: {
11
+ amount: 0,
12
+ currencyCode: 'USD',
13
+ currencySymbol: '$',
14
+ },
15
+ transferSchedules: [],
16
+ },
17
+ fetchState: 'Not-Started',
18
+ error: undefined,
19
+ },
20
+ historyByRuleId: {},
21
+ ruleDeleteStatusById: {},
22
+ ruleUpdateLocalData: {},
23
+ ruleUpdateStatusById: {},
24
+ rules: [],
25
+ fetchState: 'Not-Started',
26
+ error: undefined,
27
+ createRuleFetchState: {
28
+ fetchState: 'Not-Started',
29
+ error: undefined,
30
+ },
31
+ hasValidState() {
32
+ return this.fetchState === 'Completed';
33
+ },
34
+ };
35
+ const autotransferRules = createSlice({
36
+ name: 'autotransferRules',
37
+ initialState,
38
+ reducers: {
39
+ fetchAutoTransferRules: {
40
+ reducer(draft) {
41
+ draft.fetchState = 'In-Progress';
42
+ },
43
+ prepare(cacheOverride = false) {
44
+ return {
45
+ payload: {
46
+ cacheOverride,
47
+ },
48
+ };
49
+ },
50
+ },
51
+ updateAutoTransferRules(draft, action) {
52
+ draft.rules = action.payload.rules;
53
+ draft.fetchState = 'Completed';
54
+ draft.error = undefined;
55
+ },
56
+ updateAutoTransferRulesFailure(draft, action) {
57
+ draft.fetchState = action.payload.fetchState;
58
+ draft.error = action.payload.error;
59
+ },
60
+ updateRuleLocalData(draft, action) {
61
+ draft.ruleUpdateLocalData = {
62
+ ...draft.ruleUpdateLocalData,
63
+ ...action.payload,
64
+ };
65
+ },
66
+ clearRuleUpdateLocalData(draft) {
67
+ draft.ruleUpdateLocalData = {};
68
+ },
69
+ fetchAutoTransferReviewDetail(draft) {
70
+ draft.autoTransferReviewDetail.fetchState = 'In-Progress';
71
+ draft.autoTransferReviewDetail.error = undefined;
72
+ },
73
+ updateAutoTransferReviewDetail(draft, action) {
74
+ draft.autoTransferReviewDetail.fetchState = 'Completed';
75
+ draft.autoTransferReviewDetail.error = undefined;
76
+ draft.autoTransferReviewDetail.reviewTransferMoney =
77
+ mapReviewTransferMoneyPayloadToReviewTransferMoney(action.payload);
78
+ },
79
+ updateAutoTransferReviewDetailFailure(draft, action) {
80
+ draft.autoTransferReviewDetail.fetchState = 'Error';
81
+ draft.autoTransferReviewDetail.error = action.payload;
82
+ },
83
+ clearAutoTransferReviewDetail(draft) {
84
+ draft.autoTransferReviewDetail = initialState.autoTransferReviewDetail;
85
+ },
86
+ createAutoTransferRule(draft) {
87
+ draft.createRuleFetchState = {
88
+ fetchState: 'In-Progress',
89
+ error: undefined,
90
+ };
91
+ },
92
+ createAutoTransferRuleSuccess(draft, action) {
93
+ draft.rules = [...draft.rules, action.payload.rule];
94
+ draft.createRuleFetchState = {
95
+ fetchState: 'Completed',
96
+ error: undefined,
97
+ };
98
+ },
99
+ createAutoTransferRuleFailure(draft, action) {
100
+ draft.createRuleFetchState = {
101
+ fetchState: action.payload.fetchState,
102
+ error: action.payload.error,
103
+ };
104
+ },
105
+ updateAutoTransferRule: {
106
+ reducer(draft, action) {
107
+ draft.ruleUpdateStatusById[action.payload.ruleId] = {
108
+ fetchState: 'In-Progress',
109
+ error: undefined,
110
+ };
111
+ },
112
+ prepare(ruleId, pauseRule, resumeRule) {
113
+ return { payload: { ruleId, pauseRule, resumeRule } };
114
+ },
115
+ },
116
+ updateAutoTransferRuleSuccess(draft, action) {
117
+ const updatedRule = action.payload.rule;
118
+ draft.rules = draft.rules.map((rule) => rule.autoTransferRuleId === updatedRule.autoTransferRuleId
119
+ ? updatedRule
120
+ : rule);
121
+ draft.ruleUpdateStatusById[updatedRule.autoTransferRuleId] = {
122
+ fetchState: 'Completed',
123
+ error: undefined,
124
+ };
125
+ },
126
+ updateAutoTransferRuleFailure(draft, action) {
127
+ draft.ruleUpdateStatusById[action.payload.ruleId] = {
128
+ fetchState: action.payload.fetchState,
129
+ error: action.payload.error,
130
+ };
131
+ },
132
+ deleteAutoTransferRule: {
133
+ reducer(draft, action) {
134
+ draft.ruleDeleteStatusById[action.payload.ruleId] = {
135
+ fetchState: 'In-Progress',
136
+ error: undefined,
137
+ };
138
+ },
139
+ prepare(ruleId) {
140
+ return { payload: { ruleId } };
141
+ },
142
+ },
143
+ deleteAutoTransferRuleSuccess(draft, action) {
144
+ const { ruleId } = action.payload;
145
+ draft.rules = draft.rules.filter((rule) => rule.autoTransferRuleId !== ruleId);
146
+ draft.ruleDeleteStatusById[ruleId] = {
147
+ fetchState: 'Completed',
148
+ error: undefined,
149
+ };
150
+ },
151
+ deleteAutoTransferRuleFailure(draft, action) {
152
+ draft.ruleDeleteStatusById[action.payload.ruleId] = {
153
+ fetchState: action.payload.fetchState,
154
+ error: action.payload.error,
155
+ };
156
+ },
157
+ fetchAutoTransferRuleHistory: {
158
+ reducer(draft, action) {
159
+ const { ruleId, cacheOverride } = action.payload;
160
+ const detail = recordGet(draft.historyByRuleId, ruleId, undefined);
161
+ if (cacheOverride === true ||
162
+ detail == null ||
163
+ detail.fetchState !== 'In-Progress') {
164
+ draft.historyByRuleId[ruleId] = {
165
+ ...initialCommonHistory,
166
+ };
167
+ }
168
+ },
169
+ prepare(ruleId, cacheOverride = true) {
170
+ return {
171
+ payload: { ruleId, cacheOverride },
172
+ };
173
+ },
174
+ },
175
+ updateAutoTransferRuleHistory(draft, action) {
176
+ const { ruleId, historicEventsPayload } = action.payload;
177
+ const historicEvents = historicEventsPayload.map((historicEventPayload) => toHistoricEvent(historicEventPayload));
178
+ draft.historyByRuleId[ruleId] = {
179
+ ...initialCommonHistory,
180
+ fetchState: 'Completed',
181
+ error: undefined,
182
+ historicEvents,
183
+ };
184
+ },
185
+ updateAutoTransferRuleHistoryFetchStatus(draft, action) {
186
+ const { ruleId, fetchState, error } = action.payload;
187
+ const detail = recordGet(draft.historyByRuleId, ruleId, undefined);
188
+ if (detail != null) {
189
+ detail.fetchState = fetchState;
190
+ detail.error = error;
191
+ }
192
+ },
193
+ clearAutoTransferRules(draft) {
194
+ Object.assign(draft, initialState);
195
+ },
196
+ },
197
+ });
198
+ export const { fetchAutoTransferRules, updateAutoTransferRules, updateAutoTransferRulesFailure, fetchAutoTransferReviewDetail, updateAutoTransferReviewDetail, updateAutoTransferReviewDetailFailure, clearAutoTransferReviewDetail, createAutoTransferRule, createAutoTransferRuleSuccess, createAutoTransferRuleFailure, updateAutoTransferRule, updateAutoTransferRuleSuccess, updateAutoTransferRuleFailure, deleteAutoTransferRule, deleteAutoTransferRuleSuccess, deleteAutoTransferRuleFailure, fetchAutoTransferRuleHistory, updateAutoTransferRuleHistory, updateAutoTransferRuleHistoryFetchStatus, updateRuleLocalData, clearRuleUpdateLocalData, clearAutoTransferRules, } = autotransferRules.actions;
199
+ export default autotransferRules.reducer;
@@ -0,0 +1,52 @@
1
+ import recordGet from 'lodash/get';
2
+ import { reduceAllFetchState } from '../../../commonStateTypes/reduceFetchState';
3
+ import { getAllFundingAccounts, } from '../commonSetup/setupViewSelector';
4
+ import { getAllDepositAccounts } from '../zeniAccounts/depositAccountList/depositAccountListSelector';
5
+ import { getAllPaymentAccounts } from '../zeniAccounts/paymentAccountList/paymentAccountListSelector';
6
+ export const getAutoTransferRules = (state) => {
7
+ const { autotransferRulesState, depositAccountState, paymentAccountState, depositAccountListState, paymentAccountListState, treasuryDetailState, } = state;
8
+ const { rules, error, historyByRuleId, ruleUpdateLocalData, ruleUpdateStatusById, ruleDeleteStatusById, createRuleFetchState, autoTransferReviewDetail, } = autotransferRulesState;
9
+ const depositAccountsView = getAllDepositAccounts(depositAccountState, depositAccountListState);
10
+ const paymentAccountsView = getAllPaymentAccounts(paymentAccountState, paymentAccountListState);
11
+ let transferMoneyParties = [];
12
+ const transferMoneyPartiesFetchState = reduceAllFetchState([
13
+ depositAccountsView,
14
+ paymentAccountsView,
15
+ ]).fetchState;
16
+ const fetchState = reduceAllFetchState([
17
+ autotransferRulesState,
18
+ depositAccountsView,
19
+ paymentAccountsView,
20
+ ]).fetchState;
21
+ if (depositAccountsView.fetchState === 'Completed' &&
22
+ paymentAccountsView.fetchState === 'Completed') {
23
+ transferMoneyParties = getAllFundingAccounts(depositAccountsView.depositAccounts, paymentAccountsView.paymentAccounts, paymentAccountListState.paymentAccountBalanceFetchStatus);
24
+ }
25
+ const treasuryAccount = {
26
+ accType: 'treasuryAccount',
27
+ label: 'Treasury',
28
+ id: 'treasury',
29
+ balance: treasuryDetailState.accountSummary?.availableBalance,
30
+ };
31
+ return {
32
+ autoTransferReviewDetail,
33
+ rules,
34
+ ruleUpdateLocalData,
35
+ ruleUpdateStatusById,
36
+ ruleDeleteStatusById,
37
+ ruleHistory: historyByRuleId,
38
+ treasuryAccount,
39
+ transferMoneyParties,
40
+ transferMoneyPartiesFetchState,
41
+ createRuleFetchState,
42
+ fetchState,
43
+ error,
44
+ version: 0,
45
+ };
46
+ };
47
+ export const getAutoTransferRuleById = (state, ruleId) => {
48
+ return state.autotransferRulesState.rules.find((rule) => rule.autoTransferRuleId === ruleId);
49
+ };
50
+ export const getAutoTransferRuleHistory = (state, ruleId) => {
51
+ return recordGet(state.autotransferRulesState.historyByRuleId, ruleId, undefined);
52
+ };
@@ -0,0 +1,99 @@
1
+ import { from, of } from 'rxjs';
2
+ import { catchError, filter, mergeMap, switchMap } from 'rxjs/operators';
3
+ import { openSnackbar } from '../../../../entity/snackbar/snackbarReducer';
4
+ import { createZeniAPIStatus, isSuccessResponse, } from '../../../../responsePayload';
5
+ import { mapPayloadToAutoTransferRule, } from '../autoTransferRulesPayload';
6
+ import { createAutoTransferRule, createAutoTransferRuleFailure, createAutoTransferRuleSuccess, } from '../autoTransferRulesReducer';
7
+ export const createAutoTransferRuleEpic = (actions$, state$, zeniAPI) => actions$.pipe(filter(createAutoTransferRule.match), switchMap(() => {
8
+ const requestBody = mapAutoTransferRuleLocalDataToPayload(state$.value.autotransferRulesState.ruleUpdateLocalData);
9
+ return zeniAPI
10
+ .postAndGetJSON(`${zeniAPI.apiEndPoints.bankingMicroServiceBaseUrl}/1.0/rules/transfer/auto`, requestBody)
11
+ .pipe(mergeMap((response) => {
12
+ if (isSuccessResponse(response) && response.data != null) {
13
+ const rule = mapPayloadToAutoTransferRule(response.data.auto_transfer_rule);
14
+ const actions = [
15
+ createAutoTransferRuleSuccess({ rule }),
16
+ openSnackbar({
17
+ messageSection: 'auto_transfer_rule_create',
18
+ messageText: 'success',
19
+ type: 'success',
20
+ }),
21
+ ];
22
+ return from(actions);
23
+ }
24
+ else {
25
+ return from([
26
+ createAutoTransferRuleFailure({
27
+ fetchState: 'Error',
28
+ error: response.status,
29
+ }),
30
+ openSnackbar({
31
+ messageSection: 'auto_transfer_rule_create',
32
+ messageText: 'failed',
33
+ type: 'error',
34
+ variables: [
35
+ {
36
+ variableName: '_api-error_',
37
+ variableValue: response.status.message,
38
+ },
39
+ ],
40
+ }),
41
+ ]);
42
+ }
43
+ }), catchError((error) => of(createAutoTransferRuleFailure({
44
+ fetchState: 'Error',
45
+ error: createZeniAPIStatus('Unexpected Error', 'Create auto transfer rule REST API call errored out ' +
46
+ JSON.stringify(error)),
47
+ }))));
48
+ }));
49
+ export function mapAutoTransferRuleLocalDataToPayload(localData, pauseRule, resumeRule) {
50
+ if (pauseRule === true) {
51
+ return {
52
+ is_active: false,
53
+ };
54
+ }
55
+ if (resumeRule === true) {
56
+ return {
57
+ is_active: true,
58
+ };
59
+ }
60
+ const payload = {
61
+ ...(localData.amount != null && {
62
+ amount: localData.amount.amount,
63
+ currency_code: localData.amount.currencyCode,
64
+ }),
65
+ ...(localData.destinationAccount != null && {
66
+ destination_bank_account_id: localData.destinationAccount.id,
67
+ destination_bank_account_type: accountTypeSubConfigCodeToAccType(localData.destinationAccount.accType),
68
+ }),
69
+ ...(localData.destinationAccountWithPercentAllocation != null && {
70
+ destination_bank_account_metadata: localData.destinationAccountWithPercentAllocation.map((allocation) => ({
71
+ account_id: allocation.account.id,
72
+ account_type: accountTypeSubConfigCodeToAccType(allocation.account.accType),
73
+ percentage: allocation.percentage,
74
+ })),
75
+ }),
76
+ frequency: localData.frequency,
77
+ rule_type: localData.ruleType,
78
+ ...(localData.sourceAccount != null && {
79
+ source_bank_account_id: localData.sourceAccount.id,
80
+ source_bank_account_type: accountTypeSubConfigCodeToAccType(localData.sourceAccount.accType),
81
+ }),
82
+ ...(localData.firstTransferDate != null && {
83
+ first_transfer_date: localData.firstTransferDate.format('YYYY-MM-DD'),
84
+ }),
85
+ };
86
+ return payload;
87
+ }
88
+ export const accountTypeSubConfigCodeToAccType = (code) => {
89
+ switch (code) {
90
+ case 'depositAccount':
91
+ return 'deposit_account';
92
+ case 'paymentAccount':
93
+ return 'payment_account';
94
+ case 'treasuryAccount':
95
+ return 'treasury_account';
96
+ default:
97
+ return undefined;
98
+ }
99
+ };
@@ -0,0 +1,48 @@
1
+ import { from, of } from 'rxjs';
2
+ import { catchError, filter, mergeMap, switchMap } from 'rxjs/operators';
3
+ import { openSnackbar } from '../../../../entity/snackbar/snackbarReducer';
4
+ import { createZeniAPIStatus, isSuccessResponse, } from '../../../../responsePayload';
5
+ import { deleteAutoTransferRule, deleteAutoTransferRuleFailure, deleteAutoTransferRuleSuccess, } from '../autoTransferRulesReducer';
6
+ export const deleteAutoTransferRuleEpic = (actions$, _state$, zeniAPI) => actions$.pipe(filter(deleteAutoTransferRule.match), switchMap((action) => {
7
+ const { ruleId } = action.payload;
8
+ return zeniAPI
9
+ .deleteAndGetJSON(`${zeniAPI.apiEndPoints.bankingMicroServiceBaseUrl}/1.0/rules/transfer/auto/${ruleId}`)
10
+ .pipe(mergeMap((response) => {
11
+ if (isSuccessResponse(response)) {
12
+ const actions = [
13
+ deleteAutoTransferRuleSuccess({ ruleId }),
14
+ openSnackbar({
15
+ messageSection: 'auto_transfer_rule_delete',
16
+ messageText: 'success',
17
+ type: 'success',
18
+ }),
19
+ ];
20
+ return from(actions);
21
+ }
22
+ else {
23
+ return from([
24
+ deleteAutoTransferRuleFailure({
25
+ ruleId,
26
+ fetchState: 'Error',
27
+ error: response.status,
28
+ }),
29
+ openSnackbar({
30
+ messageSection: 'auto_transfer_rule_delete',
31
+ messageText: 'failed',
32
+ type: 'error',
33
+ variables: [
34
+ {
35
+ variableName: '_api-error_',
36
+ variableValue: response.status.message,
37
+ },
38
+ ],
39
+ }),
40
+ ]);
41
+ }
42
+ }), catchError((error) => of(deleteAutoTransferRuleFailure({
43
+ ruleId,
44
+ fetchState: 'Error',
45
+ error: createZeniAPIStatus('Unexpected Error', 'Delete auto transfer rule REST API call errored out ' +
46
+ JSON.stringify(error)),
47
+ }))));
48
+ }));
@@ -0,0 +1,36 @@
1
+ import { of } from 'rxjs';
2
+ import { catchError, filter, mergeMap, switchMap } from 'rxjs/operators';
3
+ import { createZeniAPIStatus, isSuccessResponse, } from '../../../../responsePayload';
4
+ import { fetchAutoTransferReviewDetail, updateAutoTransferReviewDetail, updateAutoTransferReviewDetailFailure, } from '../autoTransferRulesReducer';
5
+ import { accountTypeSubConfigCodeToAccType } from './createAutoTransferRuleEpic';
6
+ export const fetchAutoTransferReviewDetailEpic = (actions$, state$, zeniAPI) => actions$.pipe(filter(fetchAutoTransferReviewDetail.match), switchMap(() => {
7
+ const localData = state$.value.autotransferRulesState.ruleUpdateLocalData;
8
+ const payload = {
9
+ ...(localData.sourceAccount != null && {
10
+ from_account: {
11
+ account_id: localData.sourceAccount.id,
12
+ account_type: accountTypeSubConfigCodeToAccType(localData.sourceAccount.accType) ?? '',
13
+ },
14
+ }),
15
+ ...(localData.destinationAccount != null && {
16
+ to_account: {
17
+ account_id: localData.destinationAccount.id,
18
+ account_type: accountTypeSubConfigCodeToAccType(localData.destinationAccount.accType) ?? '',
19
+ },
20
+ }),
21
+ ...(localData.amount != null && {
22
+ amount: localData.amount.amount,
23
+ currency_code: localData.amount.currencyCode,
24
+ currency_symbol: localData.amount.currencySymbol,
25
+ }),
26
+ };
27
+ return zeniAPI
28
+ .postAndGetJSON(`${zeniAPI.apiEndPoints.bankingMicroServiceBaseUrl}/1.0/rules/transfer/auto/review`, payload)
29
+ .pipe(mergeMap((response) => {
30
+ if (isSuccessResponse(response) && response.data != null) {
31
+ return of(updateAutoTransferReviewDetail(response.data));
32
+ }
33
+ return of(updateAutoTransferReviewDetailFailure(response.status));
34
+ }), catchError((error) => of(updateAutoTransferReviewDetailFailure(createZeniAPIStatus('Unexpected Error', 'Fetch auto transfer review detail REST API call errored out ' +
35
+ JSON.stringify(error))))));
36
+ }));
@@ -0,0 +1,45 @@
1
+ import recordGet from 'lodash/get';
2
+ import { concat, from, of } from 'rxjs';
3
+ import { catchError, filter, mergeMap } from 'rxjs/operators';
4
+ import { createZeniAPIStatus, isSuccessResponse, } from '../../../../responsePayload';
5
+ import { fetchAutoTransferRuleHistory, updateAutoTransferRuleHistory, updateAutoTransferRuleHistoryFetchStatus, } from '../autoTransferRulesReducer';
6
+ export const fetchAutoTransferRuleHistoryEpic = (actions$, state$, zeniAPI) => actions$.pipe(filter(fetchAutoTransferRuleHistory.match), mergeMap((action) => {
7
+ const { ruleId, cacheOverride } = action.payload;
8
+ const historyActions = [];
9
+ const state = state$.value;
10
+ const historyDetail = recordGet(state.autotransferRulesState.historyByRuleId, ruleId, undefined);
11
+ if (cacheOverride === true ||
12
+ historyDetail == null ||
13
+ historyDetail.fetchState !== 'In-Progress') {
14
+ historyActions.push(updateAutoTransferRuleHistoryFetchStatus({
15
+ ruleId,
16
+ fetchState: 'In-Progress',
17
+ }));
18
+ const getHistoryDetail$ = zeniAPI
19
+ .getJSON(`${zeniAPI.apiEndPoints.bankingMicroServiceBaseUrl}/1.0/rules/transfer/auto/${ruleId}/history`)
20
+ .pipe(mergeMap((response) => {
21
+ if (isSuccessResponse(response) && response.data != null) {
22
+ return of(updateAutoTransferRuleHistory({
23
+ ruleId,
24
+ historicEventsPayload: response.data.activities,
25
+ }));
26
+ }
27
+ else {
28
+ return of(updateAutoTransferRuleHistoryFetchStatus({
29
+ ruleId,
30
+ fetchState: 'Error',
31
+ error: response.status,
32
+ }));
33
+ }
34
+ }), catchError((error) => of(updateAutoTransferRuleHistoryFetchStatus({
35
+ ruleId,
36
+ fetchState: 'Error',
37
+ error: createZeniAPIStatus('Unexpected Error', 'Fetch auto transfer rule history REST API call errored out ' +
38
+ JSON.stringify(error)),
39
+ }))));
40
+ return concat(from(historyActions), getHistoryDetail$);
41
+ }
42
+ else {
43
+ return from(historyActions);
44
+ }
45
+ }));
@@ -0,0 +1,50 @@
1
+ import { from, of } from 'rxjs';
2
+ import { catchError, filter, mergeMap, switchMap } from 'rxjs/operators';
3
+ import { createZeniAPIStatus, isSuccessResponse, } from '../../../../responsePayload';
4
+ import { fetchTreasuryOverviewDetail } from '../../treasury/treasuryList/treasuryDetailReducer';
5
+ import { fetchDepositAccountList } from '../../zeniAccounts/depositAccountList/depositAccountListReducer';
6
+ import { fetchPaymentAccountList } from '../../zeniAccounts/paymentAccountList/paymentAccountListReducer';
7
+ import { mapPayloadToAutoTransferRule, } from '../autoTransferRulesPayload';
8
+ import { fetchAutoTransferRules, updateAutoTransferRules, updateAutoTransferRulesFailure, } from '../autoTransferRulesReducer';
9
+ export const fetchAutoTransferRulesEpic = (actions$, state$, zeniAPI) => actions$.pipe(filter(fetchAutoTransferRules.match), switchMap((action) => {
10
+ const state = state$.value;
11
+ const { cacheOverride } = action.payload;
12
+ const { autotransferRulesState, depositAccountListState, paymentAccountListState, } = state;
13
+ if (cacheOverride === true ||
14
+ (autotransferRulesState.hasValidState() === false &&
15
+ autotransferRulesState.fetchState !== 'In-Progress')) {
16
+ return zeniAPI
17
+ .getJSON(`${zeniAPI.apiEndPoints.bankingMicroServiceBaseUrl}/1.0/rules/transfer/auto/list`)
18
+ .pipe(mergeMap((response) => {
19
+ if (isSuccessResponse(response) && response.data != null) {
20
+ const rules = response.data.auto_transfer_rules.map(mapPayloadToAutoTransferRule);
21
+ const actions = [
22
+ updateAutoTransferRules({ rules }),
23
+ ];
24
+ if (depositAccountListState.fetchState !== 'In-Progress' &&
25
+ depositAccountListState.fetchState !== 'Completed') {
26
+ actions.push(fetchDepositAccountList());
27
+ }
28
+ if (paymentAccountListState.fetchState !== 'In-Progress' &&
29
+ paymentAccountListState.fetchState !== 'Completed') {
30
+ actions.push(fetchPaymentAccountList());
31
+ }
32
+ actions.push(fetchTreasuryOverviewDetail(false, true));
33
+ return from(actions);
34
+ }
35
+ else {
36
+ return of(updateAutoTransferRulesFailure({
37
+ fetchState: 'Error',
38
+ error: response.status,
39
+ }));
40
+ }
41
+ }), catchError((error) => of(updateAutoTransferRulesFailure({
42
+ fetchState: 'Error',
43
+ error: createZeniAPIStatus('Unexpected Error', 'Fetch auto transfer rules REST API call errored out ' +
44
+ JSON.stringify(error)),
45
+ }))));
46
+ }
47
+ else {
48
+ return from([]);
49
+ }
50
+ }));
@@ -0,0 +1,69 @@
1
+ import { from, of } from 'rxjs';
2
+ import { catchError, filter, mergeMap, switchMap } from 'rxjs/operators';
3
+ import { openSnackbar } from '../../../../entity/snackbar/snackbarReducer';
4
+ import { createZeniAPIStatus, isSuccessResponse, } from '../../../../responsePayload';
5
+ import { mapPayloadToAutoTransferRule, } from '../autoTransferRulesPayload';
6
+ import { updateAutoTransferRule, updateAutoTransferRuleFailure, updateAutoTransferRuleSuccess, } from '../autoTransferRulesReducer';
7
+ import { mapAutoTransferRuleLocalDataToPayload } from './createAutoTransferRuleEpic';
8
+ export const updateAutoTransferRuleEpic = (actions$, state$, zeniAPI) => actions$.pipe(filter(updateAutoTransferRule.match), switchMap((action) => {
9
+ const { ruleId, pauseRule, resumeRule } = action.payload;
10
+ const requestBody = mapAutoTransferRuleLocalDataToPayload(state$.value.autotransferRulesState.ruleUpdateLocalData, pauseRule, resumeRule);
11
+ return zeniAPI
12
+ .putAndGetJSON(`${zeniAPI.apiEndPoints.bankingMicroServiceBaseUrl}/1.0/rules/transfer/auto/${ruleId}`, requestBody)
13
+ .pipe(mergeMap((response) => {
14
+ if (isSuccessResponse(response) && response.data != null) {
15
+ const rule = mapPayloadToAutoTransferRule(response.data.auto_transfer_rule);
16
+ const isPauseOrResumeOnly = Object.keys(requestBody).length === 1 &&
17
+ 'is_active' in requestBody;
18
+ const messageSection = isPauseOrResumeOnly
19
+ ? requestBody.is_active === false
20
+ ? 'auto_transfer_rule_pause'
21
+ : 'auto_transfer_rule_resume'
22
+ : 'auto_transfer_rule_update';
23
+ const actions = [
24
+ updateAutoTransferRuleSuccess({ rule }),
25
+ openSnackbar({
26
+ messageSection,
27
+ messageText: 'success',
28
+ type: 'success',
29
+ variables: [
30
+ {
31
+ variableName: '__ruleName__',
32
+ variableValue: rule.ruleType === 'minimum_balance'
33
+ ? 'Maintain a Minimum Balance'
34
+ : rule.ruleType === 'recurring'
35
+ ? 'Make a Recurring Transfer'
36
+ : 'Distribute Balance by Percentage',
37
+ },
38
+ ],
39
+ }),
40
+ ];
41
+ return from(actions);
42
+ }
43
+ else {
44
+ return from([
45
+ updateAutoTransferRuleFailure({
46
+ ruleId,
47
+ fetchState: 'Error',
48
+ error: response.status,
49
+ }),
50
+ openSnackbar({
51
+ messageSection: 'auto_transfer_rule_update',
52
+ messageText: 'failed',
53
+ type: 'error',
54
+ variables: [
55
+ {
56
+ variableName: '_api-error_',
57
+ variableValue: response.status.message,
58
+ },
59
+ ],
60
+ }),
61
+ ]);
62
+ }
63
+ }), catchError((error) => of(updateAutoTransferRuleFailure({
64
+ ruleId,
65
+ fetchState: 'Error',
66
+ error: createZeniAPIStatus('Unexpected Error', 'Update auto transfer rule REST API call errored out ' +
67
+ JSON.stringify(error)),
68
+ }))));
69
+ }));
@@ -416,6 +416,14 @@ export const getBillListOnSort = (sortKey, sortOrder, currentTab, transactions)
416
416
  transactionsWithNoSortKeyValue.push(transaction);
417
417
  }
418
418
  break;
419
+ case 'invoiceNumber':
420
+ if (transaction.documentId != null) {
421
+ transactionsWithSortKeyValue.push(transaction);
422
+ }
423
+ else {
424
+ transactionsWithNoSortKeyValue.push(transaction);
425
+ }
426
+ break;
419
427
  case 'dueDate':
420
428
  if (currentTab === 'draft') {
421
429
  if (Boolean(transaction.dueDate) === true) {
@@ -518,6 +526,8 @@ export const getBillListOnSort = (sortKey, sortOrder, currentTab, transactions)
518
526
  return transaction.totalAmountInUSD?.amount ?? 0;
519
527
  case 'paymentMethod':
520
528
  return transaction.billPayInfo.billPaymentMethodType.name;
529
+ case 'invoiceNumber':
530
+ return transaction.documentId;
521
531
  }
522
532
  }, getColumnWiseSortOrder(sortOrder));
523
533
  return [
@@ -43,6 +43,7 @@ const ALL_BILL_PAY_SORT_KEYS = [
43
43
  'invoiceDate',
44
44
  'name',
45
45
  'paymentMethod',
46
+ 'invoiceNumber',
46
47
  ];
47
48
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
48
49
  const toBillPaySortKeyType = (v) => stringToUnion(v, ALL_BILL_PAY_SORT_KEYS);
@@ -2,6 +2,7 @@ import recordGet from 'lodash/get';
2
2
  import { reduceFetchState } from '../../../../commonStateTypes/reduceFetchState';
3
3
  import { getContactsByIds } from '../../../../entity/billPay/contact/contactSelector';
4
4
  import { getPaymentAccountsByPaymentAccountIds } from '../../../../entity/paymentAccount/paymentAccountSelector';
5
+ import { getIsAccountingClassesEnabled } from '../../../../entity/tenant/tenantSelector';
5
6
  import { getVendorByVendorId } from '../../../../entity/vendor/vendorSelector';
6
7
  import { getAccountList } from '../../../accountList/accountListSelector';
7
8
  import { getAllFundingAccounts, } from '../../commonSetup/setupViewSelector';
@@ -73,11 +74,14 @@ export const getReviewPageBillDetail = (state, billId) => {
73
74
  }
74
75
  }
75
76
  if (sourceBillDetail != null) {
76
- sourceBillDetailFetchState = reduceFetchState([
77
+ const fetchStateList = [
77
78
  sourceBillDetail.fetchStatus,
78
79
  accountListState.byReportId['billPayAccountList'],
79
- classListState,
80
- ]).fetchState;
80
+ ];
81
+ if (getIsAccountingClassesEnabled(state)) {
82
+ fetchStateList.push(classListState);
83
+ }
84
+ sourceBillDetailFetchState = reduceFetchState(fetchStateList).fetchState;
81
85
  }
82
86
  }
83
87
  else {