lib_angar_new 2.0.26 → 2.0.28
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/lib_angar/AccruReten/ClsAccruRetenInsert.d.ts +23 -0
- package/lib_angar/AccruReten/ClsAccruRetenInsert.js +87 -0
- package/lib_angar/AccruReten/ClsAccruRetenInsert.js.map +1 -0
- package/lib_angar/AccruReten/ClsAccruRetenInsert.ts +71 -0
- package/lib_angar/TimesheeStock/ClsTimesheeOffice.d.ts +37 -0
- package/lib_angar/TimesheeStock/ClsTimesheeOffice.js +86 -0
- package/lib_angar/TimesheeStock/ClsTimesheeOffice.js.map +1 -0
- package/lib_angar/TimesheeStock/ClsTimesheeOffice.ts +95 -0
- package/lib_angar/TimesheeStock/ClsTimesheeStockFilter.js.map +1 -1
- package/lib_angar/TimesheeStock/ClsTimesheeStockFilter.ts +1 -0
- package/lib_angar/index.d.ts +2 -0
- package/lib_angar/index.js +5 -1
- package/lib_angar/index.js.map +1 -1
- package/lib_angar/index.ts +2 -0
- package/lib_angar/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Serializable } from 'ts-serializer';
|
|
2
|
+
import { ClsAccruRetenFilter } from './ClsAccruRetenFilter';
|
|
3
|
+
import { ClsApiRequest } from '../ApiRequest/ClsApiRequest';
|
|
4
|
+
export declare class ClsAccruRetenInsert extends Serializable {
|
|
5
|
+
Id: number;
|
|
6
|
+
Uuid: string;
|
|
7
|
+
Month: number;
|
|
8
|
+
Year: number;
|
|
9
|
+
Type: ClsAccruRetenFilter.Status;
|
|
10
|
+
Amount: number;
|
|
11
|
+
DetentionPremiumId: number;
|
|
12
|
+
Comment: string;
|
|
13
|
+
/**
|
|
14
|
+
* ��������� �������
|
|
15
|
+
*/
|
|
16
|
+
ClsApiRequest: ClsApiRequest;
|
|
17
|
+
constructor();
|
|
18
|
+
/**
|
|
19
|
+
* ������� ����� �������� ������
|
|
20
|
+
* @returns
|
|
21
|
+
*/
|
|
22
|
+
GetMonthNumber(): number;
|
|
23
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
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.ClsAccruRetenInsert = void 0;
|
|
13
|
+
const ts_serializer_1 = require("ts-serializer");
|
|
14
|
+
const ClsAccruRetenFilter_1 = require("./ClsAccruRetenFilter");
|
|
15
|
+
const ClsApiRequest_1 = require("../ApiRequest/ClsApiRequest");
|
|
16
|
+
let ClsAccruRetenInsert = class ClsAccruRetenInsert extends ts_serializer_1.Serializable {
|
|
17
|
+
constructor() {
|
|
18
|
+
super();
|
|
19
|
+
this.Id = 0;
|
|
20
|
+
this.Uuid = "";
|
|
21
|
+
this.Month = this.GetMonthNumber();
|
|
22
|
+
this.Year = new Date().getFullYear();
|
|
23
|
+
this.Type = ClsAccruRetenFilter_1.ClsAccruRetenFilter.Status.Accrual;
|
|
24
|
+
this.Amount = 0;
|
|
25
|
+
this.DetentionPremiumId = 0;
|
|
26
|
+
this.Comment = "";
|
|
27
|
+
this.ClsApiRequest = new ClsApiRequest_1.ClsApiRequest();
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* ������� ����� �������� ������
|
|
31
|
+
* @returns
|
|
32
|
+
*/
|
|
33
|
+
GetMonthNumber() {
|
|
34
|
+
const currentMonthName = new Date().toLocaleString("ru-RU", { month: "long" });
|
|
35
|
+
let monthNumber = 0;
|
|
36
|
+
for (let i = 0; i < 12; i++) {
|
|
37
|
+
const n = i + 1;
|
|
38
|
+
if (new Date(0, i).toLocaleString('ru-RU', { month: 'long' }) === currentMonthName) {
|
|
39
|
+
monthNumber = n;
|
|
40
|
+
break;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return monthNumber;
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
exports.ClsAccruRetenInsert = ClsAccruRetenInsert;
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "id", optional: true }),
|
|
49
|
+
__metadata("design:type", Number)
|
|
50
|
+
], ClsAccruRetenInsert.prototype, "Id", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "uuid", optional: true }),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], ClsAccruRetenInsert.prototype, "Uuid", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "month", optional: true }),
|
|
57
|
+
__metadata("design:type", Number)
|
|
58
|
+
], ClsAccruRetenInsert.prototype, "Month", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "year", optional: true }),
|
|
61
|
+
__metadata("design:type", Number)
|
|
62
|
+
], ClsAccruRetenInsert.prototype, "Year", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "type", optional: true }),
|
|
65
|
+
__metadata("design:type", Number)
|
|
66
|
+
], ClsAccruRetenInsert.prototype, "Type", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "amount", optional: true }),
|
|
69
|
+
__metadata("design:type", Number)
|
|
70
|
+
], ClsAccruRetenInsert.prototype, "Amount", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "detentionPremiumId", optional: true }),
|
|
73
|
+
__metadata("design:type", Number)
|
|
74
|
+
], ClsAccruRetenInsert.prototype, "DetentionPremiumId", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "comment", optional: true }),
|
|
77
|
+
__metadata("design:type", String)
|
|
78
|
+
], ClsAccruRetenInsert.prototype, "Comment", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "clsApiRequest", type: ClsApiRequest_1.ClsApiRequest, optional: true }),
|
|
81
|
+
__metadata("design:type", ClsApiRequest_1.ClsApiRequest)
|
|
82
|
+
], ClsAccruRetenInsert.prototype, "ClsApiRequest", void 0);
|
|
83
|
+
exports.ClsAccruRetenInsert = ClsAccruRetenInsert = __decorate([
|
|
84
|
+
(0, ts_serializer_1.Serialize)({}),
|
|
85
|
+
__metadata("design:paramtypes", [])
|
|
86
|
+
], ClsAccruRetenInsert);
|
|
87
|
+
//# sourceMappingURL=ClsAccruRetenInsert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClsAccruRetenInsert.js","sourceRoot":"","sources":["ClsAccruRetenInsert.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,+DAA4D;AAC5D,+DAA4D;AAGrD,IAAM,mBAAmB,GAAzB,MAAM,mBAAoB,SAAQ,4BAAY;IAgCpD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;QACZ,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC;QACnC,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;QACrC,IAAI,CAAC,IAAI,GAAG,yCAAmB,CAAC,MAAM,CAAC,OAAO,CAAC;QAC/C,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,kBAAkB,GAAG,CAAC,CAAC;QAC5B,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;IAC1C,CAAC;IAED;;;OAGG;IACH,cAAc;QAEb,MAAM,gBAAgB,GAAW,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC,CAAC;QACvF,IAAI,WAAW,GAAW,CAAC,CAAC;QAC5B,KAAK,IAAI,CAAC,GAAW,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EACnC,CAAC;YACA,MAAM,CAAC,GAAW,CAAC,GAAG,CAAC,CAAC;YACxB,IAAI,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC,KAAK,gBAAgB,EAClF,CAAC;gBACA,WAAW,GAAG,CAAC,CAAC;gBAChB,MAAM;YACP,CAAC;QACF,CAAC;QACD,OAAO,WAAW,CAAC;IACpB,CAAC;CACD,CAAA;AAjEY,kDAAmB;AAGxB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC/B;AAGX;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC/B;AAGb;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC/B;AAGd;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC/B;AAGb;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACX;AAGjC;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC/B;AAGf;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,oBAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+DAC/B;AAG3B;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC/B;AAMhB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,eAAe,EAAE,IAAI,EAAE,6BAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3D,6BAAa;0DAAC;8BA9BxB,mBAAmB;IAD/B,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,mBAAmB,CAiE/B"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { SerializeProperty, Serializable, Serialize } from 'ts-serializer';
|
|
2
|
+
import { ClsAccruRetenFilter } from './ClsAccruRetenFilter';
|
|
3
|
+
import { ClsApiRequest } from '../ApiRequest/ClsApiRequest';
|
|
4
|
+
|
|
5
|
+
@Serialize({})
|
|
6
|
+
export class ClsAccruRetenInsert extends Serializable
|
|
7
|
+
{
|
|
8
|
+
@SerializeProperty({ map: "id", optional: true })
|
|
9
|
+
public Id: number;
|
|
10
|
+
|
|
11
|
+
@SerializeProperty({ map: "uuid", optional: true })
|
|
12
|
+
public Uuid: string;
|
|
13
|
+
|
|
14
|
+
@SerializeProperty({ map: "month", optional: true })
|
|
15
|
+
public Month: number;
|
|
16
|
+
|
|
17
|
+
@SerializeProperty({ map: "year", optional: true })
|
|
18
|
+
public Year: number;
|
|
19
|
+
|
|
20
|
+
@SerializeProperty({ map: "type", optional: true })
|
|
21
|
+
public Type: ClsAccruRetenFilter.Status;
|
|
22
|
+
|
|
23
|
+
@SerializeProperty({ map: "amount", optional: true })
|
|
24
|
+
public Amount: number;
|
|
25
|
+
|
|
26
|
+
@SerializeProperty({ map: "detentionPremiumId", optional: true })
|
|
27
|
+
public DetentionPremiumId: number;
|
|
28
|
+
|
|
29
|
+
@SerializeProperty({ map: "comment", optional: true })
|
|
30
|
+
public Comment: string;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* ��������� �������
|
|
34
|
+
*/
|
|
35
|
+
@SerializeProperty({ map: "clsApiRequest", type: ClsApiRequest, optional: true })
|
|
36
|
+
public ClsApiRequest: ClsApiRequest;
|
|
37
|
+
|
|
38
|
+
constructor()
|
|
39
|
+
{
|
|
40
|
+
super();
|
|
41
|
+
this.Id = 0;
|
|
42
|
+
this.Uuid = "";
|
|
43
|
+
this.Month = this.GetMonthNumber();
|
|
44
|
+
this.Year = new Date().getFullYear();
|
|
45
|
+
this.Type = ClsAccruRetenFilter.Status.Accrual;
|
|
46
|
+
this.Amount = 0;
|
|
47
|
+
this.DetentionPremiumId = 0;
|
|
48
|
+
this.Comment = "";
|
|
49
|
+
this.ClsApiRequest = new ClsApiRequest();
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* ������� ����� �������� ������
|
|
54
|
+
* @returns
|
|
55
|
+
*/
|
|
56
|
+
GetMonthNumber(): number
|
|
57
|
+
{
|
|
58
|
+
const currentMonthName: string = new Date().toLocaleString("ru-RU", { month: "long" });
|
|
59
|
+
let monthNumber: number = 0;
|
|
60
|
+
for (let i: number = 0; i < 12; i++)
|
|
61
|
+
{
|
|
62
|
+
const n: number = i + 1;
|
|
63
|
+
if (new Date(0, i).toLocaleString('ru-RU', { month: 'long' }) === currentMonthName)
|
|
64
|
+
{
|
|
65
|
+
monthNumber = n;
|
|
66
|
+
break;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return monthNumber;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Serializable } from 'ts-serializer';
|
|
2
|
+
export declare class ClsTimesheeOffice extends Serializable {
|
|
3
|
+
/**
|
|
4
|
+
* id записи
|
|
5
|
+
*/
|
|
6
|
+
Id: number;
|
|
7
|
+
/**
|
|
8
|
+
* ФИО сотрудника
|
|
9
|
+
*/
|
|
10
|
+
FIO: string;
|
|
11
|
+
/**
|
|
12
|
+
* Подразделение
|
|
13
|
+
*/
|
|
14
|
+
DivisionName: string;
|
|
15
|
+
/**
|
|
16
|
+
* Login кладовщика
|
|
17
|
+
*/
|
|
18
|
+
Dates: Map<string, number>;
|
|
19
|
+
constructor();
|
|
20
|
+
/**
|
|
21
|
+
* Конвертируем список классов ClsTimesheeOffice в json string
|
|
22
|
+
* @param listClsTimesheeOffice
|
|
23
|
+
*/
|
|
24
|
+
ArrayClsTimesheeOfficeToJson(listClsTimesheeOffice: Array<ClsTimesheeOffice>): string;
|
|
25
|
+
/**
|
|
26
|
+
* Конвертируем список объектов в Array<ClsTimesheeOffice>
|
|
27
|
+
* @param arrayObject
|
|
28
|
+
* @returns
|
|
29
|
+
*/
|
|
30
|
+
ArrayObjectToListClsTimesheeOffice(arrayObject: Array<object>): Array<ClsTimesheeOffice>;
|
|
31
|
+
/**
|
|
32
|
+
* получаем список подразделений
|
|
33
|
+
* @param arrayIn
|
|
34
|
+
* @returns
|
|
35
|
+
*/
|
|
36
|
+
GetListDivisionName(arrayIn: Array<ClsTimesheeOffice>): string[];
|
|
37
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
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
|
+
var ClsTimesheeOffice_1;
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.ClsTimesheeOffice = void 0;
|
|
14
|
+
const ts_serializer_1 = require("ts-serializer");
|
|
15
|
+
let ClsTimesheeOffice = ClsTimesheeOffice_1 = class ClsTimesheeOffice extends ts_serializer_1.Serializable {
|
|
16
|
+
constructor() {
|
|
17
|
+
super();
|
|
18
|
+
this.Id = 0;
|
|
19
|
+
this.FIO = "";
|
|
20
|
+
this.DivisionName = "";
|
|
21
|
+
this.Dates = new Map();
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Конвертируем список классов ClsTimesheeOffice в json string
|
|
25
|
+
* @param listClsTimesheeOffice
|
|
26
|
+
*/
|
|
27
|
+
ArrayClsTimesheeOfficeToJson(listClsTimesheeOffice) {
|
|
28
|
+
const arrayObject = new Array();
|
|
29
|
+
listClsTimesheeOffice.forEach((item) => {
|
|
30
|
+
const row = item.serialize();
|
|
31
|
+
arrayObject.push(row);
|
|
32
|
+
});
|
|
33
|
+
return JSON.stringify(arrayObject);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Конвертируем список объектов в Array<ClsTimesheeOffice>
|
|
37
|
+
* @param arrayObject
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
ArrayObjectToListClsTimesheeOffice(arrayObject) {
|
|
41
|
+
const listClsTimesheeOffice = new Array();
|
|
42
|
+
arrayObject.forEach((item) => {
|
|
43
|
+
const сlsTimesheeOffice = new ClsTimesheeOffice_1();
|
|
44
|
+
сlsTimesheeOffice.deserialize(item);
|
|
45
|
+
listClsTimesheeOffice.push(сlsTimesheeOffice);
|
|
46
|
+
});
|
|
47
|
+
return listClsTimesheeOffice;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* получаем список подразделений
|
|
51
|
+
* @param arrayIn
|
|
52
|
+
* @returns
|
|
53
|
+
*/
|
|
54
|
+
GetListDivisionName(arrayIn) {
|
|
55
|
+
const listDivisionName = new Array();
|
|
56
|
+
listDivisionName.push("Все ...");
|
|
57
|
+
arrayIn.forEach((item) => {
|
|
58
|
+
if (!listDivisionName.includes(item.DivisionName)) {
|
|
59
|
+
listDivisionName.push(item.DivisionName);
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
return listDivisionName;
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
exports.ClsTimesheeOffice = ClsTimesheeOffice;
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "id", optional: true }),
|
|
68
|
+
__metadata("design:type", Number)
|
|
69
|
+
], ClsTimesheeOffice.prototype, "Id", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "name", optional: true }),
|
|
72
|
+
__metadata("design:type", String)
|
|
73
|
+
], ClsTimesheeOffice.prototype, "FIO", void 0);
|
|
74
|
+
__decorate([
|
|
75
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "divisionName", optional: true }),
|
|
76
|
+
__metadata("design:type", String)
|
|
77
|
+
], ClsTimesheeOffice.prototype, "DivisionName", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "dates", optional: true }),
|
|
80
|
+
__metadata("design:type", Map)
|
|
81
|
+
], ClsTimesheeOffice.prototype, "Dates", void 0);
|
|
82
|
+
exports.ClsTimesheeOffice = ClsTimesheeOffice = ClsTimesheeOffice_1 = __decorate([
|
|
83
|
+
(0, ts_serializer_1.Serialize)({}),
|
|
84
|
+
__metadata("design:paramtypes", [])
|
|
85
|
+
], ClsTimesheeOffice);
|
|
86
|
+
//# sourceMappingURL=ClsTimesheeOffice.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClsTimesheeOffice.js","sourceRoot":"","sources":["ClsTimesheeOffice.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,iDAA2E;AAIpE,IAAM,iBAAiB,yBAAvB,MAAM,iBAAkB,SAAQ,4BAAY;IA0BlD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;QACZ,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;QACd,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,GAAG,EAAkB,CAAC;IACxC,CAAC;IAED;;;OAGG;IACH,4BAA4B,CAAC,qBAA+C;QAE3E,MAAM,WAAW,GAAkB,IAAI,KAAK,EAAU,CAAC;QACvD,qBAAqB,CAAC,OAAO,CAAC,CAAC,IAAuB,EAAE,EAAE;YAEzD,MAAM,GAAG,GAAW,IAAI,CAAC,SAAS,EAAE,CAAC;YACrC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACvB,CAAC,CAAC,CAAC;QACH,OAAO,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;IACpC,CAAC;IAED;;;;MAIE;IACF,kCAAkC,CAAC,WAA0B;QAE5D,MAAM,qBAAqB,GAA6B,IAAI,KAAK,EAAqB,CAAC;QACvF,WAAW,CAAC,OAAO,CAAC,CAAC,IAAY,EAAE,EAAE;YAEpC,MAAM,iBAAiB,GAAsB,IAAI,mBAAiB,EAAE,CAAC;YACrE,iBAAiB,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;YACpC,qBAAqB,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAA;QACF,OAAO,qBAAqB,CAAC;IAC9B,CAAC;IAED;;;;OAIG;IACH,mBAAmB,CAAC,OAAiC;QAEpD,MAAM,gBAAgB,GAAkB,IAAI,KAAK,EAAU,CAAC;QAC5D,gBAAgB,CAAC,IAAI,CAAC,SAAS,CAAC,CAAA;QAChC,OAAO,CAAC,OAAO,CAAC,CAAC,IAAuB,EAAE,EAAE;YAE3C,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,EACjD,CAAC;gBACA,gBAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAA;YACzC,CAAC;QACF,CAAC,CAAC,CAAA;QAEF,OAAO,gBAAgB,CAAC;IACzB,CAAC;CACD,CAAA;AAtFY,8CAAiB;AAMtB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC/B;AAMX;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAChC;AAMZ;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC/B;AAMrB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACtC,GAAG;gDAAiB;4BAxBtB,iBAAiB;IAD7B,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,iBAAiB,CAsF7B"}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { SerializeProperty, Serializable, Serialize } from 'ts-serializer';
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
@Serialize({})
|
|
5
|
+
export class ClsTimesheeOffice extends Serializable
|
|
6
|
+
{
|
|
7
|
+
/**
|
|
8
|
+
* id записи
|
|
9
|
+
*/
|
|
10
|
+
@SerializeProperty({ map: "id", optional: true })
|
|
11
|
+
public Id: number;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* ФИО сотрудника
|
|
15
|
+
*/
|
|
16
|
+
@SerializeProperty({ map: "name", optional: true })
|
|
17
|
+
public FIO: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Подразделение
|
|
21
|
+
*/
|
|
22
|
+
@SerializeProperty({ map: "divisionName", optional: true })
|
|
23
|
+
public DivisionName: string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Login кладовщика
|
|
27
|
+
*/
|
|
28
|
+
@SerializeProperty({ map: "dates", optional: true })
|
|
29
|
+
public Dates: Map<string, number>;
|
|
30
|
+
|
|
31
|
+
constructor()
|
|
32
|
+
{
|
|
33
|
+
super();
|
|
34
|
+
this.Id = 0;
|
|
35
|
+
this.FIO = "";
|
|
36
|
+
this.DivisionName = "";
|
|
37
|
+
this.Dates = new Map<string, number>();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Конвертируем список классов ClsTimesheeOffice в json string
|
|
42
|
+
* @param listClsTimesheeOffice
|
|
43
|
+
*/
|
|
44
|
+
ArrayClsTimesheeOfficeToJson(listClsTimesheeOffice: Array<ClsTimesheeOffice>)
|
|
45
|
+
{
|
|
46
|
+
const arrayObject: Array<object> = new Array<object>();
|
|
47
|
+
listClsTimesheeOffice.forEach((item: ClsTimesheeOffice) =>
|
|
48
|
+
{
|
|
49
|
+
const row: object = item.serialize();
|
|
50
|
+
arrayObject.push(row);
|
|
51
|
+
});
|
|
52
|
+
return JSON.stringify(arrayObject);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Конвертируем список объектов в Array<ClsTimesheeOffice>
|
|
57
|
+
* @param arrayObject
|
|
58
|
+
* @returns
|
|
59
|
+
*/
|
|
60
|
+
ArrayObjectToListClsTimesheeOffice(arrayObject: Array<object>): Array<ClsTimesheeOffice>
|
|
61
|
+
{
|
|
62
|
+
const listClsTimesheeOffice: Array<ClsTimesheeOffice> = new Array<ClsTimesheeOffice>();
|
|
63
|
+
arrayObject.forEach((item: object) =>
|
|
64
|
+
{
|
|
65
|
+
const сlsTimesheeOffice: ClsTimesheeOffice = new ClsTimesheeOffice();
|
|
66
|
+
сlsTimesheeOffice.deserialize(item);
|
|
67
|
+
listClsTimesheeOffice.push(сlsTimesheeOffice);
|
|
68
|
+
})
|
|
69
|
+
return listClsTimesheeOffice;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* получаем список подразделений
|
|
74
|
+
* @param arrayIn
|
|
75
|
+
* @returns
|
|
76
|
+
*/
|
|
77
|
+
GetListDivisionName(arrayIn: Array<ClsTimesheeOffice>)
|
|
78
|
+
{
|
|
79
|
+
const listDivisionName: Array<string> = new Array<string>();
|
|
80
|
+
listDivisionName.push("Все ...")
|
|
81
|
+
arrayIn.forEach((item: ClsTimesheeOffice) =>
|
|
82
|
+
{
|
|
83
|
+
if (!listDivisionName.includes(item.DivisionName))
|
|
84
|
+
{
|
|
85
|
+
listDivisionName.push(item.DivisionName)
|
|
86
|
+
}
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
return listDivisionName;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClsTimesheeStockFilter.js","sourceRoot":"","sources":["ClsTimesheeStockFilter.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,+DAA4D;AAGrD,IAAM,sBAAsB,GAA5B,MAAM,sBAAuB,SAAQ,4BAAY;
|
|
1
|
+
{"version":3,"file":"ClsTimesheeStockFilter.js","sourceRoot":"","sources":["ClsTimesheeStockFilter.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,+DAA4D;AAGrD,IAAM,sBAAsB,GAA5B,MAAM,sBAAuB,SAAQ,4BAAY;IA0BvD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QACzC,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;QACrC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC;QACnC,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;IAClB,CAAC;IAED;;;OAGG;IACH,cAAc;QAEb,MAAM,gBAAgB,GAAW,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC,CAAC;QACvF,IAAI,WAAW,GAAW,CAAC,CAAC;QAC5B,KAAK,IAAI,CAAC,GAAW,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EACnC,CAAC;YACA,MAAM,CAAC,GAAW,CAAC,GAAG,CAAC,CAAC;YACxB,IAAI,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC,KAAK,gBAAgB,EAClF,CAAC;gBACA,WAAW,GAAG,CAAC,CAAC;gBAChB,MAAM;YACP,CAAC;QACF,CAAC;QACD,OAAO,WAAW,CAAC;IACpB,CAAC;CACD,CAAA;AAtDY,wDAAsB;AAM3B;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,eAAe,EAAE,IAAI,EAAE,6BAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3D,6BAAa;6DAAC;AAM7B;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC/B;AAMb;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC/B;AAMd;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC/B;iCAxBX,sBAAsB;IADlC,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,sBAAsB,CAsDlC"}
|
package/lib_angar/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { ClsCompletedWork } from "./CompletedWork/ClsCompletedWork";
|
|
|
17
17
|
export { ClsCompletedWorkFilter } from "./CompletedWork/ClsCompletedWorkFilter";
|
|
18
18
|
export { ClsAccruRetenFilter } from "./AccruReten/ClsAccruRetenFilter";
|
|
19
19
|
export { ClsAccruReten } from "./AccruReten/ClsAccruReten";
|
|
20
|
+
export { ClsAccruRetenInsert } from "./AccruReten/ClsAccruRetenInsert";
|
|
20
21
|
export { ClsGuideAccruReten } from "./AccruReten/ClsGuideAccruReten";
|
|
21
22
|
export { ClsInOut } from "./InOut/ClsInOut";
|
|
22
23
|
export { ClsPrinter } from "./Printer/ClsPrinter";
|
|
@@ -29,4 +30,5 @@ export { ClsPercent } from "./SalaryAll/ClsPercent";
|
|
|
29
30
|
export { ClsTimesheeStockFilter } from "./TimesheeStock/ClsTimesheeStockFilter";
|
|
30
31
|
export { ClsTimesheeDate } from "./TimesheeStock/ClsTimesheeDate";
|
|
31
32
|
export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
|
|
33
|
+
export { ClsTimesheeOffice } from "./TimesheeStock/ClsTimesheeOffice";
|
|
32
34
|
export { ClsTimesheeDatePut } from "./TimesheeStock/ClsTimesheeDatePut";
|
package/lib_angar/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ClsTimesheeDatePut = 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.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.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");
|
|
@@ -39,6 +39,8 @@ var ClsAccruRetenFilter_1 = require("./AccruReten/ClsAccruRetenFilter");
|
|
|
39
39
|
Object.defineProperty(exports, "ClsAccruRetenFilter", { enumerable: true, get: function () { return ClsAccruRetenFilter_1.ClsAccruRetenFilter; } });
|
|
40
40
|
var ClsAccruReten_1 = require("./AccruReten/ClsAccruReten");
|
|
41
41
|
Object.defineProperty(exports, "ClsAccruReten", { enumerable: true, get: function () { return ClsAccruReten_1.ClsAccruReten; } });
|
|
42
|
+
var ClsAccruRetenInsert_1 = require("./AccruReten/ClsAccruRetenInsert");
|
|
43
|
+
Object.defineProperty(exports, "ClsAccruRetenInsert", { enumerable: true, get: function () { return ClsAccruRetenInsert_1.ClsAccruRetenInsert; } });
|
|
42
44
|
var ClsGuideAccruReten_1 = require("./AccruReten/ClsGuideAccruReten");
|
|
43
45
|
Object.defineProperty(exports, "ClsGuideAccruReten", { enumerable: true, get: function () { return ClsGuideAccruReten_1.ClsGuideAccruReten; } });
|
|
44
46
|
var ClsInOut_1 = require("./InOut/ClsInOut");
|
|
@@ -63,6 +65,8 @@ var ClsTimesheeDate_1 = require("./TimesheeStock/ClsTimesheeDate");
|
|
|
63
65
|
Object.defineProperty(exports, "ClsTimesheeDate", { enumerable: true, get: function () { return ClsTimesheeDate_1.ClsTimesheeDate; } });
|
|
64
66
|
var ClsTimesheeStock_1 = require("./TimesheeStock/ClsTimesheeStock");
|
|
65
67
|
Object.defineProperty(exports, "ClsTimesheeStock", { enumerable: true, get: function () { return ClsTimesheeStock_1.ClsTimesheeStock; } });
|
|
68
|
+
var ClsTimesheeOffice_1 = require("./TimesheeStock/ClsTimesheeOffice");
|
|
69
|
+
Object.defineProperty(exports, "ClsTimesheeOffice", { enumerable: true, get: function () { return ClsTimesheeOffice_1.ClsTimesheeOffice; } });
|
|
66
70
|
var ClsTimesheeDatePut_1 = require("./TimesheeStock/ClsTimesheeDatePut");
|
|
67
71
|
Object.defineProperty(exports, "ClsTimesheeDatePut", { enumerable: true, get: function () { return ClsTimesheeDatePut_1.ClsTimesheeDatePut; } });
|
|
68
72
|
//# sourceMappingURL=index.js.map
|
package/lib_angar/index.js.map
CHANGED
|
@@ -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,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,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"}
|
package/lib_angar/index.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { ClsCompletedWork } from "./CompletedWork/ClsCompletedWork"
|
|
|
17
17
|
export { ClsCompletedWorkFilter } from "./CompletedWork/ClsCompletedWorkFilter";
|
|
18
18
|
export { ClsAccruRetenFilter } from "./AccruReten/ClsAccruRetenFilter"
|
|
19
19
|
export { ClsAccruReten } from "./AccruReten/ClsAccruReten"
|
|
20
|
+
export { ClsAccruRetenInsert } from "./AccruReten/ClsAccruRetenInsert"
|
|
20
21
|
export { ClsGuideAccruReten } from "./AccruReten/ClsGuideAccruReten"
|
|
21
22
|
export { ClsInOut } from "./InOut/ClsInOut";
|
|
22
23
|
export { ClsPrinter } from "./Printer/ClsPrinter";
|
|
@@ -29,5 +30,6 @@ export { ClsPercent } from "./SalaryAll/ClsPercent";
|
|
|
29
30
|
export { ClsTimesheeStockFilter } from "./TimesheeStock/ClsTimesheeStockFilter";
|
|
30
31
|
export { ClsTimesheeDate } from "./TimesheeStock/ClsTimesheeDate";
|
|
31
32
|
export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
|
|
33
|
+
export { ClsTimesheeOffice } from "./TimesheeStock/ClsTimesheeOffice";
|
|
32
34
|
export { ClsTimesheeDatePut } from "./TimesheeStock/ClsTimesheeDatePut";
|
|
33
35
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./index.ts","./accrureten/clsaccrureten.ts","./accrureten/clsaccruretenfilter.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/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","./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"}
|