@spaceinvoices/react-ui 0.4.12 → 0.4.32
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/common/autocomplete.tsx +7 -1
- package/src/components/advance-invoices/advance-invoices.hooks.ts +35 -44
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +190 -73
- package/src/components/advance-invoices/create/locales/bg.ts +17 -9
- package/src/components/advance-invoices/create/locales/cs.ts +17 -9
- package/src/components/advance-invoices/create/locales/de.ts +15 -7
- package/src/components/advance-invoices/create/locales/en.ts +15 -7
- package/src/components/advance-invoices/create/locales/es.ts +15 -7
- package/src/components/advance-invoices/create/locales/et.ts +17 -9
- package/src/components/advance-invoices/create/locales/fi.ts +18 -10
- package/src/components/advance-invoices/create/locales/fr.ts +16 -8
- package/src/components/advance-invoices/create/locales/hr.ts +15 -7
- package/src/components/advance-invoices/create/locales/is.ts +17 -9
- package/src/components/advance-invoices/create/locales/it.ts +15 -7
- package/src/components/advance-invoices/create/locales/nb.ts +17 -9
- package/src/components/advance-invoices/create/locales/nl.ts +15 -7
- package/src/components/advance-invoices/create/locales/pl.ts +17 -9
- package/src/components/advance-invoices/create/locales/pt.ts +16 -8
- package/src/components/advance-invoices/create/locales/sk.ts +17 -9
- package/src/components/advance-invoices/create/locales/sl.ts +14 -5
- package/src/components/advance-invoices/create/locales/sv.ts +17 -9
- package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +47 -1
- package/src/components/advance-invoices/list/list-table.tsx +2 -1
- package/src/components/credit-notes/create/create-credit-note-form.tsx +254 -85
- package/src/components/credit-notes/create/locales/bg.ts +22 -8
- package/src/components/credit-notes/create/locales/cs.ts +22 -8
- package/src/components/credit-notes/create/locales/de.ts +20 -7
- package/src/components/credit-notes/create/locales/en.ts +19 -5
- package/src/components/credit-notes/create/locales/es.ts +20 -7
- package/src/components/credit-notes/create/locales/et.ts +22 -8
- package/src/components/credit-notes/create/locales/fi.ts +23 -9
- package/src/components/credit-notes/create/locales/fr.ts +21 -8
- package/src/components/credit-notes/create/locales/hr.ts +20 -7
- package/src/components/credit-notes/create/locales/is.ts +22 -8
- package/src/components/credit-notes/create/locales/it.ts +20 -7
- package/src/components/credit-notes/create/locales/nb.ts +22 -8
- package/src/components/credit-notes/create/locales/nl.ts +20 -7
- package/src/components/credit-notes/create/locales/pl.ts +22 -9
- package/src/components/credit-notes/create/locales/pt.ts +21 -8
- package/src/components/credit-notes/create/locales/sk.ts +22 -8
- package/src/components/credit-notes/create/locales/sl.ts +19 -5
- package/src/components/credit-notes/create/locales/sv.ts +22 -8
- package/src/components/credit-notes/create/prepare-credit-note-submission.ts +35 -1
- package/src/components/credit-notes/credit-notes.hooks.ts +21 -2
- package/src/components/credit-notes/list/list-table.tsx +2 -1
- package/src/components/delivery-notes/create/create-delivery-note-form.tsx +133 -30
- package/src/components/delivery-notes/create/locales/bg.ts +1 -0
- package/src/components/delivery-notes/create/locales/cs.ts +1 -0
- package/src/components/delivery-notes/create/locales/de.ts +1 -0
- package/src/components/delivery-notes/create/locales/en.ts +1 -0
- package/src/components/delivery-notes/create/locales/es.ts +1 -0
- package/src/components/delivery-notes/create/locales/et.ts +1 -0
- package/src/components/delivery-notes/create/locales/fi.ts +1 -0
- package/src/components/delivery-notes/create/locales/fr.ts +1 -0
- package/src/components/delivery-notes/create/locales/hr.ts +1 -0
- package/src/components/delivery-notes/create/locales/is.ts +1 -0
- package/src/components/delivery-notes/create/locales/it.ts +1 -0
- package/src/components/delivery-notes/create/locales/nb.ts +1 -0
- package/src/components/delivery-notes/create/locales/nl.ts +1 -0
- package/src/components/delivery-notes/create/locales/pl.ts +1 -0
- package/src/components/delivery-notes/create/locales/pt.ts +1 -0
- package/src/components/delivery-notes/create/locales/sk.ts +1 -0
- package/src/components/delivery-notes/create/locales/sl.ts +1 -0
- package/src/components/delivery-notes/create/locales/sv.ts +1 -0
- package/src/components/delivery-notes/create/prepare-delivery-note-submission.ts +34 -1
- package/src/components/delivery-notes/delivery-notes.hooks.ts +15 -1
- package/src/components/delivery-notes/list/list-table.tsx +2 -1
- package/src/components/documents/create/custom-create-template.ts +151 -0
- package/src/components/documents/create/document-add-item-form.tsx +12 -8
- package/src/components/documents/create/document-add-item-tax-rate-field.tsx +1 -2
- package/src/components/documents/create/document-date-validation.ts +111 -0
- package/src/components/documents/create/document-details-section.tsx +93 -48
- package/src/components/documents/create/document-form-item.ts +67 -0
- package/src/components/documents/create/document-item-validation.ts +6 -2
- package/src/components/documents/create/form-types.ts +2 -2
- package/src/components/documents/create/linked-documents-info.tsx +2 -11
- package/src/components/documents/create/live-preview.tsx +3 -3
- package/src/components/documents/create/mark-as-paid-section.tsx +14 -11
- package/src/components/documents/create/payment-rows.ts +30 -0
- package/src/components/documents/create/prepare-document-submission.ts +143 -103
- package/src/components/documents/create/prepare-preview-data.ts +12 -0
- package/src/components/documents/create/preserved-expected-total.ts +90 -0
- package/src/components/documents/public/public-document-summary.tsx +6 -13
- package/src/components/documents/view/document-actions-bar.tsx +10 -1
- package/src/components/documents/view/document-details-card.tsx +4 -12
- package/src/components/documents/view/document-relations-list.tsx +4 -4
- package/src/components/documents/view/locales/bg.ts +8 -8
- package/src/components/documents/view/locales/cs.ts +8 -8
- package/src/components/documents/view/locales/de.ts +1 -1
- package/src/components/documents/view/locales/en.ts +14 -14
- package/src/components/documents/view/locales/es.ts +1 -1
- package/src/components/documents/view/locales/et.ts +8 -8
- package/src/components/documents/view/locales/fi.ts +10 -10
- package/src/components/documents/view/locales/fr.ts +1 -1
- package/src/components/documents/view/locales/hr.ts +6 -6
- package/src/components/documents/view/locales/is.ts +8 -8
- package/src/components/documents/view/locales/it.ts +1 -1
- package/src/components/documents/view/locales/nb.ts +8 -8
- package/src/components/documents/view/locales/nl.ts +1 -1
- package/src/components/documents/view/locales/pl.ts +1 -1
- package/src/components/documents/view/locales/pt.ts +1 -1
- package/src/components/documents/view/locales/sk.ts +8 -8
- package/src/components/documents/view/locales/sl.ts +9 -9
- package/src/components/documents/view/locales/sv.ts +1 -1
- package/src/components/documents/view/use-document-download.ts +2 -2
- package/src/components/entities/entity-settings-form/locales/bg.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/cs.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/de.ts +9 -0
- package/src/components/entities/entity-settings-form/locales/en.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/es.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/et.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/fi.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/hr.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/is.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/nb.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/pl.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/pt.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/sk.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/sl.ts +12 -4
- package/src/components/entities/entity-settings-form/locales/sv.ts +7 -0
- package/src/components/entities/settings/tax-rules-settings-form.tsx +36 -0
- package/src/components/estimates/create/create-estimate-form.tsx +196 -47
- package/src/components/estimates/create/locales/bg.ts +6 -5
- package/src/components/estimates/create/locales/cs.ts +6 -5
- package/src/components/estimates/create/locales/de.ts +4 -3
- package/src/components/estimates/create/locales/en.ts +4 -3
- package/src/components/estimates/create/locales/es.ts +4 -3
- package/src/components/estimates/create/locales/et.ts +6 -5
- package/src/components/estimates/create/locales/fi.ts +9 -8
- package/src/components/estimates/create/locales/fr.ts +4 -3
- package/src/components/estimates/create/locales/hr.ts +7 -6
- package/src/components/estimates/create/locales/is.ts +6 -5
- package/src/components/estimates/create/locales/it.ts +4 -3
- package/src/components/estimates/create/locales/nb.ts +6 -5
- package/src/components/estimates/create/locales/nl.ts +4 -3
- package/src/components/estimates/create/locales/pl.ts +4 -3
- package/src/components/estimates/create/locales/pt.ts +4 -3
- package/src/components/estimates/create/locales/sk.ts +6 -5
- package/src/components/estimates/create/locales/sl.ts +7 -6
- package/src/components/estimates/create/locales/sv.ts +6 -5
- package/src/components/estimates/create/prepare-estimate-submission.ts +37 -3
- package/src/components/estimates/estimates.hooks.ts +11 -2
- package/src/components/estimates/list/list-table.tsx +11 -1
- package/src/components/estimates/list/locales/bg.ts +2 -0
- package/src/components/estimates/list/locales/cs.ts +2 -0
- package/src/components/estimates/list/locales/de.ts +2 -0
- package/src/components/estimates/list/locales/en.ts +2 -0
- package/src/components/estimates/list/locales/es.ts +2 -0
- package/src/components/estimates/list/locales/et.ts +2 -0
- package/src/components/estimates/list/locales/fi.ts +2 -0
- package/src/components/estimates/list/locales/fr.ts +2 -0
- package/src/components/estimates/list/locales/hr.ts +7 -5
- package/src/components/estimates/list/locales/is.ts +2 -0
- package/src/components/estimates/list/locales/it.ts +2 -0
- package/src/components/estimates/list/locales/nb.ts +2 -0
- package/src/components/estimates/list/locales/nl.ts +2 -0
- package/src/components/estimates/list/locales/pl.ts +2 -0
- package/src/components/estimates/list/locales/pt.ts +2 -0
- package/src/components/estimates/list/locales/sk.ts +2 -0
- package/src/components/estimates/list/locales/sl.ts +9 -7
- package/src/components/estimates/list/locales/sv.ts +2 -0
- package/src/components/invoices/create/create-invoice-form.tsx +231 -60
- package/src/components/invoices/create/locales/bg.ts +23 -14
- package/src/components/invoices/create/locales/cs.ts +23 -14
- package/src/components/invoices/create/locales/de.ts +17 -9
- package/src/components/invoices/create/locales/en.ts +16 -7
- package/src/components/invoices/create/locales/es.ts +18 -9
- package/src/components/invoices/create/locales/et.ts +23 -14
- package/src/components/invoices/create/locales/fi.ts +24 -15
- package/src/components/invoices/create/locales/fr.ts +19 -11
- package/src/components/invoices/create/locales/hr.ts +18 -9
- package/src/components/invoices/create/locales/is.ts +23 -14
- package/src/components/invoices/create/locales/it.ts +19 -11
- package/src/components/invoices/create/locales/nb.ts +23 -14
- package/src/components/invoices/create/locales/nl.ts +19 -10
- package/src/components/invoices/create/locales/pl.ts +19 -11
- package/src/components/invoices/create/locales/pt.ts +19 -10
- package/src/components/invoices/create/locales/sk.ts +23 -14
- package/src/components/invoices/create/locales/sl.ts +17 -9
- package/src/components/invoices/create/locales/sv.ts +17 -8
- package/src/components/invoices/create/prepare-invoice-submission.ts +55 -1
- package/src/components/invoices/invoices.hooks.ts +11 -2
- package/src/components/invoices/list/list-table.tsx +2 -1
- package/src/components/invoices/send-email-dialog/locales/bg.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/cs.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/de.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/en.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/es.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/et.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/fi.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/fr.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/hr.ts +8 -3
- package/src/components/invoices/send-email-dialog/locales/is.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/it.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/nb.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/nl.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/pl.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/pt.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/sk.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/sl.ts +8 -3
- package/src/components/invoices/send-email-dialog/locales/sv.ts +5 -0
- package/src/components/invoices/send-email-dialog/send-email-dialog.tsx +2 -1
- package/src/components/items/item-combobox.tsx +4 -4
- package/src/components/payments/create-payment-form/create-payment-form.tsx +5 -2
- package/src/components/payments/edit-payment-form/edit-payment-form.tsx +5 -1
- package/src/components/recurring-invoices/create-recurring-invoice-form/create-recurring-invoice-form.tsx +98 -22
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/bg.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/cs.ts +25 -25
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/et.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/fi.ts +36 -36
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/is.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/nb.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sk.ts +25 -25
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sv.ts +26 -26
- package/src/components/recurring-invoices/list/list-row-actions.tsx +9 -1
- package/src/components/recurring-invoices/list/list-table.tsx +53 -5
- package/src/components/recurring-invoices/list/locales/bg.ts +4 -0
- package/src/components/recurring-invoices/list/locales/cs.ts +4 -0
- package/src/components/recurring-invoices/list/locales/de.ts +4 -0
- package/src/components/recurring-invoices/list/locales/en.ts +4 -0
- package/src/components/recurring-invoices/list/locales/es.ts +4 -0
- package/src/components/recurring-invoices/list/locales/et.ts +4 -0
- package/src/components/recurring-invoices/list/locales/fi.ts +4 -0
- package/src/components/recurring-invoices/list/locales/fr.ts +4 -0
- package/src/components/recurring-invoices/list/locales/hr.ts +4 -0
- package/src/components/recurring-invoices/list/locales/is.ts +4 -0
- package/src/components/recurring-invoices/list/locales/it.ts +4 -0
- package/src/components/recurring-invoices/list/locales/nb.ts +4 -0
- package/src/components/recurring-invoices/list/locales/nl.ts +4 -0
- package/src/components/recurring-invoices/list/locales/pl.ts +4 -0
- package/src/components/recurring-invoices/list/locales/pt.ts +4 -0
- package/src/components/recurring-invoices/list/locales/sk.ts +4 -0
- package/src/components/recurring-invoices/list/locales/sl.ts +4 -0
- package/src/components/recurring-invoices/list/locales/sv.ts +4 -0
- package/src/components/tax-reports/slovenia-tax-profile-step.tsx +4 -1
- package/src/components/tax-reports/slovenia-yearly-export-form.tsx +3 -0
- package/src/components/tax-reports/slovenia-yearly-review-step.tsx +2 -1
- package/src/components/ui/form.tsx +5 -13
- package/src/components/ui/select.tsx +0 -1
- package/src/components/ui/sidebar.tsx +2 -2
- package/src/generate-schemas.ts +132 -99
- package/src/generated/schemas/acceptentityinvitation_body.ts +4 -3
- package/src/generated/schemas/accountwebhook.ts +4 -8
- package/src/generated/schemas/addentityuser_body.ts +4 -3
- package/src/generated/schemas/advanceinvoice.ts +167 -168
- package/src/generated/schemas/authorizeshopify_body.ts +4 -3
- package/src/generated/schemas/calculatedocumentpreview.ts +120 -0
- package/src/generated/schemas/checktransactiontype.ts +35 -0
- package/src/generated/schemas/creditnote.ts +203 -76
- package/src/generated/schemas/customadvanceinvoice.ts +172 -165
- package/src/generated/schemas/customcreditnote.ts +183 -155
- package/src/generated/schemas/customdeliverynote.ts +166 -0
- package/src/generated/schemas/customer.ts +4 -8
- package/src/generated/schemas/customestimate.ts +123 -97
- package/src/generated/schemas/customincomingpurchasedocument.ts +142 -0
- package/src/generated/schemas/custominvoice.ts +183 -154
- package/src/generated/schemas/deliverynote.ts +124 -79
- package/src/generated/schemas/einvoice.ts +19 -0
- package/src/generated/schemas/einvoicingsettings.ts +21 -0
- package/src/generated/schemas/einvoicingsupplier.ts +45 -0
- package/src/generated/schemas/entity.ts +44 -40
- package/src/generated/schemas/entityapikey.ts +1 -3
- package/src/generated/schemas/entityuserrole.ts +1 -3
- package/src/generated/schemas/estimate.ts +120 -127
- package/src/generated/schemas/exportsloveniavodxml_body.ts +4 -3
- package/src/generated/schemas/exportsloveniayearlynormiranireport_body.ts +4 -3
- package/src/generated/schemas/finadevice.ts +15 -0
- package/src/generated/schemas/finalizedocument.ts +52 -0
- package/src/generated/schemas/finapremise.ts +15 -0
- package/src/generated/schemas/finasettings.ts +1 -3
- package/src/generated/schemas/furselectronicdevice.ts +15 -0
- package/src/generated/schemas/furssettings.ts +1 -3
- package/src/generated/schemas/image.ts +15 -0
- package/src/generated/schemas/incomingpurchasedocument.ts +7 -27
- package/src/generated/schemas/incomingpurchasedocumentattachment.ts +15 -0
- package/src/generated/schemas/incomingpurchasedocumentpayment.ts +1 -3
- package/src/generated/schemas/index.ts +20 -5
- package/src/generated/schemas/invoice.ts +182 -183
- package/src/generated/schemas/item.ts +6 -10
- package/src/generated/schemas/legacymigrationauth.ts +18 -0
- package/src/generated/schemas/me.ts +2 -24
- package/src/generated/schemas/migrationjob.ts +20 -0
- package/src/generated/schemas/order.ts +4 -8
- package/src/generated/schemas/orderintegration.ts +4 -8
- package/src/generated/schemas/payment.ts +4 -8
- package/src/generated/schemas/ptatcudseries.ts +1 -3
- package/src/generated/schemas/queryentitystats.ts +15 -0
- package/src/generated/schemas/recurringinvoice.ts +4 -8
- package/src/generated/schemas/registerfursmovablepremise_body.ts +1 -3
- package/src/generated/schemas/registerfursrealestatepremise_body.ts +1 -3
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +10 -16
- package/src/generated/schemas/rendercreditnotepreview_body.ts +10 -16
- package/src/generated/schemas/renderdeliverynotepreview_body.ts +9 -5
- package/src/generated/schemas/renderestimatepreview_body.ts +11 -7
- package/src/generated/schemas/renderinvoicepreview_body.ts +10 -16
- package/src/generated/schemas/reviewsloveniayearlynormiranireport.ts +15 -0
- package/src/generated/schemas/searcheinvoicingcustomer.ts +18 -0
- package/src/generated/schemas/senddocument_body.ts +1 -3
- package/src/generated/schemas/sendemail_body.ts +2 -24
- package/src/generated/schemas/sloveniataxprofile.ts +8 -10
- package/src/generated/schemas/starteslogexport_body.ts +4 -3
- package/src/generated/schemas/startpdfexport_body.ts +8 -87
- package/src/generated/schemas/stripeappconnect_body.ts +4 -3
- package/src/generated/schemas/stripeappcreateinvoice_body.ts +4 -6
- package/src/generated/schemas/stripeappmarketplaceauthorize.ts +15 -0
- package/src/generated/schemas/stripeappupdatesettings_body.ts +6 -6
- package/src/generated/schemas/supplier.ts +4 -8
- package/src/generated/schemas/syncshopifyorders_body.ts +4 -3
- package/src/generated/schemas/tax.ts +6 -8
- package/src/generated/schemas/uploadfile_body.ts +1 -3
- package/src/generated/schemas/uploadfurscertificate_body.ts +6 -6
- package/src/generated/schemas/userfinasettings.ts +1 -3
- package/src/generated/schemas/userfurssettings.ts +1 -3
- package/src/generated/schemas/userptsettings.ts +1 -3
- package/src/generated/schemas/voidinvoice_body.ts +8 -3
- package/src/generated/schemas/webhook.ts +4 -8
- package/src/generated/schemas/wlsubscriptionbillingemail.ts +17 -0
- package/src/hooks/use-duplicate-document.ts +74 -32
- package/src/lib/date-only.ts +58 -0
- package/src/lib/document-display.ts +18 -0
- package/src/lib/payment-display.ts +5 -3
- package/src/lib/schemas/shared.ts +11 -0
- package/src/providers/wl-subscription-provider.tsx +5 -0
- package/src/generated/schemas/account_webhook.ts +0 -43
- package/src/generated/schemas/previewadvanceinvoice_body.ts +0 -354
- package/src/generated/schemas/previewestimate_body.ts +0 -309
- package/src/generated/schemas/registerfinamovablepremise_body.ts +0 -26
- package/src/generated/schemas/registerfinarealestatepremise_body.ts +0 -37
- package/src/generated/schemas/renderdocument_body.ts +0 -594
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
2
|
-
import type { CreateRecurringInvoiceBody, RecurringInvoice } from "@spaceinvoices/js-sdk";
|
|
2
|
+
import type { CreateRecurringInvoiceBody, RecurringInvoice, UpdateRecurringInvoiceBody } from "@spaceinvoices/js-sdk";
|
|
3
3
|
import { CalendarIcon } from "lucide-react";
|
|
4
|
+
import { useEffect, useMemo } from "react";
|
|
4
5
|
import { useForm, useWatch } from "react-hook-form";
|
|
5
6
|
import { Button } from "@/ui/components/ui/button";
|
|
6
7
|
import { Calendar } from "@/ui/components/ui/calendar";
|
|
@@ -23,27 +24,45 @@ import type { ComponentTranslationProps } from "@/ui/lib/translation";
|
|
|
23
24
|
import { createTranslation } from "@/ui/lib/translation";
|
|
24
25
|
import { cn } from "@/ui/lib/utils";
|
|
25
26
|
|
|
26
|
-
import { useCreateRecurringInvoice } from "../recurring-invoices.hooks";
|
|
27
|
+
import { useCreateRecurringInvoice, useUpdateRecurringInvoice } from "../recurring-invoices.hooks";
|
|
28
|
+
import bg from "./locales/bg";
|
|
29
|
+
import cs from "./locales/cs";
|
|
27
30
|
import de from "./locales/de";
|
|
31
|
+
import en from "./locales/en";
|
|
28
32
|
import es from "./locales/es";
|
|
33
|
+
import et from "./locales/et";
|
|
34
|
+
import fi from "./locales/fi";
|
|
29
35
|
import fr from "./locales/fr";
|
|
30
36
|
import hr from "./locales/hr";
|
|
37
|
+
import is from "./locales/is";
|
|
31
38
|
import it from "./locales/it";
|
|
39
|
+
import nb from "./locales/nb";
|
|
32
40
|
import nl from "./locales/nl";
|
|
33
41
|
import pl from "./locales/pl";
|
|
34
42
|
import pt from "./locales/pt";
|
|
43
|
+
import sk from "./locales/sk";
|
|
35
44
|
import sl from "./locales/sl";
|
|
45
|
+
import sv from "./locales/sv";
|
|
36
46
|
|
|
37
47
|
const translations = {
|
|
48
|
+
en,
|
|
38
49
|
sl,
|
|
50
|
+
bg,
|
|
51
|
+
cs,
|
|
39
52
|
de,
|
|
40
|
-
it,
|
|
41
|
-
fr,
|
|
42
53
|
es,
|
|
43
|
-
|
|
54
|
+
et,
|
|
55
|
+
fi,
|
|
56
|
+
fr,
|
|
57
|
+
hr,
|
|
58
|
+
is,
|
|
59
|
+
it,
|
|
60
|
+
nb,
|
|
44
61
|
nl,
|
|
45
62
|
pl,
|
|
46
|
-
|
|
63
|
+
pt,
|
|
64
|
+
sk,
|
|
65
|
+
sv,
|
|
47
66
|
} as const;
|
|
48
67
|
|
|
49
68
|
const FREQUENCY_LABELS: Record<string, string> = {
|
|
@@ -88,6 +107,7 @@ function formatDateToYMD(date: Date): string {
|
|
|
88
107
|
type CreateRecurringInvoiceFormProps = {
|
|
89
108
|
entityId: string;
|
|
90
109
|
documentId: string;
|
|
110
|
+
recurringInvoice?: RecurringInvoice | null;
|
|
91
111
|
onSuccess?: (recurringInvoice: RecurringInvoice) => void;
|
|
92
112
|
onError?: (error: Error) => void;
|
|
93
113
|
allowDrafts?: boolean;
|
|
@@ -97,6 +117,7 @@ type CreateRecurringInvoiceFormProps = {
|
|
|
97
117
|
export default function CreateRecurringInvoiceForm({
|
|
98
118
|
entityId,
|
|
99
119
|
documentId,
|
|
120
|
+
recurringInvoice,
|
|
100
121
|
onSuccess,
|
|
101
122
|
onError,
|
|
102
123
|
allowDrafts = true,
|
|
@@ -110,25 +131,34 @@ export default function CreateRecurringInvoiceForm({
|
|
|
110
131
|
const formatDisplayDate = (value?: string) =>
|
|
111
132
|
value ? new Date(`${value}T00:00:00`).toLocaleDateString(i18nProps.locale) : undefined;
|
|
112
133
|
|
|
134
|
+
const defaultValues = useMemo<CreateRecurringInvoiceSchema>(
|
|
135
|
+
() => ({
|
|
136
|
+
document_id: documentId,
|
|
137
|
+
name: recurringInvoice?.name ?? "",
|
|
138
|
+
frequency: recurringInvoice?.frequency ?? "monthly",
|
|
139
|
+
interval: recurringInvoice?.interval ?? 1,
|
|
140
|
+
day_of_week: recurringInvoice?.day_of_week ?? null,
|
|
141
|
+
day_of_month: recurringInvoice?.day_of_month ?? null,
|
|
142
|
+
month_of_year: recurringInvoice?.month_of_year ?? null,
|
|
143
|
+
start_date: recurringInvoice?.start_date ?? formatDateToYMD(new Date()),
|
|
144
|
+
end_date: recurringInvoice?.end_date ?? undefined,
|
|
145
|
+
auto_send: recurringInvoice?.auto_send ?? false,
|
|
146
|
+
create_as_draft: recurringInvoice?.create_as_draft ?? false,
|
|
147
|
+
}),
|
|
148
|
+
[documentId, recurringInvoice],
|
|
149
|
+
);
|
|
150
|
+
|
|
113
151
|
const form = useForm<CreateRecurringInvoiceSchema>({
|
|
114
152
|
resolver: zodResolver(createRecurringInvoiceSchema),
|
|
115
|
-
defaultValues
|
|
116
|
-
document_id: documentId,
|
|
117
|
-
name: "",
|
|
118
|
-
frequency: "monthly",
|
|
119
|
-
interval: 1,
|
|
120
|
-
day_of_week: null,
|
|
121
|
-
day_of_month: null,
|
|
122
|
-
month_of_year: null,
|
|
123
|
-
start_date: formatDateToYMD(new Date()),
|
|
124
|
-
end_date: undefined,
|
|
125
|
-
auto_send: false,
|
|
126
|
-
create_as_draft: false,
|
|
127
|
-
},
|
|
153
|
+
defaultValues,
|
|
128
154
|
});
|
|
129
155
|
|
|
130
156
|
const frequency = useWatch({ control: form.control, name: "frequency" });
|
|
131
157
|
|
|
158
|
+
useEffect(() => {
|
|
159
|
+
form.reset(defaultValues);
|
|
160
|
+
}, [defaultValues, form]);
|
|
161
|
+
|
|
132
162
|
const { mutate: createRecurringInvoice, isPending } = useCreateRecurringInvoice({
|
|
133
163
|
entityId,
|
|
134
164
|
onSuccess: (recurringInvoice, _variables, _context) => {
|
|
@@ -144,8 +174,54 @@ export default function CreateRecurringInvoiceForm({
|
|
|
144
174
|
},
|
|
145
175
|
});
|
|
146
176
|
|
|
177
|
+
const { mutate: updateRecurringInvoice, isPending: isUpdating } = useUpdateRecurringInvoice({
|
|
178
|
+
entityId,
|
|
179
|
+
onSuccess: (updatedRecurringInvoice, _variables, _context) => {
|
|
180
|
+
onSuccess?.(updatedRecurringInvoice);
|
|
181
|
+
},
|
|
182
|
+
onError: (error, _variables, _context) => {
|
|
183
|
+
form.setError("root", {
|
|
184
|
+
type: "submit",
|
|
185
|
+
message: t("There was an error creating the schedule"),
|
|
186
|
+
});
|
|
187
|
+
onError?.(error);
|
|
188
|
+
},
|
|
189
|
+
});
|
|
190
|
+
|
|
191
|
+
const buildSubmitPayload = (values: CreateRecurringInvoiceSchema) => {
|
|
192
|
+
const payload: CreateRecurringInvoiceBody = {
|
|
193
|
+
document_id: documentId,
|
|
194
|
+
name: values.name,
|
|
195
|
+
frequency: values.frequency,
|
|
196
|
+
interval: values.interval,
|
|
197
|
+
start_date: values.start_date,
|
|
198
|
+
end_date: values.end_date,
|
|
199
|
+
auto_send: values.auto_send,
|
|
200
|
+
create_as_draft: values.create_as_draft,
|
|
201
|
+
day_of_week: values.frequency === "weekly" ? values.day_of_week : null,
|
|
202
|
+
day_of_month: values.frequency === "monthly" || values.frequency === "yearly" ? values.day_of_month : null,
|
|
203
|
+
month_of_year: values.frequency === "yearly" ? values.month_of_year : null,
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
return payload;
|
|
207
|
+
};
|
|
208
|
+
|
|
147
209
|
const onSubmit = async (values: CreateRecurringInvoiceSchema) => {
|
|
148
|
-
|
|
210
|
+
const payload = buildSubmitPayload(values);
|
|
211
|
+
|
|
212
|
+
if (recurringInvoice) {
|
|
213
|
+
const { document_id, ...updateData } = payload;
|
|
214
|
+
updateRecurringInvoice({
|
|
215
|
+
id: recurringInvoice.id,
|
|
216
|
+
data: {
|
|
217
|
+
...updateData,
|
|
218
|
+
end_date: updateData.end_date ?? null,
|
|
219
|
+
} satisfies UpdateRecurringInvoiceBody,
|
|
220
|
+
});
|
|
221
|
+
return;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
createRecurringInvoice(payload);
|
|
149
225
|
};
|
|
150
226
|
|
|
151
227
|
const handleSubmitClick = () => {
|
|
@@ -182,7 +258,7 @@ export default function CreateRecurringInvoiceForm({
|
|
|
182
258
|
{t("Frequency")}
|
|
183
259
|
<span className="ml-1 text-red-500">*</span>
|
|
184
260
|
</FormLabel>
|
|
185
|
-
<Select onValueChange={field.onChange}
|
|
261
|
+
<Select onValueChange={field.onChange} value={field.value}>
|
|
186
262
|
<FormControl>
|
|
187
263
|
<SelectTrigger>
|
|
188
264
|
<SelectValue placeholder={t("Select frequency")}>
|
|
@@ -415,7 +491,7 @@ export default function CreateRecurringInvoiceForm({
|
|
|
415
491
|
) : null}
|
|
416
492
|
|
|
417
493
|
{renderSubmitButton?.({
|
|
418
|
-
isSubmitting: isPending || form.formState.isSubmitting,
|
|
494
|
+
isSubmitting: isPending || isUpdating || form.formState.isSubmitting,
|
|
419
495
|
submit: handleSubmitClick,
|
|
420
496
|
})}
|
|
421
497
|
</form>
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
Name: "Име",
|
|
3
|
-
"Enter schedule name": "
|
|
4
|
-
Frequency: "
|
|
5
|
-
"Select frequency": "
|
|
6
|
-
Daily: "
|
|
7
|
-
Weekly: "
|
|
3
|
+
"Enter schedule name": "Въведете име на графика",
|
|
4
|
+
Frequency: "Честота",
|
|
5
|
+
"Select frequency": "Изберете честота",
|
|
6
|
+
Daily: "Дневно",
|
|
7
|
+
Weekly: "Седмично",
|
|
8
8
|
Monthly: "Месечно",
|
|
9
9
|
Yearly: "Годишно",
|
|
10
|
-
Interval: "
|
|
11
|
-
"Day of Week": "
|
|
12
|
-
"Select day": "
|
|
13
|
-
Sunday: "
|
|
14
|
-
Monday: "
|
|
15
|
-
Tuesday: "
|
|
16
|
-
Wednesday: "
|
|
17
|
-
Thursday: "
|
|
18
|
-
Friday: "
|
|
19
|
-
Saturday: "
|
|
20
|
-
"Day of Month": "
|
|
10
|
+
Interval: "Интервал",
|
|
11
|
+
"Day of Week": "Ден от седмицата",
|
|
12
|
+
"Select day": "Изберете ден",
|
|
13
|
+
Sunday: "Неделя",
|
|
14
|
+
Monday: "Понеделник",
|
|
15
|
+
Tuesday: "Вторник",
|
|
16
|
+
Wednesday: "Сряда",
|
|
17
|
+
Thursday: "Четвъртък",
|
|
18
|
+
Friday: "Петък",
|
|
19
|
+
Saturday: "Събота",
|
|
20
|
+
"Day of Month": "Ден от месеца",
|
|
21
21
|
Month: "Месец",
|
|
22
|
-
"Select month": "
|
|
22
|
+
"Select month": "Изберете месец",
|
|
23
23
|
January: "Януари",
|
|
24
24
|
February: "Февруари",
|
|
25
25
|
March: "Март",
|
|
@@ -32,13 +32,13 @@ export default {
|
|
|
32
32
|
October: "Октомври",
|
|
33
33
|
November: "Ноември",
|
|
34
34
|
December: "Декември",
|
|
35
|
-
"Start Date": "
|
|
36
|
-
"End Date": "
|
|
37
|
-
"Pick a date": "
|
|
38
|
-
"No end date": "
|
|
39
|
-
"Auto-send": "
|
|
40
|
-
"Automatically email generated invoices": "
|
|
41
|
-
"Create as draft": "
|
|
42
|
-
"Generated invoices will be drafts for review": "
|
|
43
|
-
"There was an error creating the schedule": "
|
|
35
|
+
"Start Date": "Начална дата",
|
|
36
|
+
"End Date": "Крайна дата",
|
|
37
|
+
"Pick a date": "Изберете дата",
|
|
38
|
+
"No end date": "Без крайна дата",
|
|
39
|
+
"Auto-send": "Автоматично изпращане",
|
|
40
|
+
"Automatically email generated invoices": "Автоматично изпращайте генерираните фактури по имейл",
|
|
41
|
+
"Create as draft": "Създай като чернова",
|
|
42
|
+
"Generated invoices will be drafts for review": "Генерираните фактури ще бъдат чернови за преглед",
|
|
43
|
+
"There was an error creating the schedule": "Възникна грешка при създаването на графика",
|
|
44
44
|
} as const;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
Name: "Jméno",
|
|
3
|
-
"Enter schedule name": "
|
|
4
|
-
Frequency: "
|
|
5
|
-
"Select frequency": "
|
|
6
|
-
Daily: "
|
|
7
|
-
Weekly: "
|
|
3
|
+
"Enter schedule name": "Zadejte název plánu",
|
|
4
|
+
Frequency: "Frekvence",
|
|
5
|
+
"Select frequency": "Vyberte frekvenci",
|
|
6
|
+
Daily: "Denně",
|
|
7
|
+
Weekly: "Týdně",
|
|
8
8
|
Monthly: "Měsíčně",
|
|
9
9
|
Yearly: "Ročně",
|
|
10
10
|
Interval: "Interval",
|
|
11
|
-
"Day of Week": "
|
|
12
|
-
"Select day": "
|
|
13
|
-
Sunday: "
|
|
14
|
-
Monday: "
|
|
15
|
-
Tuesday: "
|
|
16
|
-
Wednesday: "
|
|
17
|
-
Thursday: "
|
|
18
|
-
Friday: "
|
|
19
|
-
Saturday: "
|
|
20
|
-
"Day of Month": "
|
|
11
|
+
"Day of Week": "Den v týdnu",
|
|
12
|
+
"Select day": "Vyberte den",
|
|
13
|
+
Sunday: "Neděle",
|
|
14
|
+
Monday: "Pondělí",
|
|
15
|
+
Tuesday: "Úterý",
|
|
16
|
+
Wednesday: "Středa",
|
|
17
|
+
Thursday: "Čtvrtek",
|
|
18
|
+
Friday: "Pátek",
|
|
19
|
+
Saturday: "Sobota",
|
|
20
|
+
"Day of Month": "Den v měsíci",
|
|
21
21
|
Month: "Měsíc",
|
|
22
|
-
"Select month": "
|
|
22
|
+
"Select month": "Vyberte měsíc",
|
|
23
23
|
January: "Leden",
|
|
24
24
|
February: "Únor",
|
|
25
25
|
March: "Březen",
|
|
@@ -32,13 +32,13 @@ export default {
|
|
|
32
32
|
October: "Říjen",
|
|
33
33
|
November: "Listopad",
|
|
34
34
|
December: "Prosinec",
|
|
35
|
-
"Start Date": "
|
|
36
|
-
"End Date": "
|
|
37
|
-
"Pick a date": "
|
|
38
|
-
"No end date": "
|
|
39
|
-
"Auto-send": "
|
|
40
|
-
"Automatically email generated invoices": "
|
|
41
|
-
"Create as draft": "
|
|
42
|
-
"Generated invoices will be drafts for review": "
|
|
43
|
-
"There was an error creating the schedule": "
|
|
35
|
+
"Start Date": "Datum zahájení",
|
|
36
|
+
"End Date": "Datum ukončení",
|
|
37
|
+
"Pick a date": "Vyberte datum",
|
|
38
|
+
"No end date": "Bez data ukončení",
|
|
39
|
+
"Auto-send": "Automatické odeslání",
|
|
40
|
+
"Automatically email generated invoices": "Automaticky posílat vygenerované faktury e-mailem",
|
|
41
|
+
"Create as draft": "Vytvořit jako koncept",
|
|
42
|
+
"Generated invoices will be drafts for review": "Vygenerované faktury budou koncepty ke kontrole",
|
|
43
|
+
"There was an error creating the schedule": "Při vytváření plánu došlo k chybě",
|
|
44
44
|
} as const;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
Name: "Nimi",
|
|
3
|
-
"Enter schedule name": "
|
|
4
|
-
Frequency: "
|
|
5
|
-
"Select frequency": "
|
|
6
|
-
Daily: "
|
|
7
|
-
Weekly: "
|
|
3
|
+
"Enter schedule name": "Sisesta ajakava nimi",
|
|
4
|
+
Frequency: "Sagedus",
|
|
5
|
+
"Select frequency": "Vali sagedus",
|
|
6
|
+
Daily: "Iga päev",
|
|
7
|
+
Weekly: "Iga nädal",
|
|
8
8
|
Monthly: "Kuutasuga",
|
|
9
9
|
Yearly: "Aastatasuga",
|
|
10
|
-
Interval: "
|
|
11
|
-
"Day of Week": "
|
|
12
|
-
"Select day": "
|
|
13
|
-
Sunday: "
|
|
14
|
-
Monday: "
|
|
15
|
-
Tuesday: "
|
|
16
|
-
Wednesday: "
|
|
17
|
-
Thursday: "
|
|
18
|
-
Friday: "
|
|
19
|
-
Saturday: "
|
|
20
|
-
"Day of Month": "
|
|
10
|
+
Interval: "Intervall",
|
|
11
|
+
"Day of Week": "Nädalapäev",
|
|
12
|
+
"Select day": "Vali päev",
|
|
13
|
+
Sunday: "Pühapäev",
|
|
14
|
+
Monday: "Esmaspäev",
|
|
15
|
+
Tuesday: "Teisipäev",
|
|
16
|
+
Wednesday: "Kolmapäev",
|
|
17
|
+
Thursday: "Neljapäev",
|
|
18
|
+
Friday: "Reede",
|
|
19
|
+
Saturday: "Laupäev",
|
|
20
|
+
"Day of Month": "Kuupäev kuus",
|
|
21
21
|
Month: "Kuu",
|
|
22
|
-
"Select month": "
|
|
22
|
+
"Select month": "Vali kuu",
|
|
23
23
|
January: "Jaanuar",
|
|
24
24
|
February: "Veebruar",
|
|
25
25
|
March: "Märts",
|
|
@@ -32,13 +32,13 @@ export default {
|
|
|
32
32
|
October: "Oktoober",
|
|
33
33
|
November: "November",
|
|
34
34
|
December: "Detsember",
|
|
35
|
-
"Start Date": "
|
|
36
|
-
"End Date": "
|
|
37
|
-
"Pick a date": "
|
|
38
|
-
"No end date": "
|
|
39
|
-
"Auto-send": "
|
|
40
|
-
"Automatically email generated invoices": "
|
|
41
|
-
"Create as draft": "
|
|
42
|
-
"Generated invoices will be drafts for review": "
|
|
43
|
-
"There was an error creating the schedule": "
|
|
35
|
+
"Start Date": "Alguskuupäev",
|
|
36
|
+
"End Date": "Lõppkuupäev",
|
|
37
|
+
"Pick a date": "Vali kuupäev",
|
|
38
|
+
"No end date": "Lõppkuupäeva pole",
|
|
39
|
+
"Auto-send": "Automaatne saatmine",
|
|
40
|
+
"Automatically email generated invoices": "Saada genereeritud arved automaatselt e-postiga",
|
|
41
|
+
"Create as draft": "Loo mustandina",
|
|
42
|
+
"Generated invoices will be drafts for review": "Genereeritud arved luuakse ülevaatuseks mustanditena",
|
|
43
|
+
"There was an error creating the schedule": "Ajakava loomisel tekkis viga",
|
|
44
44
|
} as const;
|
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
Name: "Nimi",
|
|
3
|
-
"Enter schedule name": "
|
|
4
|
-
Frequency: "
|
|
5
|
-
"Select frequency": "
|
|
6
|
-
Daily: "
|
|
7
|
-
Weekly: "
|
|
3
|
+
"Enter schedule name": "Anna aikataulun nimi",
|
|
4
|
+
Frequency: "Toistuvuus",
|
|
5
|
+
"Select frequency": "Valitse toistuvuus",
|
|
6
|
+
Daily: "Päivittäin",
|
|
7
|
+
Weekly: "Viikoittain",
|
|
8
8
|
Monthly: "Kuukausittain",
|
|
9
9
|
Yearly: "Vuosittain",
|
|
10
|
-
Interval: "
|
|
11
|
-
"Day of Week": "
|
|
12
|
-
"Select day": "
|
|
13
|
-
Sunday: "
|
|
14
|
-
Monday: "
|
|
15
|
-
Tuesday: "
|
|
16
|
-
Wednesday: "
|
|
17
|
-
Thursday: "
|
|
18
|
-
Friday: "
|
|
19
|
-
Saturday: "
|
|
20
|
-
"Day of Month": "
|
|
21
|
-
Month: "
|
|
22
|
-
"Select month": "
|
|
23
|
-
January: "
|
|
24
|
-
February: "
|
|
25
|
-
March: "
|
|
10
|
+
Interval: "Väli",
|
|
11
|
+
"Day of Week": "Viikonpäivä",
|
|
12
|
+
"Select day": "Valitse päivä",
|
|
13
|
+
Sunday: "Sunnuntai",
|
|
14
|
+
Monday: "Maanantai",
|
|
15
|
+
Tuesday: "Tiistai",
|
|
16
|
+
Wednesday: "Keskiviikko",
|
|
17
|
+
Thursday: "Torstai",
|
|
18
|
+
Friday: "Perjantai",
|
|
19
|
+
Saturday: "Lauantai",
|
|
20
|
+
"Day of Month": "Päivä kuukaudessa",
|
|
21
|
+
Month: "Kuukausi",
|
|
22
|
+
"Select month": "Valitse kuukausi",
|
|
23
|
+
January: "Tammikuu",
|
|
24
|
+
February: "Helmikuu",
|
|
25
|
+
March: "Maaliskuu",
|
|
26
26
|
April: "April",
|
|
27
|
-
May: "
|
|
28
|
-
June: "
|
|
29
|
-
July: "
|
|
27
|
+
May: "Toukokuu",
|
|
28
|
+
June: "Kesäkuu",
|
|
29
|
+
July: "Heinäkuu",
|
|
30
30
|
August: "August",
|
|
31
31
|
September: "September",
|
|
32
|
-
October: "
|
|
33
|
-
November: "
|
|
34
|
-
December: "
|
|
35
|
-
"Start Date": "
|
|
36
|
-
"End Date": "
|
|
37
|
-
"Pick a date": "
|
|
38
|
-
"No end date": "
|
|
39
|
-
"Auto-send": "
|
|
40
|
-
"Automatically email generated invoices": "
|
|
41
|
-
"Create as draft": "
|
|
42
|
-
"Generated invoices will be drafts for review": "
|
|
43
|
-
"There was an error creating the schedule": "
|
|
32
|
+
October: "Lokakuu",
|
|
33
|
+
November: "Marraskuu",
|
|
34
|
+
December: "Joulukuu",
|
|
35
|
+
"Start Date": "Aloituspäivä",
|
|
36
|
+
"End Date": "Päättymispäivä",
|
|
37
|
+
"Pick a date": "Valitse päivämäärä",
|
|
38
|
+
"No end date": "Ei päättymispäivää",
|
|
39
|
+
"Auto-send": "Lähetä automaattisesti",
|
|
40
|
+
"Automatically email generated invoices": "Lähetä luodut laskut automaattisesti sähköpostilla",
|
|
41
|
+
"Create as draft": "Luo luonnoksena",
|
|
42
|
+
"Generated invoices will be drafts for review": "Luodut laskut tallennetaan luonnoksiksi tarkistusta varten",
|
|
43
|
+
"There was an error creating the schedule": "Aikataulun luomisessa tapahtui virhe",
|
|
44
44
|
} as const;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
Name: "Nafn",
|
|
3
|
-
"Enter schedule name": "
|
|
4
|
-
Frequency: "
|
|
5
|
-
"Select frequency": "
|
|
6
|
-
Daily: "
|
|
7
|
-
Weekly: "
|
|
3
|
+
"Enter schedule name": "Sláðu inn heiti áætlunar",
|
|
4
|
+
Frequency: "Tíðni",
|
|
5
|
+
"Select frequency": "Veldu tíðni",
|
|
6
|
+
Daily: "Daglega",
|
|
7
|
+
Weekly: "Vikulega",
|
|
8
8
|
Monthly: "Mánaðarlega",
|
|
9
9
|
Yearly: "Árlega",
|
|
10
|
-
Interval: "
|
|
11
|
-
"Day of Week": "
|
|
12
|
-
"Select day": "
|
|
13
|
-
Sunday: "
|
|
14
|
-
Monday: "
|
|
15
|
-
Tuesday: "
|
|
16
|
-
Wednesday: "
|
|
17
|
-
Thursday: "
|
|
18
|
-
Friday: "
|
|
19
|
-
Saturday: "
|
|
20
|
-
"Day of Month": "
|
|
10
|
+
Interval: "Bil",
|
|
11
|
+
"Day of Week": "Dagur vikunnar",
|
|
12
|
+
"Select day": "Veldu dag",
|
|
13
|
+
Sunday: "Sunnudagur",
|
|
14
|
+
Monday: "Mánudagur",
|
|
15
|
+
Tuesday: "Þriðjudagur",
|
|
16
|
+
Wednesday: "Miðvikudagur",
|
|
17
|
+
Thursday: "Fimmtudagur",
|
|
18
|
+
Friday: "Föstudagur",
|
|
19
|
+
Saturday: "Laugardagur",
|
|
20
|
+
"Day of Month": "Dagur mánaðar",
|
|
21
21
|
Month: "Mánuður",
|
|
22
|
-
"Select month": "
|
|
22
|
+
"Select month": "Veldu mánuð",
|
|
23
23
|
January: "Janúar",
|
|
24
24
|
February: "Febrúar",
|
|
25
25
|
March: "Mars",
|
|
@@ -32,13 +32,13 @@ export default {
|
|
|
32
32
|
October: "Október",
|
|
33
33
|
November: "Nóvember",
|
|
34
34
|
December: "Desember",
|
|
35
|
-
"Start Date": "
|
|
36
|
-
"End Date": "
|
|
37
|
-
"Pick a date": "
|
|
38
|
-
"No end date": "
|
|
39
|
-
"Auto-send": "
|
|
40
|
-
"Automatically email generated invoices": "
|
|
41
|
-
"Create as draft": "
|
|
42
|
-
"Generated invoices will be drafts for review": "
|
|
43
|
-
"There was an error creating the schedule": "
|
|
35
|
+
"Start Date": "Upphafsdagur",
|
|
36
|
+
"End Date": "Lokadagur",
|
|
37
|
+
"Pick a date": "Veldu dagsetningu",
|
|
38
|
+
"No end date": "Enginn lokadagur",
|
|
39
|
+
"Auto-send": "Senda sjálfkrafa",
|
|
40
|
+
"Automatically email generated invoices": "Senda sjálfkrafa tölvupóst með útbúnum reikningum",
|
|
41
|
+
"Create as draft": "Vista sem uppkast",
|
|
42
|
+
"Generated invoices will be drafts for review": "Útbúnir reikningar verða vistir sem uppköst til yfirferðar",
|
|
43
|
+
"There was an error creating the schedule": "Villa kom upp við að búa til áætlunina",
|
|
44
44
|
} as const;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
Name: "Navn",
|
|
3
|
-
"Enter schedule name": "
|
|
4
|
-
Frequency: "
|
|
5
|
-
"Select frequency": "
|
|
6
|
-
Daily: "
|
|
7
|
-
Weekly: "
|
|
3
|
+
"Enter schedule name": "Skriv inn navn på planen",
|
|
4
|
+
Frequency: "Frekvens",
|
|
5
|
+
"Select frequency": "Velg frekvens",
|
|
6
|
+
Daily: "Daglig",
|
|
7
|
+
Weekly: "Ukentlig",
|
|
8
8
|
Monthly: "Månedlig",
|
|
9
9
|
Yearly: "Årlig",
|
|
10
|
-
Interval: "
|
|
11
|
-
"Day of Week": "
|
|
12
|
-
"Select day": "
|
|
13
|
-
Sunday: "
|
|
14
|
-
Monday: "
|
|
15
|
-
Tuesday: "
|
|
16
|
-
Wednesday: "
|
|
17
|
-
Thursday: "
|
|
18
|
-
Friday: "
|
|
19
|
-
Saturday: "
|
|
20
|
-
"Day of Month": "
|
|
10
|
+
Interval: "Intervall",
|
|
11
|
+
"Day of Week": "Ukedag",
|
|
12
|
+
"Select day": "Velg dag",
|
|
13
|
+
Sunday: "Søndag",
|
|
14
|
+
Monday: "Mandag",
|
|
15
|
+
Tuesday: "Tirsdag",
|
|
16
|
+
Wednesday: "Onsdag",
|
|
17
|
+
Thursday: "Torsdag",
|
|
18
|
+
Friday: "Fredag",
|
|
19
|
+
Saturday: "Lørdag",
|
|
20
|
+
"Day of Month": "Dag i måneden",
|
|
21
21
|
Month: "Måned",
|
|
22
|
-
"Select month": "
|
|
22
|
+
"Select month": "Velg måned",
|
|
23
23
|
January: "Januar",
|
|
24
24
|
February: "Februar",
|
|
25
25
|
March: "Mars",
|
|
@@ -32,13 +32,13 @@ export default {
|
|
|
32
32
|
October: "Oktober",
|
|
33
33
|
November: "November",
|
|
34
34
|
December: "Desember",
|
|
35
|
-
"Start Date": "
|
|
36
|
-
"End Date": "
|
|
37
|
-
"Pick a date": "
|
|
38
|
-
"No end date": "
|
|
39
|
-
"Auto-send": "
|
|
40
|
-
"Automatically email generated invoices": "
|
|
41
|
-
"Create as draft": "
|
|
42
|
-
"Generated invoices will be drafts for review": "
|
|
43
|
-
"There was an error creating the schedule": "
|
|
35
|
+
"Start Date": "Startdato",
|
|
36
|
+
"End Date": "Sluttdato",
|
|
37
|
+
"Pick a date": "Velg en dato",
|
|
38
|
+
"No end date": "Ingen sluttdato",
|
|
39
|
+
"Auto-send": "Send automatisk",
|
|
40
|
+
"Automatically email generated invoices": "Send genererte fakturaer automatisk på e-post",
|
|
41
|
+
"Create as draft": "Opprett som utkast",
|
|
42
|
+
"Generated invoices will be drafts for review": "Genererte fakturaer opprettes som utkast for gjennomgang",
|
|
43
|
+
"There was an error creating the schedule": "Det oppstod en feil ved opprettelse av planen",
|
|
44
44
|
} as const;
|