@spaceinvoices/react-ui 0.4.3 → 0.4.5

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.
Files changed (263) hide show
  1. package/cli/dist/index.js +1 -1
  2. package/package.json +1 -1
  3. package/src/common/autocomplete.tsx +18 -2
  4. package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +61 -12
  5. package/src/components/advance-invoices/create/locales/de.ts +17 -0
  6. package/src/components/advance-invoices/create/locales/es.ts +17 -0
  7. package/src/components/advance-invoices/create/locales/fr.ts +17 -0
  8. package/src/components/advance-invoices/create/locales/hr.ts +16 -0
  9. package/src/components/advance-invoices/create/locales/it.ts +17 -0
  10. package/src/components/advance-invoices/create/locales/nl.ts +17 -0
  11. package/src/components/advance-invoices/create/locales/pl.ts +16 -0
  12. package/src/components/advance-invoices/create/locales/pt.ts +16 -0
  13. package/src/components/advance-invoices/create/locales/sl.ts +16 -0
  14. package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +0 -1
  15. package/src/components/advance-invoices/list/list-row-actions.tsx +48 -1
  16. package/src/components/advance-invoices/list/list-table.tsx +100 -50
  17. package/src/components/advance-invoices/list/locales/de.ts +9 -0
  18. package/src/components/advance-invoices/list/locales/en.ts +7 -0
  19. package/src/components/advance-invoices/list/locales/es.ts +9 -0
  20. package/src/components/advance-invoices/list/locales/fr.ts +9 -0
  21. package/src/components/advance-invoices/list/locales/hr.ts +8 -0
  22. package/src/components/advance-invoices/list/locales/it.ts +9 -0
  23. package/src/components/advance-invoices/list/locales/nl.ts +9 -0
  24. package/src/components/advance-invoices/list/locales/pl.ts +8 -0
  25. package/src/components/advance-invoices/list/locales/pt.ts +9 -0
  26. package/src/components/advance-invoices/list/locales/sl.ts +8 -0
  27. package/src/components/credit-notes/create/create-credit-note-form.tsx +185 -11
  28. package/src/components/credit-notes/create/locales/de.ts +18 -0
  29. package/src/components/credit-notes/create/locales/es.ts +18 -0
  30. package/src/components/credit-notes/create/locales/fr.ts +18 -0
  31. package/src/components/credit-notes/create/locales/hr.ts +17 -0
  32. package/src/components/credit-notes/create/locales/it.ts +18 -0
  33. package/src/components/credit-notes/create/locales/nl.ts +18 -0
  34. package/src/components/credit-notes/create/locales/pl.ts +17 -0
  35. package/src/components/credit-notes/create/locales/pt.ts +17 -0
  36. package/src/components/credit-notes/create/locales/sl.ts +18 -1
  37. package/src/components/credit-notes/credit-notes.hooks.ts +30 -0
  38. package/src/components/credit-notes/list/list-row-actions.tsx +44 -1
  39. package/src/components/credit-notes/list/list-table.tsx +93 -32
  40. package/src/components/credit-notes/list/locales/de.ts +7 -0
  41. package/src/components/credit-notes/list/locales/en.ts +6 -0
  42. package/src/components/credit-notes/list/locales/es.ts +7 -0
  43. package/src/components/credit-notes/list/locales/fr.ts +7 -0
  44. package/src/components/credit-notes/list/locales/hr.ts +7 -0
  45. package/src/components/credit-notes/list/locales/it.ts +7 -0
  46. package/src/components/credit-notes/list/locales/nl.ts +7 -0
  47. package/src/components/credit-notes/list/locales/pl.ts +7 -0
  48. package/src/components/credit-notes/list/locales/pt.ts +7 -0
  49. package/src/components/credit-notes/list/locales/sl.ts +7 -0
  50. package/src/components/customers/customer-list-table/customer-list-table.tsx +0 -3
  51. package/src/components/customers/customer-list-table/locales/de.ts +1 -0
  52. package/src/components/customers/customer-list-table/locales/es.ts +1 -0
  53. package/src/components/customers/customer-list-table/locales/fr.ts +1 -0
  54. package/src/components/customers/customer-list-table/locales/hr.ts +1 -0
  55. package/src/components/customers/customer-list-table/locales/it.ts +1 -0
  56. package/src/components/customers/customer-list-table/locales/nl.ts +1 -0
  57. package/src/components/customers/customer-list-table/locales/pl.ts +1 -0
  58. package/src/components/customers/customer-list-table/locales/pt.ts +1 -0
  59. package/src/components/customers/customer-list-table/locales/sl.ts +1 -0
  60. package/src/components/dashboard/collection-rate-card/use-collection-rate.ts +48 -9
  61. package/src/components/dashboard/revenue-trend-chart/use-revenue-trend.ts +77 -48
  62. package/src/components/dashboard/shared/use-revenue-data.ts +77 -9
  63. package/src/components/delivery-notes/create/create-delivery-note-form.tsx +67 -7
  64. package/src/components/delivery-notes/create/locales/de.ts +16 -0
  65. package/src/components/delivery-notes/create/locales/es.ts +16 -0
  66. package/src/components/delivery-notes/create/locales/fr.ts +16 -0
  67. package/src/components/delivery-notes/create/locales/hr.ts +16 -0
  68. package/src/components/delivery-notes/create/locales/it.ts +16 -0
  69. package/src/components/delivery-notes/create/locales/nl.ts +16 -0
  70. package/src/components/delivery-notes/create/locales/pl.ts +16 -0
  71. package/src/components/delivery-notes/create/locales/pt.ts +16 -0
  72. package/src/components/delivery-notes/create/locales/sl.ts +17 -1
  73. package/src/components/delivery-notes/list/list-row-actions.tsx +20 -1
  74. package/src/components/delivery-notes/list/list-table.tsx +50 -8
  75. package/src/components/delivery-notes/list/locales/de.ts +35 -0
  76. package/src/components/delivery-notes/list/locales/en.ts +33 -0
  77. package/src/components/delivery-notes/list/locales/es.ts +35 -0
  78. package/src/components/delivery-notes/list/locales/fr.ts +35 -0
  79. package/src/components/delivery-notes/list/locales/hr.ts +35 -0
  80. package/src/components/delivery-notes/list/locales/it.ts +35 -0
  81. package/src/components/delivery-notes/list/locales/nl.ts +35 -0
  82. package/src/components/delivery-notes/list/locales/pl.ts +35 -0
  83. package/src/components/delivery-notes/list/locales/pt.ts +35 -0
  84. package/src/components/delivery-notes/list/locales/sl.ts +35 -0
  85. package/src/components/documents/create/document-add-item-form.tsx +70 -0
  86. package/src/components/documents/create/document-details-section.tsx +163 -29
  87. package/src/components/documents/create/document-items-section.tsx +21 -4
  88. package/src/components/documents/create/linked-documents-info.tsx +82 -0
  89. package/src/components/documents/create/live-preview.tsx +25 -5
  90. package/src/components/documents/create/mark-as-paid-section.tsx +29 -20
  91. package/src/components/documents/create/prepare-document-submission.ts +19 -7
  92. package/src/components/documents/shared/document-preview-display.tsx +3 -4
  93. package/src/components/documents/types.ts +2 -2
  94. package/src/components/documents/view/document-actions-bar.tsx +7 -27
  95. package/src/components/documents/view/document-activities-list.tsx +65 -47
  96. package/src/components/documents/view/document-details-card.tsx +118 -76
  97. package/src/components/documents/view/document-payments-list.tsx +99 -65
  98. package/src/components/documents/view/document-relations-list.tsx +43 -28
  99. package/src/components/documents/view/document-sidebar.tsx +151 -0
  100. package/src/components/documents/view/index.ts +2 -0
  101. package/src/components/documents/view/locales/de.ts +4 -0
  102. package/src/components/documents/view/locales/es.ts +4 -0
  103. package/src/components/documents/view/locales/fr.ts +4 -0
  104. package/src/components/documents/view/locales/hr.ts +4 -0
  105. package/src/components/documents/view/locales/it.ts +4 -0
  106. package/src/components/documents/view/locales/nl.ts +4 -0
  107. package/src/components/documents/view/locales/pl.ts +4 -0
  108. package/src/components/documents/view/locales/pt.ts +4 -0
  109. package/src/components/documents/view/locales/sl.ts +5 -1
  110. package/src/components/documents/view/use-document-download.ts +7 -3
  111. package/src/components/entities/create-entity-form.tsx +166 -13
  112. package/src/components/entities/entity-settings-form/entity-settings-form.tsx +101 -1
  113. package/src/components/entities/entity-settings-form/input-with-preview.tsx +30 -2
  114. package/src/components/entities/entity-settings-form/locales/de.ts +10 -0
  115. package/src/components/entities/entity-settings-form/locales/es.ts +10 -0
  116. package/src/components/entities/entity-settings-form/locales/fr.ts +10 -0
  117. package/src/components/entities/entity-settings-form/locales/hr.ts +10 -0
  118. package/src/components/entities/entity-settings-form/locales/it.ts +10 -0
  119. package/src/components/entities/entity-settings-form/locales/nl.ts +10 -0
  120. package/src/components/entities/entity-settings-form/locales/pl.ts +10 -0
  121. package/src/components/entities/entity-settings-form/locales/pt.ts +10 -0
  122. package/src/components/entities/entity-settings-form/locales/sl.ts +10 -0
  123. package/src/components/entities/fina-settings-form/fina-settings-form.tsx +6 -6
  124. package/src/components/entities/fina-settings-form/locales/de.ts +2 -2
  125. package/src/components/entities/fina-settings-form/locales/en.ts +2 -2
  126. package/src/components/entities/fina-settings-form/locales/es.ts +2 -2
  127. package/src/components/entities/fina-settings-form/locales/fr.ts +2 -2
  128. package/src/components/entities/fina-settings-form/locales/hr.ts +2 -2
  129. package/src/components/entities/fina-settings-form/locales/it.ts +2 -2
  130. package/src/components/entities/fina-settings-form/locales/nl.ts +2 -2
  131. package/src/components/entities/fina-settings-form/locales/pl.ts +2 -2
  132. package/src/components/entities/fina-settings-form/locales/pt.ts +2 -2
  133. package/src/components/entities/fina-settings-form/locales/sl.ts +2 -2
  134. package/src/components/entities/furs-settings-form/locales/en.ts +0 -1
  135. package/src/components/entities/settings/company-settings-form.tsx +173 -20
  136. package/src/components/entities/settings/pdf-template-selector/locales/de.ts +3 -1
  137. package/src/components/entities/settings/pdf-template-selector/locales/es.ts +3 -1
  138. package/src/components/entities/settings/pdf-template-selector/locales/fr.ts +4 -1
  139. package/src/components/entities/settings/pdf-template-selector/locales/hr.ts +4 -1
  140. package/src/components/entities/settings/pdf-template-selector/locales/it.ts +3 -1
  141. package/src/components/entities/settings/pdf-template-selector/locales/nl.ts +3 -1
  142. package/src/components/entities/settings/pdf-template-selector/locales/pl.ts +3 -1
  143. package/src/components/entities/settings/pdf-template-selector/locales/pt.ts +3 -1
  144. package/src/components/entities/settings/pdf-template-selector/locales/sl.ts +3 -1
  145. package/src/components/entities/settings/pdf-template-selector/pdf-template-cards.tsx +1 -0
  146. package/src/components/estimates/create/create-estimate-form.tsx +93 -8
  147. package/src/components/estimates/create/locales/de.ts +16 -0
  148. package/src/components/estimates/create/locales/es.ts +16 -0
  149. package/src/components/estimates/create/locales/fr.ts +16 -0
  150. package/src/components/estimates/create/locales/hr.ts +16 -0
  151. package/src/components/estimates/create/locales/it.ts +16 -0
  152. package/src/components/estimates/create/locales/nl.ts +16 -0
  153. package/src/components/estimates/create/locales/pl.ts +16 -0
  154. package/src/components/estimates/create/locales/pt.ts +16 -0
  155. package/src/components/estimates/create/locales/sl.ts +17 -1
  156. package/src/components/estimates/list/list-table.tsx +14 -8
  157. package/src/components/estimates/list/locales/de.ts +2 -0
  158. package/src/components/estimates/list/locales/en.ts +1 -0
  159. package/src/components/estimates/list/locales/es.ts +2 -0
  160. package/src/components/estimates/list/locales/fr.ts +2 -0
  161. package/src/components/estimates/list/locales/hr.ts +2 -0
  162. package/src/components/estimates/list/locales/it.ts +2 -0
  163. package/src/components/estimates/list/locales/nl.ts +2 -0
  164. package/src/components/estimates/list/locales/pl.ts +2 -0
  165. package/src/components/estimates/list/locales/pt.ts +2 -0
  166. package/src/components/estimates/list/locales/sl.ts +2 -0
  167. package/src/components/export/document-export-form.tsx +55 -14
  168. package/src/components/export/index.ts +2 -0
  169. package/src/components/export/sales-per-item-export-form.tsx +223 -0
  170. package/src/components/invoices/create/create-invoice-form.tsx +106 -11
  171. package/src/components/invoices/create/locales/de.ts +26 -0
  172. package/src/components/invoices/create/locales/es.ts +26 -0
  173. package/src/components/invoices/create/locales/fr.ts +26 -0
  174. package/src/components/invoices/create/locales/hr.ts +25 -0
  175. package/src/components/invoices/create/locales/it.ts +26 -0
  176. package/src/components/invoices/create/locales/nl.ts +26 -0
  177. package/src/components/invoices/create/locales/pl.ts +25 -0
  178. package/src/components/invoices/create/locales/pt.ts +25 -0
  179. package/src/components/invoices/create/locales/sl.ts +26 -1
  180. package/src/components/invoices/invoices-furs.hooks.ts +4 -1
  181. package/src/components/invoices/list/list-table.tsx +77 -31
  182. package/src/components/invoices/list/locales/de.ts +5 -0
  183. package/src/components/invoices/list/locales/en.ts +4 -0
  184. package/src/components/invoices/list/locales/es.ts +5 -0
  185. package/src/components/invoices/list/locales/fr.ts +5 -0
  186. package/src/components/invoices/list/locales/hr.ts +5 -0
  187. package/src/components/invoices/list/locales/it.ts +5 -0
  188. package/src/components/invoices/list/locales/nl.ts +5 -0
  189. package/src/components/invoices/list/locales/pl.ts +5 -0
  190. package/src/components/invoices/list/locales/pt.ts +5 -0
  191. package/src/components/invoices/list/locales/sl.ts +5 -0
  192. package/src/components/invoices/view/fiscalization-status-card.tsx +44 -24
  193. package/src/components/items/item-combobox.tsx +5 -3
  194. package/src/components/items/item-list-table/item-list-header.tsx +4 -17
  195. package/src/components/items/item-list-table/item-list-table.tsx +3 -3
  196. package/src/components/items/item-list-table/locales/de.ts +1 -0
  197. package/src/components/items/item-list-table/locales/es.ts +1 -0
  198. package/src/components/items/item-list-table/locales/fr.ts +1 -0
  199. package/src/components/items/item-list-table/locales/hr.ts +1 -0
  200. package/src/components/items/item-list-table/locales/it.ts +1 -0
  201. package/src/components/items/item-list-table/locales/nl.ts +1 -0
  202. package/src/components/items/item-list-table/locales/pl.ts +1 -0
  203. package/src/components/items/item-list-table/locales/pt.ts +1 -0
  204. package/src/components/items/item-list-table/locales/sl.ts +1 -0
  205. package/src/components/payments/list/list-table.tsx +0 -4
  206. package/src/components/payments/list/locales/de.ts +1 -0
  207. package/src/components/payments/list/locales/es.ts +1 -0
  208. package/src/components/payments/list/locales/fr.ts +1 -0
  209. package/src/components/payments/list/locales/hr.ts +1 -0
  210. package/src/components/payments/list/locales/it.ts +1 -0
  211. package/src/components/payments/list/locales/nl.ts +1 -0
  212. package/src/components/payments/list/locales/pl.ts +1 -0
  213. package/src/components/payments/list/locales/pt.ts +1 -0
  214. package/src/components/payments/list/locales/sl.ts +1 -0
  215. package/src/components/recurring-invoices/list/list-table.tsx +0 -7
  216. package/src/components/recurring-invoices/list/locales/de.ts +1 -0
  217. package/src/components/recurring-invoices/list/locales/es.ts +1 -0
  218. package/src/components/recurring-invoices/list/locales/fr.ts +1 -0
  219. package/src/components/recurring-invoices/list/locales/hr.ts +1 -0
  220. package/src/components/recurring-invoices/list/locales/it.ts +1 -0
  221. package/src/components/recurring-invoices/list/locales/nl.ts +1 -0
  222. package/src/components/recurring-invoices/list/locales/pl.ts +1 -0
  223. package/src/components/recurring-invoices/list/locales/pt.ts +1 -0
  224. package/src/components/recurring-invoices/list/locales/sl.ts +1 -0
  225. package/src/components/request-logs/request-log-list-table.tsx +0 -3
  226. package/src/components/table/README.md +14 -121
  227. package/src/components/table/data-table.tsx +22 -37
  228. package/src/components/table/hooks/use-table-state.ts +3 -27
  229. package/src/components/table/index.ts +0 -2
  230. package/src/components/table/search-input.tsx +17 -0
  231. package/src/components/table/selection-toolbar.tsx +35 -1
  232. package/src/components/table/table-empty-state.tsx +6 -3
  233. package/src/components/table/table-no-results.tsx +10 -5
  234. package/src/components/table/types.ts +0 -5
  235. package/src/components/taxes/tax-list-table/locales/de.ts +1 -0
  236. package/src/components/taxes/tax-list-table/locales/es.ts +1 -0
  237. package/src/components/taxes/tax-list-table/locales/fr.ts +1 -0
  238. package/src/components/taxes/tax-list-table/locales/hr.ts +1 -0
  239. package/src/components/taxes/tax-list-table/locales/it.ts +1 -0
  240. package/src/components/taxes/tax-list-table/locales/nl.ts +1 -0
  241. package/src/components/taxes/tax-list-table/locales/pl.ts +1 -0
  242. package/src/components/taxes/tax-list-table/locales/pt.ts +1 -0
  243. package/src/components/taxes/tax-list-table/locales/sl.ts +1 -0
  244. package/src/components/taxes/tax-list-table/tax-list-header.tsx +3 -14
  245. package/src/components/taxes/tax-list-table/tax-list-table.tsx +3 -3
  246. package/src/components/ui/popover.tsx +3 -1
  247. package/src/components/ui/tooltip.tsx +3 -1
  248. package/src/generated/schemas/advanceinvoice.ts +4 -2
  249. package/src/generated/schemas/creditnote.ts +2 -1
  250. package/src/generated/schemas/deliverynote.ts +2 -1
  251. package/src/generated/schemas/estimate.ts +4 -2
  252. package/src/generated/schemas/index.ts +1 -1
  253. package/src/generated/schemas/invoice.ts +2 -1
  254. package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +17 -23
  255. package/src/generated/schemas/rendercreditnotepreview_body.ts +17 -23
  256. package/src/generated/schemas/renderdeliverynotepreview_body.ts +17 -23
  257. package/src/generated/schemas/renderestimatepreview_body.ts +17 -23
  258. package/src/generated/schemas/renderinvoicepreview_body.ts +19 -23
  259. package/src/hooks/use-duplicate-document.ts +56 -14
  260. package/src/hooks/use-vies-check.ts +3 -0
  261. package/src/lib/fiscalization.ts +12 -0
  262. package/src/lib/schemas/advance-invoice.ts +0 -1
  263. package/src/components/table/sortable-header.tsx +0 -56
@@ -95,9 +95,35 @@ export default {
95
95
  "Net price": "Precio neto",
96
96
  "Gross price (tax included)": "Precio bruto (impuestos incluidos)",
97
97
  "Net price (before tax)": "Precio neto (antes de impuestos)",
98
+ // Linked documents
99
+ "Linked documents": "Documentos vinculados",
100
+ Type: "Tipo",
101
+ Total: "Total",
102
+ "Delivery note": "Albarán",
103
+ Invoice: "Factura",
104
+ Estimate: "Presupuesto",
105
+ "Credit note": "Nota de crédito",
106
+ "Advance invoice": "Factura anticipada",
107
+ "FINA fiscalized invoices always use the current date":
108
+ "Las facturas fiscalizadas con FINA siempre usan la fecha actual",
98
109
  "Service Date": "Fecha de servicio",
99
110
  "Single Date": "Fecha única",
100
111
  "Date Range": "Rango de fechas",
101
112
  From: "Desde",
102
113
  To: "Hasta",
114
+ // Separator items
115
+ "Add separator": "Añadir separador",
116
+ "Section header": "Encabezado de sección",
117
+ "Section title...": "Título de sección...",
118
+ // Transaction type
119
+ "Transaction type": "Tipo de transacción",
120
+ Domestic: "Nacional",
121
+ "EU B2B": "EU B2B",
122
+ "EU B2C": "EU B2C",
123
+ Export: "Exportación",
124
+ "Determining transaction type...": "Determinando tipo de transacción...",
125
+ "This invoice will not be fiscalized (non-domestic transaction)":
126
+ "Esta factura no será fiscalizada (transacción no nacional)",
127
+ "Tax Clause": "Cláusula fiscal",
128
+ "Add tax clause...": "Agregar cláusula fiscal...",
103
129
  } as const;
@@ -97,9 +97,35 @@ export default {
97
97
  "Net price": "Prix net",
98
98
  "Gross price (tax included)": "Prix brut (taxes incluses)",
99
99
  "Net price (before tax)": "Prix net (avant taxes)",
100
+ // Linked documents
101
+ "Linked documents": "Documents liés",
102
+ Type: "Type",
103
+ Total: "Total",
104
+ "Delivery note": "Bon de livraison",
105
+ Invoice: "Facture",
106
+ Estimate: "Devis",
107
+ "Credit note": "Avoir",
108
+ "Advance invoice": "Facture d'acompte",
109
+ "FINA fiscalized invoices always use the current date":
110
+ "Les factures fiscalisées FINA utilisent toujours la date actuelle",
100
111
  "Service Date": "Date de service",
101
112
  "Single Date": "Date unique",
102
113
  "Date Range": "Plage de dates",
103
114
  From: "Du",
104
115
  To: "Au",
116
+ // Separator items
117
+ "Add separator": "Ajouter un séparateur",
118
+ "Section header": "En-tête de section",
119
+ "Section title...": "Titre de section...",
120
+ // Transaction type
121
+ "Transaction type": "Type de transaction",
122
+ Domestic: "Nationale",
123
+ "EU B2B": "EU B2B",
124
+ "EU B2C": "EU B2C",
125
+ Export: "Exportation",
126
+ "Determining transaction type...": "Détermination du type de transaction...",
127
+ "This invoice will not be fiscalized (non-domestic transaction)":
128
+ "Cette facture ne sera pas fiscalisée (transaction non nationale)",
129
+ "Tax Clause": "Clause fiscale",
130
+ "Add tax clause...": "Ajouter une clause fiscale...",
105
131
  } as const;
@@ -95,9 +95,34 @@ export default {
95
95
  "Net price": "Neto cijena",
96
96
  "Gross price (tax included)": "Bruto cijena (s porezom)",
97
97
  "Net price (before tax)": "Neto cijena (prije poreza)",
98
+ // Linked documents
99
+ "Linked documents": "Povezani dokumenti",
100
+ Type: "Vrsta",
101
+ Total: "Ukupno",
102
+ "Delivery note": "Otpremnica",
103
+ Invoice: "Račun",
104
+ Estimate: "Ponuda",
105
+ "Credit note": "Odobrenje",
106
+ "Advance invoice": "Avansni račun",
107
+ "FINA fiscalized invoices always use the current date": "FINA fiskalizirani računi uvijek koriste trenutni datum",
98
108
  "Service Date": "Datum usluge",
99
109
  "Single Date": "Datum",
100
110
  "Date Range": "Raspon datuma",
101
111
  From: "Od",
102
112
  To: "Do",
113
+ // Separator items
114
+ "Add separator": "Dodaj separator",
115
+ "Section header": "Naslov odjeljka",
116
+ "Section title...": "Naslov odjeljka...",
117
+ // Transaction type
118
+ "Transaction type": "Vrsta transakcije",
119
+ Domestic: "Domaća",
120
+ "EU B2B": "EU B2B",
121
+ "EU B2C": "EU B2C",
122
+ Export: "Izvoz",
123
+ "Determining transaction type...": "Određivanje vrste transakcije...",
124
+ "This invoice will not be fiscalized (non-domestic transaction)":
125
+ "Ovaj račun neće biti fiskaliziran (nedomaća transakcija)",
126
+ "Tax Clause": "Porezna klauzula",
127
+ "Add tax clause...": "Dodajte poreznu klauzulu...",
103
128
  } as const;
@@ -97,9 +97,35 @@ export default {
97
97
  "Net price": "Prezzo netto",
98
98
  "Gross price (tax included)": "Prezzo lordo (imposte incluse)",
99
99
  "Net price (before tax)": "Prezzo netto (prima delle imposte)",
100
+ // Linked documents
101
+ "Linked documents": "Documenti collegati",
102
+ Type: "Tipo",
103
+ Total: "Totale",
104
+ "Delivery note": "Bolla di consegna",
105
+ Invoice: "Fattura",
106
+ Estimate: "Preventivo",
107
+ "Credit note": "Nota di credito",
108
+ "Advance invoice": "Fattura di acconto",
109
+ "FINA fiscalized invoices always use the current date":
110
+ "Le fatture fiscalizzate FINA utilizzano sempre la data corrente",
100
111
  "Service Date": "Data del servizio",
101
112
  "Single Date": "Data singola",
102
113
  "Date Range": "Intervallo di date",
103
114
  From: "Da",
104
115
  To: "A",
116
+ // Separator items
117
+ "Add separator": "Aggiungi separatore",
118
+ "Section header": "Intestazione sezione",
119
+ "Section title...": "Titolo sezione...",
120
+ // Transaction type
121
+ "Transaction type": "Tipo di transazione",
122
+ Domestic: "Nazionale",
123
+ "EU B2B": "EU B2B",
124
+ "EU B2C": "EU B2C",
125
+ Export: "Esportazione",
126
+ "Determining transaction type...": "Determinazione tipo di transazione...",
127
+ "This invoice will not be fiscalized (non-domestic transaction)":
128
+ "Questa fattura non sarà fiscalizzata (transazione non nazionale)",
129
+ "Tax Clause": "Clausola fiscale",
130
+ "Add tax clause...": "Aggiungi clausola fiscale...",
105
131
  } as const;
@@ -96,9 +96,35 @@ export default {
96
96
  "Net price": "Nettoprijs",
97
97
  "Gross price (tax included)": "Brutoprijs (inclusief belasting)",
98
98
  "Net price (before tax)": "Nettoprijs (exclusief belasting)",
99
+ // Linked documents
100
+ "Linked documents": "Gekoppelde documenten",
101
+ Type: "Type",
102
+ Total: "Totaal",
103
+ "Delivery note": "Pakbon",
104
+ Invoice: "Factuur",
105
+ Estimate: "Offerte",
106
+ "Credit note": "Creditnota",
107
+ "Advance invoice": "Voorschotfactuur",
108
+ "FINA fiscalized invoices always use the current date":
109
+ "FINA-gefiscaliseerde facturen gebruiken altijd de huidige datum",
99
110
  "Service Date": "Servicedatum",
100
111
  "Single Date": "Enkele datum",
101
112
  "Date Range": "Datumbereik",
102
113
  From: "Van",
103
114
  To: "Tot",
115
+ // Separator items
116
+ "Add separator": "Scheidingslijn toevoegen",
117
+ "Section header": "Sectiekop",
118
+ "Section title...": "Sectietitel...",
119
+ // Transaction type
120
+ "Transaction type": "Transactietype",
121
+ Domestic: "Binnenland",
122
+ "EU B2B": "EU B2B",
123
+ "EU B2C": "EU B2C",
124
+ Export: "Export",
125
+ "Determining transaction type...": "Transactietype bepalen...",
126
+ "This invoice will not be fiscalized (non-domestic transaction)":
127
+ "Deze factuur wordt niet gefiscaliseerd (niet-binnenlandse transactie)",
128
+ "Tax Clause": "Belastingclausule",
129
+ "Add tax clause...": "Belastingclausule toevoegen...",
104
130
  } as const;
@@ -96,9 +96,34 @@ export default {
96
96
  "Net price": "Cena netto",
97
97
  "Gross price (tax included)": "Cena brutto (z podatkiem)",
98
98
  "Net price (before tax)": "Cena netto (przed podatkiem)",
99
+ // Linked documents
100
+ "Linked documents": "Powiązane dokumenty",
101
+ Type: "Typ",
102
+ Total: "Razem",
103
+ "Delivery note": "Dowód dostawy",
104
+ Invoice: "Faktura",
105
+ Estimate: "Wycena",
106
+ "Credit note": "Nota kredytowa",
107
+ "Advance invoice": "Faktura zaliczkowa",
108
+ "FINA fiscalized invoices always use the current date": "Faktury fiskalizowane FINA zawsze używają bieżącej daty",
99
109
  "Service Date": "Data usługi",
100
110
  "Single Date": "Pojedyncza data",
101
111
  "Date Range": "Zakres dat",
102
112
  From: "Od",
103
113
  To: "Do",
114
+ // Separator items
115
+ "Add separator": "Dodaj separator",
116
+ "Section header": "Nagłówek sekcji",
117
+ "Section title...": "Tytuł sekcji...",
118
+ // Transaction type
119
+ "Transaction type": "Typ transakcji",
120
+ Domestic: "Krajowa",
121
+ "EU B2B": "EU B2B",
122
+ "EU B2C": "EU B2C",
123
+ Export: "Eksport",
124
+ "Determining transaction type...": "Określanie typu transakcji...",
125
+ "This invoice will not be fiscalized (non-domestic transaction)":
126
+ "Ta faktura nie będzie fiskalizowana (transakcja niekrajowa)",
127
+ "Tax Clause": "Klauzula podatkowa",
128
+ "Add tax clause...": "Dodaj klauzulę podatkową...",
104
129
  } as const;
@@ -97,9 +97,34 @@ export default {
97
97
  "Net price": "Preço líquido",
98
98
  "Gross price (tax included)": "Preço bruto (impostos incluídos)",
99
99
  "Net price (before tax)": "Preço líquido (antes de impostos)",
100
+ // Linked documents
101
+ "Linked documents": "Documentos associados",
102
+ Type: "Tipo",
103
+ Total: "Total",
104
+ "Delivery note": "Guia de remessa",
105
+ Invoice: "Fatura",
106
+ Estimate: "Orçamento",
107
+ "Credit note": "Nota de crédito",
108
+ "Advance invoice": "Fatura antecipada",
109
+ "FINA fiscalized invoices always use the current date": "As faturas fiscalizadas FINA usam sempre a data atual",
100
110
  "Service Date": "Data do serviço",
101
111
  "Single Date": "Data única",
102
112
  "Date Range": "Intervalo de datas",
103
113
  From: "De",
104
114
  To: "Até",
115
+ // Separator items
116
+ "Add separator": "Adicionar separador",
117
+ "Section header": "Cabeçalho da secção",
118
+ "Section title...": "Título da secção...",
119
+ // Transaction type
120
+ "Transaction type": "Tipo de transação",
121
+ Domestic: "Nacional",
122
+ "EU B2B": "EU B2B",
123
+ "EU B2C": "EU B2C",
124
+ Export: "Exportação",
125
+ "Determining transaction type...": "Determinando tipo de transação...",
126
+ "This invoice will not be fiscalized (non-domestic transaction)":
127
+ "Esta fatura não será fiscalizada (transação não nacional)",
128
+ "Tax Clause": "Cláusula fiscal",
129
+ "Add tax clause...": "Adicionar cláusula fiscal...",
105
130
  } as const;
@@ -17,7 +17,7 @@ export default {
17
17
  Price: "Cena",
18
18
  Unit: "Enota",
19
19
  Discount: "Popust",
20
- Tax: "Davek",
20
+ Tax: "DDV",
21
21
  "Tax rate": "Davčna stopnja",
22
22
  "Add tax": "Dodaj davek",
23
23
  "Select tax...": "Izberi davek...",
@@ -105,10 +105,35 @@ export default {
105
105
  "Net price": "Neto cena",
106
106
  "Gross price (tax included)": "Bruto cena (z davkom)",
107
107
  "Net price (before tax)": "Neto cena (brez davka)",
108
+ // Linked documents
109
+ "Linked documents": "Povezani dokumenti",
110
+ Type: "Vrsta",
111
+ Total: "Skupaj",
112
+ "Delivery note": "Dobavnica",
113
+ Invoice: "Račun",
114
+ Estimate: "Predračun",
115
+ "Credit note": "Dobropis",
116
+ "Advance invoice": "Avansni račun",
117
+ "FINA fiscalized invoices always use the current date": "FINA fiskalizirani računi vedno uporabijo trenutni datum",
108
118
  // Service date
109
119
  "Service Date": "Datum storitve",
110
120
  "Single Date": "Datum",
111
121
  "Date Range": "Obdobje",
112
122
  From: "Od",
113
123
  To: "Do",
124
+ // Separator items
125
+ "Add separator": "Dodaj ločilnik",
126
+ "Section header": "Naslov razdelka",
127
+ "Section title...": "Naslov razdelka...",
128
+ // Transaction type
129
+ "Transaction type": "Vrsta transakcije",
130
+ Domestic: "Domača",
131
+ "EU B2B": "EU B2B",
132
+ "EU B2C": "EU B2C",
133
+ Export: "Izvoz",
134
+ "Determining transaction type...": "Določanje vrste transakcije...",
135
+ "This invoice will not be fiscalized (non-domestic transaction)":
136
+ "Ta račun ne bo fiskaliziran (nedomača transakcija)",
137
+ "Tax Clause": "Davčna klavzula",
138
+ "Add tax clause...": "Dodajte davčno klavzulo...",
114
139
  } as const;
@@ -3,7 +3,7 @@ import { useSDK } from "@/ui/providers/sdk-provider";
3
3
 
4
4
  interface VoidDocumentParams {
5
5
  documentId: string;
6
- documentType: "invoice" | "credit_note" | "advance_invoice";
6
+ documentType: "invoice" | "credit_note" | "advance_invoice" | "delivery_note";
7
7
  entityId: string;
8
8
  reason?: string;
9
9
  }
@@ -28,12 +28,15 @@ export function useVoidDocument() {
28
28
  return sdk.creditNotes.void(documentId, body, opts);
29
29
  case "advance_invoice":
30
30
  return sdk.advanceInvoices.void(documentId, body, opts);
31
+ case "delivery_note":
32
+ return sdk.deliveryNotes.void(documentId, body, opts);
31
33
  }
32
34
  },
33
35
  onSuccess: (_, variables) => {
34
36
  queryClient.invalidateQueries({ queryKey: ["invoices"] });
35
37
  queryClient.invalidateQueries({ queryKey: ["credit-notes"] });
36
38
  queryClient.invalidateQueries({ queryKey: ["advance-invoices"] });
39
+ queryClient.invalidateQueries({ queryKey: ["delivery-notes"] });
37
40
  queryClient.invalidateQueries({ queryKey: ["documents", variables.documentType, variables.documentId] });
38
41
  },
39
42
  });
@@ -1,4 +1,5 @@
1
1
  import type { Invoice } from "@spaceinvoices/js-sdk";
2
+ import { AlertTriangle } from "lucide-react";
2
3
  import { useCallback, useMemo, useState } from "react";
3
4
  import { DataTable } from "@/ui/components/table/data-table";
4
5
  import { FormattedDate } from "@/ui/components/table/date-cell";
@@ -13,6 +14,8 @@ import type {
13
14
  } from "@/ui/components/table/types";
14
15
  import { Badge } from "@/ui/components/ui/badge";
15
16
  import { Button } from "@/ui/components/ui/button";
17
+ import { Tooltip, TooltipContent, TooltipTrigger } from "@/ui/components/ui/tooltip";
18
+ import { getFiscalizationFailureType } from "@/ui/lib/fiscalization";
16
19
  import { createTranslation } from "@/ui/lib/translation";
17
20
  import { useSDK } from "@/ui/providers/sdk-provider";
18
21
 
@@ -53,8 +56,11 @@ type InvoiceListTableProps = {
53
56
  onDownloadSuccess?: (fileName: string) => void;
54
57
  onDownloadError?: (error: string) => void;
55
58
  onExportSelected?: (documentIds: string[]) => void;
59
+ onRetryFiscalization?: (documentIds: string[]) => void;
60
+ fiscalizationFeatures?: ("furs" | "fina")[];
56
61
  onVoid?: (invoice: Invoice) => void;
57
62
  isVoiding?: boolean;
63
+ onCreateNew?: () => void;
58
64
  } & ListTableProps<Invoice>;
59
65
 
60
66
  export default function InvoiceListTable({
@@ -70,8 +76,11 @@ export default function InvoiceListTable({
70
76
  onDownloadSuccess,
71
77
  onDownloadError,
72
78
  onExportSelected,
79
+ onRetryFiscalization,
80
+ fiscalizationFeatures,
73
81
  onVoid,
74
82
  isVoiding,
83
+ onCreateNew,
75
84
  ...i18nProps
76
85
  }: InvoiceListTableProps) {
77
86
  const t = createTranslation({
@@ -91,7 +100,6 @@ export default function InvoiceListTable({
91
100
  limit: params.limit,
92
101
  next_cursor: params.next_cursor,
93
102
  prev_cursor: params.prev_cursor,
94
- order_by: params.order_by,
95
103
  search: params.search,
96
104
  query: params.query,
97
105
  });
@@ -121,15 +129,42 @@ export default function InvoiceListTable({
121
129
  }, []);
122
130
 
123
131
  const selectionToolbar = useCallback(
124
- (count: number) => (
125
- <SelectionToolbar
126
- selectedCount={count}
127
- onExportPdfs={onExportSelected ? handleExportPdfs : undefined}
128
- onDeselectAll={handleDeselectAll}
129
- t={t}
130
- />
131
- ),
132
- [handleExportPdfs, handleDeselectAll, onExportSelected, t],
132
+ (count: number, data: Invoice[]) => {
133
+ const selectedDocs = data.filter((d) => selectedIds.has(d.id));
134
+ const failedDocs = selectedDocs.filter((d) => {
135
+ const failureType = getFiscalizationFailureType(d as any);
136
+ return failureType && fiscalizationFeatures?.includes(failureType);
137
+ });
138
+
139
+ const hasRetry = onRetryFiscalization && fiscalizationFeatures?.length;
140
+ const failedCount = failedDocs.length;
141
+ const allFailed = failedCount > 0 && failedCount === selectedDocs.length;
142
+ const someFailed = failedCount > 0 && failedCount < selectedDocs.length;
143
+ const showRetry = hasRetry && failedCount > 0;
144
+
145
+ return (
146
+ <SelectionToolbar
147
+ selectedCount={count}
148
+ onExportPdfs={onExportSelected ? handleExportPdfs : undefined}
149
+ onRetryFiscalization={showRetry ? () => onRetryFiscalization(failedDocs.map((d) => d.id)) : undefined}
150
+ retryFiscalizationDisabled={someFailed && !allFailed}
151
+ retryFiscalizationTooltip={
152
+ someFailed ? t("Some selected documents don't have failed fiscalization") : undefined
153
+ }
154
+ onDeselectAll={handleDeselectAll}
155
+ t={t}
156
+ />
157
+ );
158
+ },
159
+ [
160
+ handleExportPdfs,
161
+ handleDeselectAll,
162
+ onExportSelected,
163
+ onRetryFiscalization,
164
+ fiscalizationFeatures,
165
+ selectedIds,
166
+ t,
167
+ ],
133
168
  );
134
169
 
135
170
  const columns: Column<Invoice>[] = useMemo(
@@ -137,22 +172,35 @@ export default function InvoiceListTable({
137
172
  {
138
173
  id: "number",
139
174
  header: t("Number"),
140
- sortable: true,
141
- cell: (invoice) => (
142
- <div className="flex items-center gap-2">
143
- <Button variant="link" className="cursor-pointer py-0 underline" onClick={() => onRowClick?.(invoice)}>
144
- {invoice.number}
145
- </Button>
146
- {(invoice as any).is_draft && (
147
- <Badge
148
- variant="outline"
149
- className="border-amber-500 bg-amber-50 text-amber-700 dark:bg-amber-950 dark:text-amber-400"
150
- >
151
- {t("Draft")}
152
- </Badge>
153
- )}
154
- </div>
155
- ),
175
+ cell: (invoice) => {
176
+ const failureType = getFiscalizationFailureType(invoice as any);
177
+ const showWarning = failureType && fiscalizationFeatures?.includes(failureType);
178
+ return (
179
+ <div className="flex items-center gap-2">
180
+ <Button variant="link" className="cursor-pointer py-0 underline" onClick={() => onRowClick?.(invoice)}>
181
+ {invoice.number}
182
+ </Button>
183
+ {(invoice as any).is_draft && (
184
+ <Badge
185
+ variant="outline"
186
+ className="border-amber-500 bg-amber-50 text-amber-700 dark:bg-amber-950 dark:text-amber-400"
187
+ >
188
+ {t("Draft")}
189
+ </Badge>
190
+ )}
191
+ {showWarning && (
192
+ <Tooltip>
193
+ <TooltipTrigger>
194
+ <AlertTriangle className="size-4 text-orange-500" />
195
+ </TooltipTrigger>
196
+ <TooltipContent>
197
+ {t(failureType === "furs" ? "FURS fiscalization failed" : "FINA fiscalization failed")}
198
+ </TooltipContent>
199
+ </Tooltip>
200
+ )}
201
+ </div>
202
+ );
203
+ },
156
204
  },
157
205
  {
158
206
  id: "customer",
@@ -162,26 +210,22 @@ export default function InvoiceListTable({
162
210
  {
163
211
  id: "date",
164
212
  header: t("Date"),
165
- sortable: true,
166
213
  cell: (invoice) => <FormattedDate date={invoice.date} />,
167
214
  },
168
215
  {
169
216
  id: "date_due",
170
217
  header: t("Date Due"),
171
- sortable: true,
172
218
  cell: (invoice) => <FormattedDate date={invoice.date_due} />,
173
219
  },
174
220
  {
175
221
  id: "total",
176
222
  header: t("Total"),
177
- sortable: true,
178
223
  align: "right",
179
224
  cell: (invoice) => invoice.total,
180
225
  },
181
226
  {
182
227
  id: "total_with_tax",
183
228
  header: t("Total with Tax"),
184
- sortable: true,
185
229
  align: "right",
186
230
  cell: (invoice) => invoice.total_with_tax,
187
231
  },
@@ -223,6 +267,7 @@ export default function InvoiceListTable({
223
267
  onVoid,
224
268
  isVoiding,
225
269
  i18nProps.locale,
270
+ fiscalizationFeatures,
226
271
  ],
227
272
  );
228
273
 
@@ -233,6 +278,7 @@ export default function InvoiceListTable({
233
278
  resourceName="invoice"
234
279
  cacheKey="invoices"
235
280
  createNewLink={entityId ? `/app/${entityId}/documents/add/invoice` : undefined}
281
+ onCreateNew={onCreateNew}
236
282
  onFetch={handleFetch}
237
283
  onChangeParams={onChangeParams}
238
284
  disableUrlSync={disableUrlSync}
@@ -240,7 +286,7 @@ export default function InvoiceListTable({
240
286
  filterConfig={filterConfig}
241
287
  t={t}
242
288
  locale={i18nProps.locale}
243
- selectable={!!onExportSelected}
289
+ selectable={!!(onExportSelected || onRetryFiscalization)}
244
290
  selectedIds={selectedIds}
245
291
  onSelectionChange={setSelectedIds}
246
292
  selectionToolbar={selectionToolbar}
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "Keine Rechnungen gefunden",
40
40
  "Try adjusting your search criteria": "Versuchen Sie, Ihre Suchkriterien anzupassen",
41
41
  "Clear search": "Suche zurücksetzen",
42
+ "Clear all": "Alles zurücksetzen",
42
43
  selected: "ausgewählt",
43
44
  "Export PDFs": "PDFs exportieren",
44
45
  "Deselect all": "Auswahl aufheben",
45
46
  Void: "Stornieren",
46
47
  "Partially Paid": "Teilweise bezahlt",
48
+ "FURS fiscalization failed": "FURS fiscalization failed",
49
+ "FINA fiscalization failed": "FINA fiscalization failed",
50
+ "Retry Fiscalization": "Retry Fiscalization",
51
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
47
52
  } as const;
@@ -10,4 +10,8 @@ export default {
10
10
  "Deselect all": "Deselect all",
11
11
  Void: "Void",
12
12
  "Partially Paid": "Partially Paid",
13
+ "FURS fiscalization failed": "FURS fiscalization failed",
14
+ "FINA fiscalization failed": "FINA fiscalization failed",
15
+ "Retry Fiscalization": "Retry Fiscalization",
16
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
13
17
  } as const;
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "No se encontraron facturas",
40
40
  "Try adjusting your search criteria": "Intente ajustar sus criterios de búsqueda",
41
41
  "Clear search": "Limpiar búsqueda",
42
+ "Clear all": "Borrar todo",
42
43
  selected: "seleccionados",
43
44
  "Export PDFs": "Exportar PDFs",
44
45
  "Deselect all": "Deseleccionar todo",
45
46
  Void: "Anular",
46
47
  "Partially Paid": "Parcialmente pagado",
48
+ "FURS fiscalization failed": "FURS fiscalization failed",
49
+ "FINA fiscalization failed": "FINA fiscalization failed",
50
+ "Retry Fiscalization": "Retry Fiscalization",
51
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
47
52
  } as const;
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "Aucune facture trouvée",
40
40
  "Try adjusting your search criteria": "Essayez de modifier vos critères de recherche",
41
41
  "Clear search": "Effacer la recherche",
42
+ "Clear all": "Tout effacer",
42
43
  selected: "sélectionnés",
43
44
  "Export PDFs": "Exporter les PDF",
44
45
  "Deselect all": "Tout désélectionner",
45
46
  Void: "Annuler",
46
47
  "Partially Paid": "Partiellement payé",
48
+ "FURS fiscalization failed": "FURS fiscalization failed",
49
+ "FINA fiscalization failed": "FINA fiscalization failed",
50
+ "Retry Fiscalization": "Retry Fiscalization",
51
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
47
52
  } as const;
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "Nisu pronađeni računi",
40
40
  "Try adjusting your search criteria": "Pokušajte prilagoditi kriterije pretrage",
41
41
  "Clear search": "Očisti pretragu",
42
+ "Clear all": "Očisti sve",
42
43
  selected: "odabranih",
43
44
  "Export PDFs": "Izvezi PDF-ove",
44
45
  "Deselect all": "Poništi odabir",
45
46
  Void: "Storniraj",
46
47
  "Partially Paid": "Djelomično plaćeno",
48
+ "FURS fiscalization failed": "FURS fiskalizacija nije uspjela",
49
+ "FINA fiscalization failed": "FINA fiskalizacija nije uspjela",
50
+ "Retry Fiscalization": "Ponovi fiskalizaciju",
51
+ "Some selected documents don't have failed fiscalization": "Neki odabrani dokumenti nemaju neuspjelu fiskalizaciju",
47
52
  } as const;
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "Nessuna fattura trovata",
40
40
  "Try adjusting your search criteria": "Prova a modificare i criteri di ricerca",
41
41
  "Clear search": "Cancella ricerca",
42
+ "Clear all": "Cancella tutto",
42
43
  selected: "selezionati",
43
44
  "Export PDFs": "Esporta PDF",
44
45
  "Deselect all": "Deseleziona tutto",
45
46
  Void: "Annulla",
46
47
  "Partially Paid": "Parzialmente pagato",
48
+ "FURS fiscalization failed": "FURS fiscalization failed",
49
+ "FINA fiscalization failed": "FINA fiscalization failed",
50
+ "Retry Fiscalization": "Retry Fiscalization",
51
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
47
52
  } as const;
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "Geen facturen gevonden",
40
40
  "Try adjusting your search criteria": "Probeer uw zoekcriteria aan te passen",
41
41
  "Clear search": "Zoekopdracht wissen",
42
+ "Clear all": "Alles wissen",
42
43
  selected: "geselecteerd",
43
44
  "Export PDFs": "PDFs exporteren",
44
45
  "Deselect all": "Alles deselecteren",
45
46
  Void: "Nietig verklaren",
46
47
  "Partially Paid": "Gedeeltelijk betaald",
48
+ "FURS fiscalization failed": "FURS fiscalization failed",
49
+ "FINA fiscalization failed": "FINA fiscalization failed",
50
+ "Retry Fiscalization": "Retry Fiscalization",
51
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
47
52
  } as const;
@@ -39,9 +39,14 @@ export default {
39
39
  "No results found": "Nie znaleziono faktur",
40
40
  "Try adjusting your search criteria": "Spróbuj dostosować kryteria wyszukiwania",
41
41
  "Clear search": "Wyczyść wyszukiwanie",
42
+ "Clear all": "Wyczyść wszystko",
42
43
  selected: "wybranych",
43
44
  "Export PDFs": "Eksportuj PDF-y",
44
45
  "Deselect all": "Odznacz wszystko",
45
46
  Void: "Anuluj",
46
47
  "Partially Paid": "Częściowo opłacona",
48
+ "FURS fiscalization failed": "FURS fiscalization failed",
49
+ "FINA fiscalization failed": "FINA fiscalization failed",
50
+ "Retry Fiscalization": "Retry Fiscalization",
51
+ "Some selected documents don't have failed fiscalization": "Some selected documents don't have failed fiscalization",
47
52
  } as const;