mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
style: inter module integration
This commit is contained in:
@@ -930,10 +930,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. */
|
||||
|
||||
Reference in New Issue
Block a user