@colijnit/transactionapi 1.1.55 → 1.1.57
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/{article-stock-method.enum.d.ts → available-stock-method.enum.d.ts} +1 -1
- package/build/enum/available-stock-method.enum.js +6 -0
- package/build/model/{article-stock.bo.d.ts → available-stock.bo.d.ts} +0 -0
- package/build/model/{article-stock.bo.js → available-stock.bo.js} +0 -0
- package/build/transaction-auth.js +2 -2
- package/package.json +1 -1
- package/build/enum/article-stock-method.enum.js +0 -6
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var AvailableStockMethod;
|
|
4
|
+
(function (AvailableStockMethod) {
|
|
5
|
+
AvailableStockMethod["GetAvailableStockGroupedByWLBSByTransIdLineNr"] = "getAvailableStockGroupedByWLBSByTransIdLineNr";
|
|
6
|
+
})(AvailableStockMethod = exports.AvailableStockMethod || (exports.AvailableStockMethod = {}));
|
|
File without changes
|
|
File without changes
|
|
@@ -23,7 +23,7 @@ const business_object_serializer_1 = require("@colijnit/ioneconnector/build/fact
|
|
|
23
23
|
const is_nill_function_1 = require("@colijnit/ioneconnector/build/utils/function/is-nill.function");
|
|
24
24
|
const print_service_method_enum_1 = require("./enum/print-service-method.enum");
|
|
25
25
|
const reporting_method_enum_1 = require("./enum/reporting-method.enum");
|
|
26
|
-
const
|
|
26
|
+
const available_stock_method_enum_1 = require("./enum/available-stock-method.enum");
|
|
27
27
|
class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
28
28
|
constructor() {
|
|
29
29
|
super(...arguments);
|
|
@@ -1224,7 +1224,7 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
1224
1224
|
lineNr: lineNr
|
|
1225
1225
|
};
|
|
1226
1226
|
const data = {
|
|
1227
|
-
methodName:
|
|
1227
|
+
methodName: available_stock_method_enum_1.AvailableStockMethod.GetAvailableStockGroupedByWLBSByTransIdLineNr,
|
|
1228
1228
|
moduleName: module_name_enum_1.ModuleName.Stock,
|
|
1229
1229
|
refCursorAsArray: true,
|
|
1230
1230
|
parameterValues: parameterValues
|
package/package.json
CHANGED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var ArticleStockMethod;
|
|
4
|
-
(function (ArticleStockMethod) {
|
|
5
|
-
ArticleStockMethod["GetAvailableStockGroupedByWLBSByTransIdLineNr"] = "getAvailableStockGroupedByWLBSByTransIdLineNr";
|
|
6
|
-
})(ArticleStockMethod = exports.ArticleStockMethod || (exports.ArticleStockMethod = {}));
|