@zeniai/client-epic-state 5.1.62-betaRD1 → 5.1.63
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/lib/entity/jeSchedules/jeSchedulesPayload.d.ts +0 -2
- package/lib/entity/jeSchedules/jeSchedulesPayload.js +0 -2
- package/lib/entity/jeSchedules/jeSchedulesSelector.d.ts +0 -4
- package/lib/entity/jeSchedules/jeSchedulesSelector.js +1 -11
- package/lib/entity/jeSchedules/jeSchedulesState.d.ts +0 -2
- package/lib/epic.d.ts +1 -5
- package/lib/epic.js +1 -5
- package/lib/esm/entity/jeSchedules/jeSchedulesPayload.js +0 -2
- package/lib/esm/entity/jeSchedules/jeSchedulesSelector.js +1 -11
- package/lib/esm/epic.js +1 -5
- package/lib/esm/index.js +4 -7
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +2 -15
- package/lib/esm/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +6 -126
- package/lib/esm/view/expenseAutomationView/reducers/reconciliationViewReducer.js +30 -2
- package/lib/esm/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +11 -65
- package/lib/esm/view/expenseAutomationView/types/jeSchedulesViewState.js +6 -3
- package/lib/index.d.ts +6 -9
- package/lib/index.js +48 -66
- package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +1 -14
- package/lib/view/expenseAutomationView/payload/jeSchedulesPayload.d.ts +0 -1
- package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.d.ts +8 -36
- package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +7 -128
- package/lib/view/expenseAutomationView/reducers/reconciliationViewReducer.js +30 -2
- package/lib/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.d.ts +4 -29
- package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +11 -65
- package/lib/view/expenseAutomationView/types/jeSchedulesViewState.d.ts +6 -53
- package/lib/view/expenseAutomationView/types/jeSchedulesViewState.js +8 -5
- package/package.json +1 -1
- package/lib/entity/transaction/scheduleTransactionHelper.d.ts +0 -15
- package/lib/entity/transaction/scheduleTransactionHelper.js +0 -43
- package/lib/esm/entity/transaction/scheduleTransactionHelper.js +0 -39
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js +0 -21
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.js +0 -110
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.js +0 -44
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.js +0 -22
- package/lib/esm/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.js +0 -152
- package/lib/esm/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.js +0 -1
- package/lib/esm/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.js +0 -71
- package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.d.ts +0 -8
- package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js +0 -25
- package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.d.ts +0 -45
- package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.js +0 -114
- package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.d.ts +0 -8
- package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.js +0 -48
- package/lib/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.d.ts +0 -6
- package/lib/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.js +0 -26
- package/lib/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.d.ts +0 -43
- package/lib/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.js +0 -158
- package/lib/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.d.ts +0 -25
- package/lib/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.js +0 -2
- package/lib/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.d.ts +0 -10
- package/lib/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.js +0 -76
package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ActionsObservable, StateObservable } from 'redux-observable';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { RootState } from '../../../../../reducer';
|
|
4
|
-
import { fetchAccountList } from '../../../../accountList/accountListReducer';
|
|
5
|
-
import { fetchClassList } from '../../../../classList/classListReducer';
|
|
6
|
-
import { clearSearchTransactionsForNewSchedule, initializeNewSchedule, resetNewScheduleLocalData } from '../../../reducers/jeSchedulesViewReducer';
|
|
7
|
-
export type ActionType = ReturnType<typeof clearSearchTransactionsForNewSchedule> | ReturnType<typeof fetchAccountList> | ReturnType<typeof fetchClassList> | ReturnType<typeof initializeNewSchedule> | ReturnType<typeof resetNewScheduleLocalData>;
|
|
8
|
-
export declare const initializeNewScheduleEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>) => Observable<ActionType>;
|
package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.initializeNewScheduleEpic = void 0;
|
|
4
|
-
const rxjs_1 = require("rxjs");
|
|
5
|
-
const operators_1 = require("rxjs/operators");
|
|
6
|
-
const accountListReducer_1 = require("../../../../accountList/accountListReducer");
|
|
7
|
-
const classListReducer_1 = require("../../../../classList/classListReducer");
|
|
8
|
-
const scheduleListHelper_1 = require("../../../../scheduleView/scheduleListView/scheduleListHelper");
|
|
9
|
-
const jeSchedulesViewReducer_1 = require("../../../reducers/jeSchedulesViewReducer");
|
|
10
|
-
const initializeNewScheduleEpic = (actions$, state$) => actions$.pipe((0, operators_1.filter)(jeSchedulesViewReducer_1.initializeNewSchedule.match), (0, operators_1.mergeMap)((action) => {
|
|
11
|
-
const newScheduleActions = [];
|
|
12
|
-
const accountType = (0, scheduleListHelper_1.getAccountsTypesForScheduleEpics)();
|
|
13
|
-
const { accountListState, classListState } = state$.value;
|
|
14
|
-
if (accountListState.byReportId[accountType.accountListKey]?.fetchState ===
|
|
15
|
-
'Not-Started') {
|
|
16
|
-
newScheduleActions.push((0, accountListReducer_1.fetchAccountList)(accountType.accountListKey, true, false, false, false, accountType.allowedAccountList));
|
|
17
|
-
}
|
|
18
|
-
if (classListState.fetchState === 'Not-Started') {
|
|
19
|
-
newScheduleActions.push((0, classListReducer_1.fetchClassList)());
|
|
20
|
-
}
|
|
21
|
-
newScheduleActions.push((0, jeSchedulesViewReducer_1.resetNewScheduleLocalData)({ scheduleType: action.payload.scheduleType }));
|
|
22
|
-
newScheduleActions.push((0, jeSchedulesViewReducer_1.clearSearchTransactionsForNewSchedule)());
|
|
23
|
-
return (0, rxjs_1.from)(newScheduleActions);
|
|
24
|
-
}));
|
|
25
|
-
exports.initializeNewScheduleEpic = initializeNewScheduleEpic;
|
package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.d.ts
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { ActionsObservable, StateObservable } from 'redux-observable';
|
|
2
|
-
import { updateJESchedules, updateJESchedulesDetails } from '../../../../../entity/jeSchedules/jeSchedulesReducer';
|
|
3
|
-
import { openSnackbar } from '../../../../../entity/snackbar/snackbarReducer';
|
|
4
|
-
import { RootState } from '../../../../../reducer';
|
|
5
|
-
import { ZeniAPI } from '../../../../../zeniAPI';
|
|
6
|
-
import { resetNewScheduleLocalData, saveNewSchedule, saveNewScheduleFailure, saveNewScheduleSuccess } from '../../../reducers/jeSchedulesViewReducer';
|
|
7
|
-
export type ActionType = ReturnType<typeof saveNewSchedule> | ReturnType<typeof saveNewScheduleSuccess> | ReturnType<typeof saveNewScheduleFailure> | ReturnType<typeof updateJESchedules> | ReturnType<typeof updateJESchedulesDetails> | ReturnType<typeof resetNewScheduleLocalData> | ReturnType<typeof openSnackbar>;
|
|
8
|
-
export declare const saveNewScheduleEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
9
|
-
payload: {
|
|
10
|
-
messageSection: import("../../../../..").SnackbarMessageSections;
|
|
11
|
-
messageText: import("../../../../..").SnackbarMessageSectionTexts;
|
|
12
|
-
type: import("../../../../..").SnackbarMessageType;
|
|
13
|
-
showStatusIcon?: boolean;
|
|
14
|
-
variables?: {
|
|
15
|
-
variableName: string;
|
|
16
|
-
variableValue: string;
|
|
17
|
-
}[];
|
|
18
|
-
};
|
|
19
|
-
type: "snackbar/openSnackbar";
|
|
20
|
-
} | {
|
|
21
|
-
payload: {
|
|
22
|
-
jeSchedulesTransactionsPayload: import("../../../../../entity/jeSchedules/jeSchedulesPayload").JEScheduledTransactionPayload[];
|
|
23
|
-
};
|
|
24
|
-
type: "jeSchedules/updateJESchedules";
|
|
25
|
-
} | {
|
|
26
|
-
payload: {
|
|
27
|
-
jeSchedulesPayload: import("../../../../../entity/jeSchedules/jeSchedulesPayload").JEScheduledTransactionPayload[];
|
|
28
|
-
scheduledJEntriesPayload: import("../../../../../entity/jeSchedules/jeSchedulesPayload").ScheduledJournalEntryPayload[] | undefined;
|
|
29
|
-
updateType: import("../../../../..").UpdateType;
|
|
30
|
-
};
|
|
31
|
-
type: "jeSchedules/updateJESchedulesDetails";
|
|
32
|
-
} | {
|
|
33
|
-
payload: {
|
|
34
|
-
scheduleType: "prepaid_expenses" | "fixed_assets";
|
|
35
|
-
};
|
|
36
|
-
type: "expenseAutomationJESchedulesView/resetNewScheduleLocalData";
|
|
37
|
-
} | {
|
|
38
|
-
payload: undefined;
|
|
39
|
-
type: "expenseAutomationJESchedulesView/saveNewScheduleSuccess";
|
|
40
|
-
} | {
|
|
41
|
-
payload: {
|
|
42
|
-
status: import("../../../../../responsePayload").ZeniAPIStatus;
|
|
43
|
-
};
|
|
44
|
-
type: "expenseAutomationJESchedulesView/saveNewScheduleFailure";
|
|
45
|
-
}>;
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.saveNewScheduleEpic = void 0;
|
|
4
|
-
const rxjs_1 = require("rxjs");
|
|
5
|
-
const operators_1 = require("rxjs/operators");
|
|
6
|
-
const jeSchedulesReducer_1 = require("../../../../../entity/jeSchedules/jeSchedulesReducer");
|
|
7
|
-
const snackbarReducer_1 = require("../../../../../entity/snackbar/snackbarReducer");
|
|
8
|
-
const transactionSelector_1 = require("../../../../../entity/transaction/transactionSelector");
|
|
9
|
-
const responsePayload_1 = require("../../../../../responsePayload");
|
|
10
|
-
const newScheduleLocalDataHelper_1 = require("../../../helpers/newScheduleLocalDataHelper");
|
|
11
|
-
const jeSchedulesViewReducer_1 = require("../../../reducers/jeSchedulesViewReducer");
|
|
12
|
-
const FAILURE_REASON_MESSAGES = {
|
|
13
|
-
multi_line_not_supported: 'This transaction has multiple lines and cannot be scheduled yet.',
|
|
14
|
-
missing_third_party_id: 'This transaction is missing a QuickBooks reference and cannot be scheduled.',
|
|
15
|
-
missing_vendor: 'Select a vendor before saving this schedule.',
|
|
16
|
-
};
|
|
17
|
-
const saveNewScheduleEpic = (actions$, state$, zeniAPI) => actions$.pipe((0, operators_1.filter)(jeSchedulesViewReducer_1.saveNewSchedule.match), (0, operators_1.mergeMap)((action) => {
|
|
18
|
-
const { scheduleType } = action.payload;
|
|
19
|
-
const state = state$.value;
|
|
20
|
-
const localData = state.expenseAutomationJESchedulesViewState.newSchedule
|
|
21
|
-
.newScheduleState[scheduleType];
|
|
22
|
-
const transactionId = localData.selectedBaseTransactionId?.id;
|
|
23
|
-
const transaction = transactionId != null
|
|
24
|
-
? (0, transactionSelector_1.getSupportedTransactionById)(state.transactionState, transactionId)
|
|
25
|
-
: undefined;
|
|
26
|
-
if (transaction == null) {
|
|
27
|
-
return (0, rxjs_1.from)([
|
|
28
|
-
(0, jeSchedulesViewReducer_1.saveNewScheduleFailure)({
|
|
29
|
-
status: (0, responsePayload_1.createZeniAPIStatus)('Unexpected Error', 'No base transaction selected for this schedule.'),
|
|
30
|
-
}),
|
|
31
|
-
(0, snackbarReducer_1.openSnackbar)({
|
|
32
|
-
messageSection: 'create_schedule',
|
|
33
|
-
messageText: 'failed',
|
|
34
|
-
type: 'error',
|
|
35
|
-
variables: [
|
|
36
|
-
{
|
|
37
|
-
variableName: '_api-error_',
|
|
38
|
-
variableValue: 'No base transaction selected.',
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
}),
|
|
42
|
-
]);
|
|
43
|
-
}
|
|
44
|
-
const result = (0, newScheduleLocalDataHelper_1.prepareNewSchedulePayload)(transaction, localData, scheduleType);
|
|
45
|
-
if (!result.ok) {
|
|
46
|
-
const message = FAILURE_REASON_MESSAGES[result.reason];
|
|
47
|
-
return (0, rxjs_1.from)([
|
|
48
|
-
(0, jeSchedulesViewReducer_1.saveNewScheduleFailure)({
|
|
49
|
-
status: (0, responsePayload_1.createZeniAPIStatus)('Unexpected Error', message),
|
|
50
|
-
}),
|
|
51
|
-
(0, snackbarReducer_1.openSnackbar)({
|
|
52
|
-
messageSection: 'create_schedule',
|
|
53
|
-
messageText: 'failed',
|
|
54
|
-
type: 'error',
|
|
55
|
-
variables: [{ variableName: '_api-error_', variableValue: message }],
|
|
56
|
-
}),
|
|
57
|
-
]);
|
|
58
|
-
}
|
|
59
|
-
const vendorName = localData.selectedVendor?.name ?? transaction.vendorName ?? '';
|
|
60
|
-
const queryParam = {
|
|
61
|
-
je_schedule_type: scheduleType,
|
|
62
|
-
};
|
|
63
|
-
const payload = { ...result.payload };
|
|
64
|
-
return zeniAPI
|
|
65
|
-
.postAndGetJSON(`${zeniAPI.apiEndPoints.accountMicroServiceBaseUrl}/1.0/schedules?query=${encodeURIComponent(JSON.stringify(queryParam))}`, payload)
|
|
66
|
-
.pipe((0, operators_1.mergeMap)((response) => {
|
|
67
|
-
if ((0, responsePayload_1.isSuccessResponse)(response) && response.data != null) {
|
|
68
|
-
return (0, rxjs_1.from)([
|
|
69
|
-
(0, jeSchedulesReducer_1.updateJESchedules)(response.data.je_schedules),
|
|
70
|
-
(0, jeSchedulesReducer_1.updateJESchedulesDetails)(response.data.je_schedules, response.data.scheduled_journal_entries),
|
|
71
|
-
(0, jeSchedulesViewReducer_1.resetNewScheduleLocalData)({ scheduleType }),
|
|
72
|
-
(0, jeSchedulesViewReducer_1.saveNewScheduleSuccess)(),
|
|
73
|
-
(0, snackbarReducer_1.openSnackbar)({
|
|
74
|
-
messageSection: 'create_schedule',
|
|
75
|
-
messageText: 'success',
|
|
76
|
-
type: 'success',
|
|
77
|
-
variables: [
|
|
78
|
-
{ variableName: '_vendor_name_', variableValue: vendorName },
|
|
79
|
-
],
|
|
80
|
-
}),
|
|
81
|
-
]);
|
|
82
|
-
}
|
|
83
|
-
return (0, rxjs_1.from)([
|
|
84
|
-
(0, jeSchedulesViewReducer_1.saveNewScheduleFailure)({ status: response.status }),
|
|
85
|
-
(0, snackbarReducer_1.openSnackbar)({
|
|
86
|
-
messageSection: 'create_schedule',
|
|
87
|
-
messageText: 'failed',
|
|
88
|
-
type: 'error',
|
|
89
|
-
variables: [
|
|
90
|
-
{
|
|
91
|
-
variableName: '_api-error_',
|
|
92
|
-
variableValue: response.status.message,
|
|
93
|
-
},
|
|
94
|
-
],
|
|
95
|
-
}),
|
|
96
|
-
]);
|
|
97
|
-
}), (0, operators_1.catchError)((error) => (0, rxjs_1.from)([
|
|
98
|
-
(0, snackbarReducer_1.openSnackbar)({
|
|
99
|
-
messageSection: 'create_schedule',
|
|
100
|
-
messageText: 'failed',
|
|
101
|
-
type: 'error',
|
|
102
|
-
variables: [
|
|
103
|
-
{
|
|
104
|
-
variableName: '_api-error_',
|
|
105
|
-
variableValue: JSON.stringify(error),
|
|
106
|
-
},
|
|
107
|
-
],
|
|
108
|
-
}),
|
|
109
|
-
(0, jeSchedulesViewReducer_1.saveNewScheduleFailure)({
|
|
110
|
-
status: (0, responsePayload_1.createZeniAPIStatus)('Unexpected Error', `Save New Schedule REST API call errored out ${JSON.stringify(error)}`),
|
|
111
|
-
}),
|
|
112
|
-
])));
|
|
113
|
-
}));
|
|
114
|
-
exports.saveNewScheduleEpic = saveNewScheduleEpic;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ActionsObservable, StateObservable } from 'redux-observable';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { updateTransactions } from '../../../../../entity/transaction/transactionReducer';
|
|
4
|
-
import { RootState } from '../../../../../reducer';
|
|
5
|
-
import { ZeniAPI } from '../../../../../zeniAPI';
|
|
6
|
-
import { searchTransactionsForNewSchedule, searchTransactionsForNewScheduleFailure, searchTransactionsForNewScheduleSuccess } from '../../../reducers/jeSchedulesViewReducer';
|
|
7
|
-
export type ActionType = ReturnType<typeof searchTransactionsForNewSchedule> | ReturnType<typeof searchTransactionsForNewScheduleSuccess> | ReturnType<typeof searchTransactionsForNewScheduleFailure> | ReturnType<typeof updateTransactions>;
|
|
8
|
-
export declare const searchTransactionsForNewScheduleEpic: (actions$: ActionsObservable<ActionType>, _state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => Observable<ActionType>;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.searchTransactionsForNewScheduleEpic = void 0;
|
|
4
|
-
const rxjs_1 = require("rxjs");
|
|
5
|
-
const operators_1 = require("rxjs/operators");
|
|
6
|
-
const transactionReducer_1 = require("../../../../../entity/transaction/transactionReducer");
|
|
7
|
-
const responsePayload_1 = require("../../../../../responsePayload");
|
|
8
|
-
const jeSchedulesViewReducer_1 = require("../../../reducers/jeSchedulesViewReducer");
|
|
9
|
-
const jeSchedulesViewState_1 = require("../../../types/jeSchedulesViewState");
|
|
10
|
-
/** Dropdown-sized result set — no pagination for Base Transaction search. */
|
|
11
|
-
const NEW_SCHEDULE_SEARCH_PAGE_SIZE = 10;
|
|
12
|
-
const searchTransactionsForNewScheduleEpic = (actions$, _state$, zeniAPI) => {
|
|
13
|
-
const searchActions$ = actions$.pipe((0, operators_1.filter)(jeSchedulesViewReducer_1.searchTransactionsForNewSchedule.match));
|
|
14
|
-
/** No API for empty or 1-char queries; immediate merge so switchMap cancels any in-flight HTTP. */
|
|
15
|
-
const newSearchTooShortOrClear$ = searchActions$.pipe((0, operators_1.filter)((action) => action.payload.query.trim().length < jeSchedulesViewState_1.MIN_NEW_SCHEDULE_SEARCH_LENGTH));
|
|
16
|
-
const newSearchDebounced$ = searchActions$.pipe((0, operators_1.filter)((action) => action.payload.query.trim().length >= jeSchedulesViewState_1.MIN_NEW_SCHEDULE_SEARCH_LENGTH), (0, operators_1.debounceTime)(300));
|
|
17
|
-
return (0, rxjs_1.merge)(newSearchTooShortOrClear$, newSearchDebounced$).pipe((0, operators_1.switchMap)((action) => {
|
|
18
|
-
const query = action.payload.query.trim();
|
|
19
|
-
if (query.length < jeSchedulesViewState_1.MIN_NEW_SCHEDULE_SEARCH_LENGTH) {
|
|
20
|
-
return rxjs_1.EMPTY;
|
|
21
|
-
}
|
|
22
|
-
const queryParam = {
|
|
23
|
-
page_size: NEW_SCHEDULE_SEARCH_PAGE_SIZE,
|
|
24
|
-
search_text: query,
|
|
25
|
-
};
|
|
26
|
-
return zeniAPI
|
|
27
|
-
.getJSON(`${zeniAPI.apiEndPoints.accountMicroServiceBaseUrl}/1.0/schedules/base_transaction_search?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
|
|
28
|
-
.pipe((0, operators_1.mergeMap)((response) => {
|
|
29
|
-
if ((0, responsePayload_1.isSuccessResponse)(response) && response.data != null) {
|
|
30
|
-
const { transactions } = response.data;
|
|
31
|
-
const actionsOut = [
|
|
32
|
-
(0, transactionReducer_1.updateTransactions)(transactions, (value) => value.transaction_id, 'merge'),
|
|
33
|
-
(0, jeSchedulesViewReducer_1.searchTransactionsForNewScheduleSuccess)({
|
|
34
|
-
searchResults: transactions.map((transaction) => transaction.transaction_id),
|
|
35
|
-
}),
|
|
36
|
-
];
|
|
37
|
-
return (0, rxjs_1.from)(actionsOut);
|
|
38
|
-
}
|
|
39
|
-
return (0, rxjs_1.of)((0, jeSchedulesViewReducer_1.searchTransactionsForNewScheduleFailure)({
|
|
40
|
-
status: response.status,
|
|
41
|
-
}));
|
|
42
|
-
}), (0, operators_1.catchError)((error) => (0, rxjs_1.of)((0, jeSchedulesViewReducer_1.searchTransactionsForNewScheduleFailure)({
|
|
43
|
-
status: (0, responsePayload_1.createZeniAPIStatus)('Unexpected Error', 'Search transactions for new schedule errored: ' +
|
|
44
|
-
JSON.stringify(error)),
|
|
45
|
-
}))));
|
|
46
|
-
}));
|
|
47
|
-
};
|
|
48
|
-
exports.searchTransactionsForNewScheduleEpic = searchTransactionsForNewScheduleEpic;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ActionsObservable, StateObservable } from 'redux-observable';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { RootState } from '../../../../reducer';
|
|
4
|
-
import { fetchJeSchedulesPage, updateJESchedulesUIState } from '../../reducers/jeSchedulesViewReducer';
|
|
5
|
-
export type ActionType = ReturnType<typeof fetchJeSchedulesPage> | ReturnType<typeof updateJESchedulesUIState>;
|
|
6
|
-
export declare const switchJESchedulesTabEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>) => Observable<ActionType>;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.switchJESchedulesTabEpic = void 0;
|
|
4
|
-
const rxjs_1 = require("rxjs");
|
|
5
|
-
const operators_1 = require("rxjs/operators");
|
|
6
|
-
const timePeriod_1 = require("../../../../commonStateTypes/timePeriod");
|
|
7
|
-
const tenantSelector_1 = require("../../../../entity/tenant/tenantSelector");
|
|
8
|
-
const jeSchedulesViewReducer_1 = require("../../reducers/jeSchedulesViewReducer");
|
|
9
|
-
const switchJESchedulesTabEpic = (actions$, state$) => actions$.pipe((0, operators_1.filter)(jeSchedulesViewReducer_1.updateJESchedulesUIState.match), (0, operators_1.filter)((action) => action.payload.selectedPageTab != null), (0, operators_1.mergeMap)(() => {
|
|
10
|
-
const state = state$.value;
|
|
11
|
-
const { fetchState, refreshStatus } = state.expenseAutomationJESchedulesViewState;
|
|
12
|
-
if (fetchState === 'In-Progress' ||
|
|
13
|
-
refreshStatus.fetchState === 'In-Progress') {
|
|
14
|
-
return rxjs_1.EMPTY;
|
|
15
|
-
}
|
|
16
|
-
const currentTenant = (0, tenantSelector_1.getCurrentTenant)(state);
|
|
17
|
-
const selectedPeriod = state.expenseAutomationViewState.selectedPeriodByTenantId[currentTenant.tenantId];
|
|
18
|
-
const period = (0, timePeriod_1.convertToPeriod)(selectedPeriod);
|
|
19
|
-
const timePeriodStart = (0, timePeriod_1.toAbsoluteDay)(period.start);
|
|
20
|
-
const timePeriodEnd = (0, timePeriod_1.toAbsoluteDay)(period.end);
|
|
21
|
-
if (timePeriodStart == null || timePeriodEnd == null) {
|
|
22
|
-
return rxjs_1.EMPTY;
|
|
23
|
-
}
|
|
24
|
-
return (0, rxjs_1.of)((0, jeSchedulesViewReducer_1.fetchJeSchedulesPage)({ start: timePeriodStart, end: timePeriodEnd }, true));
|
|
25
|
-
}));
|
|
26
|
-
exports.switchJESchedulesTabEpic = switchJESchedulesTabEpic;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { Amount } from '../../../commonStateTypes/amount';
|
|
2
|
-
import { ScheduleTypes } from '../../../entity/jeSchedules/jeSchedulesTypes';
|
|
3
|
-
import { SupportedTransaction } from '../../../entity/transaction/transactionState';
|
|
4
|
-
import { JESchedulePayload, SaveJESchedulePayload } from '../../scheduleView/scheduleDetailView/scheduleDetailPayload';
|
|
5
|
-
import { NewJeDetailLocalData, NewScheduleLocalData, NewScheduleLocalDataFixedAssets } from '../types/jeSchedulesViewState';
|
|
6
|
-
/**
|
|
7
|
-
* Computes the month-by-month JE schedule breakdown for a brand-new schedule
|
|
8
|
-
* (no linked transaction yet) — replicates createNewSchedulesHelper's math
|
|
9
|
-
* (scheduleDetailLocalDataHelper.ts) exactly: lump-sum total split evenly
|
|
10
|
-
* across months with the rounding remainder absorbed by the last month, and a
|
|
11
|
-
* running balance that decrements each month and is forced to exactly 0 on
|
|
12
|
-
* the last row.
|
|
13
|
-
*/
|
|
14
|
-
export declare const computeNewScheduleJeDetails: (localData: NewScheduleLocalData | NewScheduleLocalDataFixedAssets, totalAmount: Amount, vendorName: string) => NewJeDetailLocalData[];
|
|
15
|
-
/**
|
|
16
|
-
* Whether a Base Transaction search result can be selected for a new
|
|
17
|
-
* schedule this round — restricted to single-line transactions since the
|
|
18
|
-
* search/list endpoint's `lines` may not reflect the transaction's full line
|
|
19
|
-
* set, and there is no line-picker UI yet.
|
|
20
|
-
*/
|
|
21
|
-
export declare const isSupportedTransactionSelectableForNewSchedule: (transaction: SupportedTransaction) => boolean;
|
|
22
|
-
export interface NewSchedulePayload {
|
|
23
|
-
je_schedules: JESchedulePayload[];
|
|
24
|
-
scheduled_journal_entries: SaveJESchedulePayload[];
|
|
25
|
-
}
|
|
26
|
-
export type PrepareNewSchedulePayloadFailureReason = 'missing_third_party_id' | 'missing_vendor' | 'multi_line_not_supported';
|
|
27
|
-
export type PrepareNewSchedulePayloadResult = {
|
|
28
|
-
ok: true;
|
|
29
|
-
payload: NewSchedulePayload;
|
|
30
|
-
} | {
|
|
31
|
-
ok: false;
|
|
32
|
-
reason: PrepareNewSchedulePayloadFailureReason;
|
|
33
|
-
};
|
|
34
|
-
/**
|
|
35
|
-
* Builds a savable schedule payload directly from a Base Transaction search
|
|
36
|
-
* result and the New Schedule form's local data — bypassing the legacy
|
|
37
|
-
* getJEScheduledTransactionByJEScheduleTransactionKey selector entirely,
|
|
38
|
-
* since that selector throws unless the entity has already round-tripped
|
|
39
|
-
* through a real GET /1.0/schedules/:id. A brand-new schedule has no such
|
|
40
|
-
* history, so this reads only from data already in hand (the selected
|
|
41
|
-
* transaction/line plus what the user filled into the form).
|
|
42
|
-
*/
|
|
43
|
-
export declare const prepareNewSchedulePayload: (transaction: SupportedTransaction, localData: NewScheduleLocalData | NewScheduleLocalDataFixedAssets, scheduleType: ScheduleTypes) => PrepareNewSchedulePayloadResult;
|
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.prepareNewSchedulePayload = exports.isSupportedTransactionSelectableForNewSchedule = exports.computeNewScheduleJeDetails = void 0;
|
|
4
|
-
const amount_1 = require("../../../commonStateTypes/amount");
|
|
5
|
-
const formatZeniDateFY_1 = require("../../../commonStateTypes/fiscalYearHelpers/formatZeniDateFY");
|
|
6
|
-
const formatZeniDateFY_2 = require("../../../commonStateTypes/fiscalYearHelpers/formatZeniDateFY");
|
|
7
|
-
const timePeriod_1 = require("../../../commonStateTypes/timePeriod");
|
|
8
|
-
const scheduleTransactionHelper_1 = require("../../../entity/transaction/scheduleTransactionHelper");
|
|
9
|
-
const scheduleDetailLocalDataHelper_1 = require("../../scheduleView/scheduleDetailView/scheduleDetailLocalDataHelper");
|
|
10
|
-
const scheduleDetailPayload_1 = require("../../scheduleView/scheduleDetailView/scheduleDetailPayload");
|
|
11
|
-
const getNewScheduleMemo = (vendorName, schedulePostingDate, currentPeriod, totalPeriod, assetId) => {
|
|
12
|
-
const addAsset = assetId != null && assetId !== '' ? ` - ${assetId}` : '';
|
|
13
|
-
return `${vendorName} - ${schedulePostingDate.format(formatZeniDateFY_2.MONTH_YEAR_FORMAT)} (${currentPeriod} of ${totalPeriod})${addAsset}`;
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* Computes the month-by-month JE schedule breakdown for a brand-new schedule
|
|
17
|
-
* (no linked transaction yet) — replicates createNewSchedulesHelper's math
|
|
18
|
-
* (scheduleDetailLocalDataHelper.ts) exactly: lump-sum total split evenly
|
|
19
|
-
* across months with the rounding remainder absorbed by the last month, and a
|
|
20
|
-
* running balance that decrements each month and is forced to exactly 0 on
|
|
21
|
-
* the last row.
|
|
22
|
-
*/
|
|
23
|
-
const computeNewScheduleJeDetails = (localData, totalAmount, vendorName) => {
|
|
24
|
-
const period = localData.selectedMonths;
|
|
25
|
-
const startingMonth = localData.selectedDate;
|
|
26
|
-
if (startingMonth == null || period == null) {
|
|
27
|
-
return [];
|
|
28
|
-
}
|
|
29
|
-
const assetId = 'assetId' in localData ? localData.assetId : undefined;
|
|
30
|
-
const averageAmount = Math.abs(Math.round((totalAmount.amount / period) * 100) / 100);
|
|
31
|
-
const lastMonthAmount = Math.abs(Math.round((Math.abs(totalAmount.amount) - averageAmount * (period - 1)) * 100) / 100);
|
|
32
|
-
let runningBalance = Math.abs(totalAmount.amount);
|
|
33
|
-
const negativeNumbers = totalAmount.amount < 0 || runningBalance < 0;
|
|
34
|
-
const newJeDetails = [];
|
|
35
|
-
for (let index = 0; index < period; index++) {
|
|
36
|
-
if (runningBalance > averageAmount) {
|
|
37
|
-
runningBalance = Math.round((runningBalance - averageAmount) * 100) / 100;
|
|
38
|
-
}
|
|
39
|
-
else {
|
|
40
|
-
runningBalance = 0;
|
|
41
|
-
}
|
|
42
|
-
const amount = index === period - 1 ? lastMonthAmount : averageAmount;
|
|
43
|
-
runningBalance = index === period - 1 ? 0 : runningBalance;
|
|
44
|
-
const schedulePostingDate = startingMonth.add(index, 'month');
|
|
45
|
-
const { postingDate, postingStatus } = (0, scheduleDetailLocalDataHelper_1.getPostingDateAndStatusForIndex)(schedulePostingDate.month(), schedulePostingDate.year(), localData.lastDayOfMonth === true
|
|
46
|
-
? undefined
|
|
47
|
-
: localData.selectedDayOfMonth);
|
|
48
|
-
newJeDetails.push({
|
|
49
|
-
postingDate,
|
|
50
|
-
amount: (0, amount_1.toAmount)(negativeNumbers ? -amount : amount, totalAmount.currencyCode, totalAmount.currencySymbol),
|
|
51
|
-
runningBalance: (0, amount_1.toAmount)(negativeNumbers ? -runningBalance : runningBalance, totalAmount.currencyCode, totalAmount.currencySymbol),
|
|
52
|
-
postingStatus,
|
|
53
|
-
memo: getNewScheduleMemo(vendorName, schedulePostingDate, index + 1, period, assetId),
|
|
54
|
-
jeLink: { type: 'unknown' },
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
return newJeDetails;
|
|
58
|
-
};
|
|
59
|
-
exports.computeNewScheduleJeDetails = computeNewScheduleJeDetails;
|
|
60
|
-
/**
|
|
61
|
-
* Whether a Base Transaction search result can be selected for a new
|
|
62
|
-
* schedule this round — restricted to single-line transactions since the
|
|
63
|
-
* search/list endpoint's `lines` may not reflect the transaction's full line
|
|
64
|
-
* set, and there is no line-picker UI yet.
|
|
65
|
-
*/
|
|
66
|
-
const isSupportedTransactionSelectableForNewSchedule = (transaction) => transaction.totalLinesCount === 1 && transaction.lines?.length === 1;
|
|
67
|
-
exports.isSupportedTransactionSelectableForNewSchedule = isSupportedTransactionSelectableForNewSchedule;
|
|
68
|
-
const mapNewJeDetailsToScheduledJournalEntryPayload = (jeScheduleDetails) => jeScheduleDetails.map((journalEntry) => ({
|
|
69
|
-
status: {
|
|
70
|
-
code: journalEntry.postingStatus,
|
|
71
|
-
label: journalEntry.postingStatus,
|
|
72
|
-
},
|
|
73
|
-
transaction_memo: journalEntry.memo,
|
|
74
|
-
third_party_id: journalEntry.jeLink.thirdPartyTransactionId ?? null,
|
|
75
|
-
expected_post_date: journalEntry.postingDate.format(formatZeniDateFY_1.DEFAULT_DATE_FORMAT),
|
|
76
|
-
amount: journalEntry.amount.amount,
|
|
77
|
-
balance: journalEntry.runningBalance.amount,
|
|
78
|
-
// Brand-new schedule — there is no prior scheduled-journal-entry history
|
|
79
|
-
// to cross-reference (unlike the legacy edit flow's equivalent mapper).
|
|
80
|
-
scheduled_journal_entry_id: null,
|
|
81
|
-
actual_post_date: null,
|
|
82
|
-
is_platform_generated: null,
|
|
83
|
-
je_schedule_id: null,
|
|
84
|
-
update_time: null,
|
|
85
|
-
create_time: null,
|
|
86
|
-
}));
|
|
87
|
-
/**
|
|
88
|
-
* Builds a savable schedule payload directly from a Base Transaction search
|
|
89
|
-
* result and the New Schedule form's local data — bypassing the legacy
|
|
90
|
-
* getJEScheduledTransactionByJEScheduleTransactionKey selector entirely,
|
|
91
|
-
* since that selector throws unless the entity has already round-tripped
|
|
92
|
-
* through a real GET /1.0/schedules/:id. A brand-new schedule has no such
|
|
93
|
-
* history, so this reads only from data already in hand (the selected
|
|
94
|
-
* transaction/line plus what the user filled into the form).
|
|
95
|
-
*/
|
|
96
|
-
const prepareNewSchedulePayload = (transaction, localData, scheduleType) => {
|
|
97
|
-
const [firstLine] = transaction.lines ?? [];
|
|
98
|
-
if (!(0, exports.isSupportedTransactionSelectableForNewSchedule)(transaction) ||
|
|
99
|
-
firstLine == null) {
|
|
100
|
-
return { ok: false, reason: 'multi_line_not_supported' };
|
|
101
|
-
}
|
|
102
|
-
const scheduleTransaction = (0, scheduleTransactionHelper_1.mapSupportedTransactionLineToScheduleTransaction)(transaction, firstLine.id);
|
|
103
|
-
if (scheduleTransaction == null) {
|
|
104
|
-
return { ok: false, reason: 'missing_third_party_id' };
|
|
105
|
-
}
|
|
106
|
-
const vendorId = localData.selectedVendor?.id ?? transaction.vendorId ?? '';
|
|
107
|
-
const vendorName = localData.selectedVendor?.name ?? transaction.vendorName ?? '';
|
|
108
|
-
if (vendorId === '' || vendorName === '') {
|
|
109
|
-
return { ok: false, reason: 'missing_vendor' };
|
|
110
|
-
}
|
|
111
|
-
const vendor = {
|
|
112
|
-
vendor_id: vendorId,
|
|
113
|
-
vendor_name: vendorName,
|
|
114
|
-
};
|
|
115
|
-
const jeScheduleDetails = (0, exports.computeNewScheduleJeDetails)(localData, scheduleTransaction.amount, vendorName);
|
|
116
|
-
const postingDate = localData.selectedDayOfMonth ??
|
|
117
|
-
(localData.lastDayOfMonth === true ? timePeriod_1.LAST_SCHEDULE_DAY_OF_MONTH : null);
|
|
118
|
-
const firstJEScheduleDate = jeScheduleDetails.length > 0
|
|
119
|
-
? jeScheduleDetails[0].postingDate.format(formatZeniDateFY_1.DEFAULT_DATE_FORMAT)
|
|
120
|
-
: null;
|
|
121
|
-
const lastJEScheduleDate = jeScheduleDetails.length > 0
|
|
122
|
-
? jeScheduleDetails[jeScheduleDetails.length - 1].postingDate.format(formatZeniDateFY_1.DEFAULT_DATE_FORMAT)
|
|
123
|
-
: null;
|
|
124
|
-
const isFixedAssets = scheduleType === 'fixed_assets';
|
|
125
|
-
const assetId = 'assetId' in localData ? localData.assetId : undefined;
|
|
126
|
-
const selectedAccumulatedDepreciationCategory = 'selectedAccumulatedDepreciationCategory' in localData
|
|
127
|
-
? localData.selectedAccumulatedDepreciationCategory
|
|
128
|
-
: undefined;
|
|
129
|
-
const status = { code: 'new', label: 'New' };
|
|
130
|
-
const jeSchedulePayload = {
|
|
131
|
-
status,
|
|
132
|
-
vendor,
|
|
133
|
-
currency_code: scheduleTransaction.currency.currencyCode,
|
|
134
|
-
currency_symbol: scheduleTransaction.currency.currencySymbol,
|
|
135
|
-
period: localData.selectedMonths ?? null,
|
|
136
|
-
je_schedule_type: scheduleType,
|
|
137
|
-
posting_date: postingDate,
|
|
138
|
-
balance: scheduleTransaction.amount.amount,
|
|
139
|
-
start_date: firstJEScheduleDate,
|
|
140
|
-
end_date: lastJEScheduleDate,
|
|
141
|
-
je_credit_accounting_class_id: scheduleTransaction.classBase?.classId ?? null,
|
|
142
|
-
je_credit_account_id: isFixedAssets
|
|
143
|
-
? (selectedAccumulatedDepreciationCategory ?? null)
|
|
144
|
-
: scheduleTransaction.account.accountId,
|
|
145
|
-
je_debit_account_id: localData.selectedAccount ?? null,
|
|
146
|
-
je_debit_accounting_class_id: localData.selectedClass ?? null,
|
|
147
|
-
other_attributes: assetId != null ? { asset_id: assetId } : {},
|
|
148
|
-
base_transaction: (0, scheduleDetailPayload_1.mapScheduleTransactionToBaseScheduleTransactionPayload)(scheduleTransaction),
|
|
149
|
-
};
|
|
150
|
-
return {
|
|
151
|
-
ok: true,
|
|
152
|
-
payload: {
|
|
153
|
-
je_schedules: [jeSchedulePayload],
|
|
154
|
-
scheduled_journal_entries: mapNewJeDetailsToScheduledJournalEntryPayload(jeScheduleDetails),
|
|
155
|
-
},
|
|
156
|
-
};
|
|
157
|
-
};
|
|
158
|
-
exports.prepareNewSchedulePayload = prepareNewSchedulePayload;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { NestedAccountHierarchyForReport } from '../../../commonStateTypes/accountView/nestedAccountID';
|
|
2
|
-
import { NestedClassHierarchyForReport } from '../../../commonStateTypes/classesView/nestedClassID';
|
|
3
|
-
import { FetchStateAndError, ID } from '../../../commonStateTypes/common';
|
|
4
|
-
import { SelectorView } from '../../../commonStateTypes/viewAndReport/viewAndReport';
|
|
5
|
-
import { AccountBase } from '../../../entity/account/accountState';
|
|
6
|
-
import { ClassBase } from '../../../entity/class/classState';
|
|
7
|
-
import { ScheduleTypes } from '../../../entity/jeSchedules/jeSchedulesTypes';
|
|
8
|
-
import { SupportedTransaction } from '../../../entity/transaction/transactionState';
|
|
9
|
-
import { NewScheduleLocalData, NewScheduleLocalDataFixedAssets } from '../types/jeSchedulesViewState';
|
|
10
|
-
export interface NewScheduleSearchTransactionsView {
|
|
11
|
-
searchTransactionsFetchState: FetchStateAndError;
|
|
12
|
-
searchTransactionsResults: SupportedTransaction[];
|
|
13
|
-
selectableBaseTransactionIds: ID[];
|
|
14
|
-
searchTransactionsString?: string;
|
|
15
|
-
}
|
|
16
|
-
export interface NewScheduleView extends SelectorView, NewScheduleSearchTransactionsView {
|
|
17
|
-
accountListNestedAccountHierarchy: NestedAccountHierarchyForReport[];
|
|
18
|
-
allAccountList: AccountBase[];
|
|
19
|
-
allClassList: ClassBase[];
|
|
20
|
-
classListNestedAccountHierarchy: NestedClassHierarchyForReport[];
|
|
21
|
-
newScheduleLocalData: NewScheduleLocalData | NewScheduleLocalDataFixedAssets;
|
|
22
|
-
scheduleType: ScheduleTypes;
|
|
23
|
-
allDepreciationAccountList?: AccountBase[];
|
|
24
|
-
allDepreciationAccountListNestedAccountHierarchy?: NestedAccountHierarchyForReport[];
|
|
25
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { RootState } from '../../../reducer';
|
|
2
|
-
import { NewScheduleSearchTransactionsView, NewScheduleView } from '../selectorTypes/jeNewScheduleViewSelectorTypes';
|
|
3
|
-
/**
|
|
4
|
-
* The Base Transaction search is shared across schedule types (one search
|
|
5
|
-
* box, not one per prepaid_expenses/fixed_assets) — split out from
|
|
6
|
-
* getNewScheduleView so a consumer can read it without supplying an
|
|
7
|
-
* otherwise-irrelevant scheduleType.
|
|
8
|
-
*/
|
|
9
|
-
export declare const getNewScheduleSearchTransactionsView: (state: RootState) => NewScheduleSearchTransactionsView;
|
|
10
|
-
export declare const getNewScheduleView: (state: RootState, scheduleType: "fixed_assets" | "prepaid_expenses") => NewScheduleView;
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getNewScheduleView = exports.getNewScheduleSearchTransactionsView = void 0;
|
|
4
|
-
const accountSelector_1 = require("../../../entity/account/accountSelector");
|
|
5
|
-
const transactionSelector_1 = require("../../../entity/transaction/transactionSelector");
|
|
6
|
-
const accountListSelector_1 = require("../../accountList/accountListSelector");
|
|
7
|
-
const classListSelector_1 = require("../../classList/classListSelector");
|
|
8
|
-
const scheduleDetailLocalDataHelper_1 = require("../../scheduleView/scheduleDetailView/scheduleDetailLocalDataHelper");
|
|
9
|
-
const scheduleDetailSelector_1 = require("../../scheduleView/scheduleDetailView/scheduleDetailSelector");
|
|
10
|
-
const scheduleListHelper_1 = require("../../scheduleView/scheduleListView/scheduleListHelper");
|
|
11
|
-
const newScheduleLocalDataHelper_1 = require("../helpers/newScheduleLocalDataHelper");
|
|
12
|
-
/**
|
|
13
|
-
* The Base Transaction search is shared across schedule types (one search
|
|
14
|
-
* box, not one per prepaid_expenses/fixed_assets) — split out from
|
|
15
|
-
* getNewScheduleView so a consumer can read it without supplying an
|
|
16
|
-
* otherwise-irrelevant scheduleType.
|
|
17
|
-
*/
|
|
18
|
-
const getNewScheduleSearchTransactionsView = (state) => {
|
|
19
|
-
const { searchTransactions } = state.expenseAutomationJESchedulesViewState.newSchedule;
|
|
20
|
-
const searchTransactionsResults = (0, transactionSelector_1.getSupportedTransactionsByIds)(state.transactionState, searchTransactions.searchResults);
|
|
21
|
-
return {
|
|
22
|
-
searchTransactionsResults,
|
|
23
|
-
selectableBaseTransactionIds: searchTransactionsResults
|
|
24
|
-
.filter(newScheduleLocalDataHelper_1.isSupportedTransactionSelectableForNewSchedule)
|
|
25
|
-
.map((transaction) => transaction.id),
|
|
26
|
-
searchTransactionsFetchState: {
|
|
27
|
-
fetchState: searchTransactions.fetchState,
|
|
28
|
-
error: searchTransactions.error,
|
|
29
|
-
},
|
|
30
|
-
searchTransactionsString: searchTransactions.searchString,
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
exports.getNewScheduleSearchTransactionsView = getNewScheduleSearchTransactionsView;
|
|
34
|
-
const getNewScheduleView = (state, scheduleType) => {
|
|
35
|
-
const { accountState, accountListState, classState, classListState } = state;
|
|
36
|
-
const { newSchedule } = state.expenseAutomationJESchedulesViewState;
|
|
37
|
-
const searchTransactionsView = (0, exports.getNewScheduleSearchTransactionsView)(state);
|
|
38
|
-
const accountType = (0, scheduleListHelper_1.getAccountsTypesForScheduleEpics)();
|
|
39
|
-
const newScheduleAccountTypes = (0, scheduleDetailLocalDataHelper_1.getAccountsTypesForScheduleDetails)(scheduleType);
|
|
40
|
-
const newScheduleAccountIds = (0, accountSelector_1.getAccountIdsForTypes)(accountState, newScheduleAccountTypes);
|
|
41
|
-
const allAccountList = (0, accountListSelector_1.getAccountList)(accountState, accountListState, accountType.accountListKey);
|
|
42
|
-
const filteredAccounts = allAccountList.accounts.filter((account) => newScheduleAccountIds.includes(account.accountId));
|
|
43
|
-
const accountListNestedAccountHierarchy = (0, scheduleDetailSelector_1.filterNestedAccountHierarchyById)((0, accountListSelector_1.getNestedAccountListHierarchy)(accountListState, accountType.accountListKey), filteredAccounts.map((account) => account.accountId));
|
|
44
|
-
const allClassList = (0, classListSelector_1.getClassList)(classState, classListState);
|
|
45
|
-
const classListNestedAccountHierarchy = (0, classListSelector_1.getNestedClassListHierarchy)(classListState);
|
|
46
|
-
let allDepreciationAccountList;
|
|
47
|
-
let allDepreciationAccountListNestedAccountHierarchy;
|
|
48
|
-
if (scheduleType === 'fixed_assets') {
|
|
49
|
-
const depreciationCategoryIds = (0, accountSelector_1.getAccountIdsForTypes)(accountState, [
|
|
50
|
-
'fixed_assets',
|
|
51
|
-
'other_assets',
|
|
52
|
-
]);
|
|
53
|
-
const accountLabel = (0, scheduleListHelper_1.getAccountLabelForScheduleType)('fixed_assets');
|
|
54
|
-
const fixedAssetLabelAccountIds = accountLabel != null
|
|
55
|
-
? (0, accountListSelector_1.getAccountIdsForLabel)(accountListState, accountType.accountListKey, accountLabel)
|
|
56
|
-
: [];
|
|
57
|
-
allDepreciationAccountList = allAccountList.accounts.filter((account) => depreciationCategoryIds.includes(account.accountId) &&
|
|
58
|
-
!fixedAssetLabelAccountIds.includes(account.accountId));
|
|
59
|
-
allDepreciationAccountListNestedAccountHierarchy =
|
|
60
|
-
(0, scheduleDetailSelector_1.filterNestedAccountHierarchyById)((0, accountListSelector_1.getNestedAccountListHierarchy)(accountListState, accountType.accountListKey), allDepreciationAccountList.map((account) => account.accountId));
|
|
61
|
-
}
|
|
62
|
-
return {
|
|
63
|
-
scheduleType,
|
|
64
|
-
accountListNestedAccountHierarchy,
|
|
65
|
-
allAccountList: filteredAccounts,
|
|
66
|
-
allClassList: allClassList.classes,
|
|
67
|
-
allDepreciationAccountList,
|
|
68
|
-
allDepreciationAccountListNestedAccountHierarchy,
|
|
69
|
-
classListNestedAccountHierarchy,
|
|
70
|
-
newScheduleLocalData: newSchedule.newScheduleState[scheduleType],
|
|
71
|
-
...searchTransactionsView,
|
|
72
|
-
fetchState: newSchedule.fetchState,
|
|
73
|
-
error: newSchedule.error,
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
exports.getNewScheduleView = getNewScheduleView;
|