mobicloud-core 1.0.290 → 1.0.291

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.
@@ -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';
@@ -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
+ }
@@ -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;
@@ -2421,6 +2421,14 @@
2421
2421
  }(PlanableTask));
2422
2422
  var templateObject_1$c, templateObject_2$c, templateObject_3$c, templateObject_4$c, templateObject_5$7;
2423
2423
 
2424
+ var ProjectPieceWork = /** @class */ (function (_super) {
2425
+ __extends(ProjectPieceWork, _super);
2426
+ function ProjectPieceWork() {
2427
+ return _super !== null && _super.apply(this, arguments) || this;
2428
+ }
2429
+ return ProjectPieceWork;
2430
+ }(DomainObject));
2431
+
2424
2432
  var PlanableTaskPart = /** @class */ (function (_super) {
2425
2433
  __extends(PlanableTaskPart, _super);
2426
2434
  function PlanableTaskPart() {
@@ -4011,6 +4019,7 @@
4011
4019
  exports.Project = Project;
4012
4020
  exports.ProjectGantTask = ProjectGantTask;
4013
4021
  exports.ProjectLocation = ProjectLocation;
4022
+ exports.ProjectPieceWork = ProjectPieceWork;
4014
4023
  exports.ProjectTask = ProjectTask;
4015
4024
  exports.ProjectTimeJournalView = ProjectTimeJournalView;
4016
4025
  exports.PurchaseLine = PurchaseLine;