ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface PurchaseOrderLine {
        id: string;
        purchaseOrderId: string;
        rawMaterialId: string;
        quantity: number;
        unitPrice: number;
        totalPrice: number;
        taxId?: string;
        taxRate: number;
        taxAmount: number;
        receivedQuantity: number;
        remainingQuantity: number;
        notes?: string;
        rawMaterial?: {
            id: string;
            name: string;
            code: string;
            unit: string;
            unitOfMeasure?: { id: string; name: string; code: string };
        };
        tax?: { id: string; name: string; code: string; rate: number };
    }
    Index

    Properties

    id: string
    purchaseOrderId: string
    rawMaterialId: string
    quantity: number
    unitPrice: number
    totalPrice: number
    taxId?: string
    taxRate: number
    taxAmount: number
    receivedQuantity: number
    remainingQuantity: number
    notes?: string
    rawMaterial?: {
        id: string;
        name: string;
        code: string;
        unit: string;
        unitOfMeasure?: { id: string; name: string; code: string };
    }
    tax?: { id: string; name: string; code: string; rate: number }