@colijnit/transactionapi 1.1.24 → 1.1.25
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/build/enum/quantity-in-historic-state.enum.d.ts +5 -0
- package/build/enum/quantity-in-historic-state.enum.js +6 -0
- package/build/model/co-document-right.d.ts +2 -2
- package/build/model/co-document-right.js +1 -1
- package/build/model/co-document.d.ts +8 -8
- package/build/model/co-document.js +13 -13
- package/build/model/transaction-search-view.bo.d.ts +3 -1
- package/build/model/transaction-search-view.bo.js +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var QuantityInHistoricState;
|
|
2
|
+
(function (QuantityInHistoricState) {
|
|
3
|
+
QuantityInHistoricState[QuantityInHistoricState["Nothing"] = 1] = "Nothing";
|
|
4
|
+
QuantityInHistoricState[QuantityInHistoricState["Partly"] = 2] = "Partly";
|
|
5
|
+
QuantityInHistoricState[QuantityInHistoricState["Fully"] = 3] = "Fully";
|
|
6
|
+
})(QuantityInHistoricState || (QuantityInHistoricState = {}));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ObjectRightType } from
|
|
2
|
-
import { BusinessObject } from
|
|
1
|
+
import { ObjectRightType } from '../enum/refcode/object-right-type.enum';
|
|
2
|
+
import { BusinessObject } from './business-object';
|
|
3
3
|
export declare class CoDocumentRight extends BusinessObject {
|
|
4
4
|
userGroupId: number;
|
|
5
5
|
documentId: number;
|
|
@@ -11,7 +11,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
11
11
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
12
|
};
|
|
13
13
|
})();
|
|
14
|
-
import { BusinessObject } from
|
|
14
|
+
import { BusinessObject } from './business-object';
|
|
15
15
|
var CoDocumentRight = (function (_super) {
|
|
16
16
|
__extends(CoDocumentRight, _super);
|
|
17
17
|
function CoDocumentRight() {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BusinessObject } from
|
|
2
|
-
import { Tag } from
|
|
3
|
-
import { CoDocumentType } from
|
|
4
|
-
import { FileType } from
|
|
5
|
-
import { ObjectRightType } from
|
|
6
|
-
import { CoDocumentRight } from
|
|
7
|
-
import { ArticleSeoValue } from
|
|
8
|
-
import { FileTypeInternal } from
|
|
1
|
+
import { BusinessObject } from './business-object';
|
|
2
|
+
import { Tag } from './tag';
|
|
3
|
+
import { CoDocumentType } from '../enum/refcode/co-document-type.enum';
|
|
4
|
+
import { FileType } from '../enum/refcode/file-type.enum';
|
|
5
|
+
import { ObjectRightType } from '../enum/refcode/object-right-type.enum';
|
|
6
|
+
import { CoDocumentRight } from './co-document-right';
|
|
7
|
+
import { ArticleSeoValue } from './article-seo-value';
|
|
8
|
+
import { FileTypeInternal } from '../enum/refcode/file-type-internal.enum';
|
|
9
9
|
import { Subject } from 'rxjs';
|
|
10
10
|
export declare class CoDocument extends BusinessObject {
|
|
11
11
|
set documentId(value: number);
|
|
@@ -20,19 +20,19 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
20
20
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
21
21
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
22
22
|
};
|
|
23
|
-
import { BusinessObject } from
|
|
24
|
-
import { BooleanText } from
|
|
25
|
-
import { ComplexArray } from
|
|
26
|
-
import { Tag } from
|
|
27
|
-
import { NoDbField } from
|
|
28
|
-
import { FileUtils } from
|
|
29
|
-
import { FileType } from
|
|
30
|
-
import { ObjectRightType } from
|
|
31
|
-
import { CoDocumentRight } from
|
|
32
|
-
import { ArticleSeoValue } from
|
|
33
|
-
import { FileTypeInternal } from
|
|
34
|
-
import { DbFieldAlias } from
|
|
35
|
-
import { DateField } from
|
|
23
|
+
import { BusinessObject } from './business-object';
|
|
24
|
+
import { BooleanText } from '../factory/decorators/boolean.decorator';
|
|
25
|
+
import { ComplexArray } from '../factory/decorators/complex-array.decorator';
|
|
26
|
+
import { Tag } from './tag';
|
|
27
|
+
import { NoDbField } from '../factory/decorators/no-db-field.decorator';
|
|
28
|
+
import { FileUtils } from '../utils/file-utils';
|
|
29
|
+
import { FileType } from '../enum/refcode/file-type.enum';
|
|
30
|
+
import { ObjectRightType } from '../enum/refcode/object-right-type.enum';
|
|
31
|
+
import { CoDocumentRight } from './co-document-right';
|
|
32
|
+
import { ArticleSeoValue } from './article-seo-value';
|
|
33
|
+
import { FileTypeInternal } from '../enum/refcode/file-type-internal.enum';
|
|
34
|
+
import { DbFieldAlias } from '../factory/decorators/db-field-alias.decorator';
|
|
35
|
+
import { DateField } from '../factory/decorators/date-field.decorator';
|
|
36
36
|
import { Subject } from 'rxjs';
|
|
37
37
|
var CoDocument = (function (_super) {
|
|
38
38
|
__extends(CoDocument, _super);
|
|
@@ -27,6 +27,7 @@ export declare class TransactionSearchView extends BusinessObject {
|
|
|
27
27
|
servicePriority: PriorityType;
|
|
28
28
|
timeToFirstResponse: number;
|
|
29
29
|
execName: string;
|
|
30
|
+
executionDate: Date;
|
|
30
31
|
execImage: CoDocument;
|
|
31
32
|
assProduct: string;
|
|
32
33
|
assProductType: string;
|
|
@@ -35,7 +36,6 @@ export declare class TransactionSearchView extends BusinessObject {
|
|
|
35
36
|
paused: boolean;
|
|
36
37
|
sourceGoodId: number;
|
|
37
38
|
sourceDocId: number;
|
|
38
|
-
createdBy: string;
|
|
39
39
|
customerResponse: string;
|
|
40
40
|
unreadResponse: boolean;
|
|
41
41
|
allowPartialDelivery: boolean;
|
|
@@ -51,6 +51,8 @@ export declare class TransactionSearchView extends BusinessObject {
|
|
|
51
51
|
levelSalesDeliveryConfirmation: number;
|
|
52
52
|
transactionMutationDate: Date;
|
|
53
53
|
invoiceSalesTransId: number;
|
|
54
|
+
totalPriceVat: number;
|
|
55
|
+
preferredDeliveryDate: Date;
|
|
54
56
|
get closedAsString(): string;
|
|
55
57
|
get statusOfSalesOrder(): string;
|
|
56
58
|
get isDefinitiveDate(): boolean;
|
|
@@ -107,6 +107,10 @@ var TransactionSearchView = (function (_super) {
|
|
|
107
107
|
ComplexField(PriorityType),
|
|
108
108
|
__metadata("design:type", Number)
|
|
109
109
|
], TransactionSearchView.prototype, "servicePriority", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
DateField(),
|
|
112
|
+
__metadata("design:type", Date)
|
|
113
|
+
], TransactionSearchView.prototype, "executionDate", void 0);
|
|
110
114
|
__decorate([
|
|
111
115
|
ComplexField(CoDocument),
|
|
112
116
|
__metadata("design:type", CoDocument)
|
|
@@ -135,6 +139,10 @@ var TransactionSearchView = (function (_super) {
|
|
|
135
139
|
DateField(),
|
|
136
140
|
__metadata("design:type", Date)
|
|
137
141
|
], TransactionSearchView.prototype, "transactionMutationDate", void 0);
|
|
142
|
+
__decorate([
|
|
143
|
+
DateField(),
|
|
144
|
+
__metadata("design:type", Date)
|
|
145
|
+
], TransactionSearchView.prototype, "preferredDeliveryDate", void 0);
|
|
138
146
|
return TransactionSearchView;
|
|
139
147
|
}(BusinessObject));
|
|
140
148
|
export { TransactionSearchView };
|