@colijnit/transactionapi 1.1.58 → 1.1.60
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/reporting-documents-method.enum.d.ts +34 -0
- package/build/enum/reporting-documents-method.enum.js +37 -0
- package/build/enum/transaction-method.enum.d.ts +5 -0
- package/build/enum/transaction-method.enum.js +5 -0
- package/build/enum/transaction-object-name.enum.d.ts +2 -1
- package/build/enum/transaction-object-name.enum.js +1 -0
- package/build/ione-api-transaction.d.ts +62 -13
- package/build/model/create-cash-register-order-request.d.ts +7 -0
- package/build/model/create-cash-register-order-request.js +6 -0
- package/build/model/create-purchase-order-request.d.ts +3 -0
- package/build/model/create-purchase-order-request.js +6 -0
- package/build/model/create-sales-order-request.d.ts +3 -0
- package/build/model/create-sales-order-request.js +6 -0
- package/build/model/create-sales-quotation-request.d.ts +3 -0
- package/build/model/create-sales-quotation-request.js +6 -0
- package/build/model/create-service-order-request.d.ts +3 -0
- package/build/model/create-service-order-request.js +6 -0
- package/build/model/create-transaction-request.d.ts +4 -0
- package/build/model/create-transaction-request.js +5 -0
- package/build/model/email-delivery-note-request.d.ts +6 -0
- package/build/model/{email-delivery-note-request.bo.js → email-delivery-note-request.js} +2 -2
- package/build/model/email-invoice-request.d.ts +6 -0
- package/build/model/email-invoice-request.js +10 -0
- package/build/model/pdf-delivery-note-request.d.ts +5 -0
- package/build/model/{pdf-delivery-note-request.bo.js → pdf-delivery-note-request.js} +2 -2
- package/build/model/pdf-invoice-request.d.ts +5 -0
- package/build/model/pdf-invoice-request.js +10 -0
- package/build/model/pdf-order-confirmation-response.bo.d.ts +3 -0
- package/build/model/pdf-order-confirmation-response.bo.js +6 -0
- package/build/model/print-delivery-note-request.d.ts +6 -0
- package/build/model/{print-delivery-note-request.bo.js → print-delivery-note-request.js} +2 -2
- package/build/model/print-invoice-request.d.ts +8 -0
- package/build/model/print-invoice-request.js +11 -0
- package/build/model/reporting-pdf-base-response.bo.d.ts +5 -0
- package/build/model/{reporting-document-base-request.bo.js → reporting-pdf-base-response.bo.js} +2 -2
- package/build/model/transaction-line-ws.bo.d.ts +5 -0
- package/build/model/transaction-line-ws.bo.js +5 -0
- package/build/transaction-auth.d.ts +62 -16
- package/build/transaction-auth.js +362 -81
- package/build/transaction-public.d.ts +62 -13
- package/build/transaction-public.js +145 -21
- package/build/transaction.d.ts +60 -14
- package/build/transaction.js +100 -13
- package/build/transaction.unit.test.js +22 -40
- package/package.json +7 -7
- package/build/model/email-delivery-note-request.bo.d.ts +0 -6
- package/build/model/pdf-delivery-note-request.bo.d.ts +0 -5
- package/build/model/print-delivery-note-request.bo.d.ts +0 -6
- package/build/model/report/email-order-confirmation.d.ts +0 -6
- package/build/model/report/email-order-confirmation.js +0 -5
- package/build/model/report/pdf-order-confirmation.d.ts +0 -4
- package/build/model/report/pdf-order-confirmation.js +0 -5
- package/build/model/report/print-order-confirmation.d.ts +0 -8
- package/build/model/report/print-order-confirmation.js +0 -5
- package/build/model/reporting-document-base-request.bo.d.ts +0 -5
- package/build/model/reporting-document-email-base-request.bo.d.ts +0 -5
- package/build/model/reporting-document-email-base-request.bo.js +0 -6
- package/build/model/reporting-document-pdf-base-request.bo.d.ts +0 -3
- package/build/model/reporting-document-pdf-base-request.bo.js +0 -6
- package/build/model/reporting-document-print-base-request.bo.d.ts +0 -7
- package/build/model/reporting-document-print-base-request.bo.js +0 -6
|
@@ -24,6 +24,7 @@ const is_nill_function_1 = require("@colijnit/ioneconnector/build/utils/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
26
|
const available_stock_method_enum_1 = require("./enum/available-stock-method.enum");
|
|
27
|
+
const reporting_documents_method_enum_1 = require("./enum/reporting-documents-method.enum");
|
|
27
28
|
class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
28
29
|
constructor() {
|
|
29
30
|
super(...arguments);
|
|
@@ -84,12 +85,12 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
84
85
|
getCashRegisters(branch, group) {
|
|
85
86
|
const params = {};
|
|
86
87
|
if (branch !== undefined && branch !== null) {
|
|
87
|
-
params.
|
|
88
|
+
params.branch = branch;
|
|
88
89
|
}
|
|
89
90
|
if (group !== undefined && group !== null) {
|
|
90
|
-
params.
|
|
91
|
+
params.posGroup = group;
|
|
91
92
|
}
|
|
92
|
-
return this.selectMultiple(module_name_enum_1.ModuleName.Transaction,
|
|
93
|
+
return this.selectMultiple(module_name_enum_1.ModuleName.Transaction, transaction_object_name_enum_1.TransactionObjectName.CashRegister, undefined, params);
|
|
93
94
|
}
|
|
94
95
|
getCountries() {
|
|
95
96
|
return this.selectMultiple(module_name_enum_1.ModuleName.MasterData, master_data_object_name_enum_1.MasterDataObjectName.Country);
|
|
@@ -173,6 +174,51 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
173
174
|
};
|
|
174
175
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
175
176
|
}
|
|
177
|
+
createSalesOrder(request) {
|
|
178
|
+
const data = {
|
|
179
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
180
|
+
methodName: transaction_method_enum_1.TransactionMethod.CreateSalesOrder,
|
|
181
|
+
parameterValues: request,
|
|
182
|
+
refCursorAsArray: true
|
|
183
|
+
};
|
|
184
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
185
|
+
}
|
|
186
|
+
createCashRegisterOrder(request) {
|
|
187
|
+
const data = {
|
|
188
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
189
|
+
methodName: transaction_method_enum_1.TransactionMethod.CreateCashRegisterOrder,
|
|
190
|
+
parameterValues: request,
|
|
191
|
+
refCursorAsArray: true
|
|
192
|
+
};
|
|
193
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
194
|
+
}
|
|
195
|
+
createPurchaseOrder(request) {
|
|
196
|
+
const data = {
|
|
197
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
198
|
+
methodName: transaction_method_enum_1.TransactionMethod.CreatePurchaseOrder,
|
|
199
|
+
parameterValues: request,
|
|
200
|
+
refCursorAsArray: true
|
|
201
|
+
};
|
|
202
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
203
|
+
}
|
|
204
|
+
createServiceOrder(request) {
|
|
205
|
+
const data = {
|
|
206
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
207
|
+
methodName: transaction_method_enum_1.TransactionMethod.CreateServiceOrder,
|
|
208
|
+
parameterValues: request,
|
|
209
|
+
refCursorAsArray: true
|
|
210
|
+
};
|
|
211
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
212
|
+
}
|
|
213
|
+
createSalesQuotation(request) {
|
|
214
|
+
const data = {
|
|
215
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
216
|
+
methodName: transaction_method_enum_1.TransactionMethod.CreateSalesQuotation,
|
|
217
|
+
parameterValues: request,
|
|
218
|
+
refCursorAsArray: true
|
|
219
|
+
};
|
|
220
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
221
|
+
}
|
|
176
222
|
getTransactionByNrAndKind(kind, transactionNo) {
|
|
177
223
|
const params = {
|
|
178
224
|
transactionNr: transactionNo,
|
|
@@ -1040,37 +1086,28 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
1040
1086
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1041
1087
|
}
|
|
1042
1088
|
printDeliveryNote(request) {
|
|
1043
|
-
const paramValues = {
|
|
1044
|
-
request: request
|
|
1045
|
-
};
|
|
1046
1089
|
const data = {
|
|
1047
1090
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1048
1091
|
methodName: reporting_method_enum_1.ReportingMethod.PrintDeliveryNote,
|
|
1049
|
-
parameterValues:
|
|
1092
|
+
parameterValues: request,
|
|
1050
1093
|
refCursorAsArray: true
|
|
1051
1094
|
};
|
|
1052
1095
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1053
1096
|
}
|
|
1054
1097
|
emailDeliveryNote(request) {
|
|
1055
|
-
const paramValues = {
|
|
1056
|
-
request: request
|
|
1057
|
-
};
|
|
1058
1098
|
const data = {
|
|
1059
1099
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1060
1100
|
methodName: reporting_method_enum_1.ReportingMethod.EmailDeliveryNote,
|
|
1061
|
-
parameterValues:
|
|
1101
|
+
parameterValues: request,
|
|
1062
1102
|
refCursorAsArray: true
|
|
1063
1103
|
};
|
|
1064
1104
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1065
1105
|
}
|
|
1066
1106
|
pdfDeliveryNote(request) {
|
|
1067
|
-
const paramValues = {
|
|
1068
|
-
request: request
|
|
1069
|
-
};
|
|
1070
1107
|
const data = {
|
|
1071
1108
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1072
1109
|
methodName: reporting_method_enum_1.ReportingMethod.PdfDeliveryNote,
|
|
1073
|
-
parameterValues:
|
|
1110
|
+
parameterValues: request,
|
|
1074
1111
|
refCursorAsArray: true
|
|
1075
1112
|
};
|
|
1076
1113
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
@@ -1099,179 +1136,423 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
1099
1136
|
};
|
|
1100
1137
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1101
1138
|
}
|
|
1102
|
-
|
|
1139
|
+
getDefaultEmailAddressListForOrderConfirmation(transactionUUID) {
|
|
1103
1140
|
const params = {
|
|
1104
|
-
|
|
1141
|
+
transactionUUID: transactionUUID
|
|
1105
1142
|
};
|
|
1106
1143
|
const data = {
|
|
1107
1144
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1108
|
-
methodName: print_service_method_enum_1.PrintServiceMethod.
|
|
1145
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.GetDefaultEmailAddressListForOrderConfirmation,
|
|
1109
1146
|
refCursorAsArray: true,
|
|
1110
1147
|
parameterValues: params
|
|
1111
1148
|
};
|
|
1112
1149
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1113
1150
|
}
|
|
1114
|
-
|
|
1151
|
+
getPurchaseOrderEmailLayouts(transactionUUID) {
|
|
1115
1152
|
const params = {
|
|
1116
|
-
|
|
1153
|
+
transactionUUID: transactionUUID
|
|
1117
1154
|
};
|
|
1118
1155
|
const data = {
|
|
1119
1156
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1120
|
-
methodName: print_service_method_enum_1.PrintServiceMethod.
|
|
1157
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.GetPurchaseOrderEmailLayouts,
|
|
1121
1158
|
refCursorAsArray: true,
|
|
1122
1159
|
parameterValues: params
|
|
1123
1160
|
};
|
|
1124
1161
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1125
1162
|
}
|
|
1163
|
+
emailOrderConfirmation(request) {
|
|
1164
|
+
const data = {
|
|
1165
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1166
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.EmailOrderConfirmation,
|
|
1167
|
+
refCursorAsArray: true,
|
|
1168
|
+
parameterValues: request
|
|
1169
|
+
};
|
|
1170
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1171
|
+
}
|
|
1172
|
+
pdfOrderConfirmation(request) {
|
|
1173
|
+
const data = {
|
|
1174
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1175
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.PdfOrderConfirmation,
|
|
1176
|
+
refCursorAsArray: true,
|
|
1177
|
+
parameterValues: request
|
|
1178
|
+
};
|
|
1179
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1180
|
+
}
|
|
1181
|
+
getAvailableStockGroupedByWLBSByTransIdLineNr(transId, lineNr) {
|
|
1182
|
+
const parameterValues = {
|
|
1183
|
+
transId: transId,
|
|
1184
|
+
lineNr: lineNr
|
|
1185
|
+
};
|
|
1186
|
+
const data = {
|
|
1187
|
+
methodName: available_stock_method_enum_1.AvailableStockMethod.GetAvailableStockGroupedByWLBSByTransIdLineNr,
|
|
1188
|
+
moduleName: module_name_enum_1.ModuleName.Stock,
|
|
1189
|
+
refCursorAsArray: true,
|
|
1190
|
+
parameterValues: parameterValues
|
|
1191
|
+
};
|
|
1192
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1193
|
+
}
|
|
1194
|
+
allocateGoodsForSalesOrder(request) {
|
|
1195
|
+
const data = {
|
|
1196
|
+
methodName: logistics_method_enum_1.LogisticsMethod.AllocateGoodsForSalesOrder,
|
|
1197
|
+
moduleName: module_name_enum_1.ModuleName.Logistics,
|
|
1198
|
+
refCursorAsArray: true,
|
|
1199
|
+
parameterValues: request
|
|
1200
|
+
};
|
|
1201
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1202
|
+
}
|
|
1203
|
+
allocateGoodsForSalesOrderCorrection(request) {
|
|
1204
|
+
const data = {
|
|
1205
|
+
methodName: logistics_method_enum_1.LogisticsMethod.AllocateGoodsForSalesOrderCorrection,
|
|
1206
|
+
moduleName: module_name_enum_1.ModuleName.Logistics,
|
|
1207
|
+
refCursorAsArray: true,
|
|
1208
|
+
parameterValues: request
|
|
1209
|
+
};
|
|
1210
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1211
|
+
}
|
|
1212
|
+
getGoodsAllocationStatus(transId, lineNr) {
|
|
1213
|
+
const parameterValues = {
|
|
1214
|
+
transId: transId,
|
|
1215
|
+
lineNr: lineNr
|
|
1216
|
+
};
|
|
1217
|
+
const data = {
|
|
1218
|
+
methodName: transaction_method_enum_1.TransactionMethod.GetGoodsAllocationStatus,
|
|
1219
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
1220
|
+
refCursorAsArray: true,
|
|
1221
|
+
parameterValues: parameterValues
|
|
1222
|
+
};
|
|
1223
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1224
|
+
}
|
|
1225
|
+
getGoodsAllocationStatusWithHistory(transId, lineNr) {
|
|
1226
|
+
const parameterValues = {
|
|
1227
|
+
transId: transId,
|
|
1228
|
+
lineNr: lineNr
|
|
1229
|
+
};
|
|
1230
|
+
const data = {
|
|
1231
|
+
methodName: transaction_method_enum_1.TransactionMethod.GetGoodsAllocationStatusWithHistory,
|
|
1232
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
1233
|
+
refCursorAsArray: true,
|
|
1234
|
+
parameterValues: parameterValues
|
|
1235
|
+
};
|
|
1236
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1237
|
+
}
|
|
1238
|
+
printOrderConfirmation(request) {
|
|
1239
|
+
const data = {
|
|
1240
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1241
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintOrderConfirmation,
|
|
1242
|
+
refCursorAsArray: true,
|
|
1243
|
+
parameterValues: request
|
|
1244
|
+
};
|
|
1245
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1246
|
+
}
|
|
1247
|
+
emailPurchaseOrder(request) {
|
|
1248
|
+
const data = {
|
|
1249
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1250
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailPurchaseOrder,
|
|
1251
|
+
refCursorAsArray: true,
|
|
1252
|
+
parameterValues: request
|
|
1253
|
+
};
|
|
1254
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1255
|
+
}
|
|
1256
|
+
pdfPurchaseOrder(request) {
|
|
1257
|
+
const data = {
|
|
1258
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1259
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfPurchaseOrder,
|
|
1260
|
+
refCursorAsArray: true,
|
|
1261
|
+
parameterValues: request
|
|
1262
|
+
};
|
|
1263
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1264
|
+
}
|
|
1265
|
+
printPurchaseOrder(request) {
|
|
1266
|
+
const data = {
|
|
1267
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1268
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintPurchaseOrder,
|
|
1269
|
+
refCursorAsArray: true,
|
|
1270
|
+
parameterValues: request
|
|
1271
|
+
};
|
|
1272
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1273
|
+
}
|
|
1274
|
+
sendPurchaseOrderReceiptByEdiGateway(transactionId) {
|
|
1275
|
+
const parameterValues = {
|
|
1276
|
+
transactionId: transactionId
|
|
1277
|
+
};
|
|
1278
|
+
const data = {
|
|
1279
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1280
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.SendPurchaseOrderReceiptByEdiGateway,
|
|
1281
|
+
refCursorAsArray: true,
|
|
1282
|
+
parameterValues: parameterValues
|
|
1283
|
+
};
|
|
1284
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1285
|
+
}
|
|
1286
|
+
generateAndSendPurchaseOrdersForSalesOrder(transactionId) {
|
|
1287
|
+
const parameterValues = {
|
|
1288
|
+
transactionId: transactionId
|
|
1289
|
+
};
|
|
1290
|
+
const data = {
|
|
1291
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1292
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GenerateAndSendPurchaseOrdersForSalesOrder,
|
|
1293
|
+
refCursorAsArray: true,
|
|
1294
|
+
parameterValues: parameterValues
|
|
1295
|
+
};
|
|
1296
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1297
|
+
}
|
|
1298
|
+
getDefaultEmailAddressListForInvoice(transactionUUID) {
|
|
1299
|
+
const parameterValues = {
|
|
1300
|
+
transactionUUID: transactionUUID
|
|
1301
|
+
};
|
|
1302
|
+
const data = {
|
|
1303
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1304
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDefaultEmailAddressListForInvoice,
|
|
1305
|
+
refCursorAsArray: true,
|
|
1306
|
+
parameterValues: parameterValues
|
|
1307
|
+
};
|
|
1308
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1309
|
+
}
|
|
1310
|
+
getOrderConfirmationEmailLayouts(transactionUUID) {
|
|
1311
|
+
const parameterValues = {
|
|
1312
|
+
transactionUUID: transactionUUID
|
|
1313
|
+
};
|
|
1314
|
+
const data = {
|
|
1315
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1316
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetOrderConfirmationEmailLayouts,
|
|
1317
|
+
refCursorAsArray: true,
|
|
1318
|
+
parameterValues: parameterValues
|
|
1319
|
+
};
|
|
1320
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1321
|
+
}
|
|
1322
|
+
getReminderPurchaseOrderEmailLayouts(transactionUUID) {
|
|
1323
|
+
const parameterValues = {
|
|
1324
|
+
transactionUUID: transactionUUID
|
|
1325
|
+
};
|
|
1326
|
+
const data = {
|
|
1327
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1328
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetReminderPurchaseOrderEmailLayouts,
|
|
1329
|
+
refCursorAsArray: true,
|
|
1330
|
+
parameterValues: parameterValues
|
|
1331
|
+
};
|
|
1332
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1333
|
+
}
|
|
1334
|
+
getInvoiceEmailLayouts(transactionUUID) {
|
|
1335
|
+
const parameterValues = {
|
|
1336
|
+
transactionUUID: transactionUUID
|
|
1337
|
+
};
|
|
1338
|
+
const data = {
|
|
1339
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1340
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetInvoiceEmailLayouts,
|
|
1341
|
+
refCursorAsArray: true,
|
|
1342
|
+
parameterValues: parameterValues
|
|
1343
|
+
};
|
|
1344
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1345
|
+
}
|
|
1346
|
+
getOrderConfirmationPrintLayouts(transactionUUID) {
|
|
1347
|
+
const parameterValues = {
|
|
1348
|
+
transactionUUID: transactionUUID
|
|
1349
|
+
};
|
|
1350
|
+
const data = {
|
|
1351
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1352
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetOrderConfirmationPrintLayouts,
|
|
1353
|
+
refCursorAsArray: true,
|
|
1354
|
+
parameterValues: parameterValues
|
|
1355
|
+
};
|
|
1356
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1357
|
+
}
|
|
1358
|
+
getReminderPurchaseOrderPrintLayouts(transactionUUID) {
|
|
1359
|
+
const parameterValues = {
|
|
1360
|
+
transactionUUID: transactionUUID
|
|
1361
|
+
};
|
|
1362
|
+
const data = {
|
|
1363
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1364
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetReminderPurchaseOrderPrintLayouts,
|
|
1365
|
+
refCursorAsArray: true,
|
|
1366
|
+
parameterValues: parameterValues
|
|
1367
|
+
};
|
|
1368
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1369
|
+
}
|
|
1370
|
+
getInvoicePrintLayouts(transactionUUID) {
|
|
1371
|
+
const parameterValues = {
|
|
1372
|
+
transactionUUID: transactionUUID
|
|
1373
|
+
};
|
|
1374
|
+
const data = {
|
|
1375
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1376
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetInvoicePrintLayouts,
|
|
1377
|
+
refCursorAsArray: true,
|
|
1378
|
+
parameterValues: parameterValues
|
|
1379
|
+
};
|
|
1380
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1381
|
+
}
|
|
1382
|
+
getOrderConfirmationDefaultSendMethod(relationId) {
|
|
1383
|
+
const parameterValues = {
|
|
1384
|
+
relationId: relationId
|
|
1385
|
+
};
|
|
1386
|
+
const data = {
|
|
1387
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1388
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetOrderConfirmationDefaultSendMethod,
|
|
1389
|
+
refCursorAsArray: true,
|
|
1390
|
+
parameterValues: parameterValues
|
|
1391
|
+
};
|
|
1392
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1393
|
+
}
|
|
1126
1394
|
getReminderPurchaseOrderDefaultSendMethod(relationId) {
|
|
1127
|
-
const
|
|
1395
|
+
const parameterValues = {
|
|
1128
1396
|
relationId: relationId
|
|
1129
1397
|
};
|
|
1130
1398
|
const data = {
|
|
1131
1399
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1132
|
-
methodName:
|
|
1400
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetReminderPurchaseOrderDefaultSendMethod,
|
|
1133
1401
|
refCursorAsArray: true,
|
|
1134
|
-
parameterValues:
|
|
1402
|
+
parameterValues: parameterValues
|
|
1135
1403
|
};
|
|
1136
1404
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1137
1405
|
}
|
|
1138
1406
|
getDemandingDeliveryDefaultSendMethod(relationId) {
|
|
1139
|
-
const
|
|
1407
|
+
const parameterValues = {
|
|
1140
1408
|
relationId: relationId
|
|
1141
1409
|
};
|
|
1142
1410
|
const data = {
|
|
1143
1411
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1144
|
-
methodName:
|
|
1412
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDemandingDeliveryDefaultSendMethod,
|
|
1145
1413
|
refCursorAsArray: true,
|
|
1146
|
-
parameterValues:
|
|
1414
|
+
parameterValues: parameterValues
|
|
1147
1415
|
};
|
|
1148
1416
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1149
1417
|
}
|
|
1150
1418
|
getDeliveryNoteDefaultSendMethod(relationId) {
|
|
1151
|
-
const
|
|
1419
|
+
const parameterValues = {
|
|
1152
1420
|
relationId: relationId
|
|
1153
1421
|
};
|
|
1154
1422
|
const data = {
|
|
1155
1423
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1156
|
-
methodName:
|
|
1424
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDeliveryNoteDefaultSendMethod,
|
|
1157
1425
|
refCursorAsArray: true,
|
|
1158
|
-
parameterValues:
|
|
1426
|
+
parameterValues: parameterValues
|
|
1159
1427
|
};
|
|
1160
1428
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1161
1429
|
}
|
|
1162
|
-
|
|
1163
|
-
const
|
|
1430
|
+
getDemandingDeliveryEmailLayouts(transactionUUID) {
|
|
1431
|
+
const parameterValues = {
|
|
1164
1432
|
transactionUUID: transactionUUID
|
|
1165
1433
|
};
|
|
1166
1434
|
const data = {
|
|
1167
1435
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1168
|
-
methodName:
|
|
1436
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDemandingDeliveryEmailLayouts,
|
|
1169
1437
|
refCursorAsArray: true,
|
|
1170
|
-
parameterValues:
|
|
1438
|
+
parameterValues: parameterValues
|
|
1171
1439
|
};
|
|
1172
1440
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1173
1441
|
}
|
|
1174
|
-
|
|
1175
|
-
const
|
|
1442
|
+
getPurchaseOrderPrintLayouts(transactionUUID) {
|
|
1443
|
+
const parameterValues = {
|
|
1176
1444
|
transactionUUID: transactionUUID
|
|
1177
1445
|
};
|
|
1178
1446
|
const data = {
|
|
1179
1447
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1180
|
-
methodName:
|
|
1448
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetPurchaseOrderPrintLayouts,
|
|
1181
1449
|
refCursorAsArray: true,
|
|
1182
|
-
parameterValues:
|
|
1450
|
+
parameterValues: parameterValues
|
|
1183
1451
|
};
|
|
1184
1452
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1185
1453
|
}
|
|
1186
|
-
|
|
1187
|
-
const
|
|
1188
|
-
|
|
1189
|
-
saveDefaultPrinterForUser: printOrderConfirmation.saveDefaultPrinterForUser,
|
|
1190
|
-
saveDefaultPrinterForAllUsers: printOrderConfirmation.saveDefaultPrinterForAllUsers,
|
|
1191
|
-
copies: printOrderConfirmation.copies,
|
|
1192
|
-
transId: printOrderConfirmation.transId,
|
|
1193
|
-
reportId: printOrderConfirmation.reportId,
|
|
1454
|
+
getDemandingDeliveryPrintLayouts(transactionUUID) {
|
|
1455
|
+
const parameterValues = {
|
|
1456
|
+
transactionUUID: transactionUUID
|
|
1194
1457
|
};
|
|
1195
1458
|
const data = {
|
|
1196
1459
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1197
|
-
methodName:
|
|
1460
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDemandingDeliveryPrintLayouts,
|
|
1198
1461
|
refCursorAsArray: true,
|
|
1199
|
-
parameterValues:
|
|
1462
|
+
parameterValues: parameterValues
|
|
1200
1463
|
};
|
|
1201
1464
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1202
1465
|
}
|
|
1203
|
-
|
|
1466
|
+
getPurchaseOrderDefaultSendMethod(relationId) {
|
|
1467
|
+
const parameterValues = {
|
|
1468
|
+
relationId: relationId
|
|
1469
|
+
};
|
|
1204
1470
|
const data = {
|
|
1205
1471
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1206
|
-
methodName:
|
|
1472
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetPurchaseOrderDefaultSendMethod,
|
|
1207
1473
|
refCursorAsArray: true,
|
|
1208
|
-
parameterValues:
|
|
1474
|
+
parameterValues: parameterValues
|
|
1209
1475
|
};
|
|
1210
1476
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1211
1477
|
}
|
|
1212
|
-
|
|
1478
|
+
printReminderPurchaseOrder(request) {
|
|
1213
1479
|
const data = {
|
|
1214
1480
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1215
|
-
methodName:
|
|
1481
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintReminderPurchaseOrder,
|
|
1216
1482
|
refCursorAsArray: true,
|
|
1217
|
-
parameterValues:
|
|
1483
|
+
parameterValues: request
|
|
1218
1484
|
};
|
|
1219
1485
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1220
1486
|
}
|
|
1221
|
-
|
|
1222
|
-
const
|
|
1223
|
-
|
|
1224
|
-
|
|
1487
|
+
emailReminderPurchaseOrder(request) {
|
|
1488
|
+
const data = {
|
|
1489
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1490
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailReminderPurchaseOrder,
|
|
1491
|
+
refCursorAsArray: true,
|
|
1492
|
+
parameterValues: request
|
|
1225
1493
|
};
|
|
1494
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1495
|
+
}
|
|
1496
|
+
pdfReminderPurchaseOrder(request) {
|
|
1226
1497
|
const data = {
|
|
1227
|
-
|
|
1228
|
-
|
|
1498
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1499
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfReminderPurchaseOrder,
|
|
1229
1500
|
refCursorAsArray: true,
|
|
1230
|
-
parameterValues:
|
|
1501
|
+
parameterValues: request
|
|
1231
1502
|
};
|
|
1232
1503
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1233
1504
|
}
|
|
1234
|
-
|
|
1505
|
+
printDemandingDelivery(request) {
|
|
1235
1506
|
const data = {
|
|
1236
|
-
|
|
1237
|
-
|
|
1507
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1508
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintDemandingDelivery,
|
|
1238
1509
|
refCursorAsArray: true,
|
|
1239
1510
|
parameterValues: request
|
|
1240
1511
|
};
|
|
1241
1512
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1242
1513
|
}
|
|
1243
|
-
|
|
1514
|
+
emailDemandingDelivery(request) {
|
|
1244
1515
|
const data = {
|
|
1245
|
-
|
|
1246
|
-
|
|
1516
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1517
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailDemandingDelivery,
|
|
1247
1518
|
refCursorAsArray: true,
|
|
1248
1519
|
parameterValues: request
|
|
1249
1520
|
};
|
|
1250
1521
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1251
1522
|
}
|
|
1252
|
-
|
|
1253
|
-
const
|
|
1254
|
-
|
|
1255
|
-
|
|
1523
|
+
pdfDemandingDelivery(request) {
|
|
1524
|
+
const data = {
|
|
1525
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1526
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfDemandingDelivery,
|
|
1527
|
+
refCursorAsArray: true,
|
|
1528
|
+
parameterValues: request
|
|
1256
1529
|
};
|
|
1530
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1531
|
+
}
|
|
1532
|
+
printInvoice(request) {
|
|
1257
1533
|
const data = {
|
|
1258
|
-
|
|
1259
|
-
|
|
1534
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1535
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintInvoice,
|
|
1260
1536
|
refCursorAsArray: true,
|
|
1261
|
-
parameterValues:
|
|
1537
|
+
parameterValues: request
|
|
1262
1538
|
};
|
|
1263
1539
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1264
1540
|
}
|
|
1265
|
-
|
|
1266
|
-
const
|
|
1267
|
-
|
|
1268
|
-
|
|
1541
|
+
emailInvoice(request) {
|
|
1542
|
+
const data = {
|
|
1543
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1544
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailInvoice,
|
|
1545
|
+
refCursorAsArray: true,
|
|
1546
|
+
parameterValues: request
|
|
1269
1547
|
};
|
|
1548
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1549
|
+
}
|
|
1550
|
+
pdfInvoice(request) {
|
|
1270
1551
|
const data = {
|
|
1271
|
-
|
|
1272
|
-
|
|
1552
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1553
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfInvoice,
|
|
1273
1554
|
refCursorAsArray: true,
|
|
1274
|
-
parameterValues:
|
|
1555
|
+
parameterValues: request
|
|
1275
1556
|
};
|
|
1276
1557
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1277
1558
|
}
|