@asaleh37/ui-base 1.2.2 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. package/dist/index.d.ts +20 -13
  2. package/dist/index.js +11 -6
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +11 -6
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +8 -2
  7. package/src/components/App.tsx +1 -1
  8. package/src/components/BaseApp.tsx +2 -19
  9. package/src/components/administration/admin/OrgMemberRoleForm.tsx +83 -0
  10. package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +131 -0
  11. package/src/components/administration/admin/OrganizationGrid.tsx +165 -0
  12. package/src/components/administration/admin/OrganizationMemberGrid.tsx +176 -0
  13. package/src/components/administration/admin/OrganizationMemberRoleGrid.tsx +87 -0
  14. package/src/components/{admin → administration/admin}/OrganizationRankGrid.tsx +49 -19
  15. package/src/components/administration/admin/OrganizationUnitGrid.tsx +139 -0
  16. package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +121 -0
  17. package/src/components/administration/admin/PersonGrid.tsx +195 -0
  18. package/src/components/{admin → administration/admin}/RoleAuthoritiesForm.tsx +30 -11
  19. package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +142 -0
  20. package/src/components/administration/admin/SystemApplicationGrid.tsx +161 -0
  21. package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +109 -0
  22. package/src/components/administration/admin/SystemApplicationRoleAuthorityGrid.tsx +67 -0
  23. package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +130 -0
  24. package/src/components/administration/dev/BluePrintGrid.tsx +129 -0
  25. package/src/components/administration/dev/DashboardGrid.tsx +173 -0
  26. package/src/components/administration/dev/DashboardWidgetGrid.tsx +164 -0
  27. package/src/components/administration/dev/DataQueryGrid.tsx +206 -0
  28. package/src/components/administration/dev/DataQueryParameterGrid.tsx +191 -0
  29. package/src/components/administration/dev/DataQueryParametersForm.tsx +84 -0
  30. package/src/components/administration/dev/DatasourceConnectionGrid.tsx +150 -0
  31. package/src/components/administration/dev/EntityParameterGrid.tsx +279 -0
  32. package/src/components/administration/dev/LookupGrid.tsx +131 -0
  33. package/src/components/administration/dev/MailAttachmentGrid.tsx +155 -0
  34. package/src/components/administration/dev/MailBodyGrid.tsx +215 -0
  35. package/src/components/{admin → administration/dev}/MailNotificationQueueGrid.tsx +114 -26
  36. package/src/components/administration/dev/MailRecipientGrid.tsx +169 -0
  37. package/src/components/administration/dev/MailSenderConfigGrid.tsx +478 -0
  38. package/src/components/administration/dev/MailTemplateGrid.tsx +388 -0
  39. package/src/components/administration/dev/ReportGrid.tsx +504 -0
  40. package/src/components/administration/dev/ReportParameterGrid.tsx +186 -0
  41. package/src/components/administration/dev/ReportParametersForm.tsx +84 -0
  42. package/src/components/administration/dev/WidgetGrid.tsx +431 -0
  43. package/src/components/administration/dev/WorkflowDocumentActionGrid.tsx +264 -0
  44. package/src/components/administration/dev/WorkflowDocumentActionHistoryGrid.tsx +172 -0
  45. package/src/components/administration/dev/WorkflowDocumentActionMailGrid.tsx +161 -0
  46. package/src/components/administration/dev/WorkflowDocumentGrid.tsx +377 -0
  47. package/src/components/{admin → administration/dev}/WorkflowDocumentMailLogGrid.tsx +87 -10
  48. package/src/components/administration/dev/WorkflowDocumentStatusGrid.tsx +243 -0
  49. package/src/components/common/ChangeOrgForm.tsx +81 -0
  50. package/src/components/common/Home.tsx +28 -25
  51. package/src/components/common/LoadingMask.tsx +9 -4
  52. package/src/components/common/Login.tsx +9 -13
  53. package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +30 -6
  54. package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +46 -5
  55. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +64 -5
  56. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +11 -3
  57. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/CheckBox.tsx +2 -2
  58. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +1 -2
  59. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/HtmlEditor.tsx +144 -0
  60. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +55 -0
  61. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +9 -1
  62. package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +45 -5
  63. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +8 -7
  64. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +38 -10
  65. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridRecordAction.tsx +4 -1
  66. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridTopBar.tsx +3 -4
  67. package/src/components/templates/TransferList.tsx +16 -6
  68. package/src/components/templates/index.ts +0 -2
  69. package/src/components/templates/report/ExcelReportViewer.tsx +65 -0
  70. package/src/components/templates/report/ReportViewer.tsx +382 -0
  71. package/src/components/templates/visuals/DashboardRouteView.tsx +9 -0
  72. package/src/components/templates/visuals/DashboardViewer.tsx +148 -0
  73. package/src/components/templates/visuals/WidgetViewer.tsx +198 -0
  74. package/src/components/templates/visuals/charts/TemplateBarChart.tsx +9 -2
  75. package/src/components/templates/visuals/charts/TemplateDataCard.tsx +6 -31
  76. package/src/components/templates/visuals/charts/TemplateGauge.tsx +8 -3
  77. package/src/components/templates/visuals/charts/TemplateLineChart.tsx +8 -2
  78. package/src/components/templates/visuals/charts/TemplateLineProgress.tsx +5 -3
  79. package/src/components/templates/visuals/charts/TemplatePieChart.tsx +1 -2
  80. package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +581 -0
  81. package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +134 -0
  82. package/src/hooks/UseSession.tsx +3 -7
  83. package/src/hooks/UseWindow.tsx +2 -1
  84. package/src/hooks/useAxios.tsx +9 -27
  85. package/src/hooks/useLookupGridColumn.tsx +35 -0
  86. package/src/layout/Layout.tsx +2 -46
  87. package/src/layout/MainContent.tsx +60 -7
  88. package/src/layout/MobileDrawer.tsx +5 -5
  89. package/src/layout/NavigationTree.tsx +0 -1
  90. package/src/layout/RouteWrapper.tsx +36 -0
  91. package/src/layout/SideBar.tsx +15 -10
  92. package/src/layout/TopBar.tsx +139 -71
  93. package/src/locales/arabic/adminLocalsAr.json +81 -344
  94. package/src/locales/arabic/common.json +11 -1
  95. package/src/locales/arabic/devLocalsAr.json +280 -0
  96. package/src/locales/arabic/index.ts +2 -0
  97. package/src/locales/english/adminLocalsEn.json +86 -346
  98. package/src/locales/english/common.json +11 -1
  99. package/src/locales/english/devLocalsEn.json +281 -0
  100. package/src/locales/english/index.ts +3 -0
  101. package/src/main.tsx +5 -6
  102. package/src/navigationItems/Administration/adminNavigationItems.tsx +65 -99
  103. package/src/navigationItems/Administration/index.tsx +10 -65
  104. package/src/redux/features/administration/AdministrationStoresMetaData.ts +45 -12
  105. package/src/redux/features/common/AppLayoutSlice.ts +0 -8
  106. package/src/redux/features/common/CommonStoreSlice.ts +4 -0
  107. package/src/redux/features/common/SideBarSlice.ts +29 -0
  108. package/src/redux/features/common/UserSessionSlice.ts +15 -23
  109. package/src/redux/store.ts +1 -1
  110. package/src/routes/administration/adminRoutes.tsx +41 -222
  111. package/src/routes/administration/devRoutes.tsx +90 -0
  112. package/src/routes/administration/index.ts +5 -1
  113. package/src/routes/index.ts +1 -0
  114. package/src/styles/index.css +3 -3
  115. package/src/util/AppUtils.ts +5 -0
  116. package/vite.config.ts +14 -0
  117. package/src/components/admin/AttachmentGrid.tsx +0 -116
  118. package/src/components/admin/AuthorityGrid.tsx +0 -88
  119. package/src/components/admin/BluePrintGrid.tsx +0 -55
  120. package/src/components/admin/BluePrintPageGrid.tsx +0 -85
  121. package/src/components/admin/BluePrintPointGrid.tsx +0 -85
  122. package/src/components/admin/DashboardGrid.tsx +0 -95
  123. package/src/components/admin/DashboardWidgetGrid.tsx +0 -75
  124. package/src/components/admin/DataQueryGrid.tsx +0 -75
  125. package/src/components/admin/DataQueryParameterGrid.tsx +0 -98
  126. package/src/components/admin/DatasourceConnectionGrid.tsx +0 -98
  127. package/src/components/admin/EmployeeGrid.tsx +0 -105
  128. package/src/components/admin/EntityParameterGrid.tsx +0 -125
  129. package/src/components/admin/ExcelUploaderDetailGrid.tsx +0 -78
  130. package/src/components/admin/ExcelUploaderHeaderGrid.tsx +0 -78
  131. package/src/components/admin/LookupGrid.tsx +0 -95
  132. package/src/components/admin/MailAttachmentGrid.tsx +0 -65
  133. package/src/components/admin/MailBodyGrid.tsx +0 -105
  134. package/src/components/admin/MailRecipientGrid.tsx +0 -75
  135. package/src/components/admin/MailTemplateGrid.tsx +0 -145
  136. package/src/components/admin/NewTableGrid.tsx +0 -65
  137. package/src/components/admin/NotificationGrid.tsx +0 -115
  138. package/src/components/admin/NotificationQueueGrid.tsx +0 -125
  139. package/src/components/admin/OrganizationApplicationGrid.tsx +0 -81
  140. package/src/components/admin/OrganizationGrid.tsx +0 -65
  141. package/src/components/admin/OrganizationUnitGrid.tsx +0 -85
  142. package/src/components/admin/OrganizationUserGrid.tsx +0 -75
  143. package/src/components/admin/OrganizationUserRoleGrid.tsx +0 -98
  144. package/src/components/admin/ReportGrid.tsx +0 -155
  145. package/src/components/admin/ReportParameterGrid.tsx +0 -95
  146. package/src/components/admin/RoleAuthorityGrid.tsx +0 -65
  147. package/src/components/admin/RoleGrid.tsx +0 -132
  148. package/src/components/admin/UserAccountGrid.tsx +0 -65
  149. package/src/components/admin/UserRequestGrid.tsx +0 -145
  150. package/src/components/admin/WidgetGrid.tsx +0 -175
  151. package/src/components/admin/WorkflowDocumentActionGrid.tsx +0 -111
  152. package/src/components/admin/WorkflowDocumentActionHistoryGrid.tsx +0 -111
  153. package/src/components/admin/WorkflowDocumentActionMailGrid.tsx +0 -71
  154. package/src/components/admin/WorkflowDocumentGrid.tsx +0 -185
  155. package/src/components/admin/WorkflowDocumentStatusGrid.tsx +0 -121
  156. package/src/components/templates/visuals/TemplateDashboard.tsx +0 -126
  157. package/src/redux/features/CounterSlice.tsx +0 -13
@@ -0,0 +1,377 @@
1
+ import { useState } from "react";
2
+ import TemplateGrid from "../../templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid";
3
+ import { FormElementProps } from "../../templates/DataEntryTemplates/DataEntryTypes";
4
+ import { useTranslation } from "react-i18next";
5
+ import { useApiActions, useWindow } from "../../../hooks";
6
+ import { useSelector } from "react-redux";
7
+ import WorkflowDocumentStatusGrid from "./WorkflowDocumentStatusGrid";
8
+ import WorkflowDocumentActionGrid from "./WorkflowDocumentActionGrid";
9
+
10
+ const WorkflowDocumentGrid: React.FC = () => {
11
+ const [selectedRecord, setSelectedRecord] = useState<any>(null);
12
+ const {
13
+ Window: WorkflowStatusWindow,
14
+ setWindowState: setWorkflowStatusWindowState,
15
+ } = useWindow({
16
+ windowTitle: "Document Status",
17
+ windowIcon: "tag",
18
+ });
19
+ const {
20
+ Window: WorkflowActionWindow,
21
+ setWindowState: setWorkflowActionWindowState,
22
+ } = useWindow({
23
+ windowTitle: "Document Action",
24
+ windowIcon: "stamp",
25
+ });
26
+ const SystemOrganizations = useSelector(
27
+ (state: any) => state.commonStores.stores.SystemOrganizations.data
28
+ );
29
+ const SystemReports = useSelector(
30
+ (state: any) => state.commonStores.stores.SystemReports.data
31
+ );
32
+ const SystemDataSources = useSelector(
33
+ (state: any) => state.commonStores.stores.SystemDataSources.data
34
+ );
35
+ const { t } = useTranslation();
36
+ const [data, setData] = useState([]);
37
+ const apiActions = useApiActions({
38
+ findAll: "api/v1/dev/workflowdocument/all",
39
+ deleteById: "api/v1/dev/workflowdocument",
40
+ save: "api/v1/dev/workflowdocument",
41
+ findById: "api/v1/dev/workflowdocument",
42
+ setData: setData,
43
+ });
44
+
45
+ const formElements: Array<FormElementProps> = [
46
+ {
47
+ type: "field",
48
+ mode: "props",
49
+ props: {
50
+ fieldLabel: "id",
51
+ fieldName: "id",
52
+ fieldType: "number",
53
+ hidden: true,
54
+ gridProps: {
55
+ hidden: true,
56
+ },
57
+ },
58
+ },
59
+ {
60
+ type: "field",
61
+ mode: "props",
62
+ props: {
63
+ fieldLabel: "createTime",
64
+ fieldName: "createTime",
65
+ fieldType: "datetime",
66
+ hidden: true,
67
+ gridProps: {
68
+ hidden: true,
69
+ },
70
+ },
71
+ },
72
+ {
73
+ type: "field",
74
+ mode: "props",
75
+ props: {
76
+ fieldLabel: "createdBy",
77
+ fieldName: "createdBy",
78
+ fieldType: "text",
79
+ hidden: true,
80
+ gridProps: {
81
+ hidden: true,
82
+ },
83
+ },
84
+ },
85
+ {
86
+ type: "field",
87
+ mode: "props",
88
+ props: {
89
+ fieldLabel: "lastUpdateBy",
90
+ fieldName: "lastUpdateBy",
91
+ fieldType: "text",
92
+ hidden: true,
93
+ gridProps: {
94
+ hidden: true,
95
+ },
96
+ },
97
+ },
98
+ {
99
+ type: "field",
100
+ mode: "props",
101
+ props: {
102
+ fieldLabel: "lastUpdateTime",
103
+ fieldName: "lastUpdateTime",
104
+ fieldType: "datetime",
105
+ hidden: true,
106
+ gridProps: {
107
+ hidden: true,
108
+ },
109
+ },
110
+ },
111
+ {
112
+ type: "field",
113
+ mode: "props",
114
+ props: {
115
+ fieldLabel: "WORKFLOW_DOCUMENT_ORG_CODE",
116
+ fieldName: "orgCode",
117
+ required: false,
118
+ fieldType: "combobox",
119
+ options: SystemOrganizations,
120
+ optionDisplayField: "organizationCode",
121
+ optionValueField: "id",
122
+ },
123
+ },
124
+ {
125
+ type: "field",
126
+ mode: "props",
127
+ props: {
128
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_CODE",
129
+ fieldName: "documentCode",
130
+ required: true,
131
+ fieldType: "text",
132
+ },
133
+ },
134
+ {
135
+ type: "field",
136
+ mode: "props",
137
+ props: {
138
+ fieldLabel: "Workflow Document En Display Name",
139
+ fieldName: "documentEnName",
140
+ required: true,
141
+ fieldType: "text",
142
+ },
143
+ },
144
+ {
145
+ type: "field",
146
+ mode: "props",
147
+ props: {
148
+ fieldLabel: "Workflow Document Ar Display Name",
149
+ fieldName: "documentArName",
150
+ required: true,
151
+ fieldType: "text",
152
+ },
153
+ },
154
+ {
155
+ type: "field",
156
+ mode: "props",
157
+ props: {
158
+ fieldLabel: "Report To be Attached For The Document ( will be passed a parameter called doc_id)",
159
+ fieldName: "documentReportId",
160
+ required: false,
161
+ fieldType: "combobox",
162
+ options: SystemReports,
163
+ optionDisplayField: "reportName",
164
+ optionValueField: "id",
165
+ },
166
+ },
167
+
168
+ {
169
+ type: "field",
170
+ mode: "props",
171
+ props: {
172
+ fieldLabel: "WORKFLOW_DOCUMENT_MAIL_APPROVAL_ALLOWED",
173
+ fieldName: "mailApprovalAllowed",
174
+ required: false,
175
+ fieldType: "checkbox",
176
+ },
177
+ },
178
+ {
179
+ type: "group",
180
+ props: {
181
+ icon: "bell",
182
+ style: { border: "1px dashed black", padding: 1, marginBottom: 1 },
183
+ label: "App Visual Notifications",
184
+ elements: [
185
+ {
186
+ type: "field",
187
+ mode: "props",
188
+ props: {
189
+ fieldLabel: "WORKFLOW_DOCUMENT_APP_NOTIFICATION_ICON",
190
+ fieldName: "appNotificationIcon",
191
+ required: false,
192
+ fieldType: "text",
193
+ },
194
+ },
195
+ {
196
+ type: "field",
197
+ mode: "props",
198
+ props: {
199
+ fieldLabel: "WORKFLOW_DOCUMENT_APP_NOTIFICATION_STYLE",
200
+ fieldName: "appNotificationStyle",
201
+ required: false,
202
+ fieldType: "text",
203
+ },
204
+ },
205
+ {
206
+ type: "field",
207
+ mode: "props",
208
+ props: {
209
+ fieldLabel: "WORKFLOW_DOCUMENT_APP_VIEW_ROUTE",
210
+ fieldName: "appViewRoute",
211
+ required: false,
212
+ fieldType: "text",
213
+ },
214
+ },
215
+ ],
216
+ },
217
+ },
218
+
219
+ {
220
+ type: "group",
221
+ props: {
222
+ icon: "database",
223
+ style: { border: "1px dashed black", padding: 1, marginBottom: 1 },
224
+ label: "Related Document Database",
225
+ elements: [
226
+ {
227
+ type: "field",
228
+ mode: "props",
229
+ props: {
230
+ fieldLabel: "WORKFLOW_DOCUMENT_USE_SYSTEM_CON",
231
+ fieldName: "useSystemCon",
232
+ required: false,
233
+ fieldType: "checkbox",
234
+ formProps: {
235
+ onValueChangeCallBack(
236
+ value,
237
+ formManager,
238
+ formActions,
239
+ selectedRecord
240
+ ) {
241
+ if (value) {
242
+ formActions.hideField("documentConId");
243
+ formManager.setValue("documentConId", null);
244
+ } else {
245
+ formActions.showField("documentConId");
246
+ }
247
+ },
248
+ },
249
+ },
250
+ },
251
+ {
252
+ type: "field",
253
+ mode: "props",
254
+ props: {
255
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_CON_ID",
256
+ fieldName: "documentConId",
257
+ required: false,
258
+ fieldType: "combobox",
259
+ options: SystemDataSources,
260
+ optionDisplayField: "connectionName",
261
+ optionValueField: "id",
262
+ },
263
+ },
264
+ {
265
+ type: "field",
266
+ mode: "props",
267
+ props: {
268
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_NAME",
269
+ fieldName: "documentDatabaseName",
270
+ required: true,
271
+ fieldType: "text",
272
+ },
273
+ },
274
+ {
275
+ type: "field",
276
+ mode: "props",
277
+ props: {
278
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_TABLE",
279
+ fieldName: "documentDatabaseTable",
280
+ required: true,
281
+ fieldType: "text",
282
+ },
283
+ },
284
+ {
285
+ type: "field",
286
+ mode: "props",
287
+ props: {
288
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_ID_FIELD",
289
+ fieldName: "documentIdField",
290
+ required: true,
291
+ fieldType: "text",
292
+ },
293
+ },
294
+ {
295
+ type: "field",
296
+ mode: "props",
297
+ props: {
298
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_STATUS_FIELD",
299
+ fieldName: "documentStatusField",
300
+ required: true,
301
+ fieldType: "text",
302
+ },
303
+ },
304
+ {
305
+ type: "field",
306
+ mode: "props",
307
+ props: {
308
+ fieldLabel: "WORKFLOW_DOCUMENT_DOCUMENT_NUMBER_FIELD",
309
+ fieldName: "documentNumberField",
310
+ required: true,
311
+ fieldType: "text",
312
+ },
313
+ },
314
+ ],
315
+ },
316
+ },
317
+ ];
318
+
319
+ return (
320
+ <>
321
+ <WorkflowStatusWindow>
322
+ <WorkflowDocumentStatusGrid selectedRecord={selectedRecord} />
323
+ </WorkflowStatusWindow>
324
+ <WorkflowActionWindow>
325
+ <WorkflowDocumentActionGrid selectedRecord={selectedRecord} />
326
+ </WorkflowActionWindow>
327
+ <TemplateGrid
328
+ apiActions={apiActions}
329
+ formLoadCallBk={(formActions, formManager, record) => {
330
+ if (record.useSystemCon === true) {
331
+ formActions.hideField("documentConId");
332
+ } else {
333
+ formActions.showField("documentConId");
334
+ }
335
+ }}
336
+ data={data}
337
+ setData={setData}
338
+ rowActions={[
339
+ {
340
+ icon: "tag",
341
+ label: "Document States",
342
+ actionFn: async (data) => {
343
+ setSelectedRecord(data);
344
+ setWorkflowStatusWindowState(true);
345
+ },
346
+ },
347
+ {
348
+ icon: "stamp",
349
+ label: "Document Actions",
350
+ actionFn: async (data) => {
351
+ setSelectedRecord(data);
352
+ setWorkflowActionWindowState(true);
353
+ },
354
+ },
355
+ ]}
356
+ editMode={{
357
+ editMode: "modal",
358
+ specs: {
359
+ modalIcon: "chart-diagram",
360
+ modalTitle: t("WORKFLOW_DOCUMENT_SINGULAR"),
361
+ },
362
+ }}
363
+ formElements={formElements}
364
+ keyColumnName={"id"}
365
+ gridTitle={t("WORKFLOW_DOCUMENT_PLURAL")}
366
+ girdIcon="chart-diagram"
367
+ editAction={{ isEnabled: true, authority: "WORKFLOW_DOCUMENT_EDIT" }}
368
+ deleteAction={{
369
+ isEnabled: true,
370
+ authority: "WORKFLOW_DOCUMENT_DELETE",
371
+ }}
372
+ />
373
+ </>
374
+ );
375
+ };
376
+
377
+ export default WorkflowDocumentGrid;
@@ -1,19 +1,86 @@
1
1
  import { useState } from "react";
2
- import TemplateGrid from "../templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid";
3
- import useApiActions from "../../hooks/useApiActions";
4
- import { FormElementProps } from "../templates/DataEntryTemplates/DataEntryTypes";
2
+ import TemplateGrid from "../../templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid";
3
+ import { FormElementProps } from "../../templates/DataEntryTemplates/DataEntryTypes";
4
+ import { useTranslation } from "react-i18next";
5
+ import { useApiActions } from "../../../hooks";
5
6
 
6
7
  const WorkflowDocumentMailLogGrid: React.FC = () => {
8
+ const { t } = useTranslation();
7
9
  const [data, setData] = useState([]);
8
10
  const apiActions = useApiActions({
9
- findAll: "api/v1/admin/workflowdocumentmaillog/all",
10
- deleteById: "api/v1/admin/workflowdocumentmaillog",
11
- save: "api/v1/admin/workflowdocumentmaillog",
12
- findById: "api/v1/admin/workflowdocumentmaillog",
11
+ findAll: "api/v1/dev/workflowdocumentmaillog/all",
12
+ deleteById: "api/v1/dev/workflowdocumentmaillog",
13
+ save: "api/v1/dev/workflowdocumentmaillog",
14
+ findById: "api/v1/dev/workflowdocumentmaillog",
13
15
  setData: setData,
14
16
  });
15
17
 
16
18
  const formElements: Array<FormElementProps> = [
19
+ {
20
+ type: "field",
21
+ mode: "props",
22
+ props: {
23
+ fieldLabel: "id",
24
+ fieldName: "id",
25
+ fieldType: "number",
26
+ hidden: true,
27
+ gridProps: {
28
+ hidden: true,
29
+ },
30
+ },
31
+ },
32
+ {
33
+ type: "field",
34
+ mode: "props",
35
+ props: {
36
+ fieldLabel: "createTime",
37
+ fieldName: "createTime",
38
+ fieldType: "datetime",
39
+ hidden: true,
40
+ gridProps: {
41
+ hidden: true,
42
+ },
43
+ },
44
+ },
45
+ {
46
+ type: "field",
47
+ mode: "props",
48
+ props: {
49
+ fieldLabel: "createdBy",
50
+ fieldName: "createdBy",
51
+ fieldType: "text",
52
+ hidden: true,
53
+ gridProps: {
54
+ hidden: true,
55
+ },
56
+ },
57
+ },
58
+ {
59
+ type: "field",
60
+ mode: "props",
61
+ props: {
62
+ fieldLabel: "lastUpdateBy",
63
+ fieldName: "lastUpdateBy",
64
+ fieldType: "text",
65
+ hidden: true,
66
+ gridProps: {
67
+ hidden: true,
68
+ },
69
+ },
70
+ },
71
+ {
72
+ type: "field",
73
+ mode: "props",
74
+ props: {
75
+ fieldLabel: "lastUpdateTime",
76
+ fieldName: "lastUpdateTime",
77
+ fieldType: "datetime",
78
+ hidden: true,
79
+ gridProps: {
80
+ hidden: true,
81
+ },
82
+ },
83
+ },
17
84
  {
18
85
  type: "field",
19
86
  mode: "props",
@@ -31,7 +98,7 @@ const WorkflowDocumentMailLogGrid: React.FC = () => {
31
98
  fieldLabel: "WORKFLOW_DOCUMENT_MAIL_LOG_IS_PROCESSED",
32
99
  fieldName: "isProcessed",
33
100
  required: false,
34
- fieldType: "checkbox",
101
+ fieldType: "text",
35
102
  },
36
103
  },
37
104
  {
@@ -111,7 +178,17 @@ const WorkflowDocumentMailLogGrid: React.FC = () => {
111
178
  fieldLabel: "WORKFLOW_DOCUMENT_MAIL_LOG_WORKFLOW_DOCUMENT_ID",
112
179
  fieldName: "workflowDocumentId",
113
180
  required: false,
114
- fieldType: "text",
181
+ fieldType: "number",
182
+ },
183
+ },
184
+ {
185
+ type: "field",
186
+ mode: "props",
187
+ props: {
188
+ fieldLabel: "WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_RECEIVE_TIME",
189
+ fieldName: "mailReceiveTime",
190
+ required: false,
191
+ fieldType: "datetime",
115
192
  },
116
193
  },
117
194
  ];
@@ -124,7 +201,7 @@ const WorkflowDocumentMailLogGrid: React.FC = () => {
124
201
  editMode={{ editMode: "row" }}
125
202
  formElements={formElements}
126
203
  keyColumnName={"id"}
127
- gridTitle="WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL"
204
+ gridTitle={t("WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL")}
128
205
  girdIcon="table-cells"
129
206
  editAction={{
130
207
  isEnabled: true,