import { DomainObject } from "./domain-object"; import { Employee } from "./employee"; import { JournalLineStatus, UserType } from "./all.enum"; import { CountingJournal } from "./counting-journal"; import { Product } from "./product"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; import { ColorDimension } from "./color-dimension"; import { SizeDimension } from "./size-dimension"; import { ConfigDimension } from "./config-dimension"; import { ServiceObject } from "./service-object"; export declare class CountingJournalLine extends DomainObject { JournalLineId?: string | undefined; Date?: Date | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; JournalId?: string | undefined; Journal?: CountingJournal | undefined; ProductId?: string | undefined; Product?: Product | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; ColorId?: string | undefined; Color?: ColorDimension | undefined; SizeId?: string | undefined; Size?: SizeDimension | undefined; ConfigId?: string | undefined; Config?: ConfigDimension | undefined; OnHand?: number | undefined; Counted?: number | undefined; Difference?: number | undefined; ServiceObjectId?: string | undefined; ServiceObject?: ServiceObject | undefined; ApprovedById?: string | undefined; ApprovedBy?: Employee | undefined; ApprovedDate?: Date | undefined; Id_ApprovedBy?: string | undefined; UserType_ApprovedBy?: UserType | undefined; Status?: JournalLineStatus | undefined; PhysicalDate?: Date | undefined; FinanceDate?: Date | undefined; get StatusString(): string | undefined; } //# sourceMappingURL=counting-journal-line.d.ts.map