import { DomainObject } from "./domain-object"; import { AssetTransDirection, AssetTransType, UserType } from "./all.enum"; import { Product } from "./product"; import { InventLocation } from "./invent-location"; import { Project } from "./project"; import { Production } from "./production"; import { ServiceObject } from "./service-object"; import { Employee } from "./employee"; import { Asset, Facility } from "./asset"; import { Customer } from "./customer"; export declare class AssetTrans extends DomainObject { TransNo?: number | undefined; TransRef?: string | undefined; TransId?: string | undefined; TransDate?: Date | undefined; Qty?: number | undefined; Amount?: number | undefined; Price?: number | undefined; Text?: string | undefined; EntityId?: string | undefined; EntityType?: string | undefined; Direction?: AssetTransDirection | undefined; TransType?: AssetTransType | undefined; ID_ApprovedBy?: string | undefined; ApprovedBy_UserType?: UserType | undefined; ApprovedDate?: Date | undefined; AssetId?: string | undefined; Asset?: Asset | undefined; ASSET_ASSETID?: string | undefined; ASSET_TYPE?: string | undefined; ASSET_NAME?: string | undefined; ProductId?: string | undefined; Product?: Product | undefined; PRODUCT_PRODUCTID?: string | undefined; PRODUCT_SKU?: string | undefined; PRODUCT_NAME?: string | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; INVENTLOCATION_INVENTLOCATIONID?: string | undefined; INVENTLOCATION_NAME?: string | undefined; ProjectId?: string | undefined; Project?: Project | undefined; PROJECT_PROJECTID?: string | undefined; PROJECT_NAME?: string | undefined; ProductionId?: string | undefined; Production?: Production | undefined; PRODUCTION_PRODUCTIONID?: string | undefined; PRODUCTION_NAME?: number | undefined; ServiceObjectId?: string | undefined; ServiceObject?: ServiceObject | undefined; SERVICEOBJECT_SERVICEOBJECTID?: string | undefined; SERVICEOBJECT_NAME?: string | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; EMPLOYEE_EMPLOYEEID?: string | undefined; EMPLOYEE_NAME?: string | undefined; FacilityId?: string | undefined; Facility?: Facility | undefined; FACILITY_FACILITYID?: string | undefined; FACILITY_NAME?: string | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; CUSTOMER_CUSTOMERID?: string | undefined; CUSTOMER_ACCOUNT?: string | undefined; CUSTOMER_NAME?: string | undefined; } //# sourceMappingURL=asset-trans.d.ts.map