mobicloud-core 1.0.239 → 1.0.241

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { DomainObject } from "./domain-object";
2
- import { TaskStatus, ProjectFinancialType, ProjectType } from "./all.enum";
2
+ import { TaskStatus, ProjectFinancialType, ProjectType, UserType } from "./all.enum";
3
3
  import { ProjectLocation } from "./project-location";
4
4
  import { TaskType } from "./task-type";
5
5
  import { Currency } from "./currency";
@@ -43,4 +43,8 @@ export declare class PlanableTask extends DomainObject {
43
43
  SchemaTypeId?: string | undefined;
44
44
  SchemaType?: SchemaType | undefined;
45
45
  SchemaInstances?: SchemaInstance[] | undefined;
46
+ IsTemplate?: boolean | undefined;
47
+ TemplateName?: string | undefined;
48
+ TemplateUserId?: string | undefined;
49
+ TemplateUserType?: UserType | undefined;
46
50
  }
@@ -1,8 +1,10 @@
1
1
  import { DomainObject } from "./domain-object";
2
2
  import { InventLocation } from "./invent-location";
3
3
  import { Product } from "./product";
4
+ import { ProductOperation } from "./product-operation";
4
5
  import { Production } from "./production";
5
6
  import { WMSLocation } from "./wms-location";
7
+ import { WorkCenter } from "./work-center";
6
8
  export declare class ProductionBOMLine extends DomainObject {
7
9
  LineId?: string | undefined;
8
10
  QtyConsumed?: number | undefined;
@@ -15,4 +17,8 @@ export declare class ProductionBOMLine extends DomainObject {
15
17
  Product?: Product | undefined;
16
18
  InventLocationId?: string | undefined;
17
19
  InventLocation?: InventLocation | undefined;
20
+ WorkCenterId?: string | undefined;
21
+ WorkCenter?: WorkCenter | undefined;
22
+ OperationId?: string | undefined;
23
+ Operation?: ProductOperation | undefined;
18
24
  }
@@ -4,6 +4,7 @@ import { ProductOperation } from "./product-operation";
4
4
  import { Production } from "./production";
5
5
  import { ProductionTransaction } from "./production-transaction";
6
6
  import { Machine } from "./employee";
7
+ import { ProductionStatus } from "./all.enum";
7
8
  export declare class ProductionRoute extends DomainObject {
8
9
  RouteId?: string | undefined;
9
10
  Qty?: number | undefined;
@@ -11,6 +12,9 @@ export declare class ProductionRoute extends DomainObject {
11
12
  HoursConsumed?: number | undefined;
12
13
  ScheduledStart?: Date | undefined;
13
14
  ScheduledFinish?: Date | undefined;
15
+ ActualStart?: Date | undefined;
16
+ ActualFinish?: Date | undefined;
17
+ Status?: ProductionStatus | undefined;
14
18
  ProductionId?: string | undefined;
15
19
  Production?: Production | undefined;
16
20
  OperationId?: string | undefined;
@@ -4,6 +4,7 @@ import { PlanableTask } from "./planable-task";
4
4
  import { PlanableTaskPart } from "./planable-task-part";
5
5
  import { ResourceTaskStatus, ResourceTaskType } from "./all.enum";
6
6
  export declare class ResourceTask extends DomainObject {
7
+ ResourceTaskId?: string | undefined;
7
8
  StartDate?: Date | undefined;
8
9
  EndDate?: Date | undefined;
9
10
  Type?: ResourceTaskType | undefined;