@spaceinvoices/react-ui 0.4.5 → 0.4.6
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/cli/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/advance-invoices/advance-invoices.hooks.ts +2 -2
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +91 -35
- package/src/components/advance-invoices/create/locales/de.ts +5 -0
- package/src/components/advance-invoices/create/locales/es.ts +5 -0
- package/src/components/advance-invoices/create/locales/fr.ts +5 -0
- package/src/components/advance-invoices/create/locales/hr.ts +5 -0
- package/src/components/advance-invoices/create/locales/it.ts +5 -0
- package/src/components/advance-invoices/create/locales/nl.ts +5 -0
- package/src/components/advance-invoices/create/locales/pl.ts +5 -0
- package/src/components/advance-invoices/create/locales/pt.ts +5 -0
- package/src/components/advance-invoices/create/locales/sl.ts +5 -0
- package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +5 -5
- package/src/components/credit-notes/create/create-credit-note-form.tsx +91 -35
- package/src/components/credit-notes/create/locales/de.ts +5 -0
- package/src/components/credit-notes/create/locales/es.ts +5 -0
- package/src/components/credit-notes/create/locales/fr.ts +5 -0
- package/src/components/credit-notes/create/locales/hr.ts +5 -0
- package/src/components/credit-notes/create/locales/it.ts +5 -0
- package/src/components/credit-notes/create/locales/nl.ts +5 -0
- package/src/components/credit-notes/create/locales/pl.ts +5 -0
- package/src/components/credit-notes/create/locales/pt.ts +5 -0
- package/src/components/credit-notes/create/locales/sl.ts +5 -0
- package/src/components/credit-notes/credit-notes.hooks.ts +2 -2
- package/src/components/delivery-notes/create/create-delivery-note-form.tsx +47 -0
- package/src/components/delivery-notes/create/locales/de.ts +5 -0
- package/src/components/delivery-notes/create/locales/es.ts +5 -0
- package/src/components/delivery-notes/create/locales/fr.ts +5 -0
- package/src/components/delivery-notes/create/locales/hr.ts +5 -0
- package/src/components/delivery-notes/create/locales/it.ts +5 -0
- package/src/components/delivery-notes/create/locales/nl.ts +5 -0
- package/src/components/delivery-notes/create/locales/pl.ts +5 -0
- package/src/components/delivery-notes/create/locales/pt.ts +5 -0
- package/src/components/delivery-notes/create/locales/sl.ts +5 -0
- package/src/components/documents/create/document-details-section.tsx +472 -346
- package/src/components/documents/create/prepare-document-submission.ts +3 -1
- package/src/components/documents/create/smart-code-insert-button.tsx +6 -0
- package/src/components/documents/view/document-details-card.tsx +6 -0
- package/src/components/documents/view/locales/de.ts +1 -0
- package/src/components/documents/view/locales/es.ts +1 -0
- package/src/components/documents/view/locales/fr.ts +1 -0
- package/src/components/documents/view/locales/hr.ts +1 -0
- package/src/components/documents/view/locales/it.ts +1 -0
- package/src/components/documents/view/locales/nl.ts +1 -0
- package/src/components/documents/view/locales/pl.ts +1 -0
- package/src/components/documents/view/locales/pt.ts +1 -0
- package/src/components/documents/view/locales/sl.ts +1 -0
- package/src/components/entities/entity-settings-form/email-template-variables-info.tsx +6 -0
- package/src/components/entities/entity-settings-form/input-with-preview.tsx +2 -145
- package/src/components/entities/entity-settings-form/locales/de.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/es.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/hr.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/pl.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/pt.ts +4 -0
- package/src/components/entities/entity-settings-form/locales/sl.ts +4 -0
- package/src/components/entities/fina-settings-form/fina-settings-form.tsx +15 -0
- package/src/components/entities/fina-settings-form/fina-settings.hooks.ts +5 -1
- package/src/components/entities/fina-settings-form/locales/de.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/en.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/es.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/fr.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/hr.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/it.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/nl.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/pl.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/pt.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/sl.ts +3 -0
- package/src/components/entities/fina-settings-form/sections/premises-management-section.tsx +4 -4
- package/src/components/entities/fina-settings-form/sections/register-premise-dialog.tsx +3 -3
- package/src/components/entities/settings/defaults-settings-form.tsx +38 -1
- package/src/components/entities/settings/tax-rules-settings-form.tsx +1 -2
- package/src/components/estimates/create/create-estimate-form.tsx +43 -2
- package/src/components/estimates/create/locales/de.ts +5 -0
- package/src/components/estimates/create/locales/es.ts +5 -0
- package/src/components/estimates/create/locales/fr.ts +5 -0
- package/src/components/estimates/create/locales/hr.ts +5 -0
- package/src/components/estimates/create/locales/it.ts +5 -0
- package/src/components/estimates/create/locales/nl.ts +5 -0
- package/src/components/estimates/create/locales/pl.ts +5 -0
- package/src/components/estimates/create/locales/pt.ts +5 -0
- package/src/components/estimates/create/locales/sl.ts +5 -0
- package/src/components/invoices/create/create-invoice-form.tsx +130 -40
- package/src/components/invoices/create/locales/de.ts +13 -0
- package/src/components/invoices/create/locales/es.ts +13 -0
- package/src/components/invoices/create/locales/fr.ts +13 -0
- package/src/components/invoices/create/locales/hr.ts +13 -0
- package/src/components/invoices/create/locales/it.ts +13 -0
- package/src/components/invoices/create/locales/nl.ts +13 -0
- package/src/components/invoices/create/locales/pl.ts +13 -0
- package/src/components/invoices/create/locales/pt.ts +13 -0
- package/src/components/invoices/create/locales/sl.ts +13 -0
- package/src/components/invoices/create/prepare-invoice-submission.ts +5 -5
- package/src/components/invoices/invoices.hooks.ts +2 -2
- package/src/components/table/table-pagination.tsx +1 -1
- package/src/generated/schemas/advanceinvoice.ts +2 -0
- package/src/generated/schemas/creditnote.ts +1 -0
- package/src/generated/schemas/deliverynote.ts +1 -0
- package/src/generated/schemas/entity.ts +4 -4
- package/src/generated/schemas/entityapikey.ts +19 -0
- package/src/generated/schemas/estimate.ts +2 -0
- package/src/generated/schemas/index.ts +1 -0
- package/src/generated/schemas/invoice.ts +2 -0
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +1 -1
- package/src/generated/schemas/rendercreditnotepreview_body.ts +1 -1
- package/src/generated/schemas/renderdeliverynotepreview_body.ts +1 -1
- package/src/generated/schemas/renderestimatepreview_body.ts +1 -1
- package/src/generated/schemas/renderinvoicepreview_body.ts +1 -1
- package/src/generated/schemas/startpdfexport_body.ts +14 -2
- package/src/generated/schemas/webhook.ts +4 -0
- package/src/lib/template-variables.tsx +167 -0
- package/src/providers/entities-context.tsx +2 -2
|
@@ -51,6 +51,7 @@ const defaultsSettingsSchema = z.object({
|
|
|
51
51
|
default_credit_note_payment_terms: z.union([z.string(), z.null()]).optional(),
|
|
52
52
|
// Shared
|
|
53
53
|
document_footer: z.union([z.string(), z.null()]).optional(),
|
|
54
|
+
default_document_signature: z.union([z.string(), z.null()]).optional(),
|
|
54
55
|
});
|
|
55
56
|
|
|
56
57
|
type DefaultsSettingsSchema = z.infer<typeof defaultsSettingsSchema>;
|
|
@@ -89,6 +90,8 @@ export function DefaultsSettingsForm({
|
|
|
89
90
|
const creditNotePaymentTermsRef = useRef<HTMLTextAreaElement>(null);
|
|
90
91
|
// Ref for document footer (shared)
|
|
91
92
|
const documentFooterRef = useRef<HTMLTextAreaElement>(null);
|
|
93
|
+
// Ref for document signature (shared)
|
|
94
|
+
const documentSignatureRef = useRef<HTMLTextAreaElement>(null);
|
|
92
95
|
|
|
93
96
|
const form = useForm<DefaultsSettingsSchema>({
|
|
94
97
|
resolver: zodResolver(defaultsSettingsSchema),
|
|
@@ -106,6 +109,7 @@ export function DefaultsSettingsForm({
|
|
|
106
109
|
default_credit_note_payment_terms: currentSettings.default_credit_note_payment_terms || null,
|
|
107
110
|
// Shared
|
|
108
111
|
document_footer: currentSettings.document_footer || null,
|
|
112
|
+
default_document_signature: currentSettings.default_document_signature || null,
|
|
109
113
|
},
|
|
110
114
|
});
|
|
111
115
|
|
|
@@ -140,6 +144,7 @@ export function DefaultsSettingsForm({
|
|
|
140
144
|
default_credit_note_payment_terms: values.default_credit_note_payment_terms || null,
|
|
141
145
|
// Shared
|
|
142
146
|
document_footer: values.document_footer || null,
|
|
147
|
+
default_document_signature: values.default_document_signature || null,
|
|
143
148
|
},
|
|
144
149
|
};
|
|
145
150
|
|
|
@@ -452,7 +457,39 @@ export function DefaultsSettingsForm({
|
|
|
452
457
|
|
|
453
458
|
// Footer section content
|
|
454
459
|
const footerContent = (
|
|
455
|
-
<div className="border-t pt-6">
|
|
460
|
+
<div className="space-y-6 border-t pt-6">
|
|
461
|
+
<FormField
|
|
462
|
+
control={form.control}
|
|
463
|
+
name="default_document_signature"
|
|
464
|
+
render={({ field }) => (
|
|
465
|
+
<FormItem>
|
|
466
|
+
<div className="flex items-center justify-between">
|
|
467
|
+
<FormLabel className="font-medium text-sm">{t("Document Signature")}</FormLabel>
|
|
468
|
+
<SmartCodeInsertButton
|
|
469
|
+
textareaRef={documentSignatureRef}
|
|
470
|
+
value={field.value || ""}
|
|
471
|
+
onInsert={(newValue) => field.onChange(newValue)}
|
|
472
|
+
t={t}
|
|
473
|
+
/>
|
|
474
|
+
</div>
|
|
475
|
+
<FormControl>
|
|
476
|
+
<InputWithPreview
|
|
477
|
+
ref={documentSignatureRef}
|
|
478
|
+
value={field.value || ""}
|
|
479
|
+
onChange={field.onChange}
|
|
480
|
+
placeholder={t("{entity_name}")}
|
|
481
|
+
entity={entity}
|
|
482
|
+
multiline
|
|
483
|
+
rows={2}
|
|
484
|
+
className="resize-y"
|
|
485
|
+
/>
|
|
486
|
+
</FormControl>
|
|
487
|
+
<FormDescription className="text-xs">{t("Signature text displayed on all PDF documents")}</FormDescription>
|
|
488
|
+
<FormMessage />
|
|
489
|
+
</FormItem>
|
|
490
|
+
)}
|
|
491
|
+
/>
|
|
492
|
+
|
|
456
493
|
<FormField
|
|
457
494
|
control={form.control}
|
|
458
495
|
name="document_footer"
|
|
@@ -3,7 +3,6 @@ import type {
|
|
|
3
3
|
Entity,
|
|
4
4
|
EntitySettings,
|
|
5
5
|
EntitySettingsTaxClauseDefaults,
|
|
6
|
-
GetEntities200DataItem,
|
|
7
6
|
TaxRules,
|
|
8
7
|
} from "@spaceinvoices/js-sdk";
|
|
9
8
|
import { ChevronDown, Globe, MessageSquareText } from "lucide-react";
|
|
@@ -50,7 +49,7 @@ type TaxRulesSettingsSchema = z.infer<typeof taxRulesSettingsSchema>;
|
|
|
50
49
|
type SectionType = "tax-rules" | "tax-clauses";
|
|
51
50
|
|
|
52
51
|
/** Entity type with country_rules included (from getEntities response) */
|
|
53
|
-
type EntityWithRules =
|
|
52
|
+
type EntityWithRules = Entity;
|
|
54
53
|
|
|
55
54
|
export type TaxRulesSettingsFormProps = {
|
|
56
55
|
entity: EntityWithRules;
|
|
@@ -19,8 +19,10 @@ import { useFormFooterRegistration } from "@/ui/providers/form-footer-context";
|
|
|
19
19
|
import { CUSTOMERS_CACHE_KEY } from "../../customers/customers.hooks";
|
|
20
20
|
import {
|
|
21
21
|
DocumentDetailsSection,
|
|
22
|
+
DocumentFooterField,
|
|
22
23
|
DocumentNoteField,
|
|
23
24
|
DocumentPaymentTermsField,
|
|
25
|
+
DocumentSignatureField,
|
|
24
26
|
DocumentTaxClauseField,
|
|
25
27
|
} from "../../documents/create/document-details-section";
|
|
26
28
|
import { DocumentItemsSection, type PriceModesMap } from "../../documents/create/document-items-section";
|
|
@@ -116,8 +118,9 @@ export default function CreateEstimateForm({
|
|
|
116
118
|
enabled: !!entityId,
|
|
117
119
|
});
|
|
118
120
|
|
|
119
|
-
// Get default payment terms from entity settings
|
|
121
|
+
// Get default payment terms and footer from entity settings
|
|
120
122
|
const defaultPaymentTerms = (activeEntity?.settings as any)?.default_estimate_payment_terms || "";
|
|
123
|
+
const defaultFooter = (activeEntity?.settings as any)?.document_footer || "";
|
|
121
124
|
|
|
122
125
|
const form = useForm<CreateEstimateFormValues>({
|
|
123
126
|
resolver: zodResolver(createEstimateSchema) as Resolver<CreateEstimateFormValues>,
|
|
@@ -151,9 +154,11 @@ export default function CreateEstimateForm({
|
|
|
151
154
|
},
|
|
152
155
|
],
|
|
153
156
|
currency_code: initialValues?.currency_code || activeEntity?.currency_code || "EUR",
|
|
157
|
+
reference: (initialValues as any)?.reference ?? "",
|
|
154
158
|
note: initialValues?.note ?? defaultEstimateNote,
|
|
155
159
|
tax_clause: (initialValues as any)?.tax_clause ?? "",
|
|
156
160
|
payment_terms: initialValues?.payment_terms ?? defaultPaymentTerms,
|
|
161
|
+
footer: (initialValues as any)?.footer ?? defaultFooter,
|
|
157
162
|
date_valid_till:
|
|
158
163
|
initialValues?.date_valid_till ||
|
|
159
164
|
calculateDueDate(initialValues?.date || new Date().toISOString(), defaultEstimateValidDays),
|
|
@@ -189,6 +194,10 @@ export default function CreateEstimateForm({
|
|
|
189
194
|
if (entityDefaultNote && !form.getValues("note")) {
|
|
190
195
|
form.setValue("note", entityDefaultNote);
|
|
191
196
|
}
|
|
197
|
+
const entityDefaultSignature = (activeEntity?.settings as any)?.default_document_signature;
|
|
198
|
+
if (entityDefaultSignature && !form.getValues("signature")) {
|
|
199
|
+
form.setValue("signature", entityDefaultSignature);
|
|
200
|
+
}
|
|
192
201
|
if (!initialValues?.date_valid_till) {
|
|
193
202
|
const validDays = (activeEntity?.settings as any)?.default_estimate_valid_days ?? 30;
|
|
194
203
|
const currentDate = form.getValues("date");
|
|
@@ -348,12 +357,16 @@ export default function CreateEstimateForm({
|
|
|
348
357
|
secondaryAction,
|
|
349
358
|
});
|
|
350
359
|
|
|
351
|
-
// Set default payment terms from entity settings when entity data is available
|
|
360
|
+
// Set default payment terms and footer from entity settings when entity data is available
|
|
352
361
|
useEffect(() => {
|
|
353
362
|
const entityDefaultPaymentTerms = (activeEntity?.settings as any)?.default_estimate_payment_terms;
|
|
354
363
|
if (entityDefaultPaymentTerms && !form.getValues("payment_terms")) {
|
|
355
364
|
form.setValue("payment_terms", entityDefaultPaymentTerms);
|
|
356
365
|
}
|
|
366
|
+
const entityDefaultFooter = (activeEntity?.settings as any)?.document_footer;
|
|
367
|
+
if (entityDefaultFooter && !form.getValues("footer")) {
|
|
368
|
+
form.setValue("footer", entityDefaultFooter);
|
|
369
|
+
}
|
|
357
370
|
}, [activeEntity, form]);
|
|
358
371
|
|
|
359
372
|
// Recalculate valid-till date when document date changes
|
|
@@ -389,8 +402,10 @@ export default function CreateEstimateForm({
|
|
|
389
402
|
customer: formValues.customer,
|
|
390
403
|
items: transformedItems,
|
|
391
404
|
currency_code: formValues.currency_code,
|
|
405
|
+
reference: formValues.reference,
|
|
392
406
|
note: formValues.note,
|
|
393
407
|
payment_terms: formValues.payment_terms,
|
|
408
|
+
signature: formValues.signature,
|
|
394
409
|
title_type: titleType,
|
|
395
410
|
};
|
|
396
411
|
callback(payload);
|
|
@@ -477,6 +492,32 @@ export default function CreateEstimateForm({
|
|
|
477
492
|
customer: formValues.customer as any,
|
|
478
493
|
}}
|
|
479
494
|
/>
|
|
495
|
+
|
|
496
|
+
<DocumentSignatureField
|
|
497
|
+
control={form.control}
|
|
498
|
+
t={t}
|
|
499
|
+
entity={activeEntity}
|
|
500
|
+
document={{
|
|
501
|
+
number: formValues.number,
|
|
502
|
+
date: formValues.date,
|
|
503
|
+
date_valid_till: formValues.date_valid_till,
|
|
504
|
+
currency_code: formValues.currency_code,
|
|
505
|
+
customer: formValues.customer as any,
|
|
506
|
+
}}
|
|
507
|
+
/>
|
|
508
|
+
|
|
509
|
+
<DocumentFooterField
|
|
510
|
+
control={form.control}
|
|
511
|
+
t={t}
|
|
512
|
+
entity={activeEntity}
|
|
513
|
+
document={{
|
|
514
|
+
number: formValues.number,
|
|
515
|
+
date: formValues.date,
|
|
516
|
+
date_valid_till: formValues.date_valid_till,
|
|
517
|
+
currency_code: formValues.currency_code,
|
|
518
|
+
customer: formValues.customer as any,
|
|
519
|
+
}}
|
|
520
|
+
/>
|
|
480
521
|
</form>
|
|
481
522
|
</Form>
|
|
482
523
|
);
|
|
@@ -35,6 +35,9 @@ export default {
|
|
|
35
35
|
"Insert variable": "Variable einfügen",
|
|
36
36
|
"Add payment instructions, terms, or other notes...":
|
|
37
37
|
"Zahlungsanweisungen, Bedingungen oder andere Notizen hinzufügen...",
|
|
38
|
+
// Signature field
|
|
39
|
+
Signature: "Unterschrift",
|
|
40
|
+
"Add signature text...": "Unterschriftstext hinzufügen...",
|
|
38
41
|
// Payment terms field
|
|
39
42
|
"Payment Terms": "Zahlungsbedingungen",
|
|
40
43
|
"Add payment terms...": "Zahlungsbedingungen hinzufügen...",
|
|
@@ -76,5 +79,7 @@ export default {
|
|
|
76
79
|
"Diese Rechnung wird nicht fiskalisiert (nicht-inländische Transaktion)",
|
|
77
80
|
"Tax Clause": "Steuerklausel",
|
|
78
81
|
"Add tax clause...": "Steuerklausel hinzufügen...",
|
|
82
|
+
Footer: "Fußzeile",
|
|
83
|
+
"Add document footer...": "Dokumentfußzeile hinzufügen...",
|
|
79
84
|
"Reverse charge - tax exempt EU B2B sale": "Umkehrung der Steuerschuldnerschaft - steuerbefreiter EU B2B Verkauf",
|
|
80
85
|
} as const;
|
|
@@ -33,6 +33,9 @@ export default {
|
|
|
33
33
|
Note: "Nota",
|
|
34
34
|
"Insert variable": "Insertar variable",
|
|
35
35
|
"Add payment instructions, terms, or other notes...": "Añada instrucciones de pago, condiciones u otras notas...",
|
|
36
|
+
// Signature field
|
|
37
|
+
Signature: "Firma",
|
|
38
|
+
"Add signature text...": "Añadir texto de firma...",
|
|
36
39
|
"Payment Terms": "Condiciones de pago",
|
|
37
40
|
"Add payment terms...": "Añada condiciones de pago...",
|
|
38
41
|
Quantity: "Cantidad",
|
|
@@ -69,5 +72,7 @@ export default {
|
|
|
69
72
|
"Esta factura no será fiscalizada (transacción no nacional)",
|
|
70
73
|
"Tax Clause": "Cláusula fiscal",
|
|
71
74
|
"Add tax clause...": "Agregar cláusula fiscal...",
|
|
75
|
+
Footer: "Pie de página",
|
|
76
|
+
"Add document footer...": "Añadir pie de página del documento...",
|
|
72
77
|
"Reverse charge - tax exempt EU B2B sale": "Inversión del sujeto pasivo - venta EU B2B exenta de impuestos",
|
|
73
78
|
} as const;
|
|
@@ -34,6 +34,9 @@ export default {
|
|
|
34
34
|
"Insert variable": "Insérer une variable",
|
|
35
35
|
"Add payment instructions, terms, or other notes...":
|
|
36
36
|
"Ajoutez des instructions de paiement, des conditions ou d'autres notes...",
|
|
37
|
+
// Signature field
|
|
38
|
+
Signature: "Signature",
|
|
39
|
+
"Add signature text...": "Ajouter un texte de signature...",
|
|
37
40
|
"Payment Terms": "Conditions de paiement",
|
|
38
41
|
"Add payment terms...": "Ajoutez des conditions de paiement...",
|
|
39
42
|
Quantity: "Quantité",
|
|
@@ -70,5 +73,7 @@ export default {
|
|
|
70
73
|
"Cette facture ne sera pas fiscalisée (transaction non nationale)",
|
|
71
74
|
"Tax Clause": "Clause fiscale",
|
|
72
75
|
"Add tax clause...": "Ajouter une clause fiscale...",
|
|
76
|
+
Footer: "Pied de page",
|
|
77
|
+
"Add document footer...": "Ajouter un pied de page...",
|
|
73
78
|
"Reverse charge - tax exempt EU B2B sale": "Autoliquidation - vente B2B UE exonérée de taxe",
|
|
74
79
|
} as const;
|
|
@@ -33,6 +33,9 @@ export default {
|
|
|
33
33
|
Note: "Napomena",
|
|
34
34
|
"Insert variable": "Umetni varijablu",
|
|
35
35
|
"Add payment instructions, terms, or other notes...": "Dodajte upute za plaćanje, uvjete ili druge napomene...",
|
|
36
|
+
// Signature field
|
|
37
|
+
Signature: "Potpis",
|
|
38
|
+
"Add signature text...": "Dodaj tekst potpisa...",
|
|
36
39
|
"Payment Terms": "Uvjeti plaćanja",
|
|
37
40
|
"Add payment terms...": "Dodajte uvjete plaćanja...",
|
|
38
41
|
Quantity: "Količina",
|
|
@@ -69,5 +72,7 @@ export default {
|
|
|
69
72
|
"Ovaj račun neće biti fiskaliziran (nedomaća transakcija)",
|
|
70
73
|
"Tax Clause": "Porezna klauzula",
|
|
71
74
|
"Add tax clause...": "Dodajte poreznu klauzulu...",
|
|
75
|
+
Footer: "Podnožje",
|
|
76
|
+
"Add document footer...": "Dodajte podnožje dokumenta...",
|
|
72
77
|
"Reverse charge - tax exempt EU B2B sale": "Prijenos porezne obveze - porezno oslobođena EU B2B prodaja",
|
|
73
78
|
} as const;
|
|
@@ -33,6 +33,9 @@ export default {
|
|
|
33
33
|
Note: "Nota",
|
|
34
34
|
"Insert variable": "Inserisci variabile",
|
|
35
35
|
"Add payment instructions, terms, or other notes...": "Aggiungi istruzioni di pagamento, condizioni o altre note...",
|
|
36
|
+
// Signature field
|
|
37
|
+
Signature: "Firma",
|
|
38
|
+
"Add signature text...": "Aggiungi testo della firma...",
|
|
36
39
|
"Payment Terms": "Condizioni di pagamento",
|
|
37
40
|
"Add payment terms...": "Aggiungi condizioni di pagamento...",
|
|
38
41
|
Quantity: "Quantità",
|
|
@@ -69,5 +72,7 @@ export default {
|
|
|
69
72
|
"Questa fattura non sarà fiscalizzata (transazione non nazionale)",
|
|
70
73
|
"Tax Clause": "Clausola fiscale",
|
|
71
74
|
"Add tax clause...": "Aggiungi clausola fiscale...",
|
|
75
|
+
Footer: "Piè di pagina",
|
|
76
|
+
"Add document footer...": "Aggiungi piè di pagina del documento...",
|
|
72
77
|
"Reverse charge - tax exempt EU B2B sale": "Inversione contabile - vendita B2B UE esente da imposta",
|
|
73
78
|
} as const;
|
|
@@ -34,6 +34,9 @@ export default {
|
|
|
34
34
|
"Insert variable": "Variabele invoegen",
|
|
35
35
|
"Add payment instructions, terms, or other notes...":
|
|
36
36
|
"Voeg betalingsinstructies, voorwaarden of andere notities toe...",
|
|
37
|
+
// Signature field
|
|
38
|
+
Signature: "Handtekening",
|
|
39
|
+
"Add signature text...": "Handtekeningtekst toevoegen...",
|
|
37
40
|
"Payment Terms": "Betalingsvoorwaarden",
|
|
38
41
|
"Add payment terms...": "Voeg betalingsvoorwaarden toe...",
|
|
39
42
|
Quantity: "Aantal",
|
|
@@ -70,5 +73,7 @@ export default {
|
|
|
70
73
|
"Deze factuur wordt niet gefiscaliseerd (niet-binnenlandse transactie)",
|
|
71
74
|
"Tax Clause": "Belastingclausule",
|
|
72
75
|
"Add tax clause...": "Belastingclausule toevoegen...",
|
|
76
|
+
Footer: "Voettekst",
|
|
77
|
+
"Add document footer...": "Documentvoettekst toevoegen...",
|
|
73
78
|
"Reverse charge - tax exempt EU B2B sale": "Verlegging - belastingvrijgestelde EU B2B verkoop",
|
|
74
79
|
} as const;
|
|
@@ -33,6 +33,9 @@ export default {
|
|
|
33
33
|
Note: "Uwaga",
|
|
34
34
|
"Insert variable": "Wstaw zmienną",
|
|
35
35
|
"Add payment instructions, terms, or other notes...": "Dodaj instrukcje płatności, warunki lub inne uwagi...",
|
|
36
|
+
// Signature field
|
|
37
|
+
Signature: "Podpis",
|
|
38
|
+
"Add signature text...": "Dodaj tekst podpisu...",
|
|
36
39
|
"Payment Terms": "Warunki płatności",
|
|
37
40
|
"Add payment terms...": "Dodaj warunki płatności...",
|
|
38
41
|
Quantity: "Ilość",
|
|
@@ -69,5 +72,7 @@ export default {
|
|
|
69
72
|
"Ta faktura nie będzie fiskalizowana (transakcja niekrajowa)",
|
|
70
73
|
"Tax Clause": "Klauzula podatkowa",
|
|
71
74
|
"Add tax clause...": "Dodaj klauzulę podatkową...",
|
|
75
|
+
Footer: "Stopka",
|
|
76
|
+
"Add document footer...": "Dodaj stopkę dokumentu...",
|
|
72
77
|
"Reverse charge - tax exempt EU B2B sale": "Odwrotne obciążenie - zwolniona z podatku sprzedaż EU B2B",
|
|
73
78
|
} as const;
|
|
@@ -34,6 +34,9 @@ export default {
|
|
|
34
34
|
"Insert variable": "Inserir variável",
|
|
35
35
|
"Add payment instructions, terms, or other notes...":
|
|
36
36
|
"Adicione instruções de pagamento, condições ou outras notas...",
|
|
37
|
+
// Signature field
|
|
38
|
+
Signature: "Assinatura",
|
|
39
|
+
"Add signature text...": "Adicionar texto de assinatura...",
|
|
37
40
|
"Payment Terms": "Condições de pagamento",
|
|
38
41
|
"Add payment terms...": "Adicione condições de pagamento...",
|
|
39
42
|
Quantity: "Quantidade",
|
|
@@ -70,5 +73,7 @@ export default {
|
|
|
70
73
|
"Esta fatura não será fiscalizada (transação não nacional)",
|
|
71
74
|
"Tax Clause": "Cláusula fiscal",
|
|
72
75
|
"Add tax clause...": "Adicionar cláusula fiscal...",
|
|
76
|
+
Footer: "Rodapé",
|
|
77
|
+
"Add document footer...": "Adicionar rodapé do documento...",
|
|
73
78
|
"Reverse charge - tax exempt EU B2B sale": "Autoliquidação - venda B2B UE isenta de imposto",
|
|
74
79
|
} as const;
|
|
@@ -34,6 +34,9 @@ export default {
|
|
|
34
34
|
Note: "Opomba",
|
|
35
35
|
"Insert variable": "Vstavi spremenljivko",
|
|
36
36
|
"Add payment instructions, terms, or other notes...": "Dodajte navodila za plačilo, pogoje ali druge opombe...",
|
|
37
|
+
// Signature field
|
|
38
|
+
Signature: "Podpis",
|
|
39
|
+
"Add signature text...": "Dodaj besedilo podpisa...",
|
|
37
40
|
// Payment terms field
|
|
38
41
|
"Payment Terms": "Plačilni pogoji",
|
|
39
42
|
"Add payment terms...": "Dodajte plačilne pogoje...",
|
|
@@ -75,5 +78,7 @@ export default {
|
|
|
75
78
|
"Ta račun ne bo fiskaliziran (nedomača transakcija)",
|
|
76
79
|
"Tax Clause": "Davčna klavzula",
|
|
77
80
|
"Add tax clause...": "Dodajte davčno klavzulo...",
|
|
81
|
+
Footer: "Noga dokumenta",
|
|
82
|
+
"Add document footer...": "Dodajte nogo dokumenta...",
|
|
78
83
|
"Reverse charge - tax exempt EU B2B sale": "Obrnjena davčna obveznost - davka oproščena EU B2B prodaja",
|
|
79
84
|
} as const;
|