import { DomainObject } from "./domain-object"; import { Product } from "./product"; import { ColorDimension } from "./color-dimension"; import { ConfigDimension } from "./config-dimension"; import { SizeDimension } from "./size-dimension"; import { PurchaseOrder } from "./purchase-order"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; import { Batch } from "./batch"; import { PurchaseLineStatus, UserType } from "./all.enum"; import { Barcode } from "./barcode"; import { Beacon } from "./beacon"; export declare class PurchaseLine extends DomainObject { PurchaseOrderId?: string | undefined; PurchaseOrder?: PurchaseOrder | undefined; LineId?: string | undefined; LineNumber?: number | undefined; Qty?: number | undefined; QtyReceived?: number | undefined; ProductId?: string | undefined; Product?: Product | undefined; ColorId?: string | undefined; Color?: ColorDimension | undefined; SizeId?: string | undefined; Size?: SizeDimension | undefined; ConfigId?: string | undefined; Config?: ConfigDimension | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; BatchId?: string | undefined; Batch?: Batch | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; Note?: string | undefined; UnitPrice?: number | undefined; DiscountAmount?: number | undefined; DiscountPercent?: number | undefined; TotalAmount?: number | undefined; Printer?: string | undefined; ApprovedDate?: Date | undefined; Id_ApprovedBy?: string | undefined; UserType_ApprovedBy?: UserType | undefined; Status?: PurchaseLineStatus | undefined; Barcodes?: Barcode[] | undefined; } //# sourceMappingURL=purchase-line.d.ts.map