mobicloud-core 1.0.184 → 1.0.185

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.
@@ -9,6 +9,7 @@ import { EmployeeLoginInfo } from "./employee-login-info";
9
9
  import { InventLocation } from "./invent-location";
10
10
  import { Location } from "./location";
11
11
  import { PayrollInterval } from './payroll-interval';
12
+ import { WorkCenter } from './work-center';
12
13
  export declare class Resource extends DomainObject {
13
14
  IsPerson?: boolean | undefined;
14
15
  IsEmployee?: boolean | undefined;
@@ -80,6 +81,7 @@ export declare class Asset extends Resource {
80
81
  export declare class Tool extends Asset {
81
82
  }
82
83
  export declare class Machine extends Asset {
84
+ WorkCenters?: WorkCenter[] | undefined;
83
85
  }
84
86
  export declare class Facility extends Asset {
85
87
  }
@@ -5,13 +5,13 @@ import { Product } from "./product";
5
5
  import { InventLocation } from "./invent-location";
6
6
  export declare class ProductRoute extends DomainObject {
7
7
  ProductRouteId?: string | undefined;
8
- OperationNumber?: string | undefined;
9
- OperationNumber_Next?: string | undefined;
10
8
  Qty?: number | undefined;
11
9
  ProductId?: string | undefined;
12
10
  Product?: Product | undefined;
13
11
  OperationId?: string | undefined;
14
12
  Operation?: ProductOperation | undefined;
13
+ OperationNextId?: string | undefined;
14
+ OperationNext?: ProductOperation | undefined;
15
15
  WorkCenterId?: string | undefined;
16
16
  WorkCenter?: WorkCenter | undefined;
17
17
  PickingLocationId?: string | undefined;
@@ -3,10 +3,9 @@ import { WorkCenter } from "./work-center";
3
3
  import { ProductOperation } from "./product-operation";
4
4
  import { Production } from "./production";
5
5
  import { ProductionTransaction } from "./production-transaction";
6
+ import { Machine } from "./employee";
6
7
  export declare class ProductionRoute extends DomainObject {
7
8
  RouteId?: string | undefined;
8
- OperationNumber?: string | undefined;
9
- OperationNumber_Next?: string | undefined;
10
9
  Qty?: number | undefined;
11
10
  Qty_Consumed?: number | undefined;
12
11
  HoursConsumed?: number | undefined;
@@ -16,7 +15,11 @@ export declare class ProductionRoute extends DomainObject {
16
15
  Production?: Production | undefined;
17
16
  OperationId?: string | undefined;
18
17
  Operation?: ProductOperation | undefined;
18
+ OperationNextId?: string | undefined;
19
+ OperationNext?: ProductOperation | undefined;
19
20
  WorkCenterId?: string | undefined;
20
21
  WorkCenter?: WorkCenter | undefined;
22
+ MachineId?: string | undefined;
23
+ Machine?: Machine | undefined;
21
24
  ProductionTransactions?: ProductionTransaction[] | undefined;
22
25
  }
@@ -3,12 +3,19 @@ import { Product } from "./product";
3
3
  import { ConfigDimension } from "./config-dimension";
4
4
  import { ProductionRoute } from "./production-route";
5
5
  import { Production } from "./production";
6
+ import { Employee, Machine } from "./employee";
7
+ import { ProductOperation } from "./product-operation";
8
+ import { WorkCenter } from "./work-center";
6
9
  export declare class ProductionTransaction extends DomainObject {
7
10
  TransactionId?: string | undefined;
8
11
  QtyGood?: number | undefined;
9
12
  QtyBad?: number | undefined;
13
+ HoursConsumed?: number | undefined;
14
+ Date?: Date | undefined;
10
15
  StartTime?: Date | undefined;
11
16
  EndTime?: Date | undefined;
17
+ EmployeeId?: string | undefined;
18
+ Employee?: Employee | undefined;
12
19
  ProductionId?: string | undefined;
13
20
  Production?: Production | undefined;
14
21
  RouteId?: string | undefined;
@@ -17,4 +24,10 @@ export declare class ProductionTransaction extends DomainObject {
17
24
  Product?: Product | undefined;
18
25
  ConfigId?: string | undefined;
19
26
  Config?: ConfigDimension | undefined;
27
+ OperationId?: string | undefined;
28
+ Operation?: ProductOperation | undefined;
29
+ WorkCenterId?: string | undefined;
30
+ WorkCenter?: WorkCenter | undefined;
31
+ MachineId?: string | undefined;
32
+ Machine?: Machine | undefined;
20
33
  }
@@ -1,4 +1,6 @@
1
1
  import { DomainObject } from "./domain-object";
2
+ import { Machine } from "./employee";
2
3
  export declare class WorkCenter extends DomainObject {
3
4
  WorkCenterId?: string | undefined;
5
+ Machines?: Machine[] | undefined;
4
6
  }