@feedmepos/mf-payment 1.1.9-beta.1 → 1.1.10
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/{PayoutAccount-B4YLzVpp.js → PayoutAccount-DS8uWdg6.js} +152 -152
- package/dist/{PayoutAccount-DvrLfgt-.js → PayoutAccount-DYaDyUv-.js} +5 -5
- package/dist/{PayoutAccountSetting-Co7DmROR.js → PayoutAccountSetting-CaWSuWfP.js} +3 -3
- package/dist/{Restaurant-DuhPwxX3.js → Restaurant-DQVYjNCS.js} +4 -4
- package/dist/{RestaurantSelector.vue_vue_type_script_setup_true_lang-hJAJYKmE.js → RestaurantSelector.vue_vue_type_script_setup_true_lang-DyLnqQYe.js} +6 -6
- package/dist/{RestaurantSetting-BK9u7SCs.js → RestaurantSetting-CIIbhon-.js} +3 -3
- package/dist/{Settlement-Ce_tmrSE.js → Settlement-B1Wxz1Ud.js} +3 -3
- package/dist/{Settlement-Sl3sl0jF.js → Settlement-BYpA6n3I.js} +92 -92
- package/dist/{SettlementTransactions-CuHc2CZz.js → SettlementTransactions-Cn894u3m.js} +82 -82
- package/dist/{SettlementTransactions-D7UHmaaD.js → SettlementTransactions-SPDIlLfj.js} +3 -3
- package/dist/{Terminal-DC7kec1h.js → Terminal-DwRmKAkV.js} +6 -6
- package/dist/{TerminalSetting-uqU8wLtE.js → TerminalSetting-BXjGS7gr.js} +3 -3
- package/dist/{Transaction-DSOyeHAf.js → Transaction-CZXLiiK_.js} +36 -36
- package/dist/{Transaction-vVo3tggm.js → Transaction-DfCzQWjl.js} +5 -5
- package/dist/{TransactionOld-sUH_2SAc.js → TransactionOld-V05PFuAs.js} +14 -14
- package/dist/{TransactionTable.vue_vue_type_script_setup_true_lang-DFdz9uZ0.js → TransactionTable.vue_vue_type_script_setup_true_lang-pP3veVBQ.js} +16 -16
- package/dist/{app-tq6GxnyI.js → app-Cwh0hT_9.js} +838 -834
- package/dist/app.d.ts +242 -238
- package/dist/app.js +1 -1
- package/dist/{assets-OObLkGWe.js → assets-A_2acaHr.js} +1 -1
- package/dist/{grafana-RP6GDt42.js → grafana-S2Pyvvsb.js} +2 -2
- package/dist/{index-CD_22Kly.js → index-B45raqGN.js} +2 -2
- package/dist/{index-BO_i54up.js → index-BO9tnr5e.js} +1 -1
- package/dist/{index-D1Vz4RR4.js → index-DRMgFTyD.js} +1 -1
- package/dist/{index-AW-HP_R7.js → index-DlkaQaXu.js} +1 -1
- package/dist/{index-4WCrMAZE.js → index-Dwo99xiS.js} +1 -1
- package/dist/{index-CqHV-UqZ.js → index-nh9QzbMv.js} +1 -1
- package/dist/{index.vue_vue_type_script_setup_true_lang-yFA5HHj5.js → index.vue_vue_type_script_setup_true_lang-_ttdMw6x.js} +1 -1
- package/dist/package.json +1 -1
- package/dist/{payout-account-DFumNL6B.js → payout-account-CqkVIkNF.js} +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/app.d.ts
CHANGED
@@ -2,297 +2,301 @@ import enUS from "./assets/locales/en-US.json";
|
|
2
2
|
export type AppMessagesSchema = typeof enUS;
|
3
3
|
export declare const i18nMessages: {
|
4
4
|
"en-US": {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
settlements: {
|
18
|
-
title: string;
|
19
|
-
description: string;
|
20
|
-
export: string;
|
21
|
-
table: {
|
22
|
-
id: string;
|
23
|
-
bank: string;
|
24
|
-
account: string;
|
25
|
-
created_at: string;
|
26
|
-
sales_amount: string;
|
27
|
-
fee: string;
|
28
|
-
settlement_amount: string;
|
5
|
+
payment: {
|
6
|
+
components: {
|
7
|
+
select: string;
|
8
|
+
restaurant: string;
|
9
|
+
device: string;
|
10
|
+
payout_account: string;
|
11
|
+
};
|
12
|
+
routes: {
|
13
|
+
payout_account: string;
|
14
|
+
transaction: string;
|
15
|
+
"transaction-new": string;
|
16
|
+
settlement: string;
|
29
17
|
};
|
30
|
-
|
18
|
+
settlements: {
|
31
19
|
title: string;
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
20
|
+
description: string;
|
21
|
+
export: string;
|
22
|
+
table: {
|
23
|
+
id: string;
|
24
|
+
bank: string;
|
25
|
+
account: string;
|
26
|
+
created_at: string;
|
27
|
+
sales_amount: string;
|
28
|
+
fee: string;
|
29
|
+
settlement_amount: string;
|
30
|
+
};
|
31
|
+
dialog: {
|
32
|
+
title: string;
|
33
|
+
date: string;
|
34
|
+
search: string;
|
35
|
+
info: {
|
36
|
+
transaction: {
|
37
|
+
title: string;
|
38
|
+
for: string;
|
39
|
+
reference: string;
|
40
|
+
count: string;
|
41
|
+
};
|
42
|
+
bank: {
|
43
|
+
title: string;
|
44
|
+
for: string;
|
45
|
+
name: string;
|
46
|
+
number: string;
|
47
|
+
};
|
48
|
+
payout: {
|
49
|
+
title: string;
|
50
|
+
amount: string;
|
51
|
+
fee: string;
|
52
|
+
payout: string;
|
53
|
+
};
|
40
54
|
};
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
55
|
+
fiuu: {
|
56
|
+
id: string;
|
57
|
+
type: string;
|
58
|
+
transaction_at: string;
|
59
|
+
sales_amount: string;
|
60
|
+
fee: string;
|
61
|
+
settlement_amount: string;
|
46
62
|
};
|
47
|
-
|
48
|
-
|
49
|
-
|
63
|
+
feedme: {
|
64
|
+
id: string;
|
65
|
+
pay_id: string;
|
66
|
+
gateway: string;
|
67
|
+
method: string;
|
68
|
+
status: string;
|
69
|
+
type: string;
|
70
|
+
payFor: string;
|
71
|
+
transaction_at: string;
|
72
|
+
sales_amount: string;
|
50
73
|
fee: string;
|
51
|
-
|
74
|
+
settlement_amount: string;
|
52
75
|
};
|
53
76
|
};
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
77
|
+
};
|
78
|
+
transactions: {
|
79
|
+
title: string;
|
80
|
+
description: string;
|
81
|
+
restaurant: string;
|
82
|
+
status: string;
|
83
|
+
search: {
|
84
|
+
title: string;
|
85
|
+
placeholder: string;
|
61
86
|
};
|
62
|
-
|
87
|
+
button: {
|
88
|
+
export: string;
|
89
|
+
};
|
90
|
+
table: {
|
63
91
|
id: string;
|
64
92
|
pay_id: string;
|
93
|
+
gateway_id: string;
|
94
|
+
bill_seq: string;
|
65
95
|
gateway: string;
|
66
96
|
method: string;
|
67
|
-
status: string;
|
68
97
|
type: string;
|
69
|
-
|
98
|
+
status: string;
|
99
|
+
source: string;
|
100
|
+
restaurant: string;
|
70
101
|
transaction_at: string;
|
71
102
|
sales_amount: string;
|
72
|
-
|
73
|
-
settlement_amount: string;
|
103
|
+
actions: string;
|
74
104
|
};
|
75
105
|
};
|
76
|
-
|
77
|
-
transactions: {
|
78
|
-
title: string;
|
79
|
-
description: string;
|
80
|
-
restaurant: string;
|
81
|
-
status: string;
|
82
|
-
search: {
|
83
|
-
title: string;
|
84
|
-
placeholder: string;
|
85
|
-
};
|
86
|
-
button: {
|
87
|
-
export: string;
|
88
|
-
};
|
89
|
-
table: {
|
90
|
-
id: string;
|
91
|
-
pay_id: string;
|
92
|
-
gateway_id: string;
|
93
|
-
bill_seq: string;
|
94
|
-
gateway: string;
|
95
|
-
method: string;
|
96
|
-
type: string;
|
97
|
-
status: string;
|
98
|
-
source: string;
|
99
|
-
restaurant: string;
|
100
|
-
transaction_at: string;
|
101
|
-
sales_amount: string;
|
102
|
-
actions: string;
|
103
|
-
};
|
104
|
-
};
|
105
|
-
payout_account: {
|
106
|
-
title: string;
|
107
|
-
description: string;
|
108
|
-
button: {
|
109
|
-
apply: string;
|
110
|
-
};
|
111
|
-
table: {
|
112
|
-
type: string;
|
113
|
-
name: string;
|
114
|
-
status: string;
|
115
|
-
active: string;
|
116
|
-
bank: string;
|
117
|
-
pic: string;
|
118
|
-
};
|
119
|
-
dialog: {
|
120
|
-
view_title: string;
|
106
|
+
payout_account: {
|
121
107
|
title: string;
|
108
|
+
description: string;
|
122
109
|
button: {
|
123
|
-
|
124
|
-
submit: string;
|
110
|
+
apply: string;
|
125
111
|
};
|
126
|
-
|
112
|
+
table: {
|
127
113
|
type: string;
|
128
|
-
for: string;
|
129
|
-
for_placeholder: string;
|
130
114
|
name: string;
|
131
|
-
|
132
|
-
|
133
|
-
bank: string;
|
134
|
-
bank_type: string;
|
135
|
-
bank_account: string;
|
136
|
-
bank_holder: string;
|
137
|
-
};
|
138
|
-
document: {
|
139
|
-
ssm: string;
|
140
|
-
bank: string;
|
141
|
-
exterior: string;
|
142
|
-
};
|
143
|
-
section: {
|
144
|
-
account: string;
|
115
|
+
status: string;
|
116
|
+
active: string;
|
145
117
|
bank: string;
|
146
118
|
pic: string;
|
147
|
-
|
119
|
+
};
|
120
|
+
dialog: {
|
121
|
+
view_title: string;
|
122
|
+
title: string;
|
123
|
+
button: {
|
124
|
+
remove: string;
|
125
|
+
submit: string;
|
126
|
+
};
|
127
|
+
fields: {
|
128
|
+
type: string;
|
129
|
+
for: string;
|
130
|
+
for_placeholder: string;
|
131
|
+
name: string;
|
132
|
+
phone: string;
|
133
|
+
email: string;
|
134
|
+
bank: string;
|
135
|
+
bank_type: string;
|
136
|
+
bank_account: string;
|
137
|
+
bank_holder: string;
|
138
|
+
};
|
139
|
+
document: {
|
140
|
+
ssm: string;
|
141
|
+
bank: string;
|
142
|
+
exterior: string;
|
143
|
+
};
|
144
|
+
section: {
|
145
|
+
account: string;
|
146
|
+
bank: string;
|
147
|
+
pic: string;
|
148
|
+
document: string;
|
149
|
+
};
|
148
150
|
};
|
149
151
|
};
|
150
152
|
};
|
151
153
|
};
|
152
154
|
"zh-CN": {
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
settlements: {
|
166
|
-
title: string;
|
167
|
-
description: string;
|
168
|
-
export: string;
|
169
|
-
table: {
|
170
|
-
id: string;
|
171
|
-
bank: string;
|
172
|
-
account: string;
|
173
|
-
created_at: string;
|
174
|
-
sales_amount: string;
|
175
|
-
fee: string;
|
176
|
-
settlement_amount: string;
|
155
|
+
payment: {
|
156
|
+
components: {
|
157
|
+
select: string;
|
158
|
+
restaurant: string;
|
159
|
+
device: string;
|
160
|
+
payout_account: string;
|
161
|
+
};
|
162
|
+
routes: {
|
163
|
+
payout_account: string;
|
164
|
+
transaction: string;
|
165
|
+
"transaction-new": string;
|
166
|
+
settlement: string;
|
177
167
|
};
|
178
|
-
|
168
|
+
settlements: {
|
179
169
|
title: string;
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
170
|
+
description: string;
|
171
|
+
export: string;
|
172
|
+
table: {
|
173
|
+
id: string;
|
174
|
+
bank: string;
|
175
|
+
account: string;
|
176
|
+
created_at: string;
|
177
|
+
sales_amount: string;
|
178
|
+
fee: string;
|
179
|
+
settlement_amount: string;
|
180
|
+
};
|
181
|
+
dialog: {
|
182
|
+
title: string;
|
183
|
+
date: string;
|
184
|
+
search: string;
|
185
|
+
info: {
|
186
|
+
transaction: {
|
187
|
+
title: string;
|
188
|
+
for: string;
|
189
|
+
reference: string;
|
190
|
+
count: string;
|
191
|
+
};
|
192
|
+
bank: {
|
193
|
+
title: string;
|
194
|
+
for: string;
|
195
|
+
name: string;
|
196
|
+
number: string;
|
197
|
+
};
|
198
|
+
payout: {
|
199
|
+
title: string;
|
200
|
+
amount: string;
|
201
|
+
fee: string;
|
202
|
+
payout: string;
|
203
|
+
};
|
188
204
|
};
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
205
|
+
fiuu: {
|
206
|
+
id: string;
|
207
|
+
type: string;
|
208
|
+
transaction_at: string;
|
209
|
+
sales_amount: string;
|
210
|
+
fee: string;
|
211
|
+
settlement_amount: string;
|
194
212
|
};
|
195
|
-
|
196
|
-
|
197
|
-
|
213
|
+
feedme: {
|
214
|
+
id: string;
|
215
|
+
pay_id: string;
|
216
|
+
gateway: string;
|
217
|
+
method: string;
|
218
|
+
status: string;
|
219
|
+
type: string;
|
220
|
+
payFor: string;
|
221
|
+
transaction_at: string;
|
222
|
+
sales_amount: string;
|
198
223
|
fee: string;
|
199
|
-
|
224
|
+
settlement_amount: string;
|
200
225
|
};
|
201
226
|
};
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
227
|
+
};
|
228
|
+
transactions: {
|
229
|
+
title: string;
|
230
|
+
description: string;
|
231
|
+
restaurant: string;
|
232
|
+
status: string;
|
233
|
+
search: {
|
234
|
+
title: string;
|
235
|
+
placeholder: string;
|
209
236
|
};
|
210
|
-
|
237
|
+
button: {
|
238
|
+
export: string;
|
239
|
+
};
|
240
|
+
table: {
|
211
241
|
id: string;
|
212
242
|
pay_id: string;
|
243
|
+
gateway_id: string;
|
244
|
+
bill_seq: string;
|
213
245
|
gateway: string;
|
214
246
|
method: string;
|
215
|
-
status: string;
|
216
247
|
type: string;
|
217
|
-
|
248
|
+
status: string;
|
249
|
+
restaurant: string;
|
250
|
+
source: string;
|
218
251
|
transaction_at: string;
|
219
252
|
sales_amount: string;
|
220
|
-
|
221
|
-
settlement_amount: string;
|
253
|
+
actions: string;
|
222
254
|
};
|
223
255
|
};
|
224
|
-
|
225
|
-
transactions: {
|
226
|
-
title: string;
|
227
|
-
description: string;
|
228
|
-
restaurant: string;
|
229
|
-
status: string;
|
230
|
-
search: {
|
231
|
-
title: string;
|
232
|
-
placeholder: string;
|
233
|
-
};
|
234
|
-
button: {
|
235
|
-
export: string;
|
236
|
-
};
|
237
|
-
table: {
|
238
|
-
id: string;
|
239
|
-
pay_id: string;
|
240
|
-
gateway_id: string;
|
241
|
-
bill_seq: string;
|
242
|
-
gateway: string;
|
243
|
-
method: string;
|
244
|
-
type: string;
|
245
|
-
status: string;
|
246
|
-
restaurant: string;
|
247
|
-
source: string;
|
248
|
-
transaction_at: string;
|
249
|
-
sales_amount: string;
|
250
|
-
actions: string;
|
251
|
-
};
|
252
|
-
};
|
253
|
-
payout_account: {
|
254
|
-
title: string;
|
255
|
-
description: string;
|
256
|
-
button: {
|
257
|
-
apply: string;
|
258
|
-
};
|
259
|
-
table: {
|
260
|
-
type: string;
|
261
|
-
name: string;
|
262
|
-
status: string;
|
263
|
-
active: string;
|
264
|
-
bank: string;
|
265
|
-
pic: string;
|
266
|
-
};
|
267
|
-
dialog: {
|
268
|
-
view_title: string;
|
256
|
+
payout_account: {
|
269
257
|
title: string;
|
258
|
+
description: string;
|
270
259
|
button: {
|
271
|
-
|
272
|
-
submit: string;
|
260
|
+
apply: string;
|
273
261
|
};
|
274
|
-
|
262
|
+
table: {
|
275
263
|
type: string;
|
276
|
-
for: string;
|
277
|
-
for_placeholder: string;
|
278
264
|
name: string;
|
279
|
-
|
280
|
-
|
281
|
-
bank: string;
|
282
|
-
bank_type: string;
|
283
|
-
bank_account: string;
|
284
|
-
bank_holder: string;
|
285
|
-
};
|
286
|
-
document: {
|
287
|
-
ssm: string;
|
288
|
-
bank: string;
|
289
|
-
exterior: string;
|
290
|
-
};
|
291
|
-
section: {
|
292
|
-
account: string;
|
265
|
+
status: string;
|
266
|
+
active: string;
|
293
267
|
bank: string;
|
294
268
|
pic: string;
|
295
|
-
|
269
|
+
};
|
270
|
+
dialog: {
|
271
|
+
view_title: string;
|
272
|
+
title: string;
|
273
|
+
button: {
|
274
|
+
remove: string;
|
275
|
+
submit: string;
|
276
|
+
};
|
277
|
+
fields: {
|
278
|
+
type: string;
|
279
|
+
for: string;
|
280
|
+
for_placeholder: string;
|
281
|
+
name: string;
|
282
|
+
phone: string;
|
283
|
+
email: string;
|
284
|
+
bank: string;
|
285
|
+
bank_type: string;
|
286
|
+
bank_account: string;
|
287
|
+
bank_holder: string;
|
288
|
+
};
|
289
|
+
document: {
|
290
|
+
ssm: string;
|
291
|
+
bank: string;
|
292
|
+
exterior: string;
|
293
|
+
};
|
294
|
+
section: {
|
295
|
+
account: string;
|
296
|
+
bank: string;
|
297
|
+
pic: string;
|
298
|
+
document: string;
|
299
|
+
};
|
296
300
|
};
|
297
301
|
};
|
298
302
|
};
|
package/dist/app.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { g, b as H, r as d, f as l, l as J, i as y, _ as f } from "./index-
|
1
|
+
import { g, b as H, r as d, f as l, l as J, i as y, _ as f } from "./index-B45raqGN.js";
|
2
2
|
import { h as C } from "./moment-h96o7c8I.js";
|
3
3
|
import { d as O } from "./dinero-CIVmXLL-.js";
|
4
4
|
const K = {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { e as c } from "./index-
|
1
|
+
import { e as c } from "./index-B45raqGN.js";
|
2
2
|
import { useCoreStore as p } from "@feedmepos/mf-common";
|
3
3
|
import { h as i } from "./moment-h96o7c8I.js";
|
4
4
|
const m = "https://grafana.feedme.farm/explore?schemaVersion=1", l = (t, r, o) => ({
|
@@ -40,7 +40,7 @@ const m = "https://grafana.feedme.farm/explore?schemaVersion=1", l = (t, r, o) =
|
|
40
40
|
{
|
41
41
|
type: "resource",
|
42
42
|
queryKey: "cluster",
|
43
|
-
queryValue: "
|
43
|
+
queryValue: "production"
|
44
44
|
},
|
45
45
|
{
|
46
46
|
type: "resource",
|