Member Junction
    Preparing search index...

    Interface for a Sales Invoice from Business Central

    interface BCSalesInvoice {
        billToCustomerId: string;
        billToName: string;
        currencyCode: string;
        customerId: string;
        customerName: string;
        customerNumber: string;
        dueDate: Date;
        externalDocumentNumber?: string;
        id: string;
        invoiceDate: Date;
        lastModifiedDateTime: Date;
        lines?: BCSalesInvoiceLine[];
        number: string;
        paymentTermsId?: string;
        remainingAmount: number;
        sellToAddressLine1?: string;
        sellToAddressLine2?: string;
        sellToCity?: string;
        sellToCountry?: string;
        sellToPostCode?: string;
        sellToState?: string;
        shipmentMethodId?: string;
        shipToContact?: string;
        shipToName?: string;
        status: string;
        totalAmountExcludingTax: number;
        totalAmountIncludingTax: number;
        totalTaxAmount: number;
    }
    Index

    Properties

    billToCustomerId: string
    billToName: string
    currencyCode: string
    customerId: string
    customerName: string
    customerNumber: string
    dueDate: Date
    externalDocumentNumber?: string
    id: string
    invoiceDate: Date
    lastModifiedDateTime: Date
    number: string
    paymentTermsId?: string
    remainingAmount: number
    sellToAddressLine1?: string
    sellToAddressLine2?: string
    sellToCity?: string
    sellToCountry?: string
    sellToPostCode?: string
    sellToState?: string
    shipmentMethodId?: string
    shipToContact?: string
    shipToName?: string
    status: string
    totalAmountExcludingTax: number
    totalAmountIncludingTax: number
    totalTaxAmount: number