@colijnit/transactionapi 1.1.8 → 1.1.11
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/data-service-method.enum.d.ts +2 -1
- package/build/enum/data-service-method.enum.js +1 -0
- package/build/enum/master-data-object-name.enum.d.ts +3 -1
- package/build/enum/master-data-object-name.enum.js +2 -0
- package/build/enum/public-service-method.d.ts +6 -1
- package/build/enum/public-service-method.js +5 -0
- package/build/enum/transaction-method.enum.d.ts +1 -0
- package/build/enum/transaction-method.enum.js +1 -0
- package/build/ione-api-transaction.d.ts +4 -0
- package/build/model/cash-register.d.ts +13 -0
- package/build/model/cash-register.js +25 -0
- package/build/model/customer-group.bo.d.ts +6 -0
- package/build/model/customer-group.bo.js +36 -0
- package/build/model/set-transaction-delivery-options-request.bo.d.ts +7 -0
- package/build/model/set-transaction-delivery-options-request.bo.js +4 -0
- package/build/model/transaction-add-text-line-request.bo.d.ts +10 -0
- package/build/model/transaction-add-text-line-request.bo.js +38 -0
- package/build/model/transaction-line-info.bo.d.ts +2 -0
- package/build/model/transaction-line-info.bo.js +12 -0
- package/build/transaction-auth.d.ts +6 -1
- package/build/transaction-auth.js +316 -418
- package/build/transaction-public.d.ts +5 -0
- package/build/transaction-public.js +43 -1
- package/build/transaction.d.ts +4 -0
- package/build/transaction.js +12 -0
- package/build/transaction.unit.test.js +81 -7
- package/package.json +7 -4
|
@@ -9,5 +9,6 @@ export declare enum DataServiceMethod {
|
|
|
9
9
|
UnlockObject = "unlockObject",
|
|
10
10
|
UpdateMultipleObjects = "updateMultipleObjects",
|
|
11
11
|
InsertMultipleObjects = "insertMultipleObjects",
|
|
12
|
-
DeleteMultipleObjects = "deleteMultipleObjects"
|
|
12
|
+
DeleteMultipleObjects = "deleteMultipleObjects",
|
|
13
|
+
Commit = "commit"
|
|
13
14
|
}
|
|
@@ -11,4 +11,5 @@ export var DataServiceMethod;
|
|
|
11
11
|
DataServiceMethod["UpdateMultipleObjects"] = "updateMultipleObjects";
|
|
12
12
|
DataServiceMethod["InsertMultipleObjects"] = "insertMultipleObjects";
|
|
13
13
|
DataServiceMethod["DeleteMultipleObjects"] = "deleteMultipleObjects";
|
|
14
|
+
DataServiceMethod["Commit"] = "commit";
|
|
14
15
|
})(DataServiceMethod || (DataServiceMethod = {}));
|
|
@@ -9,5 +9,7 @@ export declare enum MasterDataObjectName {
|
|
|
9
9
|
MarketingCode = "MarketingCode",
|
|
10
10
|
PrivacySettingDTO = "PrivacySettingDTO",
|
|
11
11
|
CoDomainValue = "CoDomainValue",
|
|
12
|
-
WareHouse = "WareHouse"
|
|
12
|
+
WareHouse = "WareHouse",
|
|
13
|
+
CustomerGroup = "CustomerGroup",
|
|
14
|
+
CoMultipleValue = "CoMultipleValue"
|
|
13
15
|
}
|
|
@@ -11,4 +11,6 @@ export var MasterDataObjectName;
|
|
|
11
11
|
MasterDataObjectName["PrivacySettingDTO"] = "PrivacySettingDTO";
|
|
12
12
|
MasterDataObjectName["CoDomainValue"] = "CoDomainValue";
|
|
13
13
|
MasterDataObjectName["WareHouse"] = "WareHouse";
|
|
14
|
+
MasterDataObjectName["CustomerGroup"] = "CustomerGroup";
|
|
15
|
+
MasterDataObjectName["CoMultipleValue"] = "CoMultipleValue";
|
|
14
16
|
})(MasterDataObjectName || (MasterDataObjectName = {}));
|
|
@@ -32,7 +32,9 @@ export declare enum PublicServiceMethod {
|
|
|
32
32
|
GetMarketingCodes = "getMarketingCodes",
|
|
33
33
|
GetTransactionByNrAndKind = "getTransactionByNrAndKind",
|
|
34
34
|
GetTransactionById = "getTransactionId",
|
|
35
|
+
GetArticleBoundTextLinesOfArticleLine = "getArticleBoundTextLinesOfArticleLine",
|
|
35
36
|
GetDomainValues = "getDomainValue",
|
|
37
|
+
GetMultipleDomainValues = "getMultipleDomainValue",
|
|
36
38
|
GetTransactionArticleWarehouses = "getTransactionArticleWarehouses",
|
|
37
39
|
CreateTransaction = "createTransaction",
|
|
38
40
|
SaveTransaction = "saveTransaction",
|
|
@@ -50,5 +52,8 @@ export declare enum PublicServiceMethod {
|
|
|
50
52
|
GetDeliveryMethods = "getDeliveryMethods",
|
|
51
53
|
GetDeliveryOptions = "getDeliveryMethods",
|
|
52
54
|
GetRelationListObjects = "getRelationListObjects",
|
|
53
|
-
GetStandardTextsNoHeadOrFeet = "getStandardTextsNoHeadOrFeet"
|
|
55
|
+
GetStandardTextsNoHeadOrFeet = "getStandardTextsNoHeadOrFeet",
|
|
56
|
+
GetCustomerGroups = "getCustomerGroups",
|
|
57
|
+
Commit = "commit",
|
|
58
|
+
GetCashRegisters = "getCashRegisters"
|
|
54
59
|
}
|
|
@@ -33,7 +33,9 @@ export var PublicServiceMethod;
|
|
|
33
33
|
PublicServiceMethod["GetMarketingCodes"] = "getMarketingCodes";
|
|
34
34
|
PublicServiceMethod["GetTransactionByNrAndKind"] = "getTransactionByNrAndKind";
|
|
35
35
|
PublicServiceMethod["GetTransactionById"] = "getTransactionId";
|
|
36
|
+
PublicServiceMethod["GetArticleBoundTextLinesOfArticleLine"] = "getArticleBoundTextLinesOfArticleLine";
|
|
36
37
|
PublicServiceMethod["GetDomainValues"] = "getDomainValue";
|
|
38
|
+
PublicServiceMethod["GetMultipleDomainValues"] = "getMultipleDomainValue";
|
|
37
39
|
PublicServiceMethod["GetTransactionArticleWarehouses"] = "getTransactionArticleWarehouses";
|
|
38
40
|
PublicServiceMethod["CreateTransaction"] = "createTransaction";
|
|
39
41
|
PublicServiceMethod["SaveTransaction"] = "saveTransaction";
|
|
@@ -52,4 +54,7 @@ export var PublicServiceMethod;
|
|
|
52
54
|
PublicServiceMethod["GetDeliveryOptions"] = "getDeliveryMethods";
|
|
53
55
|
PublicServiceMethod["GetRelationListObjects"] = "getRelationListObjects";
|
|
54
56
|
PublicServiceMethod["GetStandardTextsNoHeadOrFeet"] = "getStandardTextsNoHeadOrFeet";
|
|
57
|
+
PublicServiceMethod["GetCustomerGroups"] = "getCustomerGroups";
|
|
58
|
+
PublicServiceMethod["Commit"] = "commit";
|
|
59
|
+
PublicServiceMethod["GetCashRegisters"] = "getCashRegisters";
|
|
55
60
|
})(PublicServiceMethod || (PublicServiceMethod = {}));
|
|
@@ -7,6 +7,7 @@ export declare enum TransactionMethod {
|
|
|
7
7
|
CreateTransaction = "createTransaction",
|
|
8
8
|
GetTransactionByNrAndKind = "getTransactionByNrAndKind",
|
|
9
9
|
GetTransactionById = "getTransactionById",
|
|
10
|
+
GetArticleBoundTextLinesOfArticleLine = "getArticleBoundTextLinesOfArticleLine",
|
|
10
11
|
SaveTransaction = "saveTransaction",
|
|
11
12
|
SetRelationByUser = "setRelationByUser",
|
|
12
13
|
SetTransactionDeliveryOptions = "setTransactionDeliveryOptions",
|
|
@@ -8,6 +8,7 @@ export var TransactionMethod;
|
|
|
8
8
|
TransactionMethod["CreateTransaction"] = "createTransaction";
|
|
9
9
|
TransactionMethod["GetTransactionByNrAndKind"] = "getTransactionByNrAndKind";
|
|
10
10
|
TransactionMethod["GetTransactionById"] = "getTransactionById";
|
|
11
|
+
TransactionMethod["GetArticleBoundTextLinesOfArticleLine"] = "getArticleBoundTextLinesOfArticleLine";
|
|
11
12
|
TransactionMethod["SaveTransaction"] = "saveTransaction";
|
|
12
13
|
TransactionMethod["SetRelationByUser"] = "setRelationByUser";
|
|
13
14
|
TransactionMethod["SetTransactionDeliveryOptions"] = "setTransactionDeliveryOptions";
|
|
@@ -22,6 +22,8 @@ export declare abstract class IoneApiTransaction {
|
|
|
22
22
|
abstract getSingleImage(nodeId: number | string, publication: number, includeMimetype: boolean, thumb: boolean): Promise<DataServiceResponseData>;
|
|
23
23
|
abstract getDocumentContent(id: number, thumbnail: boolean): Promise<DataServiceResponseData>;
|
|
24
24
|
abstract getCountries(): Promise<DataServiceResponseData>;
|
|
25
|
+
abstract getCustomerGroups(): Promise<DataServiceResponseData>;
|
|
26
|
+
abstract commit(): Promise<DataServiceResponseData>;
|
|
25
27
|
abstract getPrivacySettings(): Promise<DataServiceResponseData>;
|
|
26
28
|
abstract getMarketingCodes(): Promise<DataServiceResponseData>;
|
|
27
29
|
abstract getCommissionCodes(languageCode: string): Promise<DataServiceResponseData>;
|
|
@@ -32,6 +34,8 @@ export declare abstract class IoneApiTransaction {
|
|
|
32
34
|
abstract createTransaction(kind: TransactionKind, branchNr: string): Promise<DataServiceResponseData>;
|
|
33
35
|
abstract getTransactionByNrAndKind(kind: TransactionKind, transactionNo: number): Promise<DataServiceResponseData>;
|
|
34
36
|
abstract getTransactionById(transactionId: number): Promise<DataServiceResponseData>;
|
|
37
|
+
abstract getArticleBoundTextLinesOfArticleLine(articleLineUuid: string): Promise<DataServiceResponseData>;
|
|
38
|
+
abstract getCashRegisters(branch?: string, group?: number): Promise<DataServiceResponseData>;
|
|
35
39
|
abstract addRelationToTransaction(uuid: string, relationId: number): Promise<DataServiceResponseData>;
|
|
36
40
|
abstract saveTransaction(uuid: string): Promise<DataServiceResponseData>;
|
|
37
41
|
abstract setTransactionDeliveryOptions(request: SetTransactionDeliveryOptionsRequest): Promise<DataServiceResponseData>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BusinessObject } from "./business-object";
|
|
2
|
+
export declare class CashRegister extends BusinessObject {
|
|
3
|
+
nr: number;
|
|
4
|
+
description: string;
|
|
5
|
+
group: number;
|
|
6
|
+
cashDrawerConnection: string;
|
|
7
|
+
localCashDrawerCommunicationPort: string;
|
|
8
|
+
displayString: string;
|
|
9
|
+
defaultDrawerNumber: string;
|
|
10
|
+
defaultPrinter: string;
|
|
11
|
+
constructor();
|
|
12
|
+
getId(): string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
import { BusinessObject } from "./business-object";
|
|
15
|
+
var CashRegister = (function (_super) {
|
|
16
|
+
__extends(CashRegister, _super);
|
|
17
|
+
function CashRegister() {
|
|
18
|
+
return _super.call(this) || this;
|
|
19
|
+
}
|
|
20
|
+
CashRegister.prototype.getId = function () {
|
|
21
|
+
return this.nr + " " + this.group;
|
|
22
|
+
};
|
|
23
|
+
return CashRegister;
|
|
24
|
+
}(BusinessObject));
|
|
25
|
+
export { CashRegister };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
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;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
|
+
import { BusinessObjectData } from "../factory/decorators/business-object-data.decorator";
|
|
21
|
+
import { DataMapping } from "../enum/data-mapping.enum";
|
|
22
|
+
import { BusinessObject } from "./business-object";
|
|
23
|
+
var CustomerGroup = (function (_super) {
|
|
24
|
+
__extends(CustomerGroup, _super);
|
|
25
|
+
function CustomerGroup() {
|
|
26
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
27
|
+
}
|
|
28
|
+
CustomerGroup = __decorate([
|
|
29
|
+
BusinessObjectData({
|
|
30
|
+
name: "CustomerGroup",
|
|
31
|
+
mapping: DataMapping.RelMan
|
|
32
|
+
})
|
|
33
|
+
], CustomerGroup);
|
|
34
|
+
return CustomerGroup;
|
|
35
|
+
}(BusinessObject));
|
|
36
|
+
export { CustomerGroup };
|
|
@@ -13,4 +13,11 @@ export declare class SetTransactionDeliveryOptionsRequest extends BusinessObject
|
|
|
13
13
|
ownReference: string;
|
|
14
14
|
transactionAddress: number;
|
|
15
15
|
invoiceAddress: number;
|
|
16
|
+
confirmedDeliveryDate: Date;
|
|
17
|
+
downpaymentPercentage: number;
|
|
18
|
+
downpaymentAmount: number;
|
|
19
|
+
downpaymentBR: number;
|
|
20
|
+
downpaymentOnDelivery: number;
|
|
21
|
+
branch: string;
|
|
22
|
+
relationAdmin: string;
|
|
16
23
|
}
|
|
@@ -35,6 +35,10 @@ var SetTransactionDeliveryOptionsRequest = (function (_super) {
|
|
|
35
35
|
DateField(),
|
|
36
36
|
__metadata("design:type", Date)
|
|
37
37
|
], SetTransactionDeliveryOptionsRequest.prototype, "preferredDeliveryDate", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
DateField(),
|
|
40
|
+
__metadata("design:type", Date)
|
|
41
|
+
], SetTransactionDeliveryOptionsRequest.prototype, "confirmedDeliveryDate", void 0);
|
|
38
42
|
return SetTransactionDeliveryOptionsRequest;
|
|
39
43
|
}(BusinessObject));
|
|
40
44
|
export { SetTransactionDeliveryOptionsRequest };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BusinessObject } from "./business-object";
|
|
2
|
+
export declare class TransactionAddTextLineRequest extends BusinessObject {
|
|
3
|
+
transactionUuid: string;
|
|
4
|
+
showOnDocuments: number;
|
|
5
|
+
text: string;
|
|
6
|
+
articleBound: boolean;
|
|
7
|
+
refArticleLineNr: number;
|
|
8
|
+
aboveLineNr: number;
|
|
9
|
+
belowLineNr: number;
|
|
10
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
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;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
|
+
import { BusinessObject } from "./business-object";
|
|
21
|
+
import { BusinessObjectData } from "../factory/decorators/business-object-data.decorator";
|
|
22
|
+
import { DataMapping } from "../enum/data-mapping.enum";
|
|
23
|
+
var TransactionAddTextLineRequest = (function (_super) {
|
|
24
|
+
__extends(TransactionAddTextLineRequest, _super);
|
|
25
|
+
function TransactionAddTextLineRequest() {
|
|
26
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
27
|
+
_this.articleBound = false;
|
|
28
|
+
return _this;
|
|
29
|
+
}
|
|
30
|
+
TransactionAddTextLineRequest = __decorate([
|
|
31
|
+
BusinessObjectData({
|
|
32
|
+
name: "TransactionLineInfo",
|
|
33
|
+
mapping: DataMapping.Transaction,
|
|
34
|
+
})
|
|
35
|
+
], TransactionAddTextLineRequest);
|
|
36
|
+
return TransactionAddTextLineRequest;
|
|
37
|
+
}(BusinessObject));
|
|
38
|
+
export { TransactionAddTextLineRequest };
|
|
@@ -3,6 +3,7 @@ import { CommissionCodeType } from "../enum/refcode/commission-code-type.enum";
|
|
|
3
3
|
import { TransactionLineType } from "../enum/transaction-line-type.enum";
|
|
4
4
|
import { TextKindType } from "../enum/text-kind-type.enum";
|
|
5
5
|
export declare class TransactionLineInfo extends BusinessObject {
|
|
6
|
+
articleBoundConcatenatedText: string;
|
|
6
7
|
uuid: string;
|
|
7
8
|
lineNr: number;
|
|
8
9
|
previousLineNr: number;
|
|
@@ -36,6 +37,7 @@ export declare class TransactionLineInfo extends BusinessObject {
|
|
|
36
37
|
private _configuration;
|
|
37
38
|
salesUnitDecimals: number;
|
|
38
39
|
selected: boolean;
|
|
40
|
+
get articleTestAsArray(): string[];
|
|
39
41
|
get configuration(): string;
|
|
40
42
|
set configuration(value: string);
|
|
41
43
|
configurationReadable: string;
|
|
@@ -31,6 +31,13 @@ var TransactionLineInfo = (function (_super) {
|
|
|
31
31
|
_this.selected = false;
|
|
32
32
|
return _this;
|
|
33
33
|
}
|
|
34
|
+
Object.defineProperty(TransactionLineInfo.prototype, "articleTestAsArray", {
|
|
35
|
+
get: function () {
|
|
36
|
+
return this.articleBoundConcatenatedText.split('\r\n');
|
|
37
|
+
},
|
|
38
|
+
enumerable: true,
|
|
39
|
+
configurable: true
|
|
40
|
+
});
|
|
34
41
|
Object.defineProperty(TransactionLineInfo.prototype, "configuration", {
|
|
35
42
|
get: function () {
|
|
36
43
|
return this._configuration;
|
|
@@ -79,6 +86,11 @@ var TransactionLineInfo = (function (_super) {
|
|
|
79
86
|
enumerable: true,
|
|
80
87
|
configurable: true
|
|
81
88
|
});
|
|
89
|
+
__decorate([
|
|
90
|
+
NoDbField(),
|
|
91
|
+
__metadata("design:type", Array),
|
|
92
|
+
__metadata("design:paramtypes", [])
|
|
93
|
+
], TransactionLineInfo.prototype, "articleTestAsArray", null);
|
|
82
94
|
__decorate([
|
|
83
95
|
NoDbField(),
|
|
84
96
|
__metadata("design:type", String)
|
|
@@ -13,19 +13,22 @@ export declare class TransactionAuth extends IoneApiTransaction {
|
|
|
13
13
|
getGoodIdFromArticleNr(sku: string): Promise<DataServiceResponseData>;
|
|
14
14
|
getSingleImage(nodeId: number | string, publication?: number, includeMimetype?: boolean, thumb?: boolean): Promise<DataServiceResponseData>;
|
|
15
15
|
getDocumentContent(id: number, thumbnail?: boolean): Promise<DataServiceResponseData>;
|
|
16
|
+
getCashRegisters(branch?: string, group?: number): Promise<DataServiceResponseData>;
|
|
16
17
|
getCountries(): Promise<DataServiceResponseData>;
|
|
18
|
+
getCustomerGroups(): Promise<DataServiceResponseData>;
|
|
19
|
+
commit(): Promise<DataServiceResponseData>;
|
|
17
20
|
getPrivacySettings(): Promise<DataServiceResponseData>;
|
|
18
21
|
getRelationPrivacySettings(): Promise<DataServiceResponseData>;
|
|
19
22
|
getCommissionCodes(languageCode: string): Promise<DataServiceResponseData>;
|
|
20
23
|
getInOutCollection(languageCode: string): Promise<DataServiceResponseData>;
|
|
21
24
|
getTextTypes(languageCode: string): Promise<DataServiceResponseData>;
|
|
22
|
-
private _getDomainCollection;
|
|
23
25
|
getStandardTexts(languageCode: any): Promise<DataServiceResponseData>;
|
|
24
26
|
getTransactionArticleWarehouses(goodId: number, branchNr?: string): Promise<DataServiceResponseData>;
|
|
25
27
|
getMarketingCodes(): Promise<DataServiceResponseData>;
|
|
26
28
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<DataServiceResponseData>;
|
|
27
29
|
getTransactionByNrAndKind(kind: TransactionKind, transactionNo: number): Promise<DataServiceResponseData>;
|
|
28
30
|
getTransactionById(transactionId: number): Promise<DataServiceResponseData>;
|
|
31
|
+
getArticleBoundTextLinesOfArticleLine(articleLineUuid: string): Promise<DataServiceResponseData>;
|
|
29
32
|
addRelationToTransaction(uuid: string, relationId: number): Promise<DataServiceResponseData>;
|
|
30
33
|
saveTransaction(uuid: string): Promise<DataServiceResponseData>;
|
|
31
34
|
setTransactionDeliveryOptions(request: SetTransactionDeliveryOptionsRequest): Promise<DataServiceResponseData>;
|
|
@@ -46,6 +49,8 @@ export declare class TransactionAuth extends IoneApiTransaction {
|
|
|
46
49
|
getPostalCodeRetrieval(postalCode: string, houseNumber: string): Promise<DataServiceResponseData>;
|
|
47
50
|
getRelationListObjects(relationRequest: RelationRequest): Promise<DataServiceResponseData>;
|
|
48
51
|
setRelationByUser(uuid: string, username: string, password: string): Promise<DataServiceResponseData>;
|
|
52
|
+
private _getDomainCollection;
|
|
53
|
+
private _getMultipleDomainCollection;
|
|
49
54
|
private callGetNodeData;
|
|
50
55
|
private callDeliveryDate2;
|
|
51
56
|
private _callGetSingleImage;
|