@zeniai/client-epic-state 5.1.57-betaDI1 → 5.1.57-betaRD2

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 (100) hide show
  1. package/lib/coreEpics.js +2 -3
  2. package/lib/entity/chargeCard/chargeCard.d.ts +1 -1
  3. package/lib/entity/jeSchedules/jeSchedulesPayload.d.ts +2 -0
  4. package/lib/entity/jeSchedules/jeSchedulesPayload.js +2 -0
  5. package/lib/entity/jeSchedules/jeSchedulesSelector.d.ts +4 -0
  6. package/lib/entity/jeSchedules/jeSchedulesSelector.js +11 -1
  7. package/lib/entity/jeSchedules/jeSchedulesState.d.ts +2 -0
  8. package/lib/entity/tenant/clearAllEpic.d.ts +1 -3
  9. package/lib/entity/tenant/clearAllEpic.js +0 -4
  10. package/lib/entity/transaction/scheduleTransactionHelper.d.ts +15 -0
  11. package/lib/entity/transaction/scheduleTransactionHelper.js +43 -0
  12. package/lib/epic.d.ts +5 -2
  13. package/lib/epic.js +5 -2
  14. package/lib/esm/coreEpics.js +2 -3
  15. package/lib/esm/entity/jeSchedules/jeSchedulesPayload.js +2 -0
  16. package/lib/esm/entity/jeSchedules/jeSchedulesSelector.js +11 -1
  17. package/lib/esm/entity/tenant/clearAllEpic.js +0 -4
  18. package/lib/esm/entity/transaction/scheduleTransactionHelper.js +39 -0
  19. package/lib/esm/epic.js +5 -2
  20. package/lib/esm/index.js +7 -9
  21. package/lib/esm/reducer.js +0 -6
  22. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +15 -2
  23. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js +21 -0
  24. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.js +110 -0
  25. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.js +53 -0
  26. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.js +22 -0
  27. package/lib/esm/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.js +152 -0
  28. package/lib/esm/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +126 -6
  29. package/lib/esm/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.js +1 -0
  30. package/lib/esm/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.js +71 -0
  31. package/lib/esm/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +65 -11
  32. package/lib/esm/view/expenseAutomationView/types/jeSchedulesViewState.js +3 -6
  33. package/lib/esm/view/settingsView/epic/fetchNotificationSettingsEpic.js +2 -21
  34. package/lib/esm/view/settingsView/epic/saveNotificationSettingsEpic.js +1 -2
  35. package/lib/esm/view/settingsView/settingsViewHelpers.js +2 -3
  36. package/lib/index.d.ts +9 -12
  37. package/lib/index.js +58 -56
  38. package/lib/reducer.d.ts +0 -6
  39. package/lib/reducer.js +0 -6
  40. package/lib/view/common/recurringViewHelper.d.ts +2 -2
  41. package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +14 -1
  42. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.d.ts +8 -0
  43. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js +25 -0
  44. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.d.ts +45 -0
  45. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.js +114 -0
  46. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.d.ts +8 -0
  47. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.js +57 -0
  48. package/lib/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.d.ts +6 -0
  49. package/lib/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.js +26 -0
  50. package/lib/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.d.ts +43 -0
  51. package/lib/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.js +158 -0
  52. package/lib/view/expenseAutomationView/payload/jeSchedulesPayload.d.ts +1 -0
  53. package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.d.ts +36 -8
  54. package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +128 -7
  55. package/lib/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.d.ts +25 -0
  56. package/lib/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.js +2 -0
  57. package/lib/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.d.ts +29 -4
  58. package/lib/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.d.ts +10 -0
  59. package/lib/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.js +76 -0
  60. package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +65 -11
  61. package/lib/view/expenseAutomationView/types/jeSchedulesViewState.d.ts +53 -6
  62. package/lib/view/expenseAutomationView/types/jeSchedulesViewState.js +5 -8
  63. package/lib/view/settingsView/epic/fetchNotificationSettingsEpic.d.ts +1 -9
  64. package/lib/view/settingsView/epic/fetchNotificationSettingsEpic.js +2 -21
  65. package/lib/view/settingsView/epic/saveNotificationSettingsEpic.js +1 -2
  66. package/lib/view/settingsView/settingsViewHelpers.d.ts +1 -1
  67. package/lib/view/settingsView/settingsViewHelpers.js +2 -3
  68. package/lib/view/settingsView/settingsViewPayload.d.ts +0 -4
  69. package/lib/view/settingsView/settingsViewState.d.ts +1 -1
  70. package/package.json +1 -1
  71. package/lib/entity/notificationRegistry/notificationRegistryPayload.d.ts +0 -18
  72. package/lib/entity/notificationRegistry/notificationRegistryPayload.js +0 -28
  73. package/lib/entity/notificationRegistry/notificationRegistryReducer.d.ts +0 -6
  74. package/lib/entity/notificationRegistry/notificationRegistryReducer.js +0 -26
  75. package/lib/entity/notificationRegistry/notificationRegistrySelector.d.ts +0 -2
  76. package/lib/entity/notificationRegistry/notificationRegistrySelector.js +0 -10
  77. package/lib/entity/notificationRegistry/notificationRegistryState.d.ts +0 -31
  78. package/lib/entity/notificationRegistry/notificationRegistryState.js +0 -10
  79. package/lib/esm/entity/notificationRegistry/notificationRegistryPayload.js +0 -24
  80. package/lib/esm/entity/notificationRegistry/notificationRegistryReducer.js +0 -22
  81. package/lib/esm/entity/notificationRegistry/notificationRegistrySelector.js +0 -6
  82. package/lib/esm/entity/notificationRegistry/notificationRegistryState.js +0 -5
  83. package/lib/esm/view/notificationPreferencesView/epics/saveNotificationPreferencesEpic.js +0 -103
  84. package/lib/esm/view/notificationPreferencesView/notificationPreferencesEndpoint.js +0 -5
  85. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewPayload.js +0 -36
  86. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewReducer.js +0 -222
  87. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewSelector.js +0 -25
  88. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewState.js +0 -4
  89. package/lib/view/notificationPreferencesView/epics/saveNotificationPreferencesEpic.d.ts +0 -34
  90. package/lib/view/notificationPreferencesView/epics/saveNotificationPreferencesEpic.js +0 -107
  91. package/lib/view/notificationPreferencesView/notificationPreferencesEndpoint.d.ts +0 -2
  92. package/lib/view/notificationPreferencesView/notificationPreferencesEndpoint.js +0 -9
  93. package/lib/view/notificationPreferencesView/notificationPreferencesViewPayload.d.ts +0 -7
  94. package/lib/view/notificationPreferencesView/notificationPreferencesViewPayload.js +0 -41
  95. package/lib/view/notificationPreferencesView/notificationPreferencesViewReducer.d.ts +0 -30
  96. package/lib/view/notificationPreferencesView/notificationPreferencesViewReducer.js +0 -226
  97. package/lib/view/notificationPreferencesView/notificationPreferencesViewSelector.d.ts +0 -7
  98. package/lib/view/notificationPreferencesView/notificationPreferencesViewSelector.js +0 -32
  99. package/lib/view/notificationPreferencesView/notificationPreferencesViewState.d.ts +0 -14
  100. package/lib/view/notificationPreferencesView/notificationPreferencesViewState.js +0 -8
@@ -1,6 +1,6 @@
1
1
  import { ZeniDate } from '../../zeniDayJS';
2
- export declare const toRecurringFrequency: (v: string) => "daily" | "weekly" | "biweekly" | "monthly" | "quarterly" | "semi_weekly";
3
- export declare const toRecurringFrequencyStrict: (v?: string) => "daily" | "weekly" | "biweekly" | "monthly" | "quarterly" | "semi_weekly" | undefined;
2
+ export declare const toRecurringFrequency: (v: string) => "weekly" | "biweekly" | "monthly" | "quarterly" | "daily" | "semi_weekly";
3
+ export declare const toRecurringFrequencyStrict: (v?: string) => "weekly" | "biweekly" | "monthly" | "quarterly" | "daily" | "semi_weekly" | undefined;
4
4
  export type RecurringFrequencyType = NonNullable<ReturnType<typeof toRecurringFrequency>>;
5
5
  export declare const SEMI_WEEKLY_REQUIRED_DAYS_COUNT = 2;
6
6
  declare const toRecurringDatePickerOptions: (v: string) => "date" | "recurringCount";
@@ -3,10 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.fetchJeSchedulesEpic = void 0;
4
4
  const rxjs_1 = require("rxjs");
5
5
  const operators_1 = require("rxjs/operators");
6
+ const formatZeniDateFY_1 = require("../../../../commonStateTypes/fiscalYearHelpers/formatZeniDateFY");
6
7
  const timePeriod_1 = require("../../../../commonStateTypes/timePeriod");
7
8
  const jeSchedulesReducer_1 = require("../../../../entity/jeSchedules/jeSchedulesReducer");
8
9
  const tenantSelector_1 = require("../../../../entity/tenant/tenantSelector");
9
10
  const responsePayload_1 = require("../../../../responsePayload");
11
+ const zeniDayJS_1 = require("../../../../zeniDayJS");
10
12
  const jeSchedulesViewReducer_1 = require("../../reducers/jeSchedulesViewReducer");
11
13
  const fetchJeSchedulesEpic = (actions$, state$, zeniAPI) => actions$.pipe((0, operators_1.filter)(jeSchedulesViewReducer_1.fetchJeSchedules.match), (0, operators_1.mergeMap)((action) => {
12
14
  const state = state$.value;
@@ -14,9 +16,20 @@ const fetchJeSchedulesEpic = (actions$, state$, zeniAPI) => actions$.pipe((0, op
14
16
  const { period, refreshViewInBackground } = action.payload;
15
17
  const currentTenant = (0, tenantSelector_1.getCurrentTenant)(state);
16
18
  const selectedPeriod = selectedPeriodByTenantId[currentTenant.tenantId];
19
+ const isClosePeriodTab = state.expenseAutomationJESchedulesViewState.uiState.selectedPageTab ===
20
+ 'schedules';
21
+ const existingEndDate = (0, timePeriod_1.toAbsoluteDay)((0, zeniDayJS_1.date)((0, timePeriod_1.toString)(period.start))
22
+ .subtract(1, 'month')
23
+ .endOf('month')
24
+ .format(formatZeniDateFY_1.DEFAULT_DATE_FORMAT));
17
25
  const queryParam = {
18
26
  start_date: (0, timePeriod_1.toString)(period.start),
19
- end_date: (0, timePeriod_1.toString)(period.end),
27
+ end_date: isClosePeriodTab || existingEndDate == null
28
+ ? (0, timePeriod_1.toString)(period.end)
29
+ : (0, timePeriod_1.toString)(existingEndDate),
30
+ ...(isClosePeriodTab
31
+ ? { close_period_start_date: (0, timePeriod_1.toString)(period.start) }
32
+ : {}),
20
33
  };
21
34
  return zeniAPI
22
35
  .getJSON(`${zeniAPI.apiEndPoints.accountMicroServiceBaseUrl}/1.0/expenses_automation/je_schedules?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
@@ -0,0 +1,8 @@
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>;
@@ -0,0 +1,25 @@
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;
@@ -0,0 +1,45 @@
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
+ }>;
@@ -0,0 +1,114 @@
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;
@@ -0,0 +1,8 @@
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>;
@@ -0,0 +1,57 @@
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 completedSubTab_1 = require("../../../types/completedSubTab");
10
+ const jeSchedulesViewState_1 = require("../../../types/jeSchedulesViewState");
11
+ const transactionsViewState_1 = require("../../../types/transactionsViewState");
12
+ /** Dropdown-sized result set — no pagination for Base Transaction search. */
13
+ const NEW_SCHEDULE_SEARCH_PAGE_SIZE = 10;
14
+ const searchTransactionsForNewScheduleEpic = (actions$, _state$, zeniAPI) => {
15
+ const searchActions$ = actions$.pipe((0, operators_1.filter)(jeSchedulesViewReducer_1.searchTransactionsForNewSchedule.match));
16
+ /** No API for empty or 1-char queries; immediate merge so switchMap cancels any in-flight HTTP. */
17
+ const newSearchTooShortOrClear$ = searchActions$.pipe((0, operators_1.filter)((action) => action.payload.query.trim().length < jeSchedulesViewState_1.MIN_NEW_SCHEDULE_SEARCH_LENGTH));
18
+ 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));
19
+ return (0, rxjs_1.merge)(newSearchTooShortOrClear$, newSearchDebounced$).pipe((0, operators_1.switchMap)((action) => {
20
+ const query = action.payload.query.trim();
21
+ if (query.length < jeSchedulesViewState_1.MIN_NEW_SCHEDULE_SEARCH_LENGTH) {
22
+ return rxjs_1.EMPTY;
23
+ }
24
+ const queryParam = {
25
+ start_date: null,
26
+ end_date: null,
27
+ auto_categorized: false,
28
+ sort_by: (0, transactionsViewState_1.toTransactionsSortKey)('date'),
29
+ sort_order: 'desc',
30
+ page_token: null,
31
+ page_size: NEW_SCHEDULE_SEARCH_PAGE_SIZE,
32
+ search_text: query,
33
+ sub_tab: completedSubTab_1.DEFAULT_COMPLETED_SUB_TAB,
34
+ };
35
+ return zeniAPI
36
+ .getJSON(`${zeniAPI.apiEndPoints.accountMicroServiceBaseUrl}/1.0/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
37
+ .pipe((0, operators_1.mergeMap)((response) => {
38
+ if ((0, responsePayload_1.isSuccessResponse)(response) && response.data != null) {
39
+ const { transactions } = response.data;
40
+ const actionsOut = [
41
+ (0, transactionReducer_1.updateTransactions)(transactions, (value) => value.transaction_id, 'merge'),
42
+ (0, jeSchedulesViewReducer_1.searchTransactionsForNewScheduleSuccess)({
43
+ searchResults: transactions.map((transaction) => transaction.transaction_id),
44
+ }),
45
+ ];
46
+ return (0, rxjs_1.from)(actionsOut);
47
+ }
48
+ return (0, rxjs_1.of)((0, jeSchedulesViewReducer_1.searchTransactionsForNewScheduleFailure)({
49
+ status: response.status,
50
+ }));
51
+ }), (0, operators_1.catchError)((error) => (0, rxjs_1.of)((0, jeSchedulesViewReducer_1.searchTransactionsForNewScheduleFailure)({
52
+ status: (0, responsePayload_1.createZeniAPIStatus)('Unexpected Error', 'Search transactions for new schedule errored: ' +
53
+ JSON.stringify(error)),
54
+ }))));
55
+ }));
56
+ };
57
+ exports.searchTransactionsForNewScheduleEpic = searchTransactionsForNewScheduleEpic;
@@ -0,0 +1,6 @@
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>;
@@ -0,0 +1,26 @@
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;
@@ -0,0 +1,43 @@
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;
@@ -0,0 +1,158 @@
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;
@@ -8,6 +8,7 @@ import { JEScheduleLocalData } from '../types/jeSchedulesViewState';
8
8
  export interface ExpenseAutomationJESchedulesQueryPayload {
9
9
  end_date: string;
10
10
  start_date: string;
11
+ close_period_start_date?: string;
11
12
  }
12
13
  interface ExpenseAutomationJESchedulesPayload {
13
14
  failed_je_postings: {