Merge branch 'dev'

This commit is contained in:
Marshal
2026-08-13 14:14:31 +00:00
219 changed files with 13585 additions and 5559 deletions

View File

@@ -937,10 +937,19 @@ export interface ClearanceView {
importReleaseGranted?: boolean;
}
/** Company an invoice is billed to (minimal projection). */
/**
* Company an invoice is billed to. `findById` returns the full `Company`
* relation, not a stripped projection — these extra fields are what the
* backoffice invoice detail page's recipient card shows.
*/
export interface IInvoiceCompany {
id: string;
name: string;
tin?: string | null;
vatNumber?: string | null;
phone?: string | null;
email?: string | null;
address?: string | null;
}
/** Company profile (importer/exporter/forwarder/…) an invoice is billed to. */