mobicloud-core 1.0.290 → 1.0.292
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 -0
- package/api/types/employee.d.ts +2 -1
- package/api/types/index.d.ts +1 -0
- package/api/types/picking-line.d.ts +4 -0
- package/api/types/project-piece-work.d.ts +9 -0
- package/api/types/project.d.ts +2 -0
- package/api/types/sales-line.d.ts +6 -0
- package/api/types/time-journal-line.d.ts +3 -0
- package/bundles/mobicloud-core-api.umd.js +14 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/bundles/mobicloud-core-components.umd.js +1 -1
- package/bundles/mobicloud-core-components.umd.js.map +1 -1
- package/bundles/mobicloud-core.umd.js +2 -2
- package/bundles/mobicloud-core.umd.js.map +1 -1
- package/esm2015/api/types/all.enum.js +6 -1
- package/esm2015/api/types/employee.js +1 -1
- package/esm2015/api/types/index.js +2 -1
- package/esm2015/api/types/picking-line.js +1 -1
- package/esm2015/api/types/project-piece-work.js +4 -0
- package/esm2015/api/types/project.js +1 -1
- package/esm2015/api/types/sales-line.js +1 -1
- package/esm2015/api/types/time-journal-line.js +1 -1
- package/esm2015/components/employee/employee-user-info/employee-user-info.component.js +2 -2
- package/esm2015/lib/services/mobicloud-core.service.js +3 -3
- package/esm2015/lib/types/application-details.js +1 -1
- package/esm2015/lib/types/country.js +1 -1
- package/fesm2015/mobicloud-core-api.js +9 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/fesm2015/mobicloud-core-components.js +1 -1
- package/fesm2015/mobicloud-core-components.js.map +1 -1
- package/fesm2015/mobicloud-core.js +2 -2
- package/fesm2015/mobicloud-core.js.map +1 -1
- package/lib/types/application-details.d.ts +1 -0
- package/lib/types/country.d.ts +1 -0
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
package/api/types/employee.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@angular/localize/init';
|
|
2
2
|
import { DomainObject } from "./domain-object";
|
|
3
|
-
import { AssetStatus, GenderType } from "./all.enum";
|
|
3
|
+
import { AssetStatus, GenderType, ConsignmentEmployeeValidation } from "./all.enum";
|
|
4
4
|
import { StorageAccountImage } from "./storage-account-image";
|
|
5
5
|
import { EmployeeGroup } from "./employee-group";
|
|
6
6
|
import { Department } from "./department";
|
|
@@ -78,6 +78,7 @@ export declare class Employee extends Person {
|
|
|
78
78
|
CheckinInfo_ProjectTime?: Date | undefined;
|
|
79
79
|
CheckinInfo_ProjectId?: string | undefined;
|
|
80
80
|
CheckinInfo_ProjectLocation?: string | undefined;
|
|
81
|
+
QA_Consignment_Validation?: ConsignmentEmployeeValidation | undefined;
|
|
81
82
|
get Type(): string;
|
|
82
83
|
get EmployeeNumberFullName(): string;
|
|
83
84
|
get DataFields(): Array<any> | null;
|
package/api/types/index.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ export * from './product-consumption-line';
|
|
|
70
70
|
export * from './project-location';
|
|
71
71
|
export * from './project-task';
|
|
72
72
|
export * from './project';
|
|
73
|
+
export * from './project-piece-work';
|
|
73
74
|
export * from './planable-task-part';
|
|
74
75
|
export * from './planable-task-part-container';
|
|
75
76
|
export * from './resource-task';
|
|
@@ -36,4 +36,8 @@ export declare class PickingLine extends DomainObject {
|
|
|
36
36
|
Id_ApprovedBy?: string | undefined;
|
|
37
37
|
UserType_ApprovedBy?: UserType | undefined;
|
|
38
38
|
Status?: PickingLineStatus | undefined;
|
|
39
|
+
QA_QtyValidated: number | undefined;
|
|
40
|
+
QA_QtyValidatedTime?: Date | undefined;
|
|
41
|
+
QA_QtyValidatedById: string | undefined;
|
|
42
|
+
QA_QtyValidatedBy_UserType?: UserType | undefined;
|
|
39
43
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DomainObject } from "./domain-object";
|
|
2
|
+
import { Project } from "./project";
|
|
3
|
+
export declare class ProjectPieceWork extends DomainObject {
|
|
4
|
+
PieceWorkId?: string | undefined;
|
|
5
|
+
Amount?: number | undefined;
|
|
6
|
+
ExpireDate?: Date | undefined;
|
|
7
|
+
ProjectId?: string | undefined;
|
|
8
|
+
Project?: Project | undefined;
|
|
9
|
+
}
|
package/api/types/project.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { Employee } from "./employee";
|
|
|
3
3
|
import { ProjectTask } from "./project-task";
|
|
4
4
|
import { FinancialStatus } from "./all.enum";
|
|
5
5
|
import { TimeCategory } from "./time-category";
|
|
6
|
+
import { ProjectPieceWork } from "./project-piece-work";
|
|
6
7
|
export declare class Project extends PlanableTask {
|
|
7
8
|
ProjectId?: string | undefined;
|
|
8
9
|
IsHeaderProject?: boolean | undefined;
|
|
@@ -16,6 +17,7 @@ export declare class Project extends PlanableTask {
|
|
|
16
17
|
ProjectTasks?: ProjectTask[] | undefined;
|
|
17
18
|
Employees?: Employee[] | undefined;
|
|
18
19
|
TimeCategories?: TimeCategory[] | undefined;
|
|
20
|
+
PieceWorks?: ProjectPieceWork[] | undefined;
|
|
19
21
|
FinancialStatus?: FinancialStatus | undefined;
|
|
20
22
|
get FinancialStatusString(): string | undefined;
|
|
21
23
|
}
|
|
@@ -7,6 +7,8 @@ import { Currency } from "./currency";
|
|
|
7
7
|
import { SalesLineStatus, UserType } from "./all.enum";
|
|
8
8
|
import { Unit } from "./unit";
|
|
9
9
|
import { Beacon } from "./beacon";
|
|
10
|
+
import { InventLocation } from "./invent-location";
|
|
11
|
+
import { WMSLocation } from "./wms-location";
|
|
10
12
|
export declare class SalesLine extends DomainObject {
|
|
11
13
|
SalesOrderId?: string | undefined;
|
|
12
14
|
LineId?: string | undefined;
|
|
@@ -44,4 +46,8 @@ export declare class SalesLine extends DomainObject {
|
|
|
44
46
|
Id_ApprovedBy?: string | undefined;
|
|
45
47
|
UserType_ApprovedBy?: UserType | undefined;
|
|
46
48
|
Status?: SalesLineStatus | undefined;
|
|
49
|
+
InventLocationId?: string | undefined;
|
|
50
|
+
InventLocation?: InventLocation | undefined;
|
|
51
|
+
WMSLocationId?: string | undefined;
|
|
52
|
+
WMSLocation?: WMSLocation | undefined;
|
|
47
53
|
}
|
|
@@ -5,6 +5,7 @@ import { TimeCategory } from "./time-category";
|
|
|
5
5
|
import { Project } from "./project";
|
|
6
6
|
import { LineStatus, ProjectLineFinancialType, TimeType, UserType } from "./all.enum";
|
|
7
7
|
import { PayrollCategory } from "./payroll-category";
|
|
8
|
+
import { ProjectPieceWork } from "./project-piece-work";
|
|
8
9
|
export declare class TimeJournalLine extends DomainObject {
|
|
9
10
|
JournalId?: string | undefined;
|
|
10
11
|
Journal?: TimeJournal | undefined;
|
|
@@ -22,6 +23,8 @@ export declare class TimeJournalLine extends DomainObject {
|
|
|
22
23
|
Project?: Project | undefined;
|
|
23
24
|
PayrollCategoryId?: string | undefined;
|
|
24
25
|
PayrollCategory?: PayrollCategory | undefined;
|
|
26
|
+
PieceWorkId?: string | undefined;
|
|
27
|
+
PieceWork?: ProjectPieceWork | undefined;
|
|
25
28
|
Status?: LineStatus | undefined;
|
|
26
29
|
FinancialType?: ProjectLineFinancialType | undefined;
|
|
27
30
|
TimeType?: TimeType | undefined;
|
|
@@ -975,6 +975,11 @@
|
|
|
975
975
|
SalesABC[SalesABC["B"] = 2] = "B";
|
|
976
976
|
SalesABC[SalesABC["C"] = 3] = "C";
|
|
977
977
|
})(exports.SalesABC || (exports.SalesABC = {}));
|
|
978
|
+
exports.ConsignmentEmployeeValidation = void 0;
|
|
979
|
+
(function (ConsignmentEmployeeValidation) {
|
|
980
|
+
ConsignmentEmployeeValidation["None"] = "None";
|
|
981
|
+
ConsignmentEmployeeValidation["ConfirmAll"] = "ConfirmAll";
|
|
982
|
+
})(exports.ConsignmentEmployeeValidation || (exports.ConsignmentEmployeeValidation = {}));
|
|
978
983
|
exports.SalesOrderStatus = void 0;
|
|
979
984
|
(function (SalesOrderStatus) {
|
|
980
985
|
SalesOrderStatus["Open"] = "Open";
|
|
@@ -2421,6 +2426,14 @@
|
|
|
2421
2426
|
}(PlanableTask));
|
|
2422
2427
|
var templateObject_1$c, templateObject_2$c, templateObject_3$c, templateObject_4$c, templateObject_5$7;
|
|
2423
2428
|
|
|
2429
|
+
var ProjectPieceWork = /** @class */ (function (_super) {
|
|
2430
|
+
__extends(ProjectPieceWork, _super);
|
|
2431
|
+
function ProjectPieceWork() {
|
|
2432
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2433
|
+
}
|
|
2434
|
+
return ProjectPieceWork;
|
|
2435
|
+
}(DomainObject));
|
|
2436
|
+
|
|
2424
2437
|
var PlanableTaskPart = /** @class */ (function (_super) {
|
|
2425
2438
|
__extends(PlanableTaskPart, _super);
|
|
2426
2439
|
function PlanableTaskPart() {
|
|
@@ -4011,6 +4024,7 @@
|
|
|
4011
4024
|
exports.Project = Project;
|
|
4012
4025
|
exports.ProjectGantTask = ProjectGantTask;
|
|
4013
4026
|
exports.ProjectLocation = ProjectLocation;
|
|
4027
|
+
exports.ProjectPieceWork = ProjectPieceWork;
|
|
4014
4028
|
exports.ProjectTask = ProjectTask;
|
|
4015
4029
|
exports.ProjectTimeJournalView = ProjectTimeJournalView;
|
|
4016
4030
|
exports.PurchaseLine = PurchaseLine;
|