@feedmepos/mf-hrm-portal 2.0.17-dev.3 → 2.0.17-dev.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AuditLogList-Dl3Nmf00.js +1011 -0
- package/dist/EmployeeList-DBd_rVW2.js +831 -0
- package/dist/{Main-Dkr5lzbv.js → Main-CQ3KwxDY.js} +1368 -1371
- package/dist/{Main--tejoyEP.js → Main-pTgqNncY.js} +125 -125
- package/dist/{Main-BNXKItvX.js → Main-w0XUUaBp.js} +6 -6
- package/dist/PermissionSetList-B8qNOWH6.js +347 -0
- package/dist/{PortalPermissionEditor.vue_vue_type_script_setup_true_lang-BBsaxaXu.js → PortalPermissionEditor.vue_vue_type_script_setup_true_lang-C9VUjAu_.js} +1064 -1060
- package/dist/{RoleList-SZCgvYvC.js → RoleList-DMFJsUZv.js} +202 -200
- package/dist/Skeleton.vue_vue_type_script_setup_true_lang-B4PxNMwq.js +16 -0
- package/dist/TeamMemberList-BLRTfKLz.js +1031 -0
- package/dist/{TimesheetList-D-3k0Uad.js → TimesheetList-Bwp9_xHe.js} +6 -6
- package/dist/{app-BjXuSCis.js → app-COJbSNM4.js} +1975 -1440
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-z-vrgFCL.js → dayjs.min-CcBi6N-K.js} +1 -1
- package/dist/{employee-DAqAMupR.js → employee-xiV0LfnL.js} +3 -3
- package/dist/{iteration-Cp1eSTJA.js → iteration-JOKbtlLf.js} +1 -1
- package/dist/{lodash-CXLZQQp8.js → lodash-D5xlVzib.js} +1 -1
- package/dist/rule-3sXHiW0y.js +994 -0
- package/dist/src/api/audit-log/index.d.ts +9 -0
- package/dist/src/api/report-query/index.d.ts +2 -2
- package/dist/src/components/Skeleton.vue.d.ts +7 -0
- package/dist/src/composables/useBasePermission.d.ts +1 -0
- package/dist/src/stores/team.d.ts +6 -6
- package/dist/src/types/team.d.ts +1 -1
- package/dist/src/views/hr/locales/index.d.ts +172 -0
- package/dist/src/views/team/components/BasePermission.vue.d.ts +1 -1
- package/dist/src/views/team/locales/index.d.ts +312 -0
- package/dist/style.css +1 -1
- package/dist/{team-CnQ_rIx2.js → team-CyNektSD.js} +1 -1
- package/dist/{timesheet-BlPhOifI.js → timesheet-DkD3AysG.js} +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{useAppStore-BVnrWyPF.js → useAppStore-CvmsaYSG.js} +1 -1
- package/dist/{useLoading-7ia-Bps7.js → useLoading-4TNmhm5N.js} +1 -1
- package/dist/useReportPermissions-CWMFFb8E.js +70 -0
- package/package.json +2 -2
- package/dist/AuditLogList-C6qAeY5g.js +0 -954
- package/dist/EmployeeList-COtXtTqG.js +0 -827
- package/dist/PermissionSetList-B_Sdvbu7.js +0 -340
- package/dist/TeamMemberList-Dk5HeFfQ.js +0 -1008
- package/dist/rule-vBxopbM_.js +0 -990
- package/dist/useReportPermissions-C8HMek35.js +0 -60
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import type { AuditLogEntry } from '@/types/audit-log';
|
|
2
2
|
declare const AuditLogAPI: {
|
|
3
|
+
count(params?: {
|
|
4
|
+
from?: string;
|
|
5
|
+
to?: string;
|
|
6
|
+
userIds?: string[];
|
|
7
|
+
subjects?: string[];
|
|
8
|
+
subjectPrefixes?: string[];
|
|
9
|
+
actions?: string[];
|
|
10
|
+
outcomes?: string[];
|
|
11
|
+
}): Promise<number>;
|
|
3
12
|
read(params?: {
|
|
4
13
|
limit?: number;
|
|
5
14
|
offset?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ReportPermissionItem } from '@/types/report-query';
|
|
2
2
|
declare const ReportQueryAPI: {
|
|
3
|
-
fetchReportPermissions(businessId: string): Promise<ReportPermissionItem[]>;
|
|
4
|
-
fetchReportPermissionsForPortal(businessId: string): Promise<ReportPermissionItem[]>;
|
|
3
|
+
fetchReportPermissions(businessId: string, locale?: string | null): Promise<ReportPermissionItem[]>;
|
|
4
|
+
fetchReportPermissionsForPortal(businessId: string, locale?: string | null): Promise<ReportPermissionItem[]>;
|
|
5
5
|
};
|
|
6
6
|
export default ReportQueryAPI;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
width?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
width: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -6,7 +6,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
6
6
|
phoneNumber: string;
|
|
7
7
|
email: string;
|
|
8
8
|
restaurants: string[];
|
|
9
|
-
managableRestaurantIds: string[];
|
|
9
|
+
managableRestaurantIds: string[] | null;
|
|
10
10
|
permissions: {
|
|
11
11
|
reason?: string | null | undefined | undefined;
|
|
12
12
|
conditions?: any;
|
|
@@ -52,7 +52,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
52
52
|
phoneNumber: string;
|
|
53
53
|
email: string;
|
|
54
54
|
restaurants: string[];
|
|
55
|
-
managableRestaurantIds: string[];
|
|
55
|
+
managableRestaurantIds: string[] | null;
|
|
56
56
|
permissions: {
|
|
57
57
|
reason?: string | null | undefined | undefined;
|
|
58
58
|
conditions?: any;
|
|
@@ -107,7 +107,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
107
107
|
phoneNumber: string;
|
|
108
108
|
email: string;
|
|
109
109
|
restaurants: string[];
|
|
110
|
-
managableRestaurantIds: string[];
|
|
110
|
+
managableRestaurantIds: string[] | null;
|
|
111
111
|
permissions: {
|
|
112
112
|
reason?: string | null | undefined | undefined;
|
|
113
113
|
conditions?: any;
|
|
@@ -153,7 +153,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
153
153
|
phoneNumber: string;
|
|
154
154
|
email: string;
|
|
155
155
|
restaurants: string[];
|
|
156
|
-
managableRestaurantIds: string[];
|
|
156
|
+
managableRestaurantIds: string[] | null;
|
|
157
157
|
permissions: {
|
|
158
158
|
reason?: string | null | undefined | undefined;
|
|
159
159
|
conditions?: any;
|
|
@@ -208,7 +208,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
208
208
|
phoneNumber: string;
|
|
209
209
|
email: string;
|
|
210
210
|
restaurants: string[];
|
|
211
|
-
managableRestaurantIds: string[];
|
|
211
|
+
managableRestaurantIds: string[] | null;
|
|
212
212
|
permissions: {
|
|
213
213
|
reason?: string | null | undefined | undefined;
|
|
214
214
|
conditions?: any;
|
|
@@ -254,7 +254,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
254
254
|
phoneNumber: string;
|
|
255
255
|
email: string;
|
|
256
256
|
restaurants: string[];
|
|
257
|
-
managableRestaurantIds: string[];
|
|
257
|
+
managableRestaurantIds: string[] | null;
|
|
258
258
|
permissions: {
|
|
259
259
|
reason?: string | null | undefined | undefined;
|
|
260
260
|
conditions?: any;
|
package/dist/src/types/team.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export interface FTeamMember {
|
|
|
57
57
|
phoneNumber: string;
|
|
58
58
|
email: string;
|
|
59
59
|
restaurants: string[];
|
|
60
|
-
managableRestaurantIds: string[];
|
|
60
|
+
managableRestaurantIds: string[] | null;
|
|
61
61
|
permissions: FdoPermissionRule[];
|
|
62
62
|
permissionLabels: string[];
|
|
63
63
|
doc: IFdtoPortalUser;
|
|
@@ -112,6 +112,49 @@ export declare const i18nMessages: {
|
|
|
112
112
|
maxValueIs: string;
|
|
113
113
|
minValueIs: string;
|
|
114
114
|
restaurant: string;
|
|
115
|
+
permissionLabels: {
|
|
116
|
+
"order:discount": string;
|
|
117
|
+
"order:changePrice": string;
|
|
118
|
+
"order:void": string;
|
|
119
|
+
"order:payment": string;
|
|
120
|
+
"order:claimDeposit": string;
|
|
121
|
+
"order:resend": string;
|
|
122
|
+
"order:changePaymentType": string;
|
|
123
|
+
refund: string;
|
|
124
|
+
counter: string;
|
|
125
|
+
mallIntegration: string;
|
|
126
|
+
drawer: string;
|
|
127
|
+
menu: string;
|
|
128
|
+
inventory: string;
|
|
129
|
+
deposit: string;
|
|
130
|
+
delivery: string;
|
|
131
|
+
counterRecord: string;
|
|
132
|
+
restaurantSetting: string;
|
|
133
|
+
display: string;
|
|
134
|
+
printer: string;
|
|
135
|
+
table: string;
|
|
136
|
+
employee: string;
|
|
137
|
+
system: string;
|
|
138
|
+
tax: string;
|
|
139
|
+
paymentType: string;
|
|
140
|
+
faceId: string;
|
|
141
|
+
"report:closeup": string;
|
|
142
|
+
"report:counter": string;
|
|
143
|
+
"report:hourlySales": string;
|
|
144
|
+
"report:dailySales": string;
|
|
145
|
+
"report:productSales": string;
|
|
146
|
+
"report:sourceProductSales": string;
|
|
147
|
+
"report:userProductSales": string;
|
|
148
|
+
"report:categorySales": string;
|
|
149
|
+
"report:addonSales": string;
|
|
150
|
+
"report:slotSales": string;
|
|
151
|
+
"report:drawer": string;
|
|
152
|
+
"report:discount": string;
|
|
153
|
+
"report:refund": string;
|
|
154
|
+
"report:void": string;
|
|
155
|
+
"report:timesheet": string;
|
|
156
|
+
"report:counterPayment": string;
|
|
157
|
+
};
|
|
115
158
|
};
|
|
116
159
|
noData: {
|
|
117
160
|
title: string;
|
|
@@ -272,6 +315,49 @@ export declare const i18nMessages: {
|
|
|
272
315
|
maxValueIs: string;
|
|
273
316
|
minValueIs: string;
|
|
274
317
|
restaurant: string;
|
|
318
|
+
permissionLabels: {
|
|
319
|
+
"order:discount": string;
|
|
320
|
+
"order:changePrice": string;
|
|
321
|
+
"order:void": string;
|
|
322
|
+
"order:payment": string;
|
|
323
|
+
"order:claimDeposit": string;
|
|
324
|
+
"order:resend": string;
|
|
325
|
+
"order:changePaymentType": string;
|
|
326
|
+
refund: string;
|
|
327
|
+
counter: string;
|
|
328
|
+
mallIntegration: string;
|
|
329
|
+
drawer: string;
|
|
330
|
+
menu: string;
|
|
331
|
+
inventory: string;
|
|
332
|
+
deposit: string;
|
|
333
|
+
delivery: string;
|
|
334
|
+
counterRecord: string;
|
|
335
|
+
restaurantSetting: string;
|
|
336
|
+
display: string;
|
|
337
|
+
printer: string;
|
|
338
|
+
table: string;
|
|
339
|
+
employee: string;
|
|
340
|
+
system: string;
|
|
341
|
+
tax: string;
|
|
342
|
+
paymentType: string;
|
|
343
|
+
faceId: string;
|
|
344
|
+
"report:closeup": string;
|
|
345
|
+
"report:counter": string;
|
|
346
|
+
"report:hourlySales": string;
|
|
347
|
+
"report:dailySales": string;
|
|
348
|
+
"report:productSales": string;
|
|
349
|
+
"report:sourceProductSales": string;
|
|
350
|
+
"report:userProductSales": string;
|
|
351
|
+
"report:categorySales": string;
|
|
352
|
+
"report:addonSales": string;
|
|
353
|
+
"report:slotSales": string;
|
|
354
|
+
"report:drawer": string;
|
|
355
|
+
"report:discount": string;
|
|
356
|
+
"report:refund": string;
|
|
357
|
+
"report:void": string;
|
|
358
|
+
"report:timesheet": string;
|
|
359
|
+
"report:counterPayment": string;
|
|
360
|
+
};
|
|
275
361
|
};
|
|
276
362
|
noData: {
|
|
277
363
|
title: string;
|
|
@@ -432,6 +518,49 @@ export declare const i18nMessages: {
|
|
|
432
518
|
maxValueIs: string;
|
|
433
519
|
minValueIs: string;
|
|
434
520
|
restaurant: string;
|
|
521
|
+
permissionLabels: {
|
|
522
|
+
"order:discount": string;
|
|
523
|
+
"order:changePrice": string;
|
|
524
|
+
"order:void": string;
|
|
525
|
+
"order:payment": string;
|
|
526
|
+
"order:claimDeposit": string;
|
|
527
|
+
"order:resend": string;
|
|
528
|
+
"order:changePaymentType": string;
|
|
529
|
+
refund: string;
|
|
530
|
+
counter: string;
|
|
531
|
+
mallIntegration: string;
|
|
532
|
+
drawer: string;
|
|
533
|
+
menu: string;
|
|
534
|
+
inventory: string;
|
|
535
|
+
deposit: string;
|
|
536
|
+
delivery: string;
|
|
537
|
+
counterRecord: string;
|
|
538
|
+
restaurantSetting: string;
|
|
539
|
+
display: string;
|
|
540
|
+
printer: string;
|
|
541
|
+
table: string;
|
|
542
|
+
employee: string;
|
|
543
|
+
system: string;
|
|
544
|
+
tax: string;
|
|
545
|
+
paymentType: string;
|
|
546
|
+
faceId: string;
|
|
547
|
+
"report:closeup": string;
|
|
548
|
+
"report:counter": string;
|
|
549
|
+
"report:hourlySales": string;
|
|
550
|
+
"report:dailySales": string;
|
|
551
|
+
"report:productSales": string;
|
|
552
|
+
"report:sourceProductSales": string;
|
|
553
|
+
"report:userProductSales": string;
|
|
554
|
+
"report:categorySales": string;
|
|
555
|
+
"report:addonSales": string;
|
|
556
|
+
"report:slotSales": string;
|
|
557
|
+
"report:drawer": string;
|
|
558
|
+
"report:discount": string;
|
|
559
|
+
"report:refund": string;
|
|
560
|
+
"report:void": string;
|
|
561
|
+
"report:timesheet": string;
|
|
562
|
+
"report:counterPayment": string;
|
|
563
|
+
};
|
|
435
564
|
};
|
|
436
565
|
noData: {
|
|
437
566
|
title: string;
|
|
@@ -591,6 +720,49 @@ export declare const i18nMessages: {
|
|
|
591
720
|
maxValueIs: string;
|
|
592
721
|
minValueIs: string;
|
|
593
722
|
restaurant: string;
|
|
723
|
+
permissionLabels: {
|
|
724
|
+
"order:discount": string;
|
|
725
|
+
"order:changePrice": string;
|
|
726
|
+
"order:void": string;
|
|
727
|
+
"order:payment": string;
|
|
728
|
+
"order:claimDeposit": string;
|
|
729
|
+
"order:resend": string;
|
|
730
|
+
"order:changePaymentType": string;
|
|
731
|
+
refund: string;
|
|
732
|
+
counter: string;
|
|
733
|
+
mallIntegration: string;
|
|
734
|
+
drawer: string;
|
|
735
|
+
menu: string;
|
|
736
|
+
inventory: string;
|
|
737
|
+
deposit: string;
|
|
738
|
+
delivery: string;
|
|
739
|
+
counterRecord: string;
|
|
740
|
+
restaurantSetting: string;
|
|
741
|
+
display: string;
|
|
742
|
+
printer: string;
|
|
743
|
+
table: string;
|
|
744
|
+
employee: string;
|
|
745
|
+
system: string;
|
|
746
|
+
tax: string;
|
|
747
|
+
paymentType: string;
|
|
748
|
+
faceId: string;
|
|
749
|
+
"report:closeup": string;
|
|
750
|
+
"report:counter": string;
|
|
751
|
+
"report:hourlySales": string;
|
|
752
|
+
"report:dailySales": string;
|
|
753
|
+
"report:productSales": string;
|
|
754
|
+
"report:sourceProductSales": string;
|
|
755
|
+
"report:userProductSales": string;
|
|
756
|
+
"report:categorySales": string;
|
|
757
|
+
"report:addonSales": string;
|
|
758
|
+
"report:slotSales": string;
|
|
759
|
+
"report:drawer": string;
|
|
760
|
+
"report:discount": string;
|
|
761
|
+
"report:refund": string;
|
|
762
|
+
"report:void": string;
|
|
763
|
+
"report:timesheet": string;
|
|
764
|
+
"report:counterPayment": string;
|
|
765
|
+
};
|
|
594
766
|
};
|
|
595
767
|
noData: {
|
|
596
768
|
title: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
|
-
import type { IFdtoPortalPermissionsWithVisibilityCondition } from '@feedmepos/hrm-permission';
|
|
3
2
|
import type { FdoPermissionRule } from '@feedmepos/core/entity';
|
|
3
|
+
import type { IFdtoPortalPermissionsWithVisibilityCondition } from '@feedmepos/hrm-permission';
|
|
4
4
|
declare var __VLS_21: `checkbox-${string}-append`, __VLS_22: {
|
|
5
5
|
option: {
|
|
6
6
|
label: string;
|
|
@@ -135,9 +135,87 @@ export declare const i18nMessages: {
|
|
|
135
135
|
};
|
|
136
136
|
name: string;
|
|
137
137
|
namePlaceholder: string;
|
|
138
|
+
nameRequired: string;
|
|
138
139
|
includedSets: string;
|
|
139
140
|
includedSetsPlaceholder: string;
|
|
140
141
|
};
|
|
142
|
+
categoryLabels: {
|
|
143
|
+
General: string;
|
|
144
|
+
Inventory: string;
|
|
145
|
+
HRM: string;
|
|
146
|
+
CRM: string;
|
|
147
|
+
Payment: string;
|
|
148
|
+
Menu: string;
|
|
149
|
+
Settings: string;
|
|
150
|
+
Report: string;
|
|
151
|
+
"Default Report": string;
|
|
152
|
+
"Custom Report": string;
|
|
153
|
+
};
|
|
154
|
+
actionLabels: {
|
|
155
|
+
read: string;
|
|
156
|
+
create: string;
|
|
157
|
+
update: string;
|
|
158
|
+
delete: string;
|
|
159
|
+
};
|
|
160
|
+
permissionLabels: {
|
|
161
|
+
"business::restaurant": string;
|
|
162
|
+
"business::menu": string;
|
|
163
|
+
"business::inventory::stockBalance": string;
|
|
164
|
+
"business::inventory::stockAdjustment": string;
|
|
165
|
+
"business::inventory::unitCostHistory": string;
|
|
166
|
+
"business::inventory::wastageTemplate": string;
|
|
167
|
+
"business::inventory::closingHistory": string;
|
|
168
|
+
"business::inventory::closingTemplate": string;
|
|
169
|
+
"business::inventory::closingDraft": string;
|
|
170
|
+
"business::inventory::ingredient": string;
|
|
171
|
+
"business::inventory::ingredientGroup": string;
|
|
172
|
+
"business::inventory::recipe": string;
|
|
173
|
+
"business::inventory::unit": string;
|
|
174
|
+
"business::inventory::purchaseTransfer": string;
|
|
175
|
+
"business::inventory::orderDraftApproval": string;
|
|
176
|
+
"business::inventory::transferOut": string;
|
|
177
|
+
"business::inventory::surcharge": string;
|
|
178
|
+
"business::inventory::orderTemplate": string;
|
|
179
|
+
"business::inventory::supplier": string;
|
|
180
|
+
"business::inventory::warehouse": string;
|
|
181
|
+
"business::inventory::publish": string;
|
|
182
|
+
"business::inventory::import": string;
|
|
183
|
+
"business::inventory::integration": string;
|
|
184
|
+
"business::crm::membership": string;
|
|
185
|
+
"business::crm::promotion": string;
|
|
186
|
+
"business::crm::voucher": string;
|
|
187
|
+
"business::crm::analytic": string;
|
|
188
|
+
"business::crm::tier": string;
|
|
189
|
+
"business::crm::title": string;
|
|
190
|
+
"business::crm::broadcast": string;
|
|
191
|
+
"business::crm::point": string;
|
|
192
|
+
"business::crm::credit": string;
|
|
193
|
+
"business::crm::experience": string;
|
|
194
|
+
"business::crm::game": string;
|
|
195
|
+
"business::crm::mission": string;
|
|
196
|
+
"business::crm::loyaltyMember": string;
|
|
197
|
+
"business::crm::loyaltySegment": string;
|
|
198
|
+
"business::crm::loyaltyCard": string;
|
|
199
|
+
"business::crm::referral": string;
|
|
200
|
+
"business::crm::store": string;
|
|
201
|
+
"business::crm::transaction": string;
|
|
202
|
+
"business::crm::setting": string;
|
|
203
|
+
"business::crm::bin": string;
|
|
204
|
+
"business::payment::payoutAccount": string;
|
|
205
|
+
"business::payment::paymentOnboarding": string;
|
|
206
|
+
"business::payment::transactions": string;
|
|
207
|
+
"business::payment::settlements": string;
|
|
208
|
+
"business::hrm::teamMember": string;
|
|
209
|
+
"business::hrm::employee": string;
|
|
210
|
+
"business::hrm::auditLog": string;
|
|
211
|
+
"business::report::createReport": string;
|
|
212
|
+
"business::report::accessOverview": string;
|
|
213
|
+
"business::report::accessInsight": string;
|
|
214
|
+
"business::report::accessSetting": string;
|
|
215
|
+
"business::report::accessIntegration": string;
|
|
216
|
+
"business::report::allDefaultReports": string;
|
|
217
|
+
"business::report::allCustomReports": string;
|
|
218
|
+
};
|
|
141
219
|
table: {
|
|
142
220
|
columns: {
|
|
143
221
|
name: string;
|
|
@@ -280,9 +358,87 @@ export declare const i18nMessages: {
|
|
|
280
358
|
};
|
|
281
359
|
name: string;
|
|
282
360
|
namePlaceholder: string;
|
|
361
|
+
nameRequired: string;
|
|
283
362
|
includedSets: string;
|
|
284
363
|
includedSetsPlaceholder: string;
|
|
285
364
|
};
|
|
365
|
+
categoryLabels: {
|
|
366
|
+
General: string;
|
|
367
|
+
Inventory: string;
|
|
368
|
+
HRM: string;
|
|
369
|
+
CRM: string;
|
|
370
|
+
Payment: string;
|
|
371
|
+
Menu: string;
|
|
372
|
+
Settings: string;
|
|
373
|
+
Report: string;
|
|
374
|
+
"Default Report": string;
|
|
375
|
+
"Custom Report": string;
|
|
376
|
+
};
|
|
377
|
+
actionLabels: {
|
|
378
|
+
read: string;
|
|
379
|
+
create: string;
|
|
380
|
+
update: string;
|
|
381
|
+
delete: string;
|
|
382
|
+
};
|
|
383
|
+
permissionLabels: {
|
|
384
|
+
"business::restaurant": string;
|
|
385
|
+
"business::menu": string;
|
|
386
|
+
"business::inventory::stockBalance": string;
|
|
387
|
+
"business::inventory::stockAdjustment": string;
|
|
388
|
+
"business::inventory::unitCostHistory": string;
|
|
389
|
+
"business::inventory::wastageTemplate": string;
|
|
390
|
+
"business::inventory::closingHistory": string;
|
|
391
|
+
"business::inventory::closingTemplate": string;
|
|
392
|
+
"business::inventory::closingDraft": string;
|
|
393
|
+
"business::inventory::ingredient": string;
|
|
394
|
+
"business::inventory::ingredientGroup": string;
|
|
395
|
+
"business::inventory::recipe": string;
|
|
396
|
+
"business::inventory::unit": string;
|
|
397
|
+
"business::inventory::purchaseTransfer": string;
|
|
398
|
+
"business::inventory::orderDraftApproval": string;
|
|
399
|
+
"business::inventory::transferOut": string;
|
|
400
|
+
"business::inventory::surcharge": string;
|
|
401
|
+
"business::inventory::orderTemplate": string;
|
|
402
|
+
"business::inventory::supplier": string;
|
|
403
|
+
"business::inventory::warehouse": string;
|
|
404
|
+
"business::inventory::publish": string;
|
|
405
|
+
"business::inventory::import": string;
|
|
406
|
+
"business::inventory::integration": string;
|
|
407
|
+
"business::crm::membership": string;
|
|
408
|
+
"business::crm::promotion": string;
|
|
409
|
+
"business::crm::voucher": string;
|
|
410
|
+
"business::crm::analytic": string;
|
|
411
|
+
"business::crm::tier": string;
|
|
412
|
+
"business::crm::title": string;
|
|
413
|
+
"business::crm::broadcast": string;
|
|
414
|
+
"business::crm::point": string;
|
|
415
|
+
"business::crm::credit": string;
|
|
416
|
+
"business::crm::experience": string;
|
|
417
|
+
"business::crm::game": string;
|
|
418
|
+
"business::crm::mission": string;
|
|
419
|
+
"business::crm::loyaltyMember": string;
|
|
420
|
+
"business::crm::loyaltySegment": string;
|
|
421
|
+
"business::crm::loyaltyCard": string;
|
|
422
|
+
"business::crm::referral": string;
|
|
423
|
+
"business::crm::store": string;
|
|
424
|
+
"business::crm::transaction": string;
|
|
425
|
+
"business::crm::setting": string;
|
|
426
|
+
"business::crm::bin": string;
|
|
427
|
+
"business::payment::payoutAccount": string;
|
|
428
|
+
"business::payment::paymentOnboarding": string;
|
|
429
|
+
"business::payment::transactions": string;
|
|
430
|
+
"business::payment::settlements": string;
|
|
431
|
+
"business::hrm::teamMember": string;
|
|
432
|
+
"business::hrm::employee": string;
|
|
433
|
+
"business::hrm::auditLog": string;
|
|
434
|
+
"business::report::createReport": string;
|
|
435
|
+
"business::report::accessOverview": string;
|
|
436
|
+
"business::report::accessInsight": string;
|
|
437
|
+
"business::report::accessSetting": string;
|
|
438
|
+
"business::report::accessIntegration": string;
|
|
439
|
+
"business::report::allDefaultReports": string;
|
|
440
|
+
"business::report::allCustomReports": string;
|
|
441
|
+
};
|
|
286
442
|
table: {
|
|
287
443
|
columns: {
|
|
288
444
|
name: string;
|
|
@@ -425,9 +581,87 @@ export declare const i18nMessages: {
|
|
|
425
581
|
};
|
|
426
582
|
name: string;
|
|
427
583
|
namePlaceholder: string;
|
|
584
|
+
nameRequired: string;
|
|
428
585
|
includedSets: string;
|
|
429
586
|
includedSetsPlaceholder: string;
|
|
430
587
|
};
|
|
588
|
+
categoryLabels: {
|
|
589
|
+
General: string;
|
|
590
|
+
Inventory: string;
|
|
591
|
+
HRM: string;
|
|
592
|
+
CRM: string;
|
|
593
|
+
Payment: string;
|
|
594
|
+
Menu: string;
|
|
595
|
+
Settings: string;
|
|
596
|
+
Report: string;
|
|
597
|
+
"Default Report": string;
|
|
598
|
+
"Custom Report": string;
|
|
599
|
+
};
|
|
600
|
+
actionLabels: {
|
|
601
|
+
read: string;
|
|
602
|
+
create: string;
|
|
603
|
+
update: string;
|
|
604
|
+
delete: string;
|
|
605
|
+
};
|
|
606
|
+
permissionLabels: {
|
|
607
|
+
"business::restaurant": string;
|
|
608
|
+
"business::menu": string;
|
|
609
|
+
"business::inventory::stockBalance": string;
|
|
610
|
+
"business::inventory::stockAdjustment": string;
|
|
611
|
+
"business::inventory::unitCostHistory": string;
|
|
612
|
+
"business::inventory::wastageTemplate": string;
|
|
613
|
+
"business::inventory::closingHistory": string;
|
|
614
|
+
"business::inventory::closingTemplate": string;
|
|
615
|
+
"business::inventory::closingDraft": string;
|
|
616
|
+
"business::inventory::ingredient": string;
|
|
617
|
+
"business::inventory::ingredientGroup": string;
|
|
618
|
+
"business::inventory::recipe": string;
|
|
619
|
+
"business::inventory::unit": string;
|
|
620
|
+
"business::inventory::purchaseTransfer": string;
|
|
621
|
+
"business::inventory::orderDraftApproval": string;
|
|
622
|
+
"business::inventory::transferOut": string;
|
|
623
|
+
"business::inventory::surcharge": string;
|
|
624
|
+
"business::inventory::orderTemplate": string;
|
|
625
|
+
"business::inventory::supplier": string;
|
|
626
|
+
"business::inventory::warehouse": string;
|
|
627
|
+
"business::inventory::publish": string;
|
|
628
|
+
"business::inventory::import": string;
|
|
629
|
+
"business::inventory::integration": string;
|
|
630
|
+
"business::crm::membership": string;
|
|
631
|
+
"business::crm::promotion": string;
|
|
632
|
+
"business::crm::voucher": string;
|
|
633
|
+
"business::crm::analytic": string;
|
|
634
|
+
"business::crm::tier": string;
|
|
635
|
+
"business::crm::title": string;
|
|
636
|
+
"business::crm::broadcast": string;
|
|
637
|
+
"business::crm::point": string;
|
|
638
|
+
"business::crm::credit": string;
|
|
639
|
+
"business::crm::experience": string;
|
|
640
|
+
"business::crm::game": string;
|
|
641
|
+
"business::crm::mission": string;
|
|
642
|
+
"business::crm::loyaltyMember": string;
|
|
643
|
+
"business::crm::loyaltySegment": string;
|
|
644
|
+
"business::crm::loyaltyCard": string;
|
|
645
|
+
"business::crm::referral": string;
|
|
646
|
+
"business::crm::store": string;
|
|
647
|
+
"business::crm::transaction": string;
|
|
648
|
+
"business::crm::setting": string;
|
|
649
|
+
"business::crm::bin": string;
|
|
650
|
+
"business::payment::payoutAccount": string;
|
|
651
|
+
"business::payment::paymentOnboarding": string;
|
|
652
|
+
"business::payment::transactions": string;
|
|
653
|
+
"business::payment::settlements": string;
|
|
654
|
+
"business::hrm::teamMember": string;
|
|
655
|
+
"business::hrm::employee": string;
|
|
656
|
+
"business::hrm::auditLog": string;
|
|
657
|
+
"business::report::createReport": string;
|
|
658
|
+
"business::report::accessOverview": string;
|
|
659
|
+
"business::report::accessInsight": string;
|
|
660
|
+
"business::report::accessSetting": string;
|
|
661
|
+
"business::report::accessIntegration": string;
|
|
662
|
+
"business::report::allDefaultReports": string;
|
|
663
|
+
"business::report::allCustomReports": string;
|
|
664
|
+
};
|
|
431
665
|
table: {
|
|
432
666
|
columns: {
|
|
433
667
|
name: string;
|
|
@@ -577,9 +811,87 @@ export declare const i18nMessages: {
|
|
|
577
811
|
};
|
|
578
812
|
name: string;
|
|
579
813
|
namePlaceholder: string;
|
|
814
|
+
nameRequired: string;
|
|
580
815
|
includedSets: string;
|
|
581
816
|
includedSetsPlaceholder: string;
|
|
582
817
|
};
|
|
818
|
+
categoryLabels: {
|
|
819
|
+
General: string;
|
|
820
|
+
Inventory: string;
|
|
821
|
+
HRM: string;
|
|
822
|
+
CRM: string;
|
|
823
|
+
Payment: string;
|
|
824
|
+
Menu: string;
|
|
825
|
+
Settings: string;
|
|
826
|
+
Report: string;
|
|
827
|
+
"Default Report": string;
|
|
828
|
+
"Custom Report": string;
|
|
829
|
+
};
|
|
830
|
+
actionLabels: {
|
|
831
|
+
read: string;
|
|
832
|
+
create: string;
|
|
833
|
+
update: string;
|
|
834
|
+
delete: string;
|
|
835
|
+
};
|
|
836
|
+
permissionLabels: {
|
|
837
|
+
"business::restaurant": string;
|
|
838
|
+
"business::menu": string;
|
|
839
|
+
"business::inventory::stockBalance": string;
|
|
840
|
+
"business::inventory::stockAdjustment": string;
|
|
841
|
+
"business::inventory::unitCostHistory": string;
|
|
842
|
+
"business::inventory::wastageTemplate": string;
|
|
843
|
+
"business::inventory::closingHistory": string;
|
|
844
|
+
"business::inventory::closingTemplate": string;
|
|
845
|
+
"business::inventory::closingDraft": string;
|
|
846
|
+
"business::inventory::ingredient": string;
|
|
847
|
+
"business::inventory::ingredientGroup": string;
|
|
848
|
+
"business::inventory::recipe": string;
|
|
849
|
+
"business::inventory::unit": string;
|
|
850
|
+
"business::inventory::purchaseTransfer": string;
|
|
851
|
+
"business::inventory::orderDraftApproval": string;
|
|
852
|
+
"business::inventory::transferOut": string;
|
|
853
|
+
"business::inventory::surcharge": string;
|
|
854
|
+
"business::inventory::orderTemplate": string;
|
|
855
|
+
"business::inventory::supplier": string;
|
|
856
|
+
"business::inventory::warehouse": string;
|
|
857
|
+
"business::inventory::publish": string;
|
|
858
|
+
"business::inventory::import": string;
|
|
859
|
+
"business::inventory::integration": string;
|
|
860
|
+
"business::crm::membership": string;
|
|
861
|
+
"business::crm::promotion": string;
|
|
862
|
+
"business::crm::voucher": string;
|
|
863
|
+
"business::crm::analytic": string;
|
|
864
|
+
"business::crm::tier": string;
|
|
865
|
+
"business::crm::title": string;
|
|
866
|
+
"business::crm::broadcast": string;
|
|
867
|
+
"business::crm::point": string;
|
|
868
|
+
"business::crm::credit": string;
|
|
869
|
+
"business::crm::experience": string;
|
|
870
|
+
"business::crm::game": string;
|
|
871
|
+
"business::crm::mission": string;
|
|
872
|
+
"business::crm::loyaltyMember": string;
|
|
873
|
+
"business::crm::loyaltySegment": string;
|
|
874
|
+
"business::crm::loyaltyCard": string;
|
|
875
|
+
"business::crm::referral": string;
|
|
876
|
+
"business::crm::store": string;
|
|
877
|
+
"business::crm::transaction": string;
|
|
878
|
+
"business::crm::setting": string;
|
|
879
|
+
"business::crm::bin": string;
|
|
880
|
+
"business::payment::payoutAccount": string;
|
|
881
|
+
"business::payment::paymentOnboarding": string;
|
|
882
|
+
"business::payment::transactions": string;
|
|
883
|
+
"business::payment::settlements": string;
|
|
884
|
+
"business::hrm::teamMember": string;
|
|
885
|
+
"business::hrm::employee": string;
|
|
886
|
+
"business::hrm::auditLog": string;
|
|
887
|
+
"business::report::createReport": string;
|
|
888
|
+
"business::report::accessOverview": string;
|
|
889
|
+
"business::report::accessInsight": string;
|
|
890
|
+
"business::report::accessSetting": string;
|
|
891
|
+
"business::report::accessIntegration": string;
|
|
892
|
+
"business::report::allDefaultReports": string;
|
|
893
|
+
"business::report::allCustomReports": string;
|
|
894
|
+
};
|
|
583
895
|
table: {
|
|
584
896
|
columns: {
|
|
585
897
|
name: string;
|