lib_angar_new 2.0.29 → 2.0.30

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.
@@ -0,0 +1,32 @@
1
+ import { Serializable } from 'ts-serializer';
2
+ export declare class ClsSalaryDrv extends Serializable {
3
+ /**
4
+ * Id ������������
5
+ */
6
+ Id: number;
7
+ /**
8
+ * Uuid ������������
9
+ */
10
+ Uuid: string;
11
+ /**
12
+ * ���������� ���������
13
+ */
14
+ InvoiceQuantity: number;
15
+ /**
16
+ * ����� ���������
17
+ */
18
+ InvoiceAmount: number;
19
+ /**
20
+ * ���������� ������� ����
21
+ */
22
+ WorkDays: number;
23
+ Distance: number;
24
+ DistanceAmount: number;
25
+ Premium: number;
26
+ Salary: number;
27
+ Dinner: number;
28
+ Vip: number;
29
+ Visit: number;
30
+ DailyExpenses: number;
31
+ constructor();
32
+ }
@@ -0,0 +1,89 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ClsSalaryDrv = void 0;
13
+ const ts_serializer_1 = require("ts-serializer");
14
+ let ClsSalaryDrv = class ClsSalaryDrv extends ts_serializer_1.Serializable {
15
+ constructor() {
16
+ super();
17
+ this.Id = 0;
18
+ this.Uuid = "";
19
+ this.InvoiceQuantity = 0;
20
+ this.InvoiceAmount = 0;
21
+ this.WorkDays = 0;
22
+ this.Distance = 0;
23
+ this.DistanceAmount = 0;
24
+ this.Premium = 0;
25
+ this.Salary = 0;
26
+ this.Dinner = 0;
27
+ this.Vip = 0;
28
+ this.Visit = 0;
29
+ this.DailyExpenses = 0;
30
+ }
31
+ };
32
+ exports.ClsSalaryDrv = ClsSalaryDrv;
33
+ __decorate([
34
+ (0, ts_serializer_1.SerializeProperty)({ map: "id", optional: true }),
35
+ __metadata("design:type", Number)
36
+ ], ClsSalaryDrv.prototype, "Id", void 0);
37
+ __decorate([
38
+ (0, ts_serializer_1.SerializeProperty)({ map: "uuid", optional: true }),
39
+ __metadata("design:type", String)
40
+ ], ClsSalaryDrv.prototype, "Uuid", void 0);
41
+ __decorate([
42
+ (0, ts_serializer_1.SerializeProperty)({ map: "invoice_quantity", optional: true }),
43
+ __metadata("design:type", Number)
44
+ ], ClsSalaryDrv.prototype, "InvoiceQuantity", void 0);
45
+ __decorate([
46
+ (0, ts_serializer_1.SerializeProperty)({ map: "invoice_amount", optional: true }),
47
+ __metadata("design:type", Number)
48
+ ], ClsSalaryDrv.prototype, "InvoiceAmount", void 0);
49
+ __decorate([
50
+ (0, ts_serializer_1.SerializeProperty)({ map: "work_days", optional: true }),
51
+ __metadata("design:type", Number)
52
+ ], ClsSalaryDrv.prototype, "WorkDays", void 0);
53
+ __decorate([
54
+ (0, ts_serializer_1.SerializeProperty)({ map: "distance", optional: true }),
55
+ __metadata("design:type", Number)
56
+ ], ClsSalaryDrv.prototype, "Distance", void 0);
57
+ __decorate([
58
+ (0, ts_serializer_1.SerializeProperty)({ map: "distance_amount", optional: true }),
59
+ __metadata("design:type", Number)
60
+ ], ClsSalaryDrv.prototype, "DistanceAmount", void 0);
61
+ __decorate([
62
+ (0, ts_serializer_1.SerializeProperty)({ map: "premium", optional: true }),
63
+ __metadata("design:type", Number)
64
+ ], ClsSalaryDrv.prototype, "Premium", void 0);
65
+ __decorate([
66
+ (0, ts_serializer_1.SerializeProperty)({ map: "salary", optional: true }),
67
+ __metadata("design:type", Number)
68
+ ], ClsSalaryDrv.prototype, "Salary", void 0);
69
+ __decorate([
70
+ (0, ts_serializer_1.SerializeProperty)({ map: "dinner", optional: true }),
71
+ __metadata("design:type", Number)
72
+ ], ClsSalaryDrv.prototype, "Dinner", void 0);
73
+ __decorate([
74
+ (0, ts_serializer_1.SerializeProperty)({ map: "vip", optional: true }),
75
+ __metadata("design:type", Number)
76
+ ], ClsSalaryDrv.prototype, "Vip", void 0);
77
+ __decorate([
78
+ (0, ts_serializer_1.SerializeProperty)({ map: "visit", optional: true }),
79
+ __metadata("design:type", Number)
80
+ ], ClsSalaryDrv.prototype, "Visit", void 0);
81
+ __decorate([
82
+ (0, ts_serializer_1.SerializeProperty)({ map: "daily_expenses", optional: true }),
83
+ __metadata("design:type", Number)
84
+ ], ClsSalaryDrv.prototype, "DailyExpenses", void 0);
85
+ exports.ClsSalaryDrv = ClsSalaryDrv = __decorate([
86
+ (0, ts_serializer_1.Serialize)({}),
87
+ __metadata("design:paramtypes", [])
88
+ ], ClsSalaryDrv);
89
+ //# sourceMappingURL=ClsSalaryDrv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClsSalaryDrv.js","sourceRoot":"","sources":["ClsSalaryDrv.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAGpE,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,4BAAY;IAwD7C;QACC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;QACZ,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;QACf,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC;QACzB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;QAClB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;QAClB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;QACjB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;QACf,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;IACxB,CAAC;CACD,CAAA;AAxEY,oCAAY;AAMjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC/B;AAMX;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CAC/B;AAMb;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAChC;AAMxB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAChC;AAMtB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAChC;AAGjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC/B;AAGjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,iBAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAChC;AAGvB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC/B;AAGhB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC/B;AAGf;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC/B;AAGf;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCAC/B;AAGZ;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CAC/B;AAGd;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAChC;uBAtDjB,YAAY;IADxB,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,YAAY,CAwExB"}
@@ -0,0 +1,77 @@
1
+ import { SerializeProperty, Serializable, Serialize } from 'ts-serializer';
2
+
3
+ @Serialize({})
4
+ export class ClsSalaryDrv extends Serializable
5
+ {
6
+ /**
7
+ * Id ������������
8
+ */
9
+ @SerializeProperty({ map: "id", optional: true })
10
+ public Id: number;
11
+
12
+ /**
13
+ * Uuid ������������
14
+ */
15
+ @SerializeProperty({ map: "uuid", optional: true })
16
+ public Uuid: string;
17
+
18
+ /**
19
+ * ���������� ���������
20
+ */
21
+ @SerializeProperty({ map: "invoice_quantity", optional: true })
22
+ public InvoiceQuantity: number;
23
+
24
+ /**
25
+ * ����� ���������
26
+ */
27
+ @SerializeProperty({ map: "invoice_amount", optional: true })
28
+ public InvoiceAmount: number;
29
+
30
+ /**
31
+ * ���������� ������� ����
32
+ */
33
+ @SerializeProperty({ map: "work_days", optional: true })
34
+ public WorkDays: number;
35
+
36
+ @SerializeProperty({ map: "distance", optional: true })
37
+ public Distance: number;
38
+
39
+ @SerializeProperty({ map: "distance_amount", optional: true })
40
+ public DistanceAmount: number;
41
+
42
+ @SerializeProperty({ map: "premium", optional: true })
43
+ public Premium: number;
44
+
45
+ @SerializeProperty({ map: "salary", optional: true })
46
+ public Salary: number;
47
+
48
+ @SerializeProperty({ map: "dinner", optional: true })
49
+ public Dinner: number;
50
+
51
+ @SerializeProperty({ map: "vip", optional: true })
52
+ public Vip: number;
53
+
54
+ @SerializeProperty({ map: "visit", optional: true })
55
+ public Visit: number;
56
+
57
+ @SerializeProperty({ map: "daily_expenses", optional: true })
58
+ public DailyExpenses: number;
59
+
60
+ constructor() {
61
+ super();
62
+ this.Id = 0;
63
+ this.Uuid = "";
64
+ this.InvoiceQuantity = 0;
65
+ this.InvoiceAmount = 0;
66
+ this.WorkDays = 0;
67
+ this.Distance = 0;
68
+ this.DistanceAmount = 0;
69
+ this.Premium = 0;
70
+ this.Salary = 0;
71
+ this.Dinner = 0;
72
+ this.Vip = 0;
73
+ this.Visit = 0;
74
+ this.DailyExpenses = 0;
75
+ }
76
+ }
77
+
@@ -0,0 +1,31 @@
1
+ import { Serializable } from 'ts-serializer';
2
+ export declare class ClsSalaryFwd extends Serializable {
3
+ /**
4
+ * Id ������������
5
+ */
6
+ Id: number;
7
+ /**
8
+ * Uuid ������������
9
+ */
10
+ Uuid: string;
11
+ /**
12
+ * ���������� ���������
13
+ */
14
+ InvoiceQuantity: number;
15
+ /**
16
+ * ����� ���������
17
+ */
18
+ InvoiceAmount: number;
19
+ /**
20
+ * ���������� ������� ����
21
+ */
22
+ WorkDays: number;
23
+ PositionQuantity: number;
24
+ PositionAmount: number;
25
+ Premium: number;
26
+ Salary: number;
27
+ Dinner: number;
28
+ Vip: number;
29
+ Visit: number;
30
+ constructor();
31
+ }
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ClsSalaryFwd = void 0;
13
+ const ts_serializer_1 = require("ts-serializer");
14
+ let ClsSalaryFwd = class ClsSalaryFwd extends ts_serializer_1.Serializable {
15
+ constructor() {
16
+ super();
17
+ this.Id = 0;
18
+ this.Uuid = "";
19
+ this.InvoiceQuantity = 0;
20
+ this.InvoiceAmount = 0;
21
+ this.WorkDays = 0;
22
+ this.PositionQuantity = 0;
23
+ this.PositionAmount = 0;
24
+ this.Premium = 0;
25
+ this.Salary = 0;
26
+ this.Dinner = 0;
27
+ this.Vip = 0;
28
+ this.Visit = 0;
29
+ }
30
+ };
31
+ exports.ClsSalaryFwd = ClsSalaryFwd;
32
+ __decorate([
33
+ (0, ts_serializer_1.SerializeProperty)({ map: "id", optional: true }),
34
+ __metadata("design:type", Number)
35
+ ], ClsSalaryFwd.prototype, "Id", void 0);
36
+ __decorate([
37
+ (0, ts_serializer_1.SerializeProperty)({ map: "uuid", optional: true }),
38
+ __metadata("design:type", String)
39
+ ], ClsSalaryFwd.prototype, "Uuid", void 0);
40
+ __decorate([
41
+ (0, ts_serializer_1.SerializeProperty)({ map: "invoice_quantity", optional: true }),
42
+ __metadata("design:type", Number)
43
+ ], ClsSalaryFwd.prototype, "InvoiceQuantity", void 0);
44
+ __decorate([
45
+ (0, ts_serializer_1.SerializeProperty)({ map: "invoice_amount", optional: true }),
46
+ __metadata("design:type", Number)
47
+ ], ClsSalaryFwd.prototype, "InvoiceAmount", void 0);
48
+ __decorate([
49
+ (0, ts_serializer_1.SerializeProperty)({ map: "work_days", optional: true }),
50
+ __metadata("design:type", Number)
51
+ ], ClsSalaryFwd.prototype, "WorkDays", void 0);
52
+ __decorate([
53
+ (0, ts_serializer_1.SerializeProperty)({ map: "position_quantity", optional: true }),
54
+ __metadata("design:type", Number)
55
+ ], ClsSalaryFwd.prototype, "PositionQuantity", void 0);
56
+ __decorate([
57
+ (0, ts_serializer_1.SerializeProperty)({ map: "position_amount", optional: true }),
58
+ __metadata("design:type", Number)
59
+ ], ClsSalaryFwd.prototype, "PositionAmount", void 0);
60
+ __decorate([
61
+ (0, ts_serializer_1.SerializeProperty)({ map: "premium", optional: true }),
62
+ __metadata("design:type", Number)
63
+ ], ClsSalaryFwd.prototype, "Premium", void 0);
64
+ __decorate([
65
+ (0, ts_serializer_1.SerializeProperty)({ map: "salary", optional: true }),
66
+ __metadata("design:type", Number)
67
+ ], ClsSalaryFwd.prototype, "Salary", void 0);
68
+ __decorate([
69
+ (0, ts_serializer_1.SerializeProperty)({ map: "dinner", optional: true }),
70
+ __metadata("design:type", Number)
71
+ ], ClsSalaryFwd.prototype, "Dinner", void 0);
72
+ __decorate([
73
+ (0, ts_serializer_1.SerializeProperty)({ map: "vip", optional: true }),
74
+ __metadata("design:type", Number)
75
+ ], ClsSalaryFwd.prototype, "Vip", void 0);
76
+ __decorate([
77
+ (0, ts_serializer_1.SerializeProperty)({ map: "visit", optional: true }),
78
+ __metadata("design:type", Number)
79
+ ], ClsSalaryFwd.prototype, "Visit", void 0);
80
+ exports.ClsSalaryFwd = ClsSalaryFwd = __decorate([
81
+ (0, ts_serializer_1.Serialize)({}),
82
+ __metadata("design:paramtypes", [])
83
+ ], ClsSalaryFwd);
84
+ //# sourceMappingURL=ClsSalaryFwd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClsSalaryFwd.js","sourceRoot":"","sources":["ClsSalaryFwd.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAGpE,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,4BAAY;IAqD7C;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;QACZ,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;QACf,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC;QACzB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;QAClB,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;QAC1B,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;QACjB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IAChB,CAAC;CACD,CAAA;AArEY,oCAAY;AAMjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC/B;AAMX;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CAC/B;AAMb;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAChC;AAMxB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAChC;AAMtB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAChC;AAGjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,mBAAmB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDAChC;AAGzB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,iBAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAChC;AAGvB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC/B;AAGhB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC/B;AAGf;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC/B;AAGf;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCAC/B;AAGZ;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CAC/B;uBAnDT,YAAY;IADxB,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,YAAY,CAqExB"}
@@ -0,0 +1,75 @@
1
+ import { SerializeProperty, Serializable, Serialize } from 'ts-serializer';
2
+
3
+ @Serialize({})
4
+ export class ClsSalaryFwd extends Serializable
5
+ {
6
+ /**
7
+ * Id ������������
8
+ */
9
+ @SerializeProperty({ map: "id", optional: true })
10
+ public Id: number;
11
+
12
+ /**
13
+ * Uuid ������������
14
+ */
15
+ @SerializeProperty({ map: "uuid", optional: true })
16
+ public Uuid: string;
17
+
18
+ /**
19
+ * ���������� ���������
20
+ */
21
+ @SerializeProperty({ map: "invoice_quantity", optional: true })
22
+ public InvoiceQuantity: number;
23
+
24
+ /**
25
+ * ����� ���������
26
+ */
27
+ @SerializeProperty({ map: "invoice_amount", optional: true })
28
+ public InvoiceAmount: number;
29
+
30
+ /**
31
+ * ���������� ������� ����
32
+ */
33
+ @SerializeProperty({ map: "work_days", optional: true })
34
+ public WorkDays: number;
35
+
36
+ @SerializeProperty({ map: "position_quantity", optional: true })
37
+ public PositionQuantity: number;
38
+
39
+ @SerializeProperty({ map: "position_amount", optional: true })
40
+ public PositionAmount: number;
41
+
42
+ @SerializeProperty({ map: "premium", optional: true })
43
+ public Premium: number;
44
+
45
+ @SerializeProperty({ map: "salary", optional: true })
46
+ public Salary: number;
47
+
48
+ @SerializeProperty({ map: "dinner", optional: true })
49
+ public Dinner: number;
50
+
51
+ @SerializeProperty({ map: "vip", optional: true })
52
+ public Vip: number;
53
+
54
+ @SerializeProperty({ map: "visit", optional: true })
55
+ public Visit: number;
56
+
57
+ constructor()
58
+ {
59
+ super();
60
+ this.Id = 0;
61
+ this.Uuid = "";
62
+ this.InvoiceQuantity = 0;
63
+ this.InvoiceAmount = 0;
64
+ this.WorkDays = 0;
65
+ this.PositionQuantity = 0;
66
+ this.PositionAmount = 0;
67
+ this.Premium = 0;
68
+ this.Salary = 0;
69
+ this.Dinner = 0;
70
+ this.Vip = 0;
71
+ this.Visit = 0;
72
+ }
73
+ }
74
+
75
+
@@ -32,3 +32,5 @@ export { ClsTimesheeDate } from "./TimesheeStock/ClsTimesheeDate";
32
32
  export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
33
33
  export { ClsTimesheeOffice } from "./TimesheeStock/ClsTimesheeOffice";
34
34
  export { ClsTimesheeDatePut } from "./TimesheeStock/ClsTimesheeDatePut";
35
+ export { ClsSalaryDrv } from "./SalaryDF/ClsSalaryDrv";
36
+ export { ClsSalaryFwd } from "./SalaryDF/ClsSalaryFwd";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ClsTimesheeDatePut = exports.ClsTimesheeOffice = exports.ClsTimesheeStock = exports.ClsTimesheeDate = exports.ClsTimesheeStockFilter = exports.ClsPercent = exports.ArrayTableField = exports.TableField = exports.ClsDetentionPremium = exports.ClsTotalHand = exports.ClsInOutRoot = exports.ClsPrinter = exports.ClsInOut = exports.ClsGuideAccruReten = exports.ClsAccruRetenInsert = exports.ClsAccruReten = exports.ClsAccruRetenFilter = exports.ClsCompletedWorkFilter = exports.ClsCompletedWork = exports.ClsJobDone = exports.ClsPrintDistribute = exports.ClsDistribute = exports.ClsRootDistribute = exports.ClsOutcoming = exports.ClsOutcomingFilter = exports.ClsInvoice = exports.ClsSalaryAll = exports.ClsSalaryAllFilter = exports.ClsInvoiceFilter = exports.ClsRoot = exports.ClsApiResponse = exports.ClsApiRequest = exports.ClsUser = exports.ClsAlert = void 0;
3
+ exports.ClsSalaryFwd = exports.ClsSalaryDrv = exports.ClsTimesheeDatePut = exports.ClsTimesheeOffice = exports.ClsTimesheeStock = exports.ClsTimesheeDate = exports.ClsTimesheeStockFilter = exports.ClsPercent = exports.ArrayTableField = exports.TableField = exports.ClsDetentionPremium = exports.ClsTotalHand = exports.ClsInOutRoot = exports.ClsPrinter = exports.ClsInOut = exports.ClsGuideAccruReten = exports.ClsAccruRetenInsert = exports.ClsAccruReten = exports.ClsAccruRetenFilter = exports.ClsCompletedWorkFilter = exports.ClsCompletedWork = exports.ClsJobDone = exports.ClsPrintDistribute = exports.ClsDistribute = exports.ClsRootDistribute = exports.ClsOutcoming = exports.ClsOutcomingFilter = exports.ClsInvoice = exports.ClsSalaryAll = exports.ClsSalaryAllFilter = exports.ClsInvoiceFilter = exports.ClsRoot = exports.ClsApiResponse = exports.ClsApiRequest = exports.ClsUser = exports.ClsAlert = void 0;
4
4
  var ClsAlert_1 = require("./Alert/ClsAlert");
5
5
  Object.defineProperty(exports, "ClsAlert", { enumerable: true, get: function () { return ClsAlert_1.ClsAlert; } });
6
6
  var ClsUser_1 = require("./User/ClsUser");
@@ -69,4 +69,8 @@ var ClsTimesheeOffice_1 = require("./TimesheeStock/ClsTimesheeOffice");
69
69
  Object.defineProperty(exports, "ClsTimesheeOffice", { enumerable: true, get: function () { return ClsTimesheeOffice_1.ClsTimesheeOffice; } });
70
70
  var ClsTimesheeDatePut_1 = require("./TimesheeStock/ClsTimesheeDatePut");
71
71
  Object.defineProperty(exports, "ClsTimesheeDatePut", { enumerable: true, get: function () { return ClsTimesheeDatePut_1.ClsTimesheeDatePut; } });
72
+ var ClsSalaryDrv_1 = require("./SalaryDF/ClsSalaryDrv");
73
+ Object.defineProperty(exports, "ClsSalaryDrv", { enumerable: true, get: function () { return ClsSalaryDrv_1.ClsSalaryDrv; } });
74
+ var ClsSalaryFwd_1 = require("./SalaryDF/ClsSalaryFwd");
75
+ Object.defineProperty(exports, "ClsSalaryFwd", { enumerable: true, get: function () { return ClsSalaryFwd_1.ClsSalaryFwd; } });
72
76
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;AAAA,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,4DAA2D;AAAlD,8GAAA,aAAa,OAAA;AACtB,+DAA8D;AAArD,gHAAA,cAAc,OAAA;AACvB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,+DAA8D;AAArD,oHAAA,gBAAgB,OAAA;AACzB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mEAAkE;AAAzD,sHAAA,iBAAiB,OAAA;AAC1B,2DAA0D;AAAjD,8GAAA,aAAa,OAAA;AACtB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAmE;AAA1D,oHAAA,gBAAgB,OAAA;AACzB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,wEAAsE;AAA7D,0HAAA,mBAAmB,OAAA;AAC5B,4DAA0D;AAAjD,8GAAA,aAAa,OAAA;AACtB,wEAAsE;AAA7D,0HAAA,mBAAmB,OAAA;AAC5B,sEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,8EAA6E;AAApE,0HAAA,mBAAmB,OAAA;AAC5B,wDAAuD;AAA9C,wGAAA,UAAU,OAAA;AACnB,kEAAiE;AAAxD,kHAAA,eAAe,OAAA;AACxB,qDAAoD;AAA3C,wGAAA,UAAU,OAAA;AACnB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,mEAAkE;AAAzD,kHAAA,eAAe,OAAA;AACxB,qEAAoE;AAA3D,oHAAA,gBAAgB,OAAA;AACzB,uEAAsE;AAA7D,sHAAA,iBAAiB,OAAA;AAC1B,yEAAwE;AAA/D,wHAAA,kBAAkB,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;AAAA,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,4DAA2D;AAAlD,8GAAA,aAAa,OAAA;AACtB,+DAA8D;AAArD,gHAAA,cAAc,OAAA;AACvB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,+DAA8D;AAArD,oHAAA,gBAAgB,OAAA;AACzB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mEAAkE;AAAzD,sHAAA,iBAAiB,OAAA;AAC1B,2DAA0D;AAAjD,8GAAA,aAAa,OAAA;AACtB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAmE;AAA1D,oHAAA,gBAAgB,OAAA;AACzB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,wEAAsE;AAA7D,0HAAA,mBAAmB,OAAA;AAC5B,4DAA0D;AAAjD,8GAAA,aAAa,OAAA;AACtB,wEAAsE;AAA7D,0HAAA,mBAAmB,OAAA;AAC5B,sEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,8EAA6E;AAApE,0HAAA,mBAAmB,OAAA;AAC5B,wDAAuD;AAA9C,wGAAA,UAAU,OAAA;AACnB,kEAAiE;AAAxD,kHAAA,eAAe,OAAA;AACxB,qDAAoD;AAA3C,wGAAA,UAAU,OAAA;AACnB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,mEAAkE;AAAzD,kHAAA,eAAe,OAAA;AACxB,qEAAoE;AAA3D,oHAAA,gBAAgB,OAAA;AACzB,uEAAsE;AAA7D,sHAAA,iBAAiB,OAAA;AAC1B,yEAAwE;AAA/D,wHAAA,kBAAkB,OAAA;AAC3B,wDAAuD;AAA9C,4GAAA,YAAY,OAAA;AACrB,wDAAuD;AAA9C,4GAAA,YAAY,OAAA"}
@@ -32,4 +32,6 @@ export { ClsTimesheeDate } from "./TimesheeStock/ClsTimesheeDate";
32
32
  export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
33
33
  export { ClsTimesheeOffice } from "./TimesheeStock/ClsTimesheeOffice";
34
34
  export { ClsTimesheeDatePut } from "./TimesheeStock/ClsTimesheeDatePut";
35
+ export { ClsSalaryDrv } from "./SalaryDF/ClsSalaryDrv";
36
+ export { ClsSalaryFwd } from "./SalaryDF/ClsSalaryFwd";
35
37
 
@@ -1 +1 @@
1
- {"root":["./index.ts","./accrureten/clsaccrureten.ts","./accrureten/clsaccruretenfilter.ts","./accrureten/clsaccrureteninsert.ts","./accrureten/clsguideaccrureten.ts","./alert/clsalert.ts","./apirequest/clsapirequest.ts","./apiresponse/clsapiresponse.ts","./completedwork/clscompletedwork.ts","./completedwork/clscompletedworkfilter.ts","./detentionpremium/clsdetentionpremium.ts","./inout/clsinout.ts","./inout/clsinoutroot.ts","./inout/clstotalhand.ts","./invoice/clsinvoice.ts","./invoice/clsinvoicefilter.ts","./jobdone/clsjobdone.ts","./outcoming/clsdistribute.ts","./outcoming/clsoutcoming.ts","./outcoming/clsoutcomingfilter.ts","./outcoming/clsprintdistribute.ts","./outcoming/clsrootdistribute.ts","./printer/clsprinter.ts","./root/clsroot.ts","./salaryall/clspercent.ts","./salaryall/clssalaryall.ts","./salaryall/clssalaryallfilter.ts","./timesheestock/clstimesheedate.ts","./timesheestock/clstimesheedateput.ts","./timesheestock/clstimesheeoffice.ts","./timesheestock/clstimesheestock.ts","./timesheestock/clstimesheestockfilter.ts","./user/clsuser.ts","./viewproperty/arraytablefield.ts","./viewproperty/tablefield.ts"],"version":"5.9.3"}
1
+ {"root":["./index.ts","./accrureten/clsaccrureten.ts","./accrureten/clsaccruretenfilter.ts","./accrureten/clsaccrureteninsert.ts","./accrureten/clsguideaccrureten.ts","./alert/clsalert.ts","./apirequest/clsapirequest.ts","./apiresponse/clsapiresponse.ts","./completedwork/clscompletedwork.ts","./completedwork/clscompletedworkfilter.ts","./detentionpremium/clsdetentionpremium.ts","./inout/clsinout.ts","./inout/clsinoutroot.ts","./inout/clstotalhand.ts","./invoice/clsinvoice.ts","./invoice/clsinvoicefilter.ts","./jobdone/clsjobdone.ts","./outcoming/clsdistribute.ts","./outcoming/clsoutcoming.ts","./outcoming/clsoutcomingfilter.ts","./outcoming/clsprintdistribute.ts","./outcoming/clsrootdistribute.ts","./printer/clsprinter.ts","./root/clsroot.ts","./salaryall/clspercent.ts","./salaryall/clssalaryall.ts","./salaryall/clssalaryallfilter.ts","./salarydf/clssalarydrv.ts","./salarydf/clssalaryfwd.ts","./timesheestock/clstimesheedate.ts","./timesheestock/clstimesheedateput.ts","./timesheestock/clstimesheeoffice.ts","./timesheestock/clstimesheestock.ts","./timesheestock/clstimesheestockfilter.ts","./user/clsuser.ts","./viewproperty/arraytablefield.ts","./viewproperty/tablefield.ts"],"version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lib_angar_new",
3
- "version": "2.0.29",
3
+ "version": "2.0.30",
4
4
  "description": "lib_angar",
5
5
  "main": "lib_angar/index.js",
6
6
  "types": "lib_angar/index.d.ts",