mobicloud-core 1.0.221 → 1.0.223
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.
- package/api/types/all.enum.d.ts +4 -1
- package/api/types/index.d.ts +1 -0
- package/api/types/sales-order.d.ts +1 -0
- package/api/types/shipment.d.ts +1 -0
- package/api/types/wms-pallet-type.d.ts +11 -0
- package/api/types/wms-pallet.d.ts +12 -2
- package/bundles/mobicloud-core-api.umd.js +12 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/bundles/mobicloud-core-components.umd.js +7 -46
- package/bundles/mobicloud-core-components.umd.js.map +1 -1
- package/components/main-nav/main-nav.component.d.ts +1 -0
- package/esm2015/api/types/all.enum.js +4 -1
- package/esm2015/api/types/index.js +2 -1
- package/esm2015/api/types/sales-order.js +1 -1
- package/esm2015/api/types/shipment.js +1 -1
- package/esm2015/api/types/wms-pallet-type.js +4 -0
- package/esm2015/api/types/wms-pallet.js +1 -1
- package/esm2015/components/customer-user/customer-user-general/customer-user-general.component.js +1 -4
- package/esm2015/components/dimension/dimension-group-box/dimension-group-box.component.js +1 -2
- package/esm2015/components/employee/employee-profile/employee-profile.component.js +1 -13
- package/esm2015/components/main-nav/main-nav.component.js +4 -2
- package/esm2015/components/project/project-finance/project-finance.component.js +2 -3
- package/esm2015/components/project/project-general/project-general.component.js +4 -7
- package/esm2015/components/service-object/service-object-general/service-object-general.component.js +1 -7
- package/esm2015/components/service-object/service-object-inventory/service-object-inventory.component.js +1 -7
- package/esm2015/components/vendor-user/vendor-user-address/vendor-user-address.component.js +1 -4
- package/esm2015/components/vendor-user/vendor-user-general/vendor-user-general.component.js +1 -7
- package/fesm2015/mobicloud-core-api.js +7 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/fesm2015/mobicloud-core-components.js +7 -46
- package/fesm2015/mobicloud-core-components.js.map +1 -1
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
|
@@ -203,7 +203,10 @@ export declare enum WMSLocationActivityType {
|
|
|
203
203
|
Unknown = "Unknown",
|
|
204
204
|
Inbound = "Inbound",
|
|
205
205
|
Outbound = "Outbound",
|
|
206
|
-
Pick = "Pick"
|
|
206
|
+
Pick = "Pick",
|
|
207
|
+
Area = "Area",
|
|
208
|
+
Pallet = "Pallet",
|
|
209
|
+
Container = "Container"
|
|
207
210
|
}
|
|
208
211
|
export declare enum ProductionTaskEntityType {
|
|
209
212
|
Unknown = "Unknown",
|
package/api/types/index.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export * from './vendor-user';
|
|
|
115
115
|
export * from './wms-location';
|
|
116
116
|
export * from './wms-location-type';
|
|
117
117
|
export * from './wms-pallet';
|
|
118
|
+
export * from './wms-pallet-type';
|
|
118
119
|
export * from './batch';
|
|
119
120
|
export * from './invent-trans';
|
|
120
121
|
export * from './invent-container';
|
|
@@ -68,6 +68,7 @@ export declare class SalesOrder extends DomainObject {
|
|
|
68
68
|
BillToReference: string | undefined;
|
|
69
69
|
BillToEmail: string | undefined;
|
|
70
70
|
BillToPhone: string | undefined;
|
|
71
|
+
BillTo_ProviderAccount: string | undefined;
|
|
71
72
|
BillToLatitude?: number | undefined;
|
|
72
73
|
BillToLongitude?: number | undefined;
|
|
73
74
|
Lines?: SalesLine[] | undefined;
|
package/api/types/shipment.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export declare class Shipment extends DomainObject {
|
|
|
82
82
|
BillTo_Mobile: string | undefined;
|
|
83
83
|
BillTo_Telephone: string | undefined;
|
|
84
84
|
BillTo_Reference: string | undefined;
|
|
85
|
+
BillTo_ProviderAccount: string | undefined;
|
|
85
86
|
SalesOrderId: string | undefined;
|
|
86
87
|
SalesOrder: SalesOrder | undefined;
|
|
87
88
|
PickingListId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DomainObject } from "./domain-object";
|
|
2
|
+
import { PalletType } from "./all.enum";
|
|
3
|
+
export declare class WMSPalletType extends DomainObject {
|
|
4
|
+
TypeId?: string | undefined;
|
|
5
|
+
Type?: PalletType | undefined;
|
|
6
|
+
AreaM2?: number | undefined;
|
|
7
|
+
NumberOfItems?: number | undefined;
|
|
8
|
+
Length?: number | undefined;
|
|
9
|
+
Width?: number | undefined;
|
|
10
|
+
Height?: number | undefined;
|
|
11
|
+
}
|
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
import { DomainObject } from "./domain-object";
|
|
2
2
|
import { InventLocation } from "./invent-location";
|
|
3
3
|
import { WMSLocation } from "./wms-location";
|
|
4
|
-
import {
|
|
4
|
+
import { WMSPalletType } from "./wms-pallet-type";
|
|
5
|
+
import { Project } from "./project";
|
|
6
|
+
import { Customer } from "./customer";
|
|
7
|
+
import { Beacon } from "./beacon";
|
|
5
8
|
export declare class WMSPallet extends DomainObject {
|
|
6
9
|
PalletId?: string | undefined;
|
|
7
10
|
SSCC_Code?: string | undefined;
|
|
8
11
|
Active?: boolean | undefined;
|
|
9
12
|
WeightInKg?: number | undefined;
|
|
10
|
-
|
|
13
|
+
TypeId?: string | undefined;
|
|
14
|
+
Type?: WMSPalletType | undefined;
|
|
11
15
|
PalletTypeValue?: number | undefined;
|
|
12
16
|
InventLocationId?: string | undefined;
|
|
13
17
|
InventLocation?: InventLocation | undefined;
|
|
14
18
|
WMSLocationId?: string | undefined;
|
|
15
19
|
WMSLocation?: WMSLocation | undefined;
|
|
20
|
+
CustomerId?: string | undefined;
|
|
21
|
+
Customer?: Customer | undefined;
|
|
22
|
+
ProjectId?: string | undefined;
|
|
23
|
+
Project?: Project | undefined;
|
|
24
|
+
BeaconId?: string | undefined;
|
|
25
|
+
Beacon?: Beacon | undefined;
|
|
16
26
|
}
|
|
@@ -1169,6 +1169,9 @@
|
|
|
1169
1169
|
WMSLocationActivityType["Inbound"] = "Inbound";
|
|
1170
1170
|
WMSLocationActivityType["Outbound"] = "Outbound";
|
|
1171
1171
|
WMSLocationActivityType["Pick"] = "Pick";
|
|
1172
|
+
WMSLocationActivityType["Area"] = "Area";
|
|
1173
|
+
WMSLocationActivityType["Pallet"] = "Pallet";
|
|
1174
|
+
WMSLocationActivityType["Container"] = "Container";
|
|
1172
1175
|
})(exports.WMSLocationActivityType || (exports.WMSLocationActivityType = {}));
|
|
1173
1176
|
exports.ProductionTaskEntityType = void 0;
|
|
1174
1177
|
(function (ProductionTaskEntityType) {
|
|
@@ -3208,6 +3211,14 @@
|
|
|
3208
3211
|
return WMSPallet;
|
|
3209
3212
|
}(DomainObject));
|
|
3210
3213
|
|
|
3214
|
+
var WMSPalletType = /** @class */ (function (_super) {
|
|
3215
|
+
__extends(WMSPalletType, _super);
|
|
3216
|
+
function WMSPalletType() {
|
|
3217
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3218
|
+
}
|
|
3219
|
+
return WMSPalletType;
|
|
3220
|
+
}(DomainObject));
|
|
3221
|
+
|
|
3211
3222
|
var Batch = /** @class */ (function (_super) {
|
|
3212
3223
|
__extends(Batch, _super);
|
|
3213
3224
|
function Batch() {
|
|
@@ -3783,6 +3794,7 @@
|
|
|
3783
3794
|
exports.WMSLocation = WMSLocation;
|
|
3784
3795
|
exports.WMSLocationType = WMSLocationType;
|
|
3785
3796
|
exports.WMSPallet = WMSPallet;
|
|
3797
|
+
exports.WMSPalletType = WMSPalletType;
|
|
3786
3798
|
exports.WMSZone = WMSZone;
|
|
3787
3799
|
exports.WorkBreak = WorkBreak;
|
|
3788
3800
|
exports.WorkCenter = WorkCenter;
|