@voyantjs/finance-ui 0.30.7 → 0.31.0
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/README.md +18 -0
- package/dist/components/invoice-detail-page.d.ts +113 -0
- package/dist/components/invoice-detail-page.d.ts.map +1 -0
- package/dist/components/invoice-detail-page.js +142 -0
- package/dist/components/invoices-page-skeleton.d.ts +5 -0
- package/dist/components/invoices-page-skeleton.d.ts.map +1 -0
- package/dist/components/invoices-page-skeleton.js +13 -0
- package/dist/components/invoices-page.d.ts +6 -0
- package/dist/components/invoices-page.d.ts.map +1 -0
- package/dist/components/invoices-page.js +109 -0
- package/dist/components/payment-detail-page.d.ts +41 -0
- package/dist/components/payment-detail-page.d.ts.map +1 -0
- package/dist/components/payment-detail-page.js +79 -0
- package/dist/components/payments-page-skeleton.d.ts +5 -0
- package/dist/components/payments-page-skeleton.d.ts.map +1 -0
- package/dist/components/payments-page-skeleton.js +13 -0
- package/dist/components/payments-page.d.ts +20 -0
- package/dist/components/payments-page.d.ts.map +1 -0
- package/dist/components/payments-page.js +151 -0
- package/dist/components/taxes-page.d.ts +11 -0
- package/dist/components/taxes-page.d.ts.map +1 -0
- package/dist/components/taxes-page.js +718 -0
- package/dist/i18n/en.d.ts +308 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +308 -0
- package/dist/i18n/index.d.ts +1 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/messages.d.ts +193 -1
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/messages.js +11 -0
- package/dist/i18n/provider.d.ts +616 -0
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/ro.d.ts +308 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/i18n/ro.js +308 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/package.json +9 -9
package/dist/i18n/ro.d.ts
CHANGED
|
@@ -10,6 +10,17 @@ export declare const financeUiRo: {
|
|
|
10
10
|
overdue: string;
|
|
11
11
|
void: string;
|
|
12
12
|
};
|
|
13
|
+
paymentMethodLabels: {
|
|
14
|
+
bank_transfer: string;
|
|
15
|
+
credit_card: string;
|
|
16
|
+
debit_card: string;
|
|
17
|
+
cash: string;
|
|
18
|
+
cheque: string;
|
|
19
|
+
wallet: string;
|
|
20
|
+
direct_bill: string;
|
|
21
|
+
voucher: string;
|
|
22
|
+
other: string;
|
|
23
|
+
};
|
|
13
24
|
supplierPaymentMethodLabels: {
|
|
14
25
|
bank_transfer: string;
|
|
15
26
|
credit_card: string;
|
|
@@ -59,6 +70,303 @@ export declare const financeUiRo: {
|
|
|
59
70
|
dueDateRequired: string;
|
|
60
71
|
};
|
|
61
72
|
};
|
|
73
|
+
invoicesPage: {
|
|
74
|
+
title: string;
|
|
75
|
+
description: string;
|
|
76
|
+
searchPlaceholder: string;
|
|
77
|
+
actions: {
|
|
78
|
+
newInvoice: string;
|
|
79
|
+
};
|
|
80
|
+
filters: {
|
|
81
|
+
button: string;
|
|
82
|
+
statusLabel: string;
|
|
83
|
+
statusAll: string;
|
|
84
|
+
currencyLabel: string;
|
|
85
|
+
currencyAny: string;
|
|
86
|
+
dueDateLabel: string;
|
|
87
|
+
dateAny: string;
|
|
88
|
+
clear: string;
|
|
89
|
+
};
|
|
90
|
+
columns: {
|
|
91
|
+
invoiceNumber: string;
|
|
92
|
+
status: string;
|
|
93
|
+
total: string;
|
|
94
|
+
paid: string;
|
|
95
|
+
balanceDue: string;
|
|
96
|
+
dueDate: string;
|
|
97
|
+
};
|
|
98
|
+
empty: string;
|
|
99
|
+
loadFailed: string;
|
|
100
|
+
pagination: {
|
|
101
|
+
showing: string;
|
|
102
|
+
page: string;
|
|
103
|
+
previous: string;
|
|
104
|
+
next: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
paymentsPage: {
|
|
108
|
+
title: string;
|
|
109
|
+
description: string;
|
|
110
|
+
searchPlaceholder: string;
|
|
111
|
+
actions: {
|
|
112
|
+
recordPayment: string;
|
|
113
|
+
};
|
|
114
|
+
kindLabels: {
|
|
115
|
+
customer: string;
|
|
116
|
+
supplier: string;
|
|
117
|
+
};
|
|
118
|
+
filters: {
|
|
119
|
+
button: string;
|
|
120
|
+
kindLabel: string;
|
|
121
|
+
kindAll: string;
|
|
122
|
+
statusLabel: string;
|
|
123
|
+
statusAll: string;
|
|
124
|
+
methodLabel: string;
|
|
125
|
+
methodAll: string;
|
|
126
|
+
supplierLabel: string;
|
|
127
|
+
supplierAny: string;
|
|
128
|
+
supplierEmpty: string;
|
|
129
|
+
currencyLabel: string;
|
|
130
|
+
currencyAny: string;
|
|
131
|
+
paymentDateLabel: string;
|
|
132
|
+
dateAny: string;
|
|
133
|
+
clear: string;
|
|
134
|
+
};
|
|
135
|
+
columns: {
|
|
136
|
+
kind: string;
|
|
137
|
+
reference: string;
|
|
138
|
+
party: string;
|
|
139
|
+
amount: string;
|
|
140
|
+
status: string;
|
|
141
|
+
date: string;
|
|
142
|
+
method: string;
|
|
143
|
+
};
|
|
144
|
+
noValue: string;
|
|
145
|
+
empty: string;
|
|
146
|
+
loadFailed: string;
|
|
147
|
+
pagination: {
|
|
148
|
+
showing: string;
|
|
149
|
+
page: string;
|
|
150
|
+
previous: string;
|
|
151
|
+
next: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
paymentDetailPage: {
|
|
155
|
+
actions: {
|
|
156
|
+
back: string;
|
|
157
|
+
viewInvoice: string;
|
|
158
|
+
viewBooking: string;
|
|
159
|
+
viewPerson: string;
|
|
160
|
+
viewOrganization: string;
|
|
161
|
+
viewSupplier: string;
|
|
162
|
+
};
|
|
163
|
+
titles: {
|
|
164
|
+
summary: string;
|
|
165
|
+
links: string;
|
|
166
|
+
metadata: string;
|
|
167
|
+
};
|
|
168
|
+
fields: {
|
|
169
|
+
amount: string;
|
|
170
|
+
baseAmount: string;
|
|
171
|
+
status: string;
|
|
172
|
+
method: string;
|
|
173
|
+
date: string;
|
|
174
|
+
reference: string;
|
|
175
|
+
notes: string;
|
|
176
|
+
kind: string;
|
|
177
|
+
paidBy: string;
|
|
178
|
+
paidTo: string;
|
|
179
|
+
organization: string;
|
|
180
|
+
invoice: string;
|
|
181
|
+
booking: string;
|
|
182
|
+
createdAt: string;
|
|
183
|
+
updatedAt: string;
|
|
184
|
+
};
|
|
185
|
+
states: {
|
|
186
|
+
loading: string;
|
|
187
|
+
loadFailed: string;
|
|
188
|
+
notFound: string;
|
|
189
|
+
noValue: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
invoiceDetailPage: {
|
|
193
|
+
actions: {
|
|
194
|
+
back: string;
|
|
195
|
+
edit: string;
|
|
196
|
+
delete: string;
|
|
197
|
+
deleteTitle: string;
|
|
198
|
+
deleteDescription: string;
|
|
199
|
+
deleteOnlyDraft: string;
|
|
200
|
+
viewBooking: string;
|
|
201
|
+
viewPerson: string;
|
|
202
|
+
viewOrganization: string;
|
|
203
|
+
addLineItem: string;
|
|
204
|
+
editLineItem: string;
|
|
205
|
+
deleteLineItemShort: string;
|
|
206
|
+
deleteLineItemTitle: string;
|
|
207
|
+
deleteLineItemDescription: string;
|
|
208
|
+
recordPayment: string;
|
|
209
|
+
addCreditNote: string;
|
|
210
|
+
addNote: string;
|
|
211
|
+
};
|
|
212
|
+
titles: {
|
|
213
|
+
summary: string;
|
|
214
|
+
links: string;
|
|
215
|
+
lineItems: string;
|
|
216
|
+
payments: string;
|
|
217
|
+
creditNotes: string;
|
|
218
|
+
notes: string;
|
|
219
|
+
};
|
|
220
|
+
fields: {
|
|
221
|
+
currency: string;
|
|
222
|
+
subtotal: string;
|
|
223
|
+
tax: string;
|
|
224
|
+
total: string;
|
|
225
|
+
paid: string;
|
|
226
|
+
balanceDue: string;
|
|
227
|
+
status: string;
|
|
228
|
+
issueDate: string;
|
|
229
|
+
dueDate: string;
|
|
230
|
+
booking: string;
|
|
231
|
+
person: string;
|
|
232
|
+
organization: string;
|
|
233
|
+
notes: string;
|
|
234
|
+
createdAt: string;
|
|
235
|
+
updatedAt: string;
|
|
236
|
+
};
|
|
237
|
+
columns: {
|
|
238
|
+
description: string;
|
|
239
|
+
quantity: string;
|
|
240
|
+
unitPrice: string;
|
|
241
|
+
total: string;
|
|
242
|
+
taxRate: string;
|
|
243
|
+
};
|
|
244
|
+
states: {
|
|
245
|
+
loading: string;
|
|
246
|
+
loadFailed: string;
|
|
247
|
+
notFound: string;
|
|
248
|
+
noValue: string;
|
|
249
|
+
noLineItems: string;
|
|
250
|
+
noPayments: string;
|
|
251
|
+
noCreditNotes: string;
|
|
252
|
+
noNotes: string;
|
|
253
|
+
};
|
|
254
|
+
placeholders: {
|
|
255
|
+
note: string;
|
|
256
|
+
};
|
|
257
|
+
creditNoteStatusLabels: {
|
|
258
|
+
draft: string;
|
|
259
|
+
issued: string;
|
|
260
|
+
applied: string;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
taxesPage: {
|
|
264
|
+
title: string;
|
|
265
|
+
description: string;
|
|
266
|
+
addTax: string;
|
|
267
|
+
empty: string;
|
|
268
|
+
inactive: string;
|
|
269
|
+
edit: string;
|
|
270
|
+
delete: string;
|
|
271
|
+
deleteConfirm: string;
|
|
272
|
+
editSheetTitle: string;
|
|
273
|
+
newSheetTitle: string;
|
|
274
|
+
taxClassBadge: string;
|
|
275
|
+
defaultRegimeLabel: string;
|
|
276
|
+
regimeOverridesLabel: string;
|
|
277
|
+
regimeOverrideCount: string;
|
|
278
|
+
taxClassSectionTitle: string;
|
|
279
|
+
taxClassSectionDescription: string;
|
|
280
|
+
defaultRegimeSectionTitle: string;
|
|
281
|
+
defaultRegimeSectionDescription: string;
|
|
282
|
+
regimeOverridesSectionTitle: string;
|
|
283
|
+
regimeOverridesSectionDescription: string;
|
|
284
|
+
addRegimeOverride: string;
|
|
285
|
+
removeRegimeOverride: string;
|
|
286
|
+
noRegimeOverrides: string;
|
|
287
|
+
appliesToLabel: string;
|
|
288
|
+
taxRegimeLabel: string;
|
|
289
|
+
appliesToBase: string;
|
|
290
|
+
appliesToAddon: string;
|
|
291
|
+
appliesToAccommodation: string;
|
|
292
|
+
appliesToAll: string;
|
|
293
|
+
taxClassLabelLabel: string;
|
|
294
|
+
taxClassLabelPlaceholder: string;
|
|
295
|
+
taxClassCodeLabel: string;
|
|
296
|
+
taxClassCodePlaceholder: string;
|
|
297
|
+
taxClassDescriptionLabel: string;
|
|
298
|
+
taxClassDescriptionPlaceholder: string;
|
|
299
|
+
regimeNameLabel: string;
|
|
300
|
+
regimeNamePlaceholder: string;
|
|
301
|
+
regimeCodeLabel: string;
|
|
302
|
+
rateLabel: string;
|
|
303
|
+
jurisdictionLabel: string;
|
|
304
|
+
legalReferenceLabel: string;
|
|
305
|
+
legalReferencePlaceholder: string;
|
|
306
|
+
regimeDescriptionLabel: string;
|
|
307
|
+
regimeDescriptionPlaceholder: string;
|
|
308
|
+
activeLabel: string;
|
|
309
|
+
cancel: string;
|
|
310
|
+
saveChanges: string;
|
|
311
|
+
createTax: string;
|
|
312
|
+
validationNameRequired: string;
|
|
313
|
+
validationRateInvalid: string;
|
|
314
|
+
saveFailed: string;
|
|
315
|
+
policyTitle: string;
|
|
316
|
+
policyDescription: string;
|
|
317
|
+
addPolicyProfile: string;
|
|
318
|
+
addPolicyRule: string;
|
|
319
|
+
policyEmpty: string;
|
|
320
|
+
policyRulesEmpty: string;
|
|
321
|
+
deletePolicyProfileConfirm: string;
|
|
322
|
+
deletePolicyRuleConfirm: string;
|
|
323
|
+
editPolicyProfileSheetTitle: string;
|
|
324
|
+
newPolicyProfileSheetTitle: string;
|
|
325
|
+
editPolicyRuleSheetTitle: string;
|
|
326
|
+
newPolicyRuleSheetTitle: string;
|
|
327
|
+
policyProfileNameLabel: string;
|
|
328
|
+
policyProfileNamePlaceholder: string;
|
|
329
|
+
policyProfileCodeLabel: string;
|
|
330
|
+
policyProfileCodePlaceholder: string;
|
|
331
|
+
policyProfileDescriptionLabel: string;
|
|
332
|
+
policyProfileDescriptionPlaceholder: string;
|
|
333
|
+
policyPriorityLabel: string;
|
|
334
|
+
policySideLabel: string;
|
|
335
|
+
policyRuleNameLabel: string;
|
|
336
|
+
policyRuleNamePlaceholder: string;
|
|
337
|
+
policyConditionLabel: string;
|
|
338
|
+
policyConditionSectionTitle: string;
|
|
339
|
+
policyConditionSectionDescription: string;
|
|
340
|
+
policyConditionModeLabel: string;
|
|
341
|
+
policyConditionAlways: string;
|
|
342
|
+
policyConditionAlwaysDescription: string;
|
|
343
|
+
policyConditionModeAll: string;
|
|
344
|
+
policyConditionModeAny: string;
|
|
345
|
+
addPolicyCondition: string;
|
|
346
|
+
removePolicyCondition: string;
|
|
347
|
+
policyFactLabel: string;
|
|
348
|
+
policyFactHasAccommodation: string;
|
|
349
|
+
policyFactAccommodationCountries: string;
|
|
350
|
+
policyOperatorLabel: string;
|
|
351
|
+
policyOperatorEquals: string;
|
|
352
|
+
policyOperatorContains: string;
|
|
353
|
+
policyValueLabel: string;
|
|
354
|
+
policyValueYes: string;
|
|
355
|
+
policyValueNo: string;
|
|
356
|
+
policyActionsLabel: string;
|
|
357
|
+
policySideSell: string;
|
|
358
|
+
policySideBuy: string;
|
|
359
|
+
createPolicyProfile: string;
|
|
360
|
+
createPolicyRule: string;
|
|
361
|
+
validationPolicyProfileNameRequired: string;
|
|
362
|
+
validationPolicyProfileRequired: string;
|
|
363
|
+
validationPolicyRuleNameRequired: string;
|
|
364
|
+
validationPolicyRuleRegimeRequired: string;
|
|
365
|
+
validationPolicyRulePriorityInvalid: string;
|
|
366
|
+
validationPolicyRuleConditionInvalid: string;
|
|
367
|
+
savePolicyProfileFailed: string;
|
|
368
|
+
savePolicyRuleFailed: string;
|
|
369
|
+
};
|
|
62
370
|
supplierPaymentDialog: {
|
|
63
371
|
title: string;
|
|
64
372
|
fields: {
|
package/dist/i18n/ro.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ro.d.ts","sourceRoot":"","sources":["../../src/i18n/ro.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"ro.d.ts","sourceRoot":"","sources":["../../src/i18n/ro.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyZK,CAAA"}
|
package/dist/i18n/ro.js
CHANGED
|
@@ -10,6 +10,17 @@ export const financeUiRo = {
|
|
|
10
10
|
overdue: "Scadenta Depasita",
|
|
11
11
|
void: "Anulata",
|
|
12
12
|
},
|
|
13
|
+
paymentMethodLabels: {
|
|
14
|
+
bank_transfer: "Transfer Bancar",
|
|
15
|
+
credit_card: "Card de Credit",
|
|
16
|
+
debit_card: "Card de Debit",
|
|
17
|
+
cash: "Numerar",
|
|
18
|
+
cheque: "Cec",
|
|
19
|
+
wallet: "Portofel",
|
|
20
|
+
direct_bill: "Facturare Directa",
|
|
21
|
+
voucher: "Voucher",
|
|
22
|
+
other: "Altul",
|
|
23
|
+
},
|
|
13
24
|
supplierPaymentMethodLabels: {
|
|
14
25
|
bank_transfer: "Transfer Bancar",
|
|
15
26
|
credit_card: "Card de Credit",
|
|
@@ -59,6 +70,303 @@ export const financeUiRo = {
|
|
|
59
70
|
dueDateRequired: "Data scadentei este obligatorie",
|
|
60
71
|
},
|
|
61
72
|
},
|
|
73
|
+
invoicesPage: {
|
|
74
|
+
title: "Facturi",
|
|
75
|
+
description: "Facturile, proformele si notele de credit catre clienti.",
|
|
76
|
+
searchPlaceholder: "Cauta facturi...",
|
|
77
|
+
actions: {
|
|
78
|
+
newInvoice: "Factura noua",
|
|
79
|
+
},
|
|
80
|
+
filters: {
|
|
81
|
+
button: "Filtre",
|
|
82
|
+
statusLabel: "Status",
|
|
83
|
+
statusAll: "Toate statusurile",
|
|
84
|
+
currencyLabel: "Moneda",
|
|
85
|
+
currencyAny: "Orice moneda",
|
|
86
|
+
dueDateLabel: "Data scadenta",
|
|
87
|
+
dateAny: "Orice data",
|
|
88
|
+
clear: "Sterge filtre",
|
|
89
|
+
},
|
|
90
|
+
columns: {
|
|
91
|
+
invoiceNumber: "Factura #",
|
|
92
|
+
status: "Status",
|
|
93
|
+
total: "Total",
|
|
94
|
+
paid: "Platit",
|
|
95
|
+
balanceDue: "Rest de plata",
|
|
96
|
+
dueDate: "Data scadenta",
|
|
97
|
+
},
|
|
98
|
+
empty: "Nu au fost gasite inregistrari.",
|
|
99
|
+
loadFailed: "Incarcarea inregistrarilor a esuat.",
|
|
100
|
+
pagination: {
|
|
101
|
+
showing: "Afisare {count} din {total}",
|
|
102
|
+
page: "Pagina {page} / {pageCount}",
|
|
103
|
+
previous: "Anterior",
|
|
104
|
+
next: "Urmator",
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
paymentsPage: {
|
|
108
|
+
title: "Plati",
|
|
109
|
+
description: "Toate platile clientilor si furnizorilor intr-un singur loc.",
|
|
110
|
+
searchPlaceholder: "Cauta dupa numar de referinta...",
|
|
111
|
+
actions: {
|
|
112
|
+
recordPayment: "Inregistreaza plata",
|
|
113
|
+
},
|
|
114
|
+
kindLabels: {
|
|
115
|
+
customer: "Client",
|
|
116
|
+
supplier: "Furnizor",
|
|
117
|
+
},
|
|
118
|
+
filters: {
|
|
119
|
+
button: "Filtre",
|
|
120
|
+
kindLabel: "Tip",
|
|
121
|
+
kindAll: "Toate tipurile",
|
|
122
|
+
statusLabel: "Status",
|
|
123
|
+
statusAll: "Toate statusurile",
|
|
124
|
+
methodLabel: "Metoda de plata",
|
|
125
|
+
methodAll: "Toate metodele",
|
|
126
|
+
supplierLabel: "Furnizor",
|
|
127
|
+
supplierAny: "Orice furnizor",
|
|
128
|
+
supplierEmpty: "Niciun furnizor gasit.",
|
|
129
|
+
currencyLabel: "Moneda",
|
|
130
|
+
currencyAny: "Orice moneda",
|
|
131
|
+
paymentDateLabel: "Data platii",
|
|
132
|
+
dateAny: "Orice data",
|
|
133
|
+
clear: "Sterge filtre",
|
|
134
|
+
},
|
|
135
|
+
columns: {
|
|
136
|
+
kind: "Tip",
|
|
137
|
+
reference: "Referinta",
|
|
138
|
+
party: "Parte",
|
|
139
|
+
amount: "Suma",
|
|
140
|
+
status: "Status",
|
|
141
|
+
date: "Data",
|
|
142
|
+
method: "Metoda de plata",
|
|
143
|
+
},
|
|
144
|
+
noValue: "-",
|
|
145
|
+
empty: "Nu au fost gasite inregistrari.",
|
|
146
|
+
loadFailed: "Incarcarea inregistrarilor a esuat.",
|
|
147
|
+
pagination: {
|
|
148
|
+
showing: "Afisare {count} din {total}",
|
|
149
|
+
page: "Pagina {page} / {pageCount}",
|
|
150
|
+
previous: "Anterior",
|
|
151
|
+
next: "Urmator",
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
paymentDetailPage: {
|
|
155
|
+
actions: {
|
|
156
|
+
back: "Inapoi la plati",
|
|
157
|
+
viewInvoice: "Vezi factura",
|
|
158
|
+
viewBooking: "Vezi rezervarea",
|
|
159
|
+
viewPerson: "Vezi persoana",
|
|
160
|
+
viewOrganization: "Vezi organizatia",
|
|
161
|
+
viewSupplier: "Vezi furnizorul",
|
|
162
|
+
},
|
|
163
|
+
titles: {
|
|
164
|
+
summary: "Rezumat",
|
|
165
|
+
links: "Inregistrari asociate",
|
|
166
|
+
metadata: "Metadate",
|
|
167
|
+
},
|
|
168
|
+
fields: {
|
|
169
|
+
amount: "Suma",
|
|
170
|
+
baseAmount: "Suma de baza",
|
|
171
|
+
status: "Status",
|
|
172
|
+
method: "Metoda de plata",
|
|
173
|
+
date: "Data platii",
|
|
174
|
+
reference: "Referinta",
|
|
175
|
+
notes: "Note",
|
|
176
|
+
kind: "Tip",
|
|
177
|
+
paidBy: "Platit de",
|
|
178
|
+
paidTo: "Platit catre",
|
|
179
|
+
organization: "Organizatie",
|
|
180
|
+
invoice: "Factura",
|
|
181
|
+
booking: "Rezervare",
|
|
182
|
+
createdAt: "Creat",
|
|
183
|
+
updatedAt: "Actualizat",
|
|
184
|
+
},
|
|
185
|
+
states: {
|
|
186
|
+
loading: "Se incarca plata...",
|
|
187
|
+
loadFailed: "Plata nu a putut fi incarcata.",
|
|
188
|
+
notFound: "Plata nu a fost gasita.",
|
|
189
|
+
noValue: "-",
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
invoiceDetailPage: {
|
|
193
|
+
actions: {
|
|
194
|
+
back: "Inapoi la finante",
|
|
195
|
+
edit: "Editeaza",
|
|
196
|
+
delete: "Sterge",
|
|
197
|
+
deleteTitle: "Stergi aceasta factura?",
|
|
198
|
+
deleteDescription: "Aceasta actiune sterge definitiv factura ciorna si inregistrarile financiare.",
|
|
199
|
+
deleteOnlyDraft: "Doar facturile ciorna pot fi sterse.",
|
|
200
|
+
viewBooking: "Vezi rezervarea",
|
|
201
|
+
viewPerson: "Vezi persoana",
|
|
202
|
+
viewOrganization: "Vezi organizatia",
|
|
203
|
+
addLineItem: "Adauga linie",
|
|
204
|
+
editLineItem: "Editeaza linia",
|
|
205
|
+
deleteLineItemShort: "Sterge",
|
|
206
|
+
deleteLineItemTitle: "Stergi aceasta linie?",
|
|
207
|
+
deleteLineItemDescription: "Aceasta actiune elimina linia selectata si recalculeaza totalurile facturii.",
|
|
208
|
+
recordPayment: "Inregistreaza plata",
|
|
209
|
+
addCreditNote: "Adauga nota de credit",
|
|
210
|
+
addNote: "Adauga nota",
|
|
211
|
+
},
|
|
212
|
+
titles: {
|
|
213
|
+
summary: "Detalii factura",
|
|
214
|
+
links: "Date si legaturi",
|
|
215
|
+
lineItems: "Linii factura",
|
|
216
|
+
payments: "Plati",
|
|
217
|
+
creditNotes: "Note de credit",
|
|
218
|
+
notes: "Note",
|
|
219
|
+
},
|
|
220
|
+
fields: {
|
|
221
|
+
currency: "Moneda",
|
|
222
|
+
subtotal: "Subtotal",
|
|
223
|
+
tax: "Taxa",
|
|
224
|
+
total: "Total",
|
|
225
|
+
paid: "Platit",
|
|
226
|
+
balanceDue: "Rest de plata",
|
|
227
|
+
status: "Status",
|
|
228
|
+
issueDate: "Data emiterii",
|
|
229
|
+
dueDate: "Data scadentei",
|
|
230
|
+
booking: "Rezervare",
|
|
231
|
+
person: "Persoana",
|
|
232
|
+
organization: "Organizatie",
|
|
233
|
+
notes: "Note",
|
|
234
|
+
createdAt: "Creat",
|
|
235
|
+
updatedAt: "Actualizat",
|
|
236
|
+
},
|
|
237
|
+
columns: {
|
|
238
|
+
description: "Descriere",
|
|
239
|
+
quantity: "Cant.",
|
|
240
|
+
unitPrice: "Pret unitar",
|
|
241
|
+
total: "Total",
|
|
242
|
+
taxRate: "Rata taxa",
|
|
243
|
+
},
|
|
244
|
+
states: {
|
|
245
|
+
loading: "Se incarca factura...",
|
|
246
|
+
loadFailed: "Factura nu a putut fi incarcata.",
|
|
247
|
+
notFound: "Factura nu a fost gasita.",
|
|
248
|
+
noValue: "-",
|
|
249
|
+
noLineItems: "Nu exista inca linii.",
|
|
250
|
+
noPayments: "Nu exista inca plati.",
|
|
251
|
+
noCreditNotes: "Nu exista inca note de credit.",
|
|
252
|
+
noNotes: "Nu exista inca note.",
|
|
253
|
+
},
|
|
254
|
+
placeholders: {
|
|
255
|
+
note: "Adauga o nota interna...",
|
|
256
|
+
},
|
|
257
|
+
creditNoteStatusLabels: {
|
|
258
|
+
draft: "Ciorna",
|
|
259
|
+
issued: "Emisa",
|
|
260
|
+
applied: "Aplicata",
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
taxesPage: {
|
|
264
|
+
title: "Regimuri si clase de taxe",
|
|
265
|
+
description: "Administreaza clasele de taxe si regimul fiscal implicit folosit pentru calcul TVA.",
|
|
266
|
+
addTax: "Adauga clasa de taxe",
|
|
267
|
+
empty: "Nu exista clase de taxe momentan. Seed sau creeaza clase precum Normala, Redusa si Art. 311.",
|
|
268
|
+
inactive: "Inactiv",
|
|
269
|
+
edit: "Editeaza",
|
|
270
|
+
delete: "Sterge",
|
|
271
|
+
deleteConfirm: "Stergi aceasta clasa de taxe?",
|
|
272
|
+
editSheetTitle: "Editeaza clasa de taxe",
|
|
273
|
+
newSheetTitle: "Clasa de taxe noua",
|
|
274
|
+
taxClassBadge: "Clasa de taxe",
|
|
275
|
+
defaultRegimeLabel: "Regim implicit",
|
|
276
|
+
regimeOverridesLabel: "Suprascrieri",
|
|
277
|
+
regimeOverrideCount: "{count} suprascrieri",
|
|
278
|
+
taxClassSectionTitle: "Clasa de taxe",
|
|
279
|
+
taxClassSectionDescription: "Clasificarea selectabila salvata pe produse si linii de rezervare.",
|
|
280
|
+
defaultRegimeSectionTitle: "Regim fiscal implicit",
|
|
281
|
+
defaultRegimeSectionDescription: "Regula de calcul TVA/taxe legata prin tax_classes.default_regime_id.",
|
|
282
|
+
regimeOverridesSectionTitle: "Suprascrieri de regim",
|
|
283
|
+
regimeOverridesSectionDescription: "Intrari optionale tax_classes.lines pentru baza, addon, cazare sau toate liniile.",
|
|
284
|
+
addRegimeOverride: "Adauga suprascriere",
|
|
285
|
+
removeRegimeOverride: "Sterge suprascrierea",
|
|
286
|
+
noRegimeOverrides: "Nu exista suprascrieri de regim. Clasa foloseste regimul implicit.",
|
|
287
|
+
appliesToLabel: "Se aplica la",
|
|
288
|
+
taxRegimeLabel: "Regim fiscal",
|
|
289
|
+
appliesToBase: "Baza",
|
|
290
|
+
appliesToAddon: "Addon",
|
|
291
|
+
appliesToAccommodation: "Cazare",
|
|
292
|
+
appliesToAll: "Toate",
|
|
293
|
+
taxClassLabelLabel: "Eticheta clasei de taxe",
|
|
294
|
+
taxClassLabelPlaceholder: "Normala 21",
|
|
295
|
+
taxClassCodeLabel: "Cod clasa de taxe",
|
|
296
|
+
taxClassCodePlaceholder: "normala",
|
|
297
|
+
taxClassDescriptionLabel: "Descriere clasa de taxe",
|
|
298
|
+
taxClassDescriptionPlaceholder: "Descriere optionala pentru clasa de taxe...",
|
|
299
|
+
regimeNameLabel: "Nume regim",
|
|
300
|
+
regimeNamePlaceholder: "Normala",
|
|
301
|
+
regimeCodeLabel: "Cod regim",
|
|
302
|
+
rateLabel: "Cota regim %",
|
|
303
|
+
jurisdictionLabel: "Jurisdictie",
|
|
304
|
+
legalReferenceLabel: "Referinta legala",
|
|
305
|
+
legalReferencePlaceholder: "Referinta legala optionala",
|
|
306
|
+
regimeDescriptionLabel: "Descriere regim",
|
|
307
|
+
regimeDescriptionPlaceholder: "Descriere optionala pentru regimul fiscal...",
|
|
308
|
+
activeLabel: "Activ",
|
|
309
|
+
cancel: "Anuleaza",
|
|
310
|
+
saveChanges: "Salveaza modificarile",
|
|
311
|
+
createTax: "Creeaza clasa de taxe",
|
|
312
|
+
validationNameRequired: "Eticheta clasei de taxe este obligatorie",
|
|
313
|
+
validationRateInvalid: "Cota trebuie sa fie un numar pozitiv",
|
|
314
|
+
saveFailed: "Clasa de taxe nu a putut fi salvata",
|
|
315
|
+
policyTitle: "Profile de politica fiscala",
|
|
316
|
+
policyDescription: "Administreaza reguli fiscale specifice implementarii care aleg automat regimurile fiscale.",
|
|
317
|
+
addPolicyProfile: "Adauga profil",
|
|
318
|
+
addPolicyRule: "Adauga regula",
|
|
319
|
+
policyEmpty: "Nu exista profile de politica fiscala momentan.",
|
|
320
|
+
policyRulesEmpty: "Nu exista reguli. Adauga reguli ordonate pentru acest profil.",
|
|
321
|
+
deletePolicyProfileConfirm: "Stergi acest profil de politica fiscala si regulile lui?",
|
|
322
|
+
deletePolicyRuleConfirm: "Stergi aceasta regula fiscala?",
|
|
323
|
+
editPolicyProfileSheetTitle: "Editeaza profilul de politica fiscala",
|
|
324
|
+
newPolicyProfileSheetTitle: "Profil de politica fiscala nou",
|
|
325
|
+
editPolicyRuleSheetTitle: "Editeaza regula fiscala",
|
|
326
|
+
newPolicyRuleSheetTitle: "Regula fiscala noua",
|
|
327
|
+
policyProfileNameLabel: "Nume profil",
|
|
328
|
+
policyProfileNamePlaceholder: "Operator turistic Romania",
|
|
329
|
+
policyProfileCodeLabel: "Cod profil",
|
|
330
|
+
policyProfileCodePlaceholder: "ro-travel-operator",
|
|
331
|
+
policyProfileDescriptionLabel: "Descriere profil",
|
|
332
|
+
policyProfileDescriptionPlaceholder: "Descriere optionala pentru profil...",
|
|
333
|
+
policyPriorityLabel: "Prioritate",
|
|
334
|
+
policySideLabel: "Parte",
|
|
335
|
+
policyRuleNameLabel: "Nume regula",
|
|
336
|
+
policyRuleNamePlaceholder: "Cazare in Romania",
|
|
337
|
+
policyConditionLabel: "Conditie",
|
|
338
|
+
policyConditionSectionTitle: "Conditie",
|
|
339
|
+
policyConditionSectionDescription: "Alege cand se aplica aceasta regula. Regulile sunt evaluate dupa prioritate.",
|
|
340
|
+
policyConditionModeLabel: "Potrivire",
|
|
341
|
+
policyConditionAlways: "Intotdeauna",
|
|
342
|
+
policyConditionAlwaysDescription: "Aceasta regula se potriveste intotdeauna si este folosita de obicei ca regula implicita finala.",
|
|
343
|
+
policyConditionModeAll: "Toate conditiile",
|
|
344
|
+
policyConditionModeAny: "Oricare conditie",
|
|
345
|
+
addPolicyCondition: "Adauga conditie",
|
|
346
|
+
removePolicyCondition: "Sterge conditia",
|
|
347
|
+
policyFactLabel: "Fapt",
|
|
348
|
+
policyFactHasAccommodation: "Are cazare",
|
|
349
|
+
policyFactAccommodationCountries: "Tari cazare",
|
|
350
|
+
policyOperatorLabel: "Operator",
|
|
351
|
+
policyOperatorEquals: "este",
|
|
352
|
+
policyOperatorContains: "contine",
|
|
353
|
+
policyValueLabel: "Valoare",
|
|
354
|
+
policyValueYes: "Da",
|
|
355
|
+
policyValueNo: "Nu",
|
|
356
|
+
policyActionsLabel: "Actiuni",
|
|
357
|
+
policySideSell: "Vanzare",
|
|
358
|
+
policySideBuy: "Achizitie",
|
|
359
|
+
createPolicyProfile: "Creeaza profilul",
|
|
360
|
+
createPolicyRule: "Creeaza regula",
|
|
361
|
+
validationPolicyProfileNameRequired: "Numele profilului este obligatoriu",
|
|
362
|
+
validationPolicyProfileRequired: "Profilul de politica fiscala este obligatoriu",
|
|
363
|
+
validationPolicyRuleNameRequired: "Numele regulii este obligatoriu",
|
|
364
|
+
validationPolicyRuleRegimeRequired: "Regimul fiscal este obligatoriu",
|
|
365
|
+
validationPolicyRulePriorityInvalid: "Prioritatea trebuie sa fie un intreg pozitiv",
|
|
366
|
+
validationPolicyRuleConditionInvalid: "Conditia trebuie sa includa cel putin un rand valid. Tarile trebuie sa fie coduri ISO din doua litere.",
|
|
367
|
+
savePolicyProfileFailed: "Profilul de politica fiscala nu a putut fi salvat",
|
|
368
|
+
savePolicyRuleFailed: "Regula fiscala nu a putut fi salvata",
|
|
369
|
+
},
|
|
62
370
|
supplierPaymentDialog: {
|
|
63
371
|
title: "Inregistreaza Plata Furnizorului",
|
|
64
372
|
fields: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
export { creditNoteStatusVariant, DetailLink, type DetailLinkProps, DetailRow, type DetailRowProps, EmptyRow as InvoiceDetailEmptyRow, type EmptyRowProps as InvoiceDetailEmptyRowProps, formatPaymentMethod as formatInvoicePaymentMethod, InvoiceCreditNotesCard, type InvoiceCreditNotesCardProps, type InvoiceDetailCardProps, InvoiceDetailHeader, type InvoiceDetailHeaderProps, InvoiceDetailLoading, InvoiceDetailPage, type InvoiceDetailPageProps, type InvoiceDetailPageSlots, InvoiceDetailState, InvoiceLineItemsCard, type InvoiceLineItemsCardProps, InvoiceLinksCard, type InvoiceLinksCardProps, InvoiceNotesCard, type InvoiceNotesCardProps, InvoicePaymentsCard, type InvoicePaymentsCardProps, InvoiceSummaryCard, invoiceStatusVariant, LoadingRow as InvoiceDetailLoadingRow, Money, type MoneyProps, paymentStatusVariant, } from "./components/invoice-detail-page.js";
|
|
1
2
|
export { InvoiceDialog, type InvoiceDialogProps } from "./components/invoice-dialog.js";
|
|
3
|
+
export { InvoicesPage, type InvoicesPageProps } from "./components/invoices-page.js";
|
|
4
|
+
export { InvoicesPageSkeleton, InvoicesTableSkeleton, } from "./components/invoices-page-skeleton.js";
|
|
5
|
+
export { type PaymentDetailCardProps, PaymentDetailHeader, type PaymentDetailHeaderProps, PaymentDetailPage, type PaymentDetailPageProps, type PaymentDetailPageSlots, PaymentLinksCard, type PaymentLinksCardProps, PaymentMetadataCard, PaymentSummaryCard, } from "./components/payment-detail-page.js";
|
|
2
6
|
export { PaymentPolicyForm, type PaymentPolicyFormProps, PaymentPolicyPreview, type PaymentPolicyPreviewProps, } from "./components/payment-policy-form.js";
|
|
7
|
+
export { type PaymentSupplierOption, PaymentsPage, type PaymentsPageProps, type RecordPaymentDialogRenderProps, } from "./components/payments-page.js";
|
|
8
|
+
export { PaymentsPageSkeleton, PaymentsTableSkeleton, } from "./components/payments-page-skeleton.js";
|
|
3
9
|
export { SupplierPaymentDialog, type SupplierPaymentDialogProps, } from "./components/supplier-payment-dialog.js";
|
|
10
|
+
export { TaxesPage, type TaxesPageApi, type TaxesPageProps, } from "./components/taxes-page.js";
|
|
4
11
|
export { type FinanceUiMessageOverrides, type FinanceUiMessages, FinanceUiMessagesProvider, financeUiEn, financeUiMessageDefinitions, financeUiRo, getFinanceUiI18n, resolveFinanceUiMessages, useFinanceUiI18n, useFinanceUiI18nOrDefault, useFinanceUiMessages, useFinanceUiMessagesOrDefault, } from "./i18n/index.js";
|
|
5
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAA;AACvF,OAAO,EACL,iBAAiB,EACjB,KAAK,sBAAsB,EAC3B,oBAAoB,EACpB,KAAK,yBAAyB,GAC/B,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACL,qBAAqB,EACrB,KAAK,0BAA0B,GAChC,MAAM,yCAAyC,CAAA;AAChD,OAAO,EACL,KAAK,yBAAyB,EAC9B,KAAK,iBAAiB,EACtB,yBAAyB,EACzB,WAAW,EACX,2BAA2B,EAC3B,WAAW,EACX,gBAAgB,EAChB,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,6BAA6B,GAC9B,MAAM,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,UAAU,EACV,KAAK,eAAe,EACpB,SAAS,EACT,KAAK,cAAc,EACnB,QAAQ,IAAI,qBAAqB,EACjC,KAAK,aAAa,IAAI,0BAA0B,EAChD,mBAAmB,IAAI,0BAA0B,EACjD,sBAAsB,EACtB,KAAK,2BAA2B,EAChC,KAAK,sBAAsB,EAC3B,mBAAmB,EACnB,KAAK,wBAAwB,EAC7B,oBAAoB,EACpB,iBAAiB,EACjB,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,EAC3B,kBAAkB,EAClB,oBAAoB,EACpB,KAAK,yBAAyB,EAC9B,gBAAgB,EAChB,KAAK,qBAAqB,EAC1B,gBAAgB,EAChB,KAAK,qBAAqB,EAC1B,mBAAmB,EACnB,KAAK,wBAAwB,EAC7B,kBAAkB,EAClB,oBAAoB,EACpB,UAAU,IAAI,uBAAuB,EACrC,KAAK,EACL,KAAK,UAAU,EACf,oBAAoB,GACrB,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAA;AACvF,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,+BAA+B,CAAA;AACpF,OAAO,EACL,oBAAoB,EACpB,qBAAqB,GACtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EACL,KAAK,sBAAsB,EAC3B,mBAAmB,EACnB,KAAK,wBAAwB,EAC7B,iBAAiB,EACjB,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,EAC3B,gBAAgB,EAChB,KAAK,qBAAqB,EAC1B,mBAAmB,EACnB,kBAAkB,GACnB,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACL,iBAAiB,EACjB,KAAK,sBAAsB,EAC3B,oBAAoB,EACpB,KAAK,yBAAyB,GAC/B,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACL,KAAK,qBAAqB,EAC1B,YAAY,EACZ,KAAK,iBAAiB,EACtB,KAAK,8BAA8B,GACpC,MAAM,+BAA+B,CAAA;AACtC,OAAO,EACL,oBAAoB,EACpB,qBAAqB,GACtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EACL,qBAAqB,EACrB,KAAK,0BAA0B,GAChC,MAAM,yCAAyC,CAAA;AAChD,OAAO,EACL,SAAS,EACT,KAAK,YAAY,EACjB,KAAK,cAAc,GACpB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,KAAK,yBAAyB,EAC9B,KAAK,iBAAiB,EACtB,yBAAyB,EACzB,WAAW,EACX,2BAA2B,EAC3B,WAAW,EACX,gBAAgB,EAChB,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,6BAA6B,GAC9B,MAAM,iBAAiB,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
+
export { creditNoteStatusVariant, DetailLink, DetailRow, EmptyRow as InvoiceDetailEmptyRow, formatPaymentMethod as formatInvoicePaymentMethod, InvoiceCreditNotesCard, InvoiceDetailHeader, InvoiceDetailLoading, InvoiceDetailPage, InvoiceDetailState, InvoiceLineItemsCard, InvoiceLinksCard, InvoiceNotesCard, InvoicePaymentsCard, InvoiceSummaryCard, invoiceStatusVariant, LoadingRow as InvoiceDetailLoadingRow, Money, paymentStatusVariant, } from "./components/invoice-detail-page.js";
|
|
1
2
|
export { InvoiceDialog } from "./components/invoice-dialog.js";
|
|
3
|
+
export { InvoicesPage } from "./components/invoices-page.js";
|
|
4
|
+
export { InvoicesPageSkeleton, InvoicesTableSkeleton, } from "./components/invoices-page-skeleton.js";
|
|
5
|
+
export { PaymentDetailHeader, PaymentDetailPage, PaymentLinksCard, PaymentMetadataCard, PaymentSummaryCard, } from "./components/payment-detail-page.js";
|
|
2
6
|
export { PaymentPolicyForm, PaymentPolicyPreview, } from "./components/payment-policy-form.js";
|
|
7
|
+
export { PaymentsPage, } from "./components/payments-page.js";
|
|
8
|
+
export { PaymentsPageSkeleton, PaymentsTableSkeleton, } from "./components/payments-page-skeleton.js";
|
|
3
9
|
export { SupplierPaymentDialog, } from "./components/supplier-payment-dialog.js";
|
|
10
|
+
export { TaxesPage, } from "./components/taxes-page.js";
|
|
4
11
|
export { FinanceUiMessagesProvider, financeUiEn, financeUiMessageDefinitions, financeUiRo, getFinanceUiI18n, resolveFinanceUiMessages, useFinanceUiI18n, useFinanceUiI18nOrDefault, useFinanceUiMessages, useFinanceUiMessagesOrDefault, } from "./i18n/index.js";
|