@colijnit/transactionapi 1.1.58 → 1.1.59
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 +58 -9
- 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.bo.d.ts → email-delivery-note-request.d.ts} +1 -1
- 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.bo.d.ts +1 -1
- package/build/model/pdf-delivery-note-request.bo.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.bo.d.ts +1 -1
- package/build/model/print-delivery-note-request.bo.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 +60 -14
- package/build/transaction-auth.js +359 -69
- package/build/transaction-public.d.ts +58 -9
- package/build/transaction-public.js +145 -21
- package/build/transaction.d.ts +56 -10
- package/build/transaction.js +100 -13
- package/build/transaction.unit.test.js +22 -40
- package/package.json +7 -7
- 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,
|
|
@@ -1099,179 +1145,423 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
1099
1145
|
};
|
|
1100
1146
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1101
1147
|
}
|
|
1102
|
-
|
|
1148
|
+
getDefaultEmailAddressListForOrderConfirmation(transactionUUID) {
|
|
1103
1149
|
const params = {
|
|
1104
|
-
|
|
1150
|
+
transactionUUID: transactionUUID
|
|
1105
1151
|
};
|
|
1106
1152
|
const data = {
|
|
1107
1153
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1108
|
-
methodName: print_service_method_enum_1.PrintServiceMethod.
|
|
1154
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.GetDefaultEmailAddressListForOrderConfirmation,
|
|
1109
1155
|
refCursorAsArray: true,
|
|
1110
1156
|
parameterValues: params
|
|
1111
1157
|
};
|
|
1112
1158
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1113
1159
|
}
|
|
1114
|
-
|
|
1160
|
+
getPurchaseOrderEmailLayouts(transactionUUID) {
|
|
1115
1161
|
const params = {
|
|
1116
|
-
|
|
1162
|
+
transactionUUID: transactionUUID
|
|
1117
1163
|
};
|
|
1118
1164
|
const data = {
|
|
1119
1165
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1120
|
-
methodName: print_service_method_enum_1.PrintServiceMethod.
|
|
1166
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.GetPurchaseOrderEmailLayouts,
|
|
1121
1167
|
refCursorAsArray: true,
|
|
1122
1168
|
parameterValues: params
|
|
1123
1169
|
};
|
|
1124
1170
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1125
1171
|
}
|
|
1172
|
+
emailOrderConfirmation(request) {
|
|
1173
|
+
const data = {
|
|
1174
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1175
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.EmailOrderConfirmation,
|
|
1176
|
+
refCursorAsArray: true,
|
|
1177
|
+
parameterValues: request
|
|
1178
|
+
};
|
|
1179
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1180
|
+
}
|
|
1181
|
+
pdfOrderConfirmation(request) {
|
|
1182
|
+
const data = {
|
|
1183
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1184
|
+
methodName: print_service_method_enum_1.PrintServiceMethod.PdfOrderConfirmation,
|
|
1185
|
+
refCursorAsArray: true,
|
|
1186
|
+
parameterValues: request
|
|
1187
|
+
};
|
|
1188
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1189
|
+
}
|
|
1190
|
+
getAvailableStockGroupedByWLBSByTransIdLineNr(transId, lineNr) {
|
|
1191
|
+
const parameterValues = {
|
|
1192
|
+
transId: transId,
|
|
1193
|
+
lineNr: lineNr
|
|
1194
|
+
};
|
|
1195
|
+
const data = {
|
|
1196
|
+
methodName: available_stock_method_enum_1.AvailableStockMethod.GetAvailableStockGroupedByWLBSByTransIdLineNr,
|
|
1197
|
+
moduleName: module_name_enum_1.ModuleName.Stock,
|
|
1198
|
+
refCursorAsArray: true,
|
|
1199
|
+
parameterValues: parameterValues
|
|
1200
|
+
};
|
|
1201
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1202
|
+
}
|
|
1203
|
+
allocateGoodsForSalesOrder(request) {
|
|
1204
|
+
const data = {
|
|
1205
|
+
methodName: logistics_method_enum_1.LogisticsMethod.AllocateGoodsForSalesOrder,
|
|
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
|
+
allocateGoodsForSalesOrderCorrection(request) {
|
|
1213
|
+
const data = {
|
|
1214
|
+
methodName: logistics_method_enum_1.LogisticsMethod.AllocateGoodsForSalesOrderCorrection,
|
|
1215
|
+
moduleName: module_name_enum_1.ModuleName.Logistics,
|
|
1216
|
+
refCursorAsArray: true,
|
|
1217
|
+
parameterValues: request
|
|
1218
|
+
};
|
|
1219
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1220
|
+
}
|
|
1221
|
+
getGoodsAllocationStatus(transId, lineNr) {
|
|
1222
|
+
const parameterValues = {
|
|
1223
|
+
transId: transId,
|
|
1224
|
+
lineNr: lineNr
|
|
1225
|
+
};
|
|
1226
|
+
const data = {
|
|
1227
|
+
methodName: transaction_method_enum_1.TransactionMethod.GetGoodsAllocationStatus,
|
|
1228
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
1229
|
+
refCursorAsArray: true,
|
|
1230
|
+
parameterValues: parameterValues
|
|
1231
|
+
};
|
|
1232
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1233
|
+
}
|
|
1234
|
+
getGoodsAllocationStatusWithHistory(transId, lineNr) {
|
|
1235
|
+
const parameterValues = {
|
|
1236
|
+
transId: transId,
|
|
1237
|
+
lineNr: lineNr
|
|
1238
|
+
};
|
|
1239
|
+
const data = {
|
|
1240
|
+
methodName: transaction_method_enum_1.TransactionMethod.GetGoodsAllocationStatusWithHistory,
|
|
1241
|
+
moduleName: module_name_enum_1.ModuleName.Transaction,
|
|
1242
|
+
refCursorAsArray: true,
|
|
1243
|
+
parameterValues: parameterValues
|
|
1244
|
+
};
|
|
1245
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1246
|
+
}
|
|
1247
|
+
printOrderConfirmation(request) {
|
|
1248
|
+
const data = {
|
|
1249
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1250
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintOrderConfirmation,
|
|
1251
|
+
refCursorAsArray: true,
|
|
1252
|
+
parameterValues: request
|
|
1253
|
+
};
|
|
1254
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1255
|
+
}
|
|
1256
|
+
emailPurchaseOrder(request) {
|
|
1257
|
+
const data = {
|
|
1258
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1259
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailPurchaseOrder,
|
|
1260
|
+
refCursorAsArray: true,
|
|
1261
|
+
parameterValues: request
|
|
1262
|
+
};
|
|
1263
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1264
|
+
}
|
|
1265
|
+
pdfPurchaseOrder(request) {
|
|
1266
|
+
const data = {
|
|
1267
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1268
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfPurchaseOrder,
|
|
1269
|
+
refCursorAsArray: true,
|
|
1270
|
+
parameterValues: request
|
|
1271
|
+
};
|
|
1272
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1273
|
+
}
|
|
1274
|
+
printPurchaseOrder(request) {
|
|
1275
|
+
const data = {
|
|
1276
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1277
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintPurchaseOrder,
|
|
1278
|
+
refCursorAsArray: true,
|
|
1279
|
+
parameterValues: request
|
|
1280
|
+
};
|
|
1281
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1282
|
+
}
|
|
1283
|
+
sendPurchaseOrderReceiptByEdiGateway(transactionId) {
|
|
1284
|
+
const parameterValues = {
|
|
1285
|
+
transactionId: transactionId
|
|
1286
|
+
};
|
|
1287
|
+
const data = {
|
|
1288
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1289
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.SendPurchaseOrderReceiptByEdiGateway,
|
|
1290
|
+
refCursorAsArray: true,
|
|
1291
|
+
parameterValues: parameterValues
|
|
1292
|
+
};
|
|
1293
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1294
|
+
}
|
|
1295
|
+
generateAndSendPurchaseOrdersForSalesOrder(transactionId) {
|
|
1296
|
+
const parameterValues = {
|
|
1297
|
+
transactionId: transactionId
|
|
1298
|
+
};
|
|
1299
|
+
const data = {
|
|
1300
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1301
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GenerateAndSendPurchaseOrdersForSalesOrder,
|
|
1302
|
+
refCursorAsArray: true,
|
|
1303
|
+
parameterValues: parameterValues
|
|
1304
|
+
};
|
|
1305
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1306
|
+
}
|
|
1307
|
+
getDefaultEmailAddressListForInvoice(transactionUUID) {
|
|
1308
|
+
const parameterValues = {
|
|
1309
|
+
transactionUUID: transactionUUID
|
|
1310
|
+
};
|
|
1311
|
+
const data = {
|
|
1312
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1313
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDefaultEmailAddressListForInvoice,
|
|
1314
|
+
refCursorAsArray: true,
|
|
1315
|
+
parameterValues: parameterValues
|
|
1316
|
+
};
|
|
1317
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1318
|
+
}
|
|
1319
|
+
getOrderConfirmationEmailLayouts(transactionUUID) {
|
|
1320
|
+
const parameterValues = {
|
|
1321
|
+
transactionUUID: transactionUUID
|
|
1322
|
+
};
|
|
1323
|
+
const data = {
|
|
1324
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1325
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetOrderConfirmationEmailLayouts,
|
|
1326
|
+
refCursorAsArray: true,
|
|
1327
|
+
parameterValues: parameterValues
|
|
1328
|
+
};
|
|
1329
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1330
|
+
}
|
|
1331
|
+
getReminderPurchaseOrderEmailLayouts(transactionUUID) {
|
|
1332
|
+
const parameterValues = {
|
|
1333
|
+
transactionUUID: transactionUUID
|
|
1334
|
+
};
|
|
1335
|
+
const data = {
|
|
1336
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1337
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetReminderPurchaseOrderEmailLayouts,
|
|
1338
|
+
refCursorAsArray: true,
|
|
1339
|
+
parameterValues: parameterValues
|
|
1340
|
+
};
|
|
1341
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1342
|
+
}
|
|
1343
|
+
getInvoiceEmailLayouts(transactionUUID) {
|
|
1344
|
+
const parameterValues = {
|
|
1345
|
+
transactionUUID: transactionUUID
|
|
1346
|
+
};
|
|
1347
|
+
const data = {
|
|
1348
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1349
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetInvoiceEmailLayouts,
|
|
1350
|
+
refCursorAsArray: true,
|
|
1351
|
+
parameterValues: parameterValues
|
|
1352
|
+
};
|
|
1353
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1354
|
+
}
|
|
1355
|
+
getOrderConfirmationPrintLayouts(transactionUUID) {
|
|
1356
|
+
const parameterValues = {
|
|
1357
|
+
transactionUUID: transactionUUID
|
|
1358
|
+
};
|
|
1359
|
+
const data = {
|
|
1360
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1361
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetOrderConfirmationPrintLayouts,
|
|
1362
|
+
refCursorAsArray: true,
|
|
1363
|
+
parameterValues: parameterValues
|
|
1364
|
+
};
|
|
1365
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1366
|
+
}
|
|
1367
|
+
getReminderPurchaseOrderPrintLayouts(transactionUUID) {
|
|
1368
|
+
const parameterValues = {
|
|
1369
|
+
transactionUUID: transactionUUID
|
|
1370
|
+
};
|
|
1371
|
+
const data = {
|
|
1372
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1373
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetReminderPurchaseOrderPrintLayouts,
|
|
1374
|
+
refCursorAsArray: true,
|
|
1375
|
+
parameterValues: parameterValues
|
|
1376
|
+
};
|
|
1377
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1378
|
+
}
|
|
1379
|
+
getInvoicePrintLayouts(transactionUUID) {
|
|
1380
|
+
const parameterValues = {
|
|
1381
|
+
transactionUUID: transactionUUID
|
|
1382
|
+
};
|
|
1383
|
+
const data = {
|
|
1384
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1385
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetInvoicePrintLayouts,
|
|
1386
|
+
refCursorAsArray: true,
|
|
1387
|
+
parameterValues: parameterValues
|
|
1388
|
+
};
|
|
1389
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1390
|
+
}
|
|
1391
|
+
getOrderConfirmationDefaultSendMethod(relationId) {
|
|
1392
|
+
const parameterValues = {
|
|
1393
|
+
relationId: relationId
|
|
1394
|
+
};
|
|
1395
|
+
const data = {
|
|
1396
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1397
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetOrderConfirmationDefaultSendMethod,
|
|
1398
|
+
refCursorAsArray: true,
|
|
1399
|
+
parameterValues: parameterValues
|
|
1400
|
+
};
|
|
1401
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1402
|
+
}
|
|
1126
1403
|
getReminderPurchaseOrderDefaultSendMethod(relationId) {
|
|
1127
|
-
const
|
|
1404
|
+
const parameterValues = {
|
|
1128
1405
|
relationId: relationId
|
|
1129
1406
|
};
|
|
1130
1407
|
const data = {
|
|
1131
1408
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1132
|
-
methodName:
|
|
1409
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetReminderPurchaseOrderDefaultSendMethod,
|
|
1133
1410
|
refCursorAsArray: true,
|
|
1134
|
-
parameterValues:
|
|
1411
|
+
parameterValues: parameterValues
|
|
1135
1412
|
};
|
|
1136
1413
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1137
1414
|
}
|
|
1138
1415
|
getDemandingDeliveryDefaultSendMethod(relationId) {
|
|
1139
|
-
const
|
|
1416
|
+
const parameterValues = {
|
|
1140
1417
|
relationId: relationId
|
|
1141
1418
|
};
|
|
1142
1419
|
const data = {
|
|
1143
1420
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1144
|
-
methodName:
|
|
1421
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDemandingDeliveryDefaultSendMethod,
|
|
1145
1422
|
refCursorAsArray: true,
|
|
1146
|
-
parameterValues:
|
|
1423
|
+
parameterValues: parameterValues
|
|
1147
1424
|
};
|
|
1148
1425
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1149
1426
|
}
|
|
1150
1427
|
getDeliveryNoteDefaultSendMethod(relationId) {
|
|
1151
|
-
const
|
|
1428
|
+
const parameterValues = {
|
|
1152
1429
|
relationId: relationId
|
|
1153
1430
|
};
|
|
1154
1431
|
const data = {
|
|
1155
1432
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1156
|
-
methodName:
|
|
1433
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDeliveryNoteDefaultSendMethod,
|
|
1157
1434
|
refCursorAsArray: true,
|
|
1158
|
-
parameterValues:
|
|
1435
|
+
parameterValues: parameterValues
|
|
1159
1436
|
};
|
|
1160
1437
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1161
1438
|
}
|
|
1162
|
-
|
|
1163
|
-
const
|
|
1439
|
+
getDemandingDeliveryEmailLayouts(transactionUUID) {
|
|
1440
|
+
const parameterValues = {
|
|
1164
1441
|
transactionUUID: transactionUUID
|
|
1165
1442
|
};
|
|
1166
1443
|
const data = {
|
|
1167
1444
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1168
|
-
methodName:
|
|
1445
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDemandingDeliveryEmailLayouts,
|
|
1169
1446
|
refCursorAsArray: true,
|
|
1170
|
-
parameterValues:
|
|
1447
|
+
parameterValues: parameterValues
|
|
1171
1448
|
};
|
|
1172
1449
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1173
1450
|
}
|
|
1174
|
-
|
|
1175
|
-
const
|
|
1451
|
+
getPurchaseOrderPrintLayouts(transactionUUID) {
|
|
1452
|
+
const parameterValues = {
|
|
1176
1453
|
transactionUUID: transactionUUID
|
|
1177
1454
|
};
|
|
1178
1455
|
const data = {
|
|
1179
1456
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1180
|
-
methodName:
|
|
1457
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetPurchaseOrderPrintLayouts,
|
|
1181
1458
|
refCursorAsArray: true,
|
|
1182
|
-
parameterValues:
|
|
1459
|
+
parameterValues: parameterValues
|
|
1183
1460
|
};
|
|
1184
1461
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1185
1462
|
}
|
|
1186
|
-
|
|
1187
|
-
const
|
|
1188
|
-
|
|
1189
|
-
saveDefaultPrinterForUser: printOrderConfirmation.saveDefaultPrinterForUser,
|
|
1190
|
-
saveDefaultPrinterForAllUsers: printOrderConfirmation.saveDefaultPrinterForAllUsers,
|
|
1191
|
-
copies: printOrderConfirmation.copies,
|
|
1192
|
-
transId: printOrderConfirmation.transId,
|
|
1193
|
-
reportId: printOrderConfirmation.reportId,
|
|
1463
|
+
getDemandingDeliveryPrintLayouts(transactionUUID) {
|
|
1464
|
+
const parameterValues = {
|
|
1465
|
+
transactionUUID: transactionUUID
|
|
1194
1466
|
};
|
|
1195
1467
|
const data = {
|
|
1196
1468
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1197
|
-
methodName:
|
|
1469
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDemandingDeliveryPrintLayouts,
|
|
1198
1470
|
refCursorAsArray: true,
|
|
1199
|
-
parameterValues:
|
|
1471
|
+
parameterValues: parameterValues
|
|
1200
1472
|
};
|
|
1201
1473
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1202
1474
|
}
|
|
1203
|
-
|
|
1475
|
+
getPurchaseOrderDefaultSendMethod(relationId) {
|
|
1476
|
+
const parameterValues = {
|
|
1477
|
+
relationId: relationId
|
|
1478
|
+
};
|
|
1204
1479
|
const data = {
|
|
1205
1480
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1206
|
-
methodName:
|
|
1481
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetPurchaseOrderDefaultSendMethod,
|
|
1207
1482
|
refCursorAsArray: true,
|
|
1208
|
-
parameterValues:
|
|
1483
|
+
parameterValues: parameterValues
|
|
1209
1484
|
};
|
|
1210
1485
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1211
1486
|
}
|
|
1212
|
-
|
|
1487
|
+
printReminderPurchaseOrder(request) {
|
|
1213
1488
|
const data = {
|
|
1214
1489
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1215
|
-
methodName:
|
|
1490
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintReminderPurchaseOrder,
|
|
1216
1491
|
refCursorAsArray: true,
|
|
1217
|
-
parameterValues:
|
|
1492
|
+
parameterValues: request
|
|
1218
1493
|
};
|
|
1219
1494
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1220
1495
|
}
|
|
1221
|
-
|
|
1222
|
-
const
|
|
1223
|
-
|
|
1224
|
-
|
|
1496
|
+
emailReminderPurchaseOrder(request) {
|
|
1497
|
+
const data = {
|
|
1498
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1499
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailReminderPurchaseOrder,
|
|
1500
|
+
refCursorAsArray: true,
|
|
1501
|
+
parameterValues: request
|
|
1225
1502
|
};
|
|
1503
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1504
|
+
}
|
|
1505
|
+
pdfReminderPurchaseOrder(request) {
|
|
1226
1506
|
const data = {
|
|
1227
|
-
|
|
1228
|
-
|
|
1507
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1508
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfReminderPurchaseOrder,
|
|
1229
1509
|
refCursorAsArray: true,
|
|
1230
|
-
parameterValues:
|
|
1510
|
+
parameterValues: request
|
|
1231
1511
|
};
|
|
1232
1512
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1233
1513
|
}
|
|
1234
|
-
|
|
1514
|
+
printDemandingDelivery(request) {
|
|
1235
1515
|
const data = {
|
|
1236
|
-
|
|
1237
|
-
|
|
1516
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1517
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintDemandingDelivery,
|
|
1238
1518
|
refCursorAsArray: true,
|
|
1239
1519
|
parameterValues: request
|
|
1240
1520
|
};
|
|
1241
1521
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1242
1522
|
}
|
|
1243
|
-
|
|
1523
|
+
emailDemandingDelivery(request) {
|
|
1244
1524
|
const data = {
|
|
1245
|
-
|
|
1246
|
-
|
|
1525
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1526
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailDemandingDelivery,
|
|
1247
1527
|
refCursorAsArray: true,
|
|
1248
1528
|
parameterValues: request
|
|
1249
1529
|
};
|
|
1250
1530
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1251
1531
|
}
|
|
1252
|
-
|
|
1253
|
-
const
|
|
1254
|
-
|
|
1255
|
-
|
|
1532
|
+
pdfDemandingDelivery(request) {
|
|
1533
|
+
const data = {
|
|
1534
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1535
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfDemandingDelivery,
|
|
1536
|
+
refCursorAsArray: true,
|
|
1537
|
+
parameterValues: request
|
|
1256
1538
|
};
|
|
1539
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1540
|
+
}
|
|
1541
|
+
printInvoice(request) {
|
|
1257
1542
|
const data = {
|
|
1258
|
-
|
|
1259
|
-
|
|
1543
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1544
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PrintInvoice,
|
|
1260
1545
|
refCursorAsArray: true,
|
|
1261
|
-
parameterValues:
|
|
1546
|
+
parameterValues: request
|
|
1262
1547
|
};
|
|
1263
1548
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1264
1549
|
}
|
|
1265
|
-
|
|
1266
|
-
const
|
|
1267
|
-
|
|
1268
|
-
|
|
1550
|
+
emailInvoice(request) {
|
|
1551
|
+
const data = {
|
|
1552
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1553
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.EmailInvoice,
|
|
1554
|
+
refCursorAsArray: true,
|
|
1555
|
+
parameterValues: request
|
|
1269
1556
|
};
|
|
1557
|
+
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1558
|
+
}
|
|
1559
|
+
pdfInvoice(request) {
|
|
1270
1560
|
const data = {
|
|
1271
|
-
|
|
1272
|
-
|
|
1561
|
+
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
1562
|
+
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.PdfInvoice,
|
|
1273
1563
|
refCursorAsArray: true,
|
|
1274
|
-
parameterValues:
|
|
1564
|
+
parameterValues: request
|
|
1275
1565
|
};
|
|
1276
1566
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data);
|
|
1277
1567
|
}
|