@feedmepos/mf-order-setting 0.0.23 → 0.0.24
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/{KioskDevicesView-BdJCcotz.js → KioskDevicesView-DGkvW2mH.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DUPfN7ti.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BGZLd8T_.js} +2 -2
- package/dist/KioskSettingView-DLb5nnCu.js +821 -0
- package/dist/{KioskView-DPU-oQ1H.js → KioskView-kZZYSfUh.js} +74 -70
- package/dist/{OrderSettingsView-BOiflwB_.js → OrderSettingsView-Cil4j9G5.js} +4 -4
- package/dist/{app-CaYWSLe1.js → app-D47VRl5B.js} +37 -33
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-8NyoNely.js → dayjs.min-R4180ukF.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +4 -0
- package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +4 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +24 -0
- package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +3 -2
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +9 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-B7GFhkAE.js → index-DgLlDwJK.js} +2 -2
- package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +14 -0
- package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +30 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +18 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +36 -0
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +18 -0
- package/dist/package/entity/websocket/websocket.dto.d.ts +40 -0
- package/dist/{queue.do-CIyIpp22.js → queue.do-CNMuossU.js} +5 -1
- package/package.json +1 -1
- package/src/locales/en-US.json +2 -0
- package/src/locales/zh-CN.json +2 -0
- package/src/modules/order-setting/kiosk/interface.ts +4 -0
- package/src/stores/order-setting/mapper.ts +15 -9
- package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +33 -0
- package/src/views/kiosk/settings/KioskSettingView.vue +26 -0
- package/dist/KioskSettingView-BChhriPk.js +0 -782
|
@@ -21,6 +21,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
21
21
|
};
|
|
22
22
|
prefix: string | null;
|
|
23
23
|
padDigit: number;
|
|
24
|
+
enablePaxDialog: boolean;
|
|
24
25
|
submitOrderInstruction: {
|
|
25
26
|
payAtCounter: string | null;
|
|
26
27
|
paid: string | null;
|
|
@@ -28,6 +29,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
28
29
|
};
|
|
29
30
|
pickUp: {
|
|
30
31
|
enabled: boolean;
|
|
32
|
+
enablePaxDialog: boolean;
|
|
31
33
|
submitOrderInstruction: {
|
|
32
34
|
payAtCounter: string | null;
|
|
33
35
|
paid: string | null;
|
|
@@ -182,6 +184,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
182
184
|
dineIn?: {
|
|
183
185
|
requiredSlot?: boolean | null | undefined;
|
|
184
186
|
pickUp?: {
|
|
187
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
185
188
|
submitOrderInstruction?: {
|
|
186
189
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
187
190
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -189,6 +192,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
189
192
|
enabled: boolean;
|
|
190
193
|
} | null | undefined;
|
|
191
194
|
displayStand?: {
|
|
195
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
192
196
|
submitOrderInstruction?: {
|
|
193
197
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
194
198
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -252,6 +256,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
252
256
|
};
|
|
253
257
|
prefix: string | null;
|
|
254
258
|
padDigit: number;
|
|
259
|
+
enablePaxDialog: boolean;
|
|
255
260
|
submitOrderInstruction: {
|
|
256
261
|
payAtCounter: string | null;
|
|
257
262
|
paid: string | null;
|
|
@@ -259,6 +264,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
259
264
|
};
|
|
260
265
|
pickUp: {
|
|
261
266
|
enabled: boolean;
|
|
267
|
+
enablePaxDialog: boolean;
|
|
262
268
|
submitOrderInstruction: {
|
|
263
269
|
payAtCounter: string | null;
|
|
264
270
|
paid: string | null;
|
|
@@ -413,6 +419,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
413
419
|
dineIn?: {
|
|
414
420
|
requiredSlot?: boolean | null | undefined;
|
|
415
421
|
pickUp?: {
|
|
422
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
416
423
|
submitOrderInstruction?: {
|
|
417
424
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
418
425
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -420,6 +427,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
420
427
|
enabled: boolean;
|
|
421
428
|
} | null | undefined;
|
|
422
429
|
displayStand?: {
|
|
430
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
423
431
|
submitOrderInstruction?: {
|
|
424
432
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
425
433
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -488,6 +496,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
488
496
|
};
|
|
489
497
|
prefix: string | null;
|
|
490
498
|
padDigit: number;
|
|
499
|
+
enablePaxDialog: boolean;
|
|
491
500
|
submitOrderInstruction: {
|
|
492
501
|
payAtCounter: string | null;
|
|
493
502
|
paid: string | null;
|
|
@@ -495,6 +504,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
495
504
|
};
|
|
496
505
|
pickUp: {
|
|
497
506
|
enabled: boolean;
|
|
507
|
+
enablePaxDialog: boolean;
|
|
498
508
|
submitOrderInstruction: {
|
|
499
509
|
payAtCounter: string | null;
|
|
500
510
|
paid: string | null;
|
|
@@ -649,6 +659,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
649
659
|
dineIn?: {
|
|
650
660
|
requiredSlot?: boolean | null | undefined;
|
|
651
661
|
pickUp?: {
|
|
662
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
652
663
|
submitOrderInstruction?: {
|
|
653
664
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
654
665
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -656,6 +667,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
656
667
|
enabled: boolean;
|
|
657
668
|
} | null | undefined;
|
|
658
669
|
displayStand?: {
|
|
670
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
659
671
|
submitOrderInstruction?: {
|
|
660
672
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
661
673
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -719,6 +731,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
719
731
|
};
|
|
720
732
|
prefix: string | null;
|
|
721
733
|
padDigit: number;
|
|
734
|
+
enablePaxDialog: boolean;
|
|
722
735
|
submitOrderInstruction: {
|
|
723
736
|
payAtCounter: string | null;
|
|
724
737
|
paid: string | null;
|
|
@@ -726,6 +739,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
726
739
|
};
|
|
727
740
|
pickUp: {
|
|
728
741
|
enabled: boolean;
|
|
742
|
+
enablePaxDialog: boolean;
|
|
729
743
|
submitOrderInstruction: {
|
|
730
744
|
payAtCounter: string | null;
|
|
731
745
|
paid: string | null;
|
|
@@ -880,6 +894,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
880
894
|
dineIn?: {
|
|
881
895
|
requiredSlot?: boolean | null | undefined;
|
|
882
896
|
pickUp?: {
|
|
897
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
883
898
|
submitOrderInstruction?: {
|
|
884
899
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
885
900
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -887,6 +902,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
887
902
|
enabled: boolean;
|
|
888
903
|
} | null | undefined;
|
|
889
904
|
displayStand?: {
|
|
905
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
890
906
|
submitOrderInstruction?: {
|
|
891
907
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
892
908
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -955,6 +971,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
955
971
|
};
|
|
956
972
|
prefix: string | null;
|
|
957
973
|
padDigit: number;
|
|
974
|
+
enablePaxDialog: boolean;
|
|
958
975
|
submitOrderInstruction: {
|
|
959
976
|
payAtCounter: string | null;
|
|
960
977
|
paid: string | null;
|
|
@@ -962,6 +979,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
962
979
|
};
|
|
963
980
|
pickUp: {
|
|
964
981
|
enabled: boolean;
|
|
982
|
+
enablePaxDialog: boolean;
|
|
965
983
|
submitOrderInstruction: {
|
|
966
984
|
payAtCounter: string | null;
|
|
967
985
|
paid: string | null;
|
|
@@ -1116,6 +1134,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
1116
1134
|
dineIn?: {
|
|
1117
1135
|
requiredSlot?: boolean | null | undefined;
|
|
1118
1136
|
pickUp?: {
|
|
1137
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1119
1138
|
submitOrderInstruction?: {
|
|
1120
1139
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1121
1140
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1123,6 +1142,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
1123
1142
|
enabled: boolean;
|
|
1124
1143
|
} | null | undefined;
|
|
1125
1144
|
displayStand?: {
|
|
1145
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1126
1146
|
submitOrderInstruction?: {
|
|
1127
1147
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1128
1148
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1186,6 +1206,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
1186
1206
|
};
|
|
1187
1207
|
prefix: string | null;
|
|
1188
1208
|
padDigit: number;
|
|
1209
|
+
enablePaxDialog: boolean;
|
|
1189
1210
|
submitOrderInstruction: {
|
|
1190
1211
|
payAtCounter: string | null;
|
|
1191
1212
|
paid: string | null;
|
|
@@ -1193,6 +1214,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
1193
1214
|
};
|
|
1194
1215
|
pickUp: {
|
|
1195
1216
|
enabled: boolean;
|
|
1217
|
+
enablePaxDialog: boolean;
|
|
1196
1218
|
submitOrderInstruction: {
|
|
1197
1219
|
payAtCounter: string | null;
|
|
1198
1220
|
paid: string | null;
|
|
@@ -1347,6 +1369,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
1347
1369
|
dineIn?: {
|
|
1348
1370
|
requiredSlot?: boolean | null | undefined;
|
|
1349
1371
|
pickUp?: {
|
|
1372
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1350
1373
|
submitOrderInstruction?: {
|
|
1351
1374
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1352
1375
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1354,6 +1377,7 @@ export declare const useOrderSettings: import("pinia").StoreDefinition<"orderSet
|
|
|
1354
1377
|
enabled: boolean;
|
|
1355
1378
|
} | null | undefined;
|
|
1356
1379
|
displayStand?: {
|
|
1380
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1357
1381
|
submitOrderInstruction?: {
|
|
1358
1382
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1359
1383
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { OrderSettingsDto, OrderKioskDineInSequenceDto } from "@entity";
|
|
2
|
-
import type { MfKioskOrderSetting, MfDisplayStandSetting, KioskTakeawaySettingForm, MfKioskOrderSettingForm, MfKioskSubmitOrderInstruction } from '@/modules/order-setting/kiosk/interface';
|
|
2
|
+
import type { MfKioskOrderSetting, MfDisplayStandSetting, KioskTakeawaySettingForm, MfKioskOrderSettingForm, MfKioskSubmitOrderInstruction, KioskPickAtCounterSettingForm } from '@/modules/order-setting/kiosk/interface';
|
|
3
3
|
import type { MfOrderSetting } from "@/modules/order-setting/interface";
|
|
4
4
|
import type { OrderKioskSettings } from "@entity";
|
|
5
5
|
export declare const defaultDisplayStand: MfDisplayStandSetting;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const defaultTakeaway: KioskTakeawaySettingForm;
|
|
7
|
+
export declare const defaultPickUp: KioskPickAtCounterSettingForm;
|
|
7
8
|
export declare const defaultKioskOrderSetting: MfKioskOrderSettingForm;
|
|
8
9
|
export declare const defaultSubmitOrderInstruction: MfKioskSubmitOrderInstruction;
|
|
9
10
|
export declare const OrderSettingMapper: {
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
v: boolean;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
updateEnablePaxDialog: (v: boolean) => any;
|
|
6
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
7
|
+
onUpdateEnablePaxDialog?: ((v: boolean) => any) | undefined;
|
|
8
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
9
|
+
export default _default;
|