mobicloud-core 1.0.261 → 1.0.263

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.
@@ -135,9 +135,27 @@ export declare enum PalletType {
135
135
  OceanPallet = "OceanPallet"
136
136
  }
137
137
  export declare enum ContainerSizeType {
138
+ Unknown = "Unknown",
138
139
  Full = "Full",
139
140
  Half = "Half",
140
- Small = "Small"
141
+ Small = "Small",
142
+ Box = "Box"
143
+ }
144
+ export declare enum InventoryActivityStatus {
145
+ None = "None",
146
+ Open = "Open",
147
+ InProgess = "InProgess",
148
+ Closed = "Closed"
149
+ }
150
+ export declare enum InventoryActivityType {
151
+ None = "None",
152
+ Loading = "Loading",
153
+ Unloading = "Unloading"
154
+ }
155
+ export declare enum InventoryActivityObjectType {
156
+ None = "None",
157
+ Container = "Container",
158
+ Pallet = "Pallet"
141
159
  }
142
160
  export declare enum InventTransType {
143
161
  Sales = "Sales",
@@ -68,6 +68,7 @@ export * from './project-location';
68
68
  export * from './project-task';
69
69
  export * from './project';
70
70
  export * from './planable-task-part';
71
+ export * from './planable-task-part-container';
71
72
  export * from './resource-task';
72
73
  export * from './sales-line';
73
74
  export * from './sales-order';
@@ -119,6 +120,9 @@ export * from './wms-pallet-type';
119
120
  export * from './batch';
120
121
  export * from './invent-trans';
121
122
  export * from './invent-container';
123
+ export * from './invent-container-type';
124
+ export * from './invent-container-location';
125
+ export * from './inventory-activity';
122
126
  export * from './wms-zone';
123
127
  export * from './work-center-setting';
124
128
  export * from './work-center';
@@ -0,0 +1,14 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { InventLocation } from "./invent-location";
3
+ import { WMSLocation } from "./wms-location";
4
+ export declare class InventContainerLocation extends DomainObject {
5
+ LocationId?: string | undefined;
6
+ Active?: boolean | undefined;
7
+ X?: number | undefined;
8
+ Y?: number | undefined;
9
+ Z?: number | undefined;
10
+ InventLocationId?: string | undefined;
11
+ InventLocation?: InventLocation | undefined;
12
+ WMSLocationId?: string | undefined;
13
+ WMSLocation?: WMSLocation | undefined;
14
+ }
@@ -0,0 +1,12 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { ContainerSizeType } from "./all.enum";
3
+ export declare class InventContainerType extends DomainObject {
4
+ TypeId?: string | undefined;
5
+ Type?: ContainerSizeType | undefined;
6
+ AreaM2?: number | undefined;
7
+ NumberOfItems?: number | undefined;
8
+ Length?: number | undefined;
9
+ Width?: number | undefined;
10
+ Height?: number | undefined;
11
+ Value?: number | undefined;
12
+ }
@@ -2,11 +2,23 @@ import { DomainObject } from "./domain-object";
2
2
  import { ContainerSizeType } from "./all.enum";
3
3
  import { InventLocation } from "./invent-location";
4
4
  import { Barcode } from "./barcode";
5
+ import { WMSLocation } from "./wms-location";
6
+ import { InventContainerType } from "./invent-container-type";
7
+ import { InventContainerLocation } from "./invent-container-location";
5
8
  export declare class InventContainer extends DomainObject {
6
9
  ContainerId?: string | undefined;
7
- SizeType?: ContainerSizeType | undefined;
8
10
  Active?: boolean | undefined;
11
+ SizeType?: ContainerSizeType | undefined;
9
12
  InventLocationId?: string | undefined;
10
13
  InventLocation?: InventLocation | undefined;
14
+ WMSLocationId?: string | undefined;
15
+ WMSLocation?: WMSLocation | undefined;
11
16
  Barcodes?: Barcode[] | undefined;
17
+ SSCC_Code?: string | undefined;
18
+ WeightInKg?: number | undefined;
19
+ TypeId?: string | undefined;
20
+ Type?: InventContainerType | undefined;
21
+ ContainerTypeValue?: number | undefined;
22
+ ContainerLocationId?: string | undefined;
23
+ ContainerLocation?: InventContainerLocation | undefined;
12
24
  }
@@ -1,4 +1,5 @@
1
1
  import { DomainObject } from "./domain-object";
2
+ import { InventContainer } from "./invent-container";
2
3
  import { Location } from "./location";
3
4
  import { WMSLocation } from "./wms-location";
4
5
  export declare class InventLocation extends DomainObject {
@@ -6,5 +7,6 @@ export declare class InventLocation extends DomainObject {
6
7
  LocationId?: string | undefined;
7
8
  Location?: Location | undefined;
8
9
  WmsLocations?: WMSLocation[] | undefined;
10
+ Containers?: InventContainer[] | undefined;
9
11
  Active?: boolean | undefined;
10
12
  }
@@ -0,0 +1,28 @@
1
+ import { InventoryActivityStatus, InventoryActivityType, InventoryActivityObjectType } from "./all.enum";
2
+ import { DomainObject } from "./domain-object";
3
+ import { Employee } from "./employee";
4
+ import { InventContainer } from "./invent-container";
5
+ import { InventContainerType } from "./invent-container-type";
6
+ import { Project } from "./project";
7
+ import { WMSPallet } from "./wms-pallet";
8
+ import { WMSPalletType } from "./wms-pallet-type";
9
+ export declare class InventoryActivity extends DomainObject {
10
+ ActivityId?: string | undefined;
11
+ ProjectId?: string | undefined;
12
+ Project?: Project | undefined;
13
+ Status?: InventoryActivityStatus | undefined;
14
+ ActivityType?: InventoryActivityType | undefined;
15
+ Terminate?: boolean | undefined;
16
+ ObjectType?: InventoryActivityObjectType | undefined;
17
+ TimeConsumed?: number | undefined;
18
+ EmployeeId?: string | undefined;
19
+ Employee?: Employee | undefined;
20
+ PalletId?: string | undefined;
21
+ Pallet?: WMSPallet | undefined;
22
+ PalletTypeId?: string | undefined;
23
+ PalletType?: WMSPalletType | undefined;
24
+ ContainerId?: string | undefined;
25
+ Container?: InventContainer | undefined;
26
+ ContainerTypeId?: string | undefined;
27
+ ContainerType?: InventContainerType | undefined;
28
+ }
@@ -0,0 +1,8 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { PlanableTaskPart } from "./planable-task-part";
3
+ export declare class PlanableTaskPartContainer extends DomainObject {
4
+ ContainerId?: string | undefined;
5
+ StartDate?: Date | undefined;
6
+ EndDate?: Date | undefined;
7
+ TaskParts?: PlanableTaskPart[] | undefined;
8
+ }
@@ -1093,10 +1093,31 @@
1093
1093
  })(exports.PalletType || (exports.PalletType = {}));
1094
1094
  exports.ContainerSizeType = void 0;
1095
1095
  (function (ContainerSizeType) {
1096
+ ContainerSizeType["Unknown"] = "Unknown";
1096
1097
  ContainerSizeType["Full"] = "Full";
1097
1098
  ContainerSizeType["Half"] = "Half";
1098
1099
  ContainerSizeType["Small"] = "Small";
1100
+ ContainerSizeType["Box"] = "Box";
1099
1101
  })(exports.ContainerSizeType || (exports.ContainerSizeType = {}));
1102
+ exports.InventoryActivityStatus = void 0;
1103
+ (function (InventoryActivityStatus) {
1104
+ InventoryActivityStatus["None"] = "None";
1105
+ InventoryActivityStatus["Open"] = "Open";
1106
+ InventoryActivityStatus["InProgess"] = "InProgess";
1107
+ InventoryActivityStatus["Closed"] = "Closed";
1108
+ })(exports.InventoryActivityStatus || (exports.InventoryActivityStatus = {}));
1109
+ exports.InventoryActivityType = void 0;
1110
+ (function (InventoryActivityType) {
1111
+ InventoryActivityType["None"] = "None";
1112
+ InventoryActivityType["Loading"] = "Loading";
1113
+ InventoryActivityType["Unloading"] = "Unloading";
1114
+ })(exports.InventoryActivityType || (exports.InventoryActivityType = {}));
1115
+ exports.InventoryActivityObjectType = void 0;
1116
+ (function (InventoryActivityObjectType) {
1117
+ InventoryActivityObjectType["None"] = "None";
1118
+ InventoryActivityObjectType["Container"] = "Container";
1119
+ InventoryActivityObjectType["Pallet"] = "Pallet";
1120
+ })(exports.InventoryActivityObjectType || (exports.InventoryActivityObjectType = {}));
1100
1121
  exports.InventTransType = void 0;
1101
1122
  (function (InventTransType) {
1102
1123
  InventTransType["Sales"] = "Sales";
@@ -2370,6 +2391,14 @@
2370
2391
  return PlanableTaskPart;
2371
2392
  }(DomainObject));
2372
2393
 
2394
+ var PlanableTaskPartContainer = /** @class */ (function (_super) {
2395
+ __extends(PlanableTaskPartContainer, _super);
2396
+ function PlanableTaskPartContainer() {
2397
+ return _super !== null && _super.apply(this, arguments) || this;
2398
+ }
2399
+ return PlanableTaskPartContainer;
2400
+ }(DomainObject));
2401
+
2373
2402
  var SalesLine = /** @class */ (function (_super) {
2374
2403
  __extends(SalesLine, _super);
2375
2404
  function SalesLine() {
@@ -3335,6 +3364,30 @@
3335
3364
  return InventContainer;
3336
3365
  }(DomainObject));
3337
3366
 
3367
+ var InventContainerType = /** @class */ (function (_super) {
3368
+ __extends(InventContainerType, _super);
3369
+ function InventContainerType() {
3370
+ return _super !== null && _super.apply(this, arguments) || this;
3371
+ }
3372
+ return InventContainerType;
3373
+ }(DomainObject));
3374
+
3375
+ var InventContainerLocation = /** @class */ (function (_super) {
3376
+ __extends(InventContainerLocation, _super);
3377
+ function InventContainerLocation() {
3378
+ return _super !== null && _super.apply(this, arguments) || this;
3379
+ }
3380
+ return InventContainerLocation;
3381
+ }(DomainObject));
3382
+
3383
+ var InventoryActivity = /** @class */ (function (_super) {
3384
+ __extends(InventoryActivity, _super);
3385
+ function InventoryActivity() {
3386
+ return _super !== null && _super.apply(this, arguments) || this;
3387
+ }
3388
+ return InventoryActivity;
3389
+ }(DomainObject));
3390
+
3338
3391
  var WMSZone = /** @class */ (function (_super) {
3339
3392
  __extends(WMSZone, _super);
3340
3393
  function WMSZone() {
@@ -3834,9 +3887,12 @@
3834
3887
  exports.Holiday = Holiday;
3835
3888
  exports.Image = Image;
3836
3889
  exports.InventContainer = InventContainer;
3890
+ exports.InventContainerLocation = InventContainerLocation;
3891
+ exports.InventContainerType = InventContainerType;
3837
3892
  exports.InventLocation = InventLocation;
3838
3893
  exports.InventObject = InventObject;
3839
3894
  exports.InventTrans = InventTrans;
3895
+ exports.InventoryActivity = InventoryActivity;
3840
3896
  exports.KilometerToMeterPipe = KilometerToMeterPipe;
3841
3897
  exports.Location = Location;
3842
3898
  exports.Machine = Machine;
@@ -3861,6 +3917,7 @@
3861
3917
  exports.PickingList = PickingList;
3862
3918
  exports.PlanableTask = PlanableTask;
3863
3919
  exports.PlanableTaskPart = PlanableTaskPart;
3920
+ exports.PlanableTaskPartContainer = PlanableTaskPartContainer;
3864
3921
  exports.PlanningMapSlideShow = PlanningMapSlideShow;
3865
3922
  exports.PlanningMapSlideShowEntry = PlanningMapSlideShowEntry;
3866
3923
  exports.PriceList = PriceList;